Monday, April 4, 2011

CrazyEngineers Forum

CrazyEngineers Forum


GATE study

Posted: 04 Apr 2011 10:23 AM PDT

Hi friends, I am preparing for GATE and want some advice on preparation. Some of my friends are going to Hyderabad for preparation. But what is the difference between self study and going to Hyderabad to study?

What special coaching do they offer?

My New Blog

Posted: 04 Apr 2011 09:54 AM PDT

Probability Problem

Posted: 04 Apr 2011 09:47 AM PDT

Sue and Bob take turns rolling a 6-sided die. Once either person rolls a 6 the
game is over. Sue rolls first, if she doesn't roll a 6, Bob rolls the die, if
he doesn't roll a 6, Sue rolls again. They continue taking turns until one of
them rolls a 6.

Bob rolls a 6 before Sue.
What is the probability Bob rolled the 6 on his second turn?

CrazyEngineers New Badges For Your Blog!

Posted: 04 Apr 2011 08:41 AM PDT

CEans,

Our awesome CEan - Eternalthinker (the crazy brain behind ET On Fire) has created badges for all our engineers to boast your CE Membership and also help in spreading the word about CrazyEngineers.

Here's how to add these badges to your blog -

1. Login to your blog's admin panel.
2. Select Text widget in your blog's widget section.
3. Paste the code below the badge of your choice in the widget.
4. Save the changes and enjoy!

If you have questions, ask them in following discussion thread: http://www.crazyengineers.com/forum/...rs-badges.html


Code:

<a href="http://www.crazyengineers.com/"><img border="0" alt="Click to visit CrazyEngineers" src="http://www.crazyengineers.com/forum/attachments/site-suggestions-feedback/86d1300900385-more-crazyengineers-badges-ce_badge_computerscience.png" /></a>

Code:

<a href="http://www.crazyengineers.com/"><img border="0"  alt="Click to visit CrazyEngineers"  src="http://www.crazyengineers.com/forum/attachments/site-suggestions-feedback/87d1300900456-more-crazyengineers-badges-ce_badge_electronics.png"  /></a>

Code:

<a href="http://www.crazyengineers.com/"><img border="0"  alt="Click to visit CrazyEngineers"  src="http://www.crazyengineers.com/forum/attachments/site-suggestions-feedback/88d1300900533-more-crazyengineers-badges-ce_badge_electrical.png"  /></a>

Code:

<a href="http://www.crazyengineers.com/"><img border="0"  alt="Click to visit CrazyEngineers"  src="http://www.crazyengineers.com/forum/attachments/site-suggestions-feedback/89d1300900698-more-crazyengineers-badges-ce_badge_mechanical.png"  /></a>

Code:

<a href="http://www.crazyengineers.com/"><img border="0"  alt="Click to visit CrazyEngineers"  src="attachments/site-suggestions-feedback/94d1300990309-more-crazyengineers-badges-ce_badge_civil.png"  /></a>

Code:

<a href="http://www.crazyengineers.com/"><img border="0"  alt="Click to visit CrazyEngineers"  src="http://www.crazyengineers.com/forum/attachments/site-suggestions-feedback/93d1300990235-more-crazyengineers-badges-ce_badge_instrumentation.png"    /></a>

Internet time out on mobile.

Posted: 04 Apr 2011 08:29 AM PDT

Please Help...
Trying to login at the CE forum from my mobile but appears a message"network is timeout"!:(:angry:

I am able to browse full site but unable to login

Today's Featured Downloads :- IM for Nokia

Posted: 04 Apr 2011 08:13 AM PDT

Section - Mobile.

IM for Nokia - Chat on the go
This is one of the best messenger among all the messengers I have ever used. It is for all nokia users who wants to stay connected with their friends.
Four instant messaging services are provided
• Ovi Chat
• Google Talk
• Windows Live Messenger
• Yahoo! Messenger

IM for Nokia should be the equivalent for instant messaging.
it has to be installed from the Ovi Store

Click To Download

Ovi Store: Featured

List Of Designations, Their Meanings & Type Of Work In Any IT Company

Posted: 04 Apr 2011 06:00 AM PDT

I thought of compiling all the various designations engineers get in IT companies, their meaning and the type of job engineers perform at various designations. I'm sure it would help many CEans working in IT companies, will work in IT companies or just curious about the hierarchy in IT companies.

Let's get started. Feel free to ask for the designation you wish to know more about and let's build up an interesting discussion. I'll set the ball rolling.

Member Of Technical Staff: (MTS)

This designation is usually awarded to fresh graduate engineers in the first year of their work experience in the company. The actual designation may be different in various companies (as we'll discuss in this thread).

Meaning: As the name suggests, it's the destination given to engineers who are a part of Programming, Coding, Quality Engineering or sometimes Networking Teams.

Type Of Job, roles & responsibilities: The MTS are put through training on various domains for the first 1-3 months of their professional career. Once trained, they are made to join the ongoing or new projects. They are given simpler responsibilities like coding, testing, networking according to their skills. They are also responsible for providing support to the clients. The MTS will also be asked to attend calls with clients and answer any questions asked by the clients. Their responsibilities usually do not include review of other team-mates' work.

How to land a job in Facebook?

Posted: 04 Apr 2011 05:50 AM PDT

I have always wondered what must be the procedure to get inside the Facebook Headquarters. Next to Google, Facebook has the most impressive office space and the employees there seem to have fun while they work. Especially after watching the movie 'the social network', this question has lingered inside my head for quite a while.

Do they go through typical aptitude test - GDs - PIs or do you have to have a X-factor on your profile.

I found a good article that you might want to read:

How to land a job at Facebook - CNN.com'

Don't forget to share your opinion after reading it. :rolleyes:

Not able to login through my hosted php page..!!

Posted: 04 Apr 2011 05:37 AM PDT

Hello friends,
I am trying host my code in a hosting site www.my3gb.com My code is working fine with my pc but not when i hosted there....Look at this code...

Code:

<html>
<body bgcolor="green">

<?php
$conn=mysql_connect("http://www.my3gb.com/phpmyadmin/","username","password");
mysql_select_db("mohit007kumar00_cboy",$conn);
print "<h1>connected</h1>";
$rs=mysql_query("select * from signup where user='".$_POST['t1']."'");
print "<h1>queried</h1>";
while($row=mysql_fetch_array($rs))
{
    print "<h1>under while</h1>";
    if($row['pswd']==$_POST['t2'])
    {
        print "<h1>You are alowed</h1>";
    }
    else
    {
        print "<h1>not alowed</h1>";
    }
}
?>
</body>
</html>

and the login page is .....
Code:

<html>
    <body bgcolor="yellow">
    <center>
    <h1>Login Application</h1>
    <form action="log.php" method="post">
    user<input type="text" name="t1"><br><br>
    pswd<input type="password" name="t2"><br><br>
    <input type="submit">
    </form>
    </center>
    </body>
 </html>

on my pc it will show the output like this.... "connected queried under while You are alowed".
But on my hosted link it will show the output like this...... "connected queried".
Can anyone help me to fix this issue...!!

Earthquake Rocks Delhi: 5.7 Magnitude

Posted: 04 Apr 2011 05:31 AM PDT

Earthquake rocks Delhi and North India at IST 5.02 PM. The magnitude of the quake is about 5.7 on Richter Scale. The center of the quake is said to be located somewhere between India and Nepal Border. Tremors were felt across north India, including Delhi, Noida, Ghaziabad.

This quake is surprising after a destroying quake rocked Japan. CEans from Delhi and North India - please keep us updated.

Google Global Science Fair 2011

Posted: 04 Apr 2011 05:23 AM PDT

Google has introduced the world's first online global science competition, the Google Science Fair!

Google has partnered with CERN, LEGO, National Geographic and Scientific American to create a new kind of online science competition that is more global, open and inclusive than ever before.

Students aged 13 - 18 from around the world are invited to enter and compete for awesome once-in-a-lifetime experiences, scholarships and real-life work opportunities.

Here's a video promoting the event:



To sign up, check: Google Global Science Fair 2011

How to transfer our data(of oracle) from one computer to another ?

Posted: 04 Apr 2011 05:22 AM PDT

Hello friends,
Anybody have idea how to transfer our data(of database like mysql,oracle) from one computer to another(except by creating backup).

Should Artificial Intelligences Be Given Civil Rights?

Posted: 04 Apr 2011 05:19 AM PDT

I read the following paragraph on Singularity Hub

Quote:

Kurzweil thinks that human-level AI won't be around for 20 years or so. Others are more conservative, a few think it could be here in the next decade. Whenever you think an artificial intelligence will match your own intellect, what should we do with it as it arrives? Are these things just machines that we can use however we want? If they do have civil rights, should they have the same rights as humans? Can they own stuff? Can they vote? Better for us to figure this out before they actually show up. As most parents will tell you, it's really helpful to have the baby crib built before the baby arrives.
I was really amazed by this thought and thought this calls for a discussion. What's your opinion?

Help!!

Posted: 04 Apr 2011 05:04 AM PDT

hi
I want to make a project which translates latin alphabet to arabian.. Can u suggest me some methods to start ??

XML Advanced Concepts & Databases Tutorial - Video Lecture

Posted: 04 Apr 2011 03:49 AM PDT

XML Advanced Concepts & Databases concept explained by Dr.S.Srinath IIIT Bangalore. Feel free to ask questions, doubts and contribute your ideas in this discussion thread -



No comments:

Post a Comment