As geeks you should always keep a watch on all the programming related websites. Stackoverflow.com is a must site for programmers (I know.. I know I need not mention that
). Here is a list of top 5 questions from stackverflow.
- Option Strict On and .NET for VB6 programmers
- Great programming quotes : This is my favourite.
- What is the difference between procedural programming and functional programming?
- When should I use Inline vs. External Javascript?
- Why do I see a double variable initialized to some value like 21.4 as 21.399999618530273?
Thats all for now! See you soon with more questions

Related posts
Shoban Uncategorized
Some time back I worte a post about a Twitter Google bot in www.crankup.net. As promised, here is how you can develop your own google talk bot which can post your messages to Twitter.

First, You need an imified account for your bot to work properly. Get one here. Once the account is created, login to your account and give your new bot a name. I call it Post2Twitter.
Now its time to develop the bot. I have used PHP to post message from the chat window to twitter.Below is the code.
<?php
error_reporting(0);
require('twitterAPI.php');
$message = $_REQUEST['msg'];
if(isset($message))
{
$extracted = explode("$",$message);
$twitter_username = $extracted[0];
$twitter_psw = $extracted[1];
$twitter_message = $extracted[2];
if(strlen($twitter_message)<1){
echo "Sorry! Please enter a message to post!";
exit(0);
} else {
$twitter_status=postToTwitter($twitter_username, $twitter_psw, $twitter_message);
}
}
?>
Looks simple? Infact it is not. I have used anoter file which will post the message to twitter. Get the include file here.
Now upload both the files to a webserver and provide the url in your bot setting page (imified.com).Once this is done you can invite your bot to your google talk and start having fun. The above code is self explanatory if you have any queries please post it as a comment.
Related posts
Shoban Uncategorized, php
My friend sent me this screenshot today. He tried to open www.indiayellowpages.com and this is what he got.

[Click the image for a bigger view]
- Option explicit commented out
- All the databse names are revealed. I was able to download a DB using google search. Shhh!! dont tell anyone
- Worst naming standards eg: main1.mdb,hitsfile1.txt
- Worst naming convention for variables eg: zz,zz1
I can think of only one quote now
Debugging is twice as hard as writing the code in the first place. Therefore, if you write the code as cleverly as possible, you are, by definition, not smart enough to debug it.
I have never seen such a worst coding standard.
Related posts
Shoban links
Recent Comments