Nov 16 2008

Links for Sunday #4

If you’re new here, you may want to subscribe to my RSS feed. Thanks for visiting!
ASP.NET AJAX Control Toolkit
10 Essential Principles of the Javascript Masters
Useful Cheat Sheets for Web Designers
33 Most Beautiful Javascript and Flash Galleries
My Top 10 Source Code Search Engines
RSS Tutorial for Content Publishers and Webmasters
50+ Gorgeous Navigation Menus
MessageBox
Ten Web Development [...]

TAGS:
Nov 12 2008

Contact Grabber

If you are a social media website developer , sometimes you might search for grabbing contacts from a particular email account if the password is given. I also did the same. In most of the cases it did not work properly. But recently i got a contact grabber from phpclasses.org which works perfectly on Gmail, [...]

Oct 22 2008

Top 5 questions from stackoverflow

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 [...]

Oct 12 2008

Create a simple Twitter IM bot

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 [...]

Oct 8 2008

indiayellowpages.com coding standards

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: [...]

Sep 8 2008

Code quality =

I saw this in makeuseof.com. Couldn’t resist posting it.

    

Aug 11 2008

.NET Framework 3.5 Common Namespaces and Types Poster

The .NET Framework 3.5 Common Namespaces and Types Poster is downloadable as XPS or PDF format. Print one and hang it on your wall Download it here

    

Aug 2 2008

Ajax using post

Here is a sample code which uses POST method in XMLHTTP request.

var url="ajaxpage.php";
var parms="name=bobby"; //Parameters
xmlHttp.open("POST", url, true);
xmlHttp.setRequestHeader("Content-type", "application/x-www-form-urlencoded");
xmlHttp.setRequestHeader("Content-length", parms.length);
xmlHttp.setRequestHeader("Connection", "close");
xmlHttp.onreadystatechange = function() {
//On ready state execute the below code
if(http.readyState == 4 || http.status == 200) {
alert(xmlHttp.responseText);
}
}
xmlHttp.send(parms);

    

[...]

TAGS: ,
Aug 1 2008

5 Ajax calendars you shouldn’t miss

Vista Like Ajax calendar : The Vista-like Ajax Calendar (vlaCalendar) version 2 is a unobtrusive  web version of the slick and profound Windows Vista taskbar calendar, by using the mootools javascript framework, AJAX, XHTML, CSS and PHP. Read more here

Aeron Calendar : Calendar is a Javascript class that adds accessible and unobtrusive date-pickers to your [...]

Jul 27 2008

Links for Sunday #3

How to create a windows vista gadget
How To Create A Keypress Navigation Using jQuery
Crop image like ORKUT
Create a contact form in CakePHP2
How to: recreate apple.com menu bar
What is programming?
“Hello world” in 366 programming languages
code archive
40 tips for optimizing your php code
The web developer’s handbook ++

    

[...]