<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Web Design Dev &#187; Programming</title>
	<atom:link href="http://www.webdesigndev.com/category/programming/feed" rel="self" type="application/rss+xml" />
	<link>http://www.webdesigndev.com</link>
	<description></description>
	<lastBuildDate>Mon, 06 Feb 2012 16:30:17 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Create a Full Page Background Image with CSS3</title>
		<link>http://www.webdesigndev.com/dreamweaver/create-a-full-page-background-image-with-css3</link>
		<comments>http://www.webdesigndev.com/dreamweaver/create-a-full-page-background-image-with-css3#comments</comments>
		<pubDate>Thu, 05 Jan 2012 16:45:17 +0000</pubDate>
		<dc:creator>Scott Stanton</dc:creator>
				<category><![CDATA[Dreamweaver]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://www.webdesigndev.com/?p=9234</guid>
		<description><![CDATA[The other day we looked at 10 Awesome Websites With Full Screen Background Images.  At the beginning of the article I had mentioned that there were a few ways of approaching this effect, some developers prefer to do it with jQuery, some with CSS, and others with Flash.  In this article we’re going to take [...]]]></description>
			<content:encoded><![CDATA[<p>The other day we looked at <a href="http://www.webdesigndev.com/?p=9216">10 Awesome Websites With Full Screen Background Images</a>.  At the beginning of the article I had mentioned that there were a few ways of approaching this effect, some developers prefer to do it with jQuery, some with CSS, and others with Flash.  In this article we’re going to take a look at how to achieve a full screen background image with CSS.</p>
<p>CSS3 allows us to choose between a few different values for the “background-size” property.  The properties are, length, percentage, cover, and contain.  The value that we’re going to use first is the “cover” value, which will scale an image to a size that will allow it to fill the content area.  I would like to point out that in doing this some parts of the image may be cut off depending on the screen resolution or dimensions of the browser window.  <a href="http://centrogenesis.com/">Centro Genesis</a> is a good example.  Look at how the background image displays in a widescreen browser.</p>
<p><a href="http://centrogenesis.com/"><img class="aligncenter size-full wp-image-9235" src="http://www.webdesigndev.com/wp-content/uploads/2011/12/genesisWide.jpg" alt="Centro Genesis" width="740" height="377" /></a></p>
<p>Now look at how the image appears in a traditional square browser. The majority of the photo is the same, it just cuts off a piece of it in order to fill the height of the screen.</p>
<p><a href="http://centrogenesis.com/"><img class="aligncenter size-full wp-image-9236" src="http://www.webdesigndev.com/wp-content/uploads/2011/12/genesisSkinny.jpg" alt="Centro Genesis" width="740" height="530" /></a></p>
<p>The code for this is method is really quite simple.  All you have to do is insert these few lines of CSS in your external CSS file or in the head of your page.</p>
<p>html {<br />
background: url(images/bg.jpg) no-repeat center center fixed;<br />
-webkit-background-size: cover;<br />
-moz-background-size: cover;<br />
-o-background-size: cover;<br />
background-size: cover;<br />
}</p>
<p>That was easy.  Now let’s take a closer look at what we did.  With the first line we’re calling in our background image and applying some style to it, “background: url(images/bg.jpg)” is pulling up our actual image.  Then “no-repeat” is telling the browser to not repeat the image, “center center” is telling the browser to center the image horizontally and vertically, and “fixed” is telling the image to fix itself in that position and not scroll with the rest of the content on the page if there is a need to scroll.  After we’ve called the background image and styled it we target all of the major browsers, webkit covers Safari 5+ and Chrome, Moz is Mozilla Firefox 4+, -o is Opera, and the plain and simple background-size with no prefix takes care if IE9+.</p>
<p>This technique is simple and works, but you’re relying on one image to please all resolution sizes.  How do you decide what dimensions to use for your one background image?  If you have an image that’s 1900px wide and someone’s trying to view your site on their mobile phone, the image may take quite some time to load.  But if you try to shoot the gap and go with an image that’s around 1,000px wide then the image may become pixilated and blurry to anyone viewing your site on a widescreen monitor with the resolution set to 1440px.  And chances are even at 1,000px it’s still going to take that mobile viewer a while to fully load your site because of your large background image.</p>
<p>Before you curse the variables like screen resolution and monitor shapes that can make our jobs so frustrating at times, allow me to give you the answer you’re looking for: media queries.  CSS will allow you to define different attributes for various parameters.  In other words, you can set a media query that tells a browser to load a largeBG.jpg, mediumBG.jpg, or a smallBG.jpg depending on what the browser dimensions of the viewer are.</p>
<div id="in_post_ad_middle_1" style="margin: 5px;padding: 0px;"><a href="http://www.wix.com/amazingwebsites/editoreasy?utm_campaign=af_webdesigndev.com&experiment_id=af_webdesigndev.com1middlepostnewLP" target="_blank" rel="nofollow">
<img src="http://www.webdesigndev.com/expressions_website3.gif" width="300" height="250" alt="create a free website" /></a></div><p>For example, rather than defining your background image within the HTML of your site let’s say you create a div for your page and assign it the id of “container”.  Pretty standard.  Much like we did in the first method, we’re going to assign our “container” div id with our background image, add some style, then tell it to cover.  I would recommend making your “largeBG.jpg” image somewhere in the ballpark of 1440px wide to 1900px wide.</p>
<p>#container{<br />
background: url(images/largeBG.jpg) no-repeat center center fixed;<br />
-webkit-background-size: cover;<br />
-moz-background-size: cover;<br />
-o-background-size: cover;<br />
background-size: cover;<br />
}</p>
<p>Now that we’ve got the big version of our background image set, we can move on to the medium.  This is a little different as we’re going to have to do a media query to tell the browser to load a smaller version of our background image.  I typically set a media query for a screen resolution width of 1024, as this is the resolution of an iPad and the possibility of the viewer relying on a network rather than high speed wifi to load the page.  To set a media query for 1024 you simply add this line in to your CSS.</p>
<p>@media only screen and (max-width: 1024px) and (orientation:landscape) {<br />
#container { background: url(images/mediumBG.jpg) 50% 0 no-repeat fixed; !important; background-size: 100% auto;<br />
-webkit-background-size: cover;<br />
-moz-background-size: cover;<br />
-o-background-size: cover;<br />
background-size: cover;<br />
}<br />
}</p>
<p>The background-size properties are somewhat optional at this point.  You can’t adjust the resolution of your iPad, but you have to remember that this media query is not specifically targeting iPad’s, it’s targeting that screen resolution.  Since there are surely still a large portion of web surfers on older monitors set in the ballpark of 1024&#215;768, it’s an easy enough step to enhance their viewing experience a little more.</p>
<p>After defining the landscape view for iPad’s let’s make a media query for the portrait view.  Depending on your image, you may want to consider putting in a cropped, taller version of your image here so that it display’s full screen without getting too distorted and pixilated.  You’ll also want to adjust the positioning to make sure the image stays aligned properly.</p>
<p>@media only screen and (min-width: 768px) and (max-width: 991px) {<br />
#container { background: url(images/mediumTallBG.jpg) 50% 80% no-repeat fixed !important<br />
-webkit-background-size: cover;<br />
-moz-background-size: cover;<br />
-o-background-size: cover;<br />
background-size: cover;<br />
}<br />
}</p>
<p>Finally, we can set another media query for mobile devices.</p>
<p>@media only screen and (min-width: 0px) and (max-width: 767px) {<br />
#container { background: url(images/smalBG.jpg) 50% 80% no-repeat fixed !important; background-size: auto !important;<br />
-webkit-background-size: cover;<br />
-moz-background-size: cover;<br />
-o-background-size: cover;<br />
background-size: cover;<br />
}<br />
}</p>
<p>I would encourage you to play around with these tricks and leave a link to the page you’ve created in the comments section below so we can all see what you’ve come up with.</p>
<p>About the author: with over ten years in the freelance web design and writing fields, Scott Stanton has had his finger on the beating pulse of the industry&#8217;s hottest design trends and bends for the past decade. Scott regularly writes for Wix.com the free <a title="website builder" href="http://www.wix.com/website/builder?utm_campaign=se_gb_webdesigndev.com&amp;experiment_id=FWB" target="_blank">website builder</a>.  Follow him on Twitter @TheScottStanton.</p>
<div style='clear:both'></div>]]></content:encoded>
			<wfw:commentRss>http://www.webdesigndev.com/dreamweaver/create-a-full-page-background-image-with-css3/feed</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>10 Incredible Examples of Responsive Web Design</title>
		<link>http://www.webdesigndev.com/web-development/10-incredible-examples-of-responsive-web-design</link>
		<comments>http://www.webdesigndev.com/web-development/10-incredible-examples-of-responsive-web-design#comments</comments>
		<pubDate>Wed, 21 Dec 2011 15:01:48 +0000</pubDate>
		<dc:creator>Scott Stanton</dc:creator>
				<category><![CDATA[Inspiration]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Roundups]]></category>
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://www.webdesigndev.com/?p=9094</guid>
		<description><![CDATA[With more people surfing the web from their mobile devices, designers and developers have been trying to figure out the best way to cater to visitors on both mobile devices and computers. When internet capable phones first began gaining popularity the method was to have two separate sites, a mobile site and a “full” site. [...]]]></description>
			<content:encoded><![CDATA[<p>With more people surfing the web from their mobile devices, designers and developers have been trying to figure out the best way to cater to visitors on both mobile devices and computers. When internet capable phones first began gaining popularity the method was to have two separate sites, a mobile site and a “full” site. But that would limit the mobile viewers experience because the site would be so basic it would cause you to wonder if it was coded by chisel and stone. That was then, now everyone is jumping on the “Responsive Web Design” bandwagon and finding it to be a rather happy median.</p>
<p>Responsive web design refers to a site that is developed to degrade nicely across multiple screen sizes and resolutions, from the largest Mac display down to the minutest mobile device. It also works wonders on frame size, square or widescreen, as well as window size, as not everyone prefers their browser to be full screen. There are three key factors to developing a responsive website, flexible layouts, flexible images, and media queries. Let’s take a look at 10 excellent examples of responsive web design.</p>
<h3>Sony</h3>
<p><a href="http://www.webdesigndev.com/wp-content/uploads/2011/12/Sony.jpg"><img class="aligncenter size-full wp-image-9103" src="http://www.webdesigndev.com/wp-content/uploads/2011/12/Sony.jpg" alt="Sony" width="740" height="186" /></a></p>
<p><a title="Sony" href="http://www.sony.com" target="_blank">Sony</a> is a big brand that has embraced responsive web design. You’ll notice there’s not much of a difference between the widescreen and traditional square screen versions other than everything looks a little more compact on the square screen. But if you start with it out wide and squeeze your browser window in, you’ll notice that the main image actually resizes itself to a smaller version. It resizes itself again once you get down towards mobile device width as well.</p>
<h3>Gravitate Design</h3>
<p><a href="http://www.webdesigndev.com/wp-content/uploads/2011/12/Gravitate.jpg"><img class="aligncenter size-full wp-image-9101" src="http://www.webdesigndev.com/wp-content/uploads/2011/12/Gravitate.jpg" alt="Gravitate Design" width="740" height="175" /></a></p>
<p>It’s no surprise that a design studio such as <a title="Gravitate Design" href="http://www.gravitatedesign.com/" target="_blank">Gravitate Design</a> features a responsive website design on their own site. Whether you are a freelancer or a large design studio, you always want your website to display the full extent of your design prowess and knowledge. I really like Gravitate’s site not only because it’s responsive but because it’s very clean and simple. Their color palette compliments itself nicely and they didn’t go overboard on shadowing, borders or putting all their content in boxes.</p>
<h3>Spark Box</h3>
<p><a href="http://www.webdesigndev.com/wp-content/uploads/2011/12/sparkBox.jpg"><img class="aligncenter size-full wp-image-9104" src="http://www.webdesigndev.com/wp-content/uploads/2011/12/sparkBox.jpg" alt="Spark Box" width="740" height="181" /></a></p>
<p><a title="Spark Box" href="http://seesparkbox.com/" target="_blank">Spark Box</a> is another web design studio that knows a good thing when they see it and doesn’t hesitate to implement it on their own site. One thing I really like about their website is how they use the width when they have it, but gracefully adjust when they don’t have it. Their little text blurb to the right of the monitor icons on the home page is a great example. It doesn’t look out of place aligned to the right in widescreen mode, nor does it look out of place centered underneath in square mode and mobile mode.</p>
<h3>Food Sense</h3>
<p><a href="http://www.webdesigndev.com/wp-content/uploads/2011/12/foodSense.jpg"><img class="aligncenter size-full wp-image-9100" src="http://www.webdesigndev.com/wp-content/uploads/2011/12/foodSense.jpg" alt="Food Sense" width="740" height="197" /></a></p>
<p><a title="Food Sense" href="http://foodsense.is/" target="_blank">Food Sense</a> is another great example of responsive web design. They use the width when they have it, but when they don’t they adjust without losing any of the clean look or flow to the site. The only unfortunate thing about the site is that once you leave their widescreen parameters you lose their latest tweet and Facebook plug that’s on the side column under the navigation. They still have links to both social networks in the footer, so it’s not a huge deal. But still would have been nice to see those features appear elsewhere in the skinnier designs.</p>
<h3>dConstruct</h3>
<p><a href="http://www.webdesigndev.com/wp-content/uploads/2011/12/dConstruct.jpg"><img class="aligncenter size-full wp-image-9098" src="http://www.webdesigndev.com/wp-content/uploads/2011/12/dConstruct.jpg" alt="dConstruct" width="740" height="202" /></a></p>
<p><a title="dConstruct" href="http://2011.dconstruct.org/" target="_blank">dConstruct</a> is a stunning example of dynamic images that are resized on the fly. As you drag the window left and right you will see that the padding between images isn’t what’s adjusting in width and size, but the images themselves are. Once you hit a certain parameter all of the images resize to a smaller, or larger depending on if you’re shrinking or expanding the site, version to accommodate the screen size.</p>
<h3>Clean Air Challenge</h3>
<div id="in_post_ad_middle_1" style="margin: 5px;padding: 0px;"><a href="http://www.wix.com/amazingwebsites/editoreasy?utm_campaign=af_webdesigndev.com&experiment_id=af_webdesigndev.com1middlepostnewLP" target="_blank" rel="nofollow">
<img src="http://www.webdesigndev.com/expressions_website3.gif" width="300" height="250" alt="create a free website" /></a></div><p><a href="http://www.webdesigndev.com/wp-content/uploads/2011/12/cleanAir.jpg"><img class="aligncenter size-full wp-image-9097" src="http://www.webdesigndev.com/wp-content/uploads/2011/12/cleanAir.jpg" alt="Clean Air Challenge" width="740" height="187" /></a></p>
<p>Last week I talked about <a title="sites with parallax scrolling" href="http://www.webdesigndev.com/inspiration/10-awesome-parallax-scrolling-sites" target="_blank">sites with parallax scrolling</a> and this <a title="Clean Air Challenge" href="http://clearairchallenge.com/" target="_blank">Clean Air Challenge</a> site just barely missed making my list. The site itself isn’t totally parallax scrolling, just the clouds in the background are. However, the site is an excellent example of responsive web design. Another aspect of this site that I liked was that the only images that you lose once you hit the mobile sized version of the site is the repeat of the main navigation icons that appear in the footer.</p>
<h3>Sasquatch Music Festival</h3>
<p><a href="http://www.webdesigndev.com/wp-content/uploads/2011/12/sasquatch.jpg"><img class="aligncenter size-full wp-image-9102" src="http://www.webdesigndev.com/wp-content/uploads/2011/12/sasquatch.jpg" alt="Sasquatch Music Festival" width="740" height="205" /></a></p>
<p><a title="Sasquatch" href="http://sasquatchfestival.com/" target="_blank">Sasquatch</a> is an annual music festival in my neck of the woods featuring some big name artists. When I came across their site and saw that it’s as fun to look at as the bands they book are to listen to, I was quite excited. This site sticks out from a lot of the others for me because of all the colors, images, icons and overall sense of style it has to offer. A lot of the responsive websites I come across seem to be heavy on text, light on imagery, and only two or three colors throughout the site.</p>
<h3>Flexslider</h3>
<p><a href="http://www.webdesigndev.com/wp-content/uploads/2011/12/flexSlider.jpg"><img class="aligncenter size-full wp-image-9099" src="http://www.webdesigndev.com/wp-content/uploads/2011/12/flexSlider.jpg" alt="Flexslider" width="740" height="177" /></a></p>
<p>It only seems fitting that <a title="Flexslider" href="http://flex.madebymufffin.com/" target="_blank">Flexslider</a> also has a flexible website to promote their handy jQuery image slider. And what better way to get people interested in the slider than to use pictures of cupcakes to show off how it works! One of the best things this site has going for it is that you don’t lose a single thing between widescreen mode and mobile mode, all icons, images, elements, comments, and everything stay there. This way visitor’s don’t feel cheated between missing out on content if they’re browsing the site from their mobile device or desktop computer.</p>
<h3>The Cacao Trail</h3>
<p><a href="http://www.webdesigndev.com/wp-content/uploads/2011/12/cacaoTour.jpg"><img class="aligncenter size-full wp-image-9096" src="http://www.webdesigndev.com/wp-content/uploads/2011/12/cacaoTour.jpg" alt="The Cacao Trail" width="891" height="224" /></a></p>
<p>I can only imagine that <a title="The Cacao Trail website" href="http://www.cacaotour.com/index.php/en/home" target="_blank">The Cacao Trail website</a> is almost as enjoyable to navigate as the actual trail is. You lose the main image on this site as soon as you go from widescreen down to a more traditional sized monitor, which I don’t mind as the image doesn’t really do too much for me and it would certainly save you a lot of load time on a mobile device. I do like how the main navigation links enlarge once you hit the mobile sized version, it can get to be a bit of an annoyance trying to touch tiny words to navigate a site on your touch screen mobile device.</p>
<h3>Alsacreations</h3>
<p><a href="http://www.webdesigndev.com/wp-content/uploads/2011/12/alsacreations.jpg"><img class="aligncenter size-full wp-image-9095" src="http://www.webdesigndev.com/wp-content/uploads/2011/12/alsacreations.jpg" alt="" width="740" height="199" /></a></p>
<p><a title="Alsacreations" href="http://www.alsacreations.fr/" target="_blank">Alsacreations</a> took another interesting approach to their responsive web design. Rather than worrying about keeping all aspects and elements of their site intact between different resolutions, they simply focused on what was important and dropped the bells and whistles. From widescreen to square they dropped their image slider, then from square to mobile they dropped all elements except their “About” blurb and their email form, while including links to everything else.</p>
<p>I like sites that maintain their appearance, at least to some degree, all the way down the resolution latter. But I also understand that specific industries and target audiences come in to play. In some industries a person may only be viewing a site from their mobile device to find that companies contact info. In those instances it’s probably best that’s what they get from your mobile sized home page as soon as it loads, you can always include links at the bottom to everything else. I would encourage you to help your clients figure out what’s best for them, and keep all monitor sizes and internet browsing devices in mind as you’re developing your next project.</p>
<p>About the author: with over ten years in the freelance web design and writing fields, Scott Stanton has had his finger on the beating pulse of the industry&#8217;s hottest design trends and bends for the past decade. Scott regularly writes for Wix.com the free <a title="website builder" href="http://www.wix.com/website/builder?utm_campaign=se_gb_webdesigndev.com&amp;experiment_id=FWB" target="_blank">website builder</a>.  Follow him on Twitter @TheScottStanton.</p>
<div style='clear:both'></div>]]></content:encoded>
			<wfw:commentRss>http://www.webdesigndev.com/web-development/10-incredible-examples-of-responsive-web-design/feed</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>Top 20 Ajax Tutorials</title>
		<link>http://www.webdesigndev.com/programming/top-20-ajax-tutorials</link>
		<comments>http://www.webdesigndev.com/programming/top-20-ajax-tutorials#comments</comments>
		<pubDate>Tue, 17 Nov 2009 17:12:17 +0000</pubDate>
		<dc:creator>Web Design</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[Ajax And jQuery Validation]]></category>
		<category><![CDATA[Ajax Contact Form]]></category>
		<category><![CDATA[Ajax Featured Content Slider]]></category>
		<category><![CDATA[Ajax File Upload]]></category>
		<category><![CDATA[Ajax Guestbook]]></category>
		<category><![CDATA[Ajax Image Loader]]></category>
		<category><![CDATA[Ajax Login Form]]></category>
		<category><![CDATA[Ajax RSS Feed Widget]]></category>
		<category><![CDATA[Ajax Username Validation]]></category>
		<category><![CDATA[Ajax Web Chat Application]]></category>
		<category><![CDATA[Ajax XML Ticker]]></category>
		<category><![CDATA[Animated Ajax Login]]></category>
		<category><![CDATA[Create A Live Preview Display]]></category>
		<category><![CDATA[Create A Practical jQuery Plugin]]></category>
		<category><![CDATA[Including An External Page With Ajax]]></category>
		<category><![CDATA[Making An Ajax Website]]></category>
		<category><![CDATA[Retrieve Data From An XML File]]></category>
		<category><![CDATA[Simple Ajax Website]]></category>
		<category><![CDATA[Top 20 Ajax Tutorials]]></category>

		<guid isPermaLink="false">http://www.webdesigndev.com/?p=4339</guid>
		<description><![CDATA[Ajax is commonly overlooked as a language that many newbies to web design don't really understand. Well the truth is, Ajax can do wonderful things and give your website that extra special something. I have rounded up a collection of the top 20 Ajax tutorials I think will help anyone get their feet wet with Ajax.]]></description>
			<content:encoded><![CDATA[<p>Ajax is commonly overlooked as a language that many newbies to web design don&#8217;t really understand. Well the truth is, Ajax can do wonderful things and give your website that extra special something. I have rounded up a collection of the top 20 Ajax tutorials I think will help anyone get their feet wet with Ajax.</p>
<p>Let me know what tutorial you like best, and if you know of any other tutorials that have helped you master Ajax, then please by all means drop us a comment. Anyway, enjoy the list!</p>
<h3>A simple AJAX website with jQuery</h3>
<p>TutorialZine have posted this really great tutorial that teaches people how to create their very own fully functional websites that runs using Ajax. I have to say the finished result does look very nice! <a href="http://tutorialzine.com/2009/09/simple-ajax-website-jquery/" target="_blank">View Tutorial</a></p>
<p><a href="http://tutorialzine.com/2009/09/simple-ajax-website-jquery/" target="_blank"><img class="alignnone size-full wp-image-4368" title="web" src="http://www.webdesigndev.com/wp-content/uploads/2009/11/web.jpg" alt="web" width="674" height="246" /></a></p>
<p style="text-align: center;"><span style="color: #888888;">* * * * *</span></p>
<h3>Including An External Page With Ajax</h3>
<p>This tutorial will teach you how to include an external page using Ajax Its a very easy to follow tutorial written by the people over at Javascript Kit. <a href="http://www.javascriptkit.com/dhtmltutors/ajaxincludes.shtml" target="_blank">View Tutorial</a></p>
<p style="text-align: center;"><span style="color: #888888;">* * * * *</span></p>
<h3>Create A Live Preview Display</h3>
<p>Learn how to create a live preview display when filling out a form, much like the one Digg.com use. <a href="http://totaldream.org/article/120-creating_an_ajax_live_preview_display.html" target="_blank">View Tutorial</a></p>
<p><a href="http://totaldream.org/article/120-creating_an_ajax_live_preview_display.html" target="_blank"><img class="alignnone size-full wp-image-4369" title="preview" src="http://www.webdesigndev.com/wp-content/uploads/2009/11/preview.jpg" alt="preview" width="674" height="182" /></a></p>
<p style="text-align: center;"><span style="color: #888888;">* * * * *</span></p>
<h3>Ajax Contact Form</h3>
<p>Learn how to create an Ajax contact form that emails the recipient without the page reloading. <a href="http://www.roscripts.com/AJAX_contact_form-144.html" target="_blank">View Tutorial</a></p>
<p style="text-align: center;"><span style="color: #888888;">* * * * *</span></p>
<h3>Making An Ajax Website</h3>
<p>In this tutorial you can learn how to create your very own Ajax website. And the best part is, no Ajax knowledge is required! <a href="http://www.quantumstate.co.uk/ajax.html" target="_blank">View Tutorial</a></p>
<p style="text-align: center;"><span style="color: #888888;">* * * * *</span></p>
<h3>Ajax Web Chat Application</h3>
<p>In this tutorial, you can create your very own web chat using Ajax. This is pretty cool if you are looking to creating a live chat app for your website. <a href="http://www.dynamicajax.com/fr/AJAX_Driven_Web_Chat-271_290_291.html" target="_blank">View Tutorial</a></p>
<p><a href="http://www.dynamicajax.com/fr/AJAX_Driven_Web_Chat-271_290_291.html" target="_blank"><img class="alignnone size-full wp-image-4370" title="chat" src="http://www.webdesigndev.com/wp-content/uploads/2009/11/chat.jpg" alt="chat" width="674" height="154" /></a></p>
<p style="text-align: center;"><span style="color: #888888;">* * * * *</span></p>
<h3>Ajax 101</h3>
<p>Here is a short guide that will teach you the ins and outs of Ajax. <a href="http://www.siolon.com/blog/de-mystifying-ajax/" target="_blank">View Tutorial</a></p>
<p style="text-align: center;"><span style="color: #888888;">* * * * *</span></p>
<h3>Featured Content Slider</h3>
<p>In this tutorial, you can learn how to make standard pieces of HTML glide in, and put them together into a beautiful slideshow. <a href="http://www.dynamicdrive.com/dynamicindex17/featuredcontentglider.htm" target="_blank">View Tutorial</a></p>
<p><a href="http://www.dynamicdrive.com/dynamicindex17/featuredcontentglider.htm" target="_blank"><img class="alignnone size-full wp-image-4371" title="featured" src="http://www.webdesigndev.com/wp-content/uploads/2009/11/featured.jpg" alt="featured" width="674" height="393" /></a></p>
<p style="text-align: center;"><span style="color: #888888;">* * * * *</span></p>
<h3>Validation And Ajax With jQuery</h3>
<p>Ever filled out a form and it pops up with you forgot to fill out your email address or something similar? This tutorial will teach you hoe to validate your forms with Ajax. <a href="http://www.prodevtips.com/2007/12/28/validation-and-ajax-with-jquery/" target="_blank">View Tutorial</a></p>
<p style="text-align: center;"><span style="color: #888888;">* * * * *</span></p>
<h3>Ajax RSS Feed Widget</h3>
<p>Learn how to grab any RSS feed you like, and display the content in any styled fashion. <a href="http://www.dynamicdrive.com/dynamicindex18/gajaxrssdisplayer.htm" target="_blank">View Tutorial</a></p>
<div id="in_post_ad_middle_1" style="margin: 5px;padding: 0px;"><a href="http://www.wix.com/amazingwebsites/editoreasy?utm_campaign=af_webdesigndev.com&experiment_id=af_webdesigndev.com1middlepostnewLP" target="_blank" rel="nofollow">
<img src="http://www.webdesigndev.com/expressions_website3.gif" width="300" height="250" alt="create a free website" /></a></div><p><a href="http://www.dynamicdrive.com/dynamicindex18/gajaxrssdisplayer.htm" target="_blank"><img class="alignnone size-full wp-image-4372" title="rss" src="http://www.webdesigndev.com/wp-content/uploads/2009/11/rss.jpg" alt="rss" width="674" height="200" /></a></p>
<p style="text-align: center;"><span style="color: #888888;">* * * * *</span></p>
<h3>Animated Ajax Login [video]</h3>
<p>This sweet video will teach you how to spice up your standard login page and make it animated using Ajax. </p>
<p style="text-align: center;"><span style="color: #888888;">* * * * *</span></p>
<h3>Ajax File Upload Tutorial</h3>
<p>An easy tutorial teaching you how to make a simple Ajax file uploader Some neat graphics in this tutorial. <a href="http://www.ajaxf1.com/tutorial/ajax-file-upload-tutorial.html" target="_blank">View Tutorial</a></p>
<p><a href="http://www.ajaxf1.com/tutorial/ajax-file-upload-tutorial.html" target="_blank"><img class="alignnone size-full wp-image-4373" title="upload" src="http://www.webdesigndev.com/wp-content/uploads/2009/11/upload.jpg" alt="upload" width="674" height="177" /></a></p>
<p style="text-align: center;"><span style="color: #888888;">* * * * *</span></p>
<h3>Ajax Image Loader [video]</h3>
<p>Learn how to create an image loader in this nicely put together video tutorial.</p>
<p style="text-align: center;"><span style="color: #888888;">* * * * *</span></p>
<h3>Ajax Login Form</h3>
<p>This is a sweet Ajax login form tutorial that uses MooTools. Plus the login form has a neat little preloader! <a href="http://www.bitrepository.com/ajax-login-form.html" target="_blank">View Tutorial</a></p>
<p><a href="http://www.bitrepository.com/ajax-login-form.html" target="_blank"><img class="alignnone size-full wp-image-4374" title="login" src="http://www.webdesigndev.com/wp-content/uploads/2009/11/login.jpg" alt="login" width="674" height="203" /></a></p>
<p style="text-align: center;"><span style="color: #888888;">* * * * *</span></p>
<h3>Ajax Username Validation</h3>
<p>This tutorial will teach you how to validate a username in a form. You can also customize this to work with all the form fields. Plus this tutorial is available in jQuery and Prototype. </p>
<p style="text-align: center;"><span style="color: #888888;">* * * * *</span></p>
<h3>Ajax XML Ticker</h3>
<p>This a neat little tutorial that teaches you how to build an Ajax XML ticker. You can link a .txt file up to the ticker to display a slideshow of messages, and it supports rich HTML too! <a href="http://www.dynamicdrive.com/dynamicindex2/ajaxticker.htm" target="_blank">View Tutorial</a></p>
<p style="text-align: center;"><span style="color: #888888;">* * * * *</span></p>
<h3>Use jQuery To Retrieve Data From An XML File</h3>
<p>Here is a nice little handy tip that will teach you how to grab data from an XML file and display it on a blank empty page. <a href="http://net.tutsplus.com/tutorials/javascript-ajax/use-jquery-to-retrieve-data-from-an-xml-file/" target="_blank">View Tutorial</a></p>
<p><a href="http://net.tutsplus.com/tutorials/javascript-ajax/use-jquery-to-retrieve-data-from-an-xml-file/" target="_blank"><img class="alignnone size-full wp-image-4375" title="xml" src="http://www.webdesigndev.com/wp-content/uploads/2009/11/xml.jpg" alt="xml" width="674" height="162" /></a></p>
<p style="text-align: center;"><span style="color: #888888;">* * * * *</span></p>
<h3>Ajax Guestbook [video]</h3>
<p>This video tutorial will teach you how to create a fully functional guestbook using Ajax. </p>
<p style="text-align: center;"><span style="color: #888888;">* * * * *</span></p>
<h3>The Definitive Guide to Creating a Practical jQuery Plugin</h3>
<p>Net Tuts have a really great tutorial on how to create your own practical jQuery plugin. <a href="http://net.tutsplus.com/tutorials/javascript-ajax/the-definitive-guide-to-creating-a-practical-jquery-plugin/" target="_blank">View Tutorial</a></p>
<p style="text-align: center;"><span style="color: #888888;">* * * * *</span></p>
<h3>Ajax Website Slider</h3>
<p>This web slider will enhance your website and give it that extra something. This looks great, and is easy to make too! <a href="http://www.skyrill.com/blog/?p=80" target="_blank">View Tutorial</a></p>
<p><a href="http://www.skyrill.com/blog/?p=80" target="_blank"><img class="alignnone size-full wp-image-4367" title="slide" src="http://www.webdesigndev.com/wp-content/uploads/2009/11/slide.jpg" alt="slide" width="674" height="372" /></a></p>
<div style='clear:both'></div>]]></content:encoded>
			<wfw:commentRss>http://www.webdesigndev.com/programming/top-20-ajax-tutorials/feed</wfw:commentRss>
		<slash:comments>20</slash:comments>
		</item>
		<item>
		<title>The Ultimate Programming Cheat Sheet List For Web Designers And Developers</title>
		<link>http://www.webdesigndev.com/programming/the-ultimate-programming-cheat-sheet-list-for-web-designers-and-developers</link>
		<comments>http://www.webdesigndev.com/programming/the-ultimate-programming-cheat-sheet-list-for-web-designers-and-developers#comments</comments>
		<pubDate>Fri, 25 Sep 2009 16:16:47 +0000</pubDate>
		<dc:creator>Web Design</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[CSS Cheat Sheet]]></category>
		<category><![CDATA[HTML Cheat Sheet]]></category>
		<category><![CDATA[jQuery Cheat Sheet]]></category>
		<category><![CDATA[MooTools Cheat Sheet]]></category>
		<category><![CDATA[PHP Cheat Sheet]]></category>
		<category><![CDATA[Programming Cheat Sheet List]]></category>
		<category><![CDATA[Python Cheat Sheet]]></category>
		<category><![CDATA[Ultimate Cheat Sheet List]]></category>
		<category><![CDATA[Web Developers Cheat Sheet]]></category>
		<category><![CDATA[WordPress Cheat Sheet]]></category>

		<guid isPermaLink="false">http://www.webdesigndev.com/?p=3428</guid>
		<description><![CDATA[There are so many cheat sheets around these days, and the same goes for programming languages. Cheat sheets are basically a set of notes to allow programmers quick reference to code.]]></description>
			<content:encoded><![CDATA[<p>There are so many cheat sheets around these days, and the same goes for programming languages. Cheat sheets are basically a set of notes to allow programmers quick reference to code. I have compiled a list of many different cheat sheets for many different programming languages. Programming languages included in the list are Ruby, Python, PHP, CSS and many more.</p>
<h3>HTML 5 Cheat Sheet</h3>
<p>Smashing Magazine has provided us with an awesome HTML 5 cheat sheet. <a href="http://www.smashingmagazine.com/2009/07/06/html-5-cheat-sheet-pdf/" target="_blank">Download</a></p>
<p><a href="http://www.smashingmagazine.com/2009/07/06/html-5-cheat-sheet-pdf/" target="_blank"><img class="alignnone size-full wp-image-3430" title="html1" src="http://www.webdesigndev.com/wp-content/uploads/2009/09/html1.jpg" alt="html1" width="674" height="254" /></a></p>
<p style="text-align: center;"><span style="color: #888888;">* * * * *</span></p>
<h3>Ruby Cheat Sheet</h3>
<p>eDocr has a brilliant ruby cheat sheet. <a href="http://www.edocr.com/doc/59/ruby-cheatsheet" target="_blank">Download</a></p>
<p><a href="http://www.edocr.com/doc/59/ruby-cheatsheet" target="_blank"><img class="alignnone size-full wp-image-3431" title="ruby1" src="http://www.webdesigndev.com/wp-content/uploads/2009/09/ruby1.jpg" alt="ruby1" width="674" height="246" /></a></p>
<p style="text-align: center;"><span style="color: #888888;">* * * * *</span></p>
<h3>HTML Cheat Sheet</h3>
<p>This is another HTML cheat sheet, that is displayed differently to Smashing Magazine&#8217;s. You can download this cheat sheet in .png and also .pdf. <a href="http://www.addedbytes.com/cheat-sheets/html-cheat-sheet/" target="_blank">Download</a></p>
<p><a href="http://www.addedbytes.com/cheat-sheets/html-cheat-sheet/" target="_blank"><img class="alignnone size-full wp-image-3432" title="html2" src="http://www.webdesigndev.com/wp-content/uploads/2009/09/html2.jpg" alt="html2" width="674" height="262" /></a></p>
<p style="text-align: center;"><span style="color: #888888;">* * * * *</span></p>
<h3>Ruby On Rails Cheat Sheet</h3>
<p>Added Bytes have an awesome ruby on rails cheat sheet in .pdf and .png. <a href="http://www.addedbytes.com/cheat-sheets/ruby-on-rails-cheat-sheet/" target="_blank">Download</a></p>
<p><a href="http://www.addedbytes.com/cheat-sheets/ruby-on-rails-cheat-sheet/" target="_blank"><img class="alignnone size-full wp-image-3433" title="rubyonrails1" src="http://www.webdesigndev.com/wp-content/uploads/2009/09/rubyonrails1.jpg" alt="rubyonrails1" width="674" height="304" /></a></p>
<p style="text-align: center;"><span style="color: #888888;">* * * * *</span></p>
<h3>PHP Cheat Sheet</h3>
<p>Blue Shoes have provided us with an awesome php cheat sheet (online version). <a href="http://www.blueshoes.org/en/developer/php_cheat_sheet" target="_blank">View</a></p>
<p><a href="http://www.blueshoes.org/en/developer/php_cheat_sheet" target="_blank"><img class="alignnone size-full wp-image-3435" title="php1" src="http://www.webdesigndev.com/wp-content/uploads/2009/09/php1.jpg" alt="php1" width="674" height="275" /></a></p>
<p style="text-align: center;"><span style="color: #888888;">* * * * *</span></p>
<h3>CSS Cheat Sheet</h3>
<p>Added Bytes CSS Cheat sheet. Will help web designers make pixel perfect web pages. <a href="http://www.addedbytes.com/cheat-sheets/css-cheat-sheet/" target="_blank">Download</a></p>
<p><a href="http://www.addedbytes.com/cheat-sheets/css-cheat-sheet/" target="_blank"><img class="alignnone size-full wp-image-3436" title="css1" src="http://www.webdesigndev.com/wp-content/uploads/2009/09/css1.jpg" alt="css1" width="674" height="264" /></a></p>
<p style="text-align: center;"><span style="color: #888888;">* * * * *</span></p>
<h3>WordPress Cheat Sheet</h3>
<p>WordPress Candy has got a downloadable WordPress help sheet in .pdf format. <a href="http://wpcandy.com/articles/tutorials/the-wordpress-help-sheet.html" target="_blank">Download</a></p>
<p><a href="http://wpcandy.com/articles/tutorials/the-wordpress-help-sheet.html" target="_blank"><img class="alignnone size-full wp-image-3437" title="wordpress1" src="http://www.webdesigndev.com/wp-content/uploads/2009/09/wordpress1.jpg" alt="wordpress1" width="674" height="278" /></a></p>
<p style="text-align: center;"><span style="color: #888888;">* * * * *</span></p>
<h3>CSS Cheat Sheet</h3>
<p>An online version of a CSS cheat sheet. <a href="http://lesliefranke.com/files/reference/csscheatsheet.html" target="_blank">View</a></p>
<p><a href="http://lesliefranke.com/files/reference/csscheatsheet.html" target="_blank"><img class="alignnone size-full wp-image-3438" title="css2" src="http://www.webdesigndev.com/wp-content/uploads/2009/09/css2.jpg" alt="css2" width="674" height="282" /></a></p>
<p style="text-align: center;"><span style="color: #888888;">* * * * *</span></p>
<h3>PHP Cheat Sheet</h3>
<div id="in_post_ad_middle_1" style="margin: 5px;padding: 0px;"><a href="http://www.wix.com/amazingwebsites/editoreasy?utm_campaign=af_webdesigndev.com&experiment_id=af_webdesigndev.com1middlepostnewLP" target="_blank" rel="nofollow">
<img src="http://www.webdesigndev.com/expressions_website3.gif" width="300" height="250" alt="create a free website" /></a></div><p>Added Bytes have compiled their second version of their PHP cheat sheet. This is really great, and is available for free download in .png and .pdf file formats. <a href="http://www.addedbytes.com/cheat-sheets/php-cheat-sheet/" target="_blank">Download</a></p>
<p><a href="http://www.addedbytes.com/cheat-sheets/php-cheat-sheet/" target="_blank"><img class="alignnone size-full wp-image-3439" title="php2" src="http://www.webdesigndev.com/wp-content/uploads/2009/09/php2.jpg" alt="php2" width="674" height="346" /></a></p>
<p style="text-align: center;"><span style="color: #888888;">* * * * *</span></p>
<h3>jQuery Cheat Sheet</h3>
<p>An online version of a jQuery cheat sheet. This will jog your memory when you forget jQuery code. <a href="http://n-bp.com/jquery_cheat_sheet/v11/" target="_blank">View</a></p>
<p><a href="http://n-bp.com/jquery_cheat_sheet/v11/" target="_blank"><img class="alignnone size-full wp-image-3440" title="jquery1" src="http://www.webdesigndev.com/wp-content/uploads/2009/09/jquery1.jpg" alt="jquery1" width="674" height="265" /></a></p>
<p style="text-align: center;"><span style="color: #888888;">* * * * *</span></p>
<h3>MooTools Cheat Sheet</h3>
<p>Snook has a downloadable MooTools cheat sheet, that is presented beautifully! Its available for free download in .pdf and .png file formats. <a href="http://snook.ca/archives/javascript/mootools_r83_cheatsheet/" target="_blank">Download</a></p>
<p><a href="http://snook.ca/archives/javascript/mootools_r83_cheatsheet/" target="_blank"><img class="alignnone size-full wp-image-3441" title="mootools1" src="http://www.webdesigndev.com/wp-content/uploads/2009/09/mootools1.jpg" alt="mootools1" width="674" height="284" /></a></p>
<p style="text-align: center;"><span style="color: #888888;">* * * * *</span></p>
<h3>Scriptaculous Cheat Sheet</h3>
<p>Slash 7 has provided developers with a really nicely presented scriptaculous field guide. <a href="http://www.slash7.com/articles/2006/4/22/scriptaculous-cheat-sheet-1" target="_blank">Download</a></p>
<p><a href="http://www.slash7.com/articles/2006/4/22/scriptaculous-cheat-sheet-1" target="_blank"><img class="alignnone size-full wp-image-3443" title="scriptaculous1" src="http://www.webdesigndev.com/wp-content/uploads/2009/09/scriptaculous1.jpg" alt="scriptaculous1" width="674" height="263" /></a></p>
<p style="text-align: center;"><span style="color: #888888;">* * * * *</span></p>
<h3>MySQL Cheat Sheet</h3>
<p>Added Bytes have done it again. This time MySQL. <a href="http://www.addedbytes.com/cheat-sheets/mysql-cheat-sheet/" target="_blank">Download</a></p>
<p><a href="http://www.addedbytes.com/cheat-sheets/mysql-cheat-sheet/" target="_blank"><img class="alignnone size-full wp-image-3444" title="mysql1" src="http://www.webdesigndev.com/wp-content/uploads/2009/09/mysql1.jpg" alt="mysql1" width="674" height="316" /></a></p>
<p style="text-align: center;"><span style="color: #888888;">* * * * *</span></p>
<h3>.Net Cheat Sheet</h3>
<p>John Sheehan has over at his blog an awesome downloadable .net cheat sheet. <a href="http://john-sheehan.com/blog/net-cheat-sheets/" target="_blank">Download</a></p>
<p><a href="http://john-sheehan.com/blog/net-cheat-sheets/" target="_blank"><img class="alignnone size-full wp-image-3445" title="net1" src="http://www.webdesigndev.com/wp-content/uploads/2009/09/net1.jpg" alt="net1" width="674" height="292" /></a></p>
<p style="text-align: center;"><span style="color: #888888;">* * * * *</span></p>
<h3>Perl Cheat Sheet</h3>
<p>Here is a really nice online Perl cheat sheet. <a href="http://juerd.nl/site.plp/perlcheat" target="_blank">View</a></p>
<p><a href="http://juerd.nl/site.plp/perlcheat" target="_blank"><img class="alignnone size-full wp-image-3446" title="perl1" src="http://www.webdesigndev.com/wp-content/uploads/2009/09/perl1.jpg" alt="perl1" width="674" height="276" /></a></p>
<p style="text-align: center;"><span style="color: #888888;">* * * * *</span></p>
<h3>Python Cheat Sheet</h3>
<p>Added Bytes hit us with another cheat sheet. Its avaliable to download in .png and .pdf formats. <a href="http://www.addedbytes.com/cheat-sheets/python-cheat-sheet/" target="_blank">Download</a></p>
<p><a href="http://www.addedbytes.com/cheat-sheets/python-cheat-sheet/" target="_blank"><img class="alignnone size-full wp-image-3448" title="python1" src="http://www.webdesigndev.com/wp-content/uploads/2009/09/python1.jpg" alt="python1" width="674" height="281" /></a></p>
<p style="text-align: center;"><span style="color: #888888;">* * * * *</span></p>
<h3>Java Cheat Sheet</h3>
<p>Dream In Code have a really helpful Java cheat sheet (reference sheet). <a href="http://www.dreamincode.net/forums/showtopic17946.htm" target="_blank">Download</a></p>
<p><a href="http://www.dreamincode.net/forums/showtopic17946.htm" target="_blank"><img class="alignnone size-full wp-image-3449" title="java1" src="http://www.webdesigndev.com/wp-content/uploads/2009/09/java1.jpg" alt="java1" width="674" height="293" /></a></p>
<div style='clear:both'></div>]]></content:encoded>
			<wfw:commentRss>http://www.webdesigndev.com/programming/the-ultimate-programming-cheat-sheet-list-for-web-designers-and-developers/feed</wfw:commentRss>
		<slash:comments>41</slash:comments>
		</item>
		<item>
		<title>30 Most Influential People In Programming</title>
		<link>http://www.webdesigndev.com/programming/30-most-influential-people-in-programming</link>
		<comments>http://www.webdesigndev.com/programming/30-most-influential-people-in-programming#comments</comments>
		<pubDate>Wed, 29 Jul 2009 14:15:02 +0000</pubDate>
		<dc:creator>Web Design</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[30 Influential Programmers]]></category>
		<category><![CDATA[Amazing Programmers]]></category>
		<category><![CDATA[Ben Goodger Google Chrome]]></category>
		<category><![CDATA[Brian Kernighan]]></category>
		<category><![CDATA[Co-Founder Of Google]]></category>
		<category><![CDATA[Inspirational Programmers]]></category>
		<category><![CDATA[John Resig]]></category>
		<category><![CDATA[Larry Page]]></category>
		<category><![CDATA[Matt Mullenweg]]></category>
		<category><![CDATA[Sergey Brin]]></category>
		<category><![CDATA[Tim Berners-Lee]]></category>
		<category><![CDATA[Top People In Programming]]></category>
		<category><![CDATA[Top Programmers]]></category>

		<guid isPermaLink="false">http://www.webdesigndev.com/?p=1658</guid>
		<description><![CDATA[Today we want to show off our favorite 30 programmers who have inspired and influenced so many people to become better programmers. Let us know who has inspired you to start and become a better programmer!]]></description>
			<content:encoded><![CDATA[<p>Earlier in the month we released a post called <a href="http://www.webdesigndev.com/roundups/30-most-influential-people-in-web-design" target="_blank">30 Most Influential People In Web Design</a> which showcased our favorite 30 web designers. Today we want to show off our favorite 30 programmers who have inspired and influenced so many people to become better programmers. Let us know who has inspired you to start and become a better programmer!</p>
<h4 style="text-align: center;">* * * 30 People Who Know Lots About Programming * * *</h4>
<table border="0" width="100%">
<tbody>
<tr>
<td colspan="3"><span style="color: #999999;">#1</span></p>
<h6>Tim Berners-Lee</h6>
</td>
</tr>
<tr>
<td width="210"><img class="alignnone size-full wp-image-2039" title="timbernerslee" src="http://www.webdesigndev.com/wp-content/uploads/2009/07/timbernerslee.jpg" alt="timbernerslee" width="200" height="200" /></td>
<td width="10"></td>
<td><strong>Tim Berners-Lee&#8217;s Websites</strong><br />
Wikipedia Page &#8211; <a href="http://en.wikipedia.org/wiki/Tim_Berners-Lee" target="_blank">http://en.wikipedia.org/wiki/Tim_Berners-Lee</a><br />
<span style="color: #ffffff;">-</span><br />
<strong>About Tim Berners-Lee</strong><br />
Tim is the Inventor of HTML (hyper text markup language) and the World Wide Web.<br />
<span style="color: #ffffff;">-</span><br />
In 2007, he was ranked Joint First, alongside Albert Hofmann, in The Telegraph&#8217;s list of 100 greatest living geniuses.</td>
</tr>
<tr>
<td colspan="3">
<hr /></td>
</tr>
<tr>
<td colspan="3"><span style="color: #999999;">#2</span></p>
<h6>Matt Mullenweg</h6>
</td>
</tr>
<tr>
<td width="210"><img class="alignnone size-full wp-image-2051" title="mattmullenweg" src="http://www.webdesigndev.com/wp-content/uploads/2009/07/mattmullenweg.jpg" alt="mattmullenweg" width="200" height="200" /></td>
<td width="10"></td>
<td><strong>Matt Mullenweg&#8217;s Websites</strong><br />
Matt &#8211; <a href="http://ma.tt" target="_blank">http://ma.tt</a><br />
Wordpress &#8211; <a href="http://www.wordpress.com" target="_blank">http://www.wordpress.com</a><br />
Wordpress Blog &#8211; <a href="http://matt.wordpress.com" target="_blank">http://matt.wordpress.com</a><br />
Wikipedia Page &#8211; <a href="http://en.wikipedia.org/wiki/Matt_Mullenweg" target="_blank">http://en.wikipedia.org/wiki/Matt_Mullenweg</a><br />
<span style="color: #ffffff;">-</span><br />
<strong>About Matt Mullenweg</strong><br />
Matt is the founder and creator of the open source WordPress blogging platform.<br />
<span style="color: #ffffff;">-</span><br />
In 2005, he founded the company Automattic, the company behind WordPress and Akismet.</td>
</tr>
<tr>
<td colspan="3">
<hr /></td>
</tr>
<tr>
<td colspan="3"><span style="color: #999999;">#3</span></p>
<h6>Larry Page</h6>
</td>
</tr>
<tr>
<td width="210"><img class="alignnone size-full wp-image-2048" title="larrypage" src="http://www.webdesigndev.com/wp-content/uploads/2009/07/larrypage.jpg" alt="larrypage" width="200" height="200" /></td>
<td width="10"></td>
<td><strong>Larry Page&#8217;s Websites</strong><br />
Google &#8211; <a href="http://www.google.com" target="_blank">http://www.google.com</a><br />
Wikipedia Page &#8211; <a href="http://en.wikipedia.org/wiki/Larry_Page" target="_blank">http://en.wikipedia.org/wiki/Larry_Page</a><br />
<span style="color: #ffffff;">-</span><br />
<strong>About Larry Page</strong><br />
Larry Page is best known for the co-founder of Google, alongside Sergy Brin.<br />
<span style="color: #ffffff;">-</span><br />
He is the 6th richest person in America, and the 27th richest billionaire worldwide according to Forbes.</td>
</tr>
<tr>
<td colspan="3">
<hr /></td>
</tr>
<tr>
<td colspan="3"><span style="color: #999999;">#4</span></p>
<h6>Sergey Brin</h6>
</td>
</tr>
<tr>
<td width="210"><img class="alignnone size-full wp-image-2049" title="sergeybrin" src="http://www.webdesigndev.com/wp-content/uploads/2009/07/sergeybrin.jpg" alt="sergeybrin" width="200" height="200" /></td>
<td width="10"></td>
<td><strong>Sergey Brin&#8217;s Websites</strong><br />
Google &#8211; <a href="http://www.google.com" target="_blank">http://www.google.com</a><br />
Wikipedia Page &#8211; <a href="http://en.wikipedia.org/wiki/Sergey_Brin" target="_blank">http://en.wikipedia.org/wiki/Sergey_Brin</a><br />
<span style="color: #ffffff;">-</span><br />
<strong>About Sergey Brin</strong><br />
Sergey was the co-founder of Google alongside Larry Page.<br />
<span style="color: #ffffff;">-</span><br />
Sergey is ranked the 28th most richest person in the world according to the Forbes top 50 richest billionaires list 2009.</td>
</tr>
<tr>
<td colspan="3">
<hr /></td>
</tr>
<tr>
<td colspan="3"><span style="color: #999999;">#5</span></p>
<h6>Linus Torvalds</h6>
</td>
</tr>
<tr>
<td width="210"><img class="alignnone size-full wp-image-2027" title="linustorvalds" src="http://www.webdesigndev.com/wp-content/uploads/2009/07/linustorvalds.jpg" alt="linustorvalds" width="200" height="200" /></td>
<td width="10"></td>
<td><strong>Linus Torvalds Websites</strong><br />
Linux<br />
Wikipedia Page &#8211; <a href="http://en.wikipedia.org/wiki/Linus_Torvalds" target="_blank">http://en.wikipedia.org/wiki/Linus_Torvalds</a><br />
<span style="color: #ffffff;">-</span><br />
<strong>About Linus Torvalds</strong><br />
Linux is the creator of the extremely popular Linux open source operating system.<br />
<span style="color: #ffffff;">-</span><br />
Today, there are thousands of variations / distributions of Linux and many web servers run on it. Linus sure did create something ecstatic!</td>
</tr>
<tr>
<td colspan="3">
<hr /></td>
</tr>
<tr>
<td colspan="3"><span style="color: #999999;">#6</span></p>
<h6>Dennis Ritchie</h6>
</td>
</tr>
<tr>
<td width="210"><img class="alignnone size-full wp-image-2028" title="dennisritchie" src="http://www.webdesigndev.com/wp-content/uploads/2009/07/dennisritchie.jpg" alt="dennisritchie" width="200" height="200" /></td>
<td width="10"></td>
<td><strong>Dennis Ritchie&#8217;s Websites</strong><br />
1 &#8211; <a href="http://cm.bell-labs.com/who/dmr/" target="_blank">http://cm.bell-labs.com/who/dmr/</a><br />
C Programming Language Book &#8211; <a href="http://en.wikipedia.org/wiki/The_C_Programming_Language_(book)" target="_blank">http://en.wikipedia.org/wiki/The_C_Programming_Language_(book)</a><br />
Wikipedia Page &#8211; <a href="http://en.wikipedia.org/wiki/Dennis_Ritchie" target="_blank">http://en.wikipedia.org/wiki/Dennis_Ritchie</a><br />
<span style="color: #ffffff;">-</span><br />
<strong>About Dennis Ritchie</strong><br />
Dennis is best known for the creator of C and a huge key developer of the UNIX operating system.<br />
<span style="color: #ffffff;">-</span><br />
He was born in 1941, and received the Turing Award in 1983 and the National Medal of Technology in 1998</td>
</tr>
<tr>
<td colspan="3">
<hr /></td>
</tr>
<tr>
<td colspan="3"><span style="color: #999999;">#7</span></p>
<h6>Brian Kernighan</h6>
</td>
</tr>
<tr>
<td width="210"><img class="alignnone size-full wp-image-2029" title="briankernighan" src="http://www.webdesigndev.com/wp-content/uploads/2009/07/briankernighan.jpg" alt="briankernighan" width="200" height="200" /></td>
<td width="10"></td>
<td><strong>Brian Kernighan&#8217;s Websites</strong><br />
Bell Labs &#8211; <a href="http://cm.bell-labs.com/cm/cs/who/bwk/" target="_blank">http://cm.bell-labs.com/cm/cs/who/bwk/</a><br />
C Programming Language Book &#8211; <a href="http://en.wikipedia.org/wiki/The_C_Programming_Language_(book)" target="_blank">http://en.wikipedia.org/wiki/The_C_Programming_Language_(book)</a><br />
Wikipedia Page &#8211; <a href="http://en.wikipedia.org/wiki/Brian_Kernighan" target="_blank">http://en.wikipedia.org/wiki/Brian_Kernighan</a><br />
<span style="color: #ffffff;">-</span><br />
<strong>About Brian Kernighan</strong><br />
Kernigham developed the UNIX operating system along side Ritchie and Thompson.<br />
<span style="color: #ffffff;">-</span><br />
Brian is the author of many UNIX programmes, and is known as the coiner of the expression WYSIWYG (what you see is what you get).</td>
</tr>
<tr>
<td colspan="3">
<hr /></td>
</tr>
<tr>
<td colspan="3"><span style="color: #999999;">#8</span></p>
<h6>Ken Thompson</h6>
</td>
</tr>
<tr>
<td width="210"><img class="alignnone size-full wp-image-2030" title="kenthompson" src="http://www.webdesigndev.com/wp-content/uploads/2009/07/kenthompson.jpg" alt="kenthompson" width="200" height="200" /></td>
<td width="10"></td>
<td><strong>Ken Thompson&#8217;s Websites</strong><br />
Bell Labs &#8211; <a href="http://plan9.bell-labs.com/who/ken/" target="_blank">http://plan9.bell-labs.com/who/ken/</a><br />
Wikipedia Page &#8211; <a href="http://en.wikipedia.org/wiki/Ken_Thompson_(programmer)" target="_blank">http://en.wikipedia.org/wiki/Ken_Thompson_(programmer)</a><br />
<span style="color: #ffffff;">-</span><br />
<strong>About Ken Thompson</strong><br />
Ken is an American pioneer of computer science, and helped create the B programming language (which is now replaced by the C programming language).<br />
<span style="color: #ffffff;">-</span><br />
He created UNIX alongside Kerighan and Ritchie, and helped create the Plan 9 operating systems distributed by Bell Labs.</td>
</tr>
<tr>
<td colspan="3">
<hr /></td>
</tr>
<tr>
<td colspan="3"><span style="color: #999999;">#9</span></p>
<h6>Rasmus Lerdorf</h6>
</td>
</tr>
<tr>
<td width="210"><img class="alignnone size-full wp-image-2037" title="rasmuslerdorf" src="http://www.webdesigndev.com/wp-content/uploads/2009/07/rasmuslerdorf.jpg" alt="rasmuslerdorf" width="200" height="200" /></td>
<td width="10"></td>
<td><strong>Rasmus Lerdorf&#8217;s Websites</strong><br />
Bio &#8211; <a href="http://lerdorf.com/bio.php" target="_blank">http://lerdorf.com/bio.php</a><br />
Toys &#8211; <a href="http://toys.lerdorf.com" target="_blank">http://toys.lerdorf.com</a><br />
PHP &#8211; <a href="http://www.php.net" target="_blank">http://www.php.net</a><br />
Wikipedia &#8211; <a href="http://en.wikipedia.org/wiki/Rasmus_Lerdorf" target="_blank">http://en.wikipedia.org/wiki/Rasmus_Lerdorf</a><br />
<span style="color: #ffffff;">-</span><br />
<strong>About Rasmus Lerdorf</strong><br />
Rasmus Lerdorf is the creator of PHP. He authorised the first 2 versions of PHP, and then contributed in the development of later versions of PHP.<br />
<span style="color: #ffffff;">-</span><br />
PHP runs over 34% of websites online today, so Rasmus created something purely amazing.</td>
</tr>
<tr>
<td colspan="3">
<hr /></td>
</tr>
<tr>
<td colspan="3"><span style="color: #999999;">#10</span></p>
<h6>Jason Fried</h6>
</td>
</tr>
<tr>
<td width="210"><img class="alignnone size-full wp-image-2033" title="jasonfried" src="http://www.webdesigndev.com/wp-content/uploads/2009/07/jasonfried.jpg" alt="jasonfried" width="200" height="200" /></td>
<td width="10"></td>
<td><strong>Jason Fried&#8217;s Websites</strong><br />
37 Signals &#8211; <a href="http://www.37signals.com" target="_blank">http://www.37signals.com</a><br />
Twitter &#8211; <a href="http://twitter.com/jasonfried" target="_blank">http://twitter.com/jasonfried</a><br />
<span style="color: #ffffff;">-</span><br />
<strong>About Jason Fried</strong><br />
Jason Fried is the founder of 37 signals. 37 Signals have some amazing web apps out that thousands of people use daily. The 37 signals blog is very popular, and their job board gets hundreds of jobs posted.<br />
<span style="color: #ffffff;">-</span><br />
Did I forget to mention they also invented ruby on rails?</td>
</tr>
<tr>
<td colspan="3">
<hr /></td>
</tr>
<tr>
<td colspan="3"><span style="color: #999999;">#11</span></p>
<h6>James Gosling</h6>
</td>
</tr>
<tr>
<td width="210"><img class="alignnone size-full wp-image-2040" title="jamesgosling" src="http://www.webdesigndev.com/wp-content/uploads/2009/07/jamesgosling.jpg" alt="jamesgosling" width="200" height="200" /></td>
<td width="10"></td>
<td><strong>James Gosling&#8217;s Websites</strong><br />
James Gosling &#8211; <a href="http://www.jamesgosling.com" target="_blank">http://www.jamesgosling.com</a><br />
Apple Science Profile &#8211; <a href="http://www.apple.com/science/profiles/gosling/" target="_blank">http://www.apple.com/science/profiles/gosling/</a><br />
Wikipedia Page &#8211; <a href="http://en.wikipedia.org/wiki/James_Gosling" target="_blank">http://en.wikipedia.org/wiki/James_Gosling</a><br />
<span style="color: #ffffff;">-</span><br />
<strong>About James Gosling</strong><br />
James A. Gosling, is a famous software developer, best known as the father of the Java programming language.<br />
<span style="color: #ffffff;">-</span><br />
He also has a personal website and a page over at the Apple Science website.</td>
</tr>
<tr>
<td colspan="3">
<hr /></td>
</tr>
<tr>
<td colspan="3"><span style="color: #999999;">#12</span></p>
<h6>Brendan Eich</h6>
</td>
</tr>
<tr>
<td width="210"><img class="alignnone size-full wp-image-2042" title="brendaneich" src="http://www.webdesigndev.com/wp-content/uploads/2009/07/brendaneich.jpg" alt="brendaneich" width="200" height="200" /></td>
<td width="10"></td>
<td><strong>Brendan Eich&#8217;s Websites</strong><br />
Twitter &#8211; <a href="http://twitter.com/brendaneich" target="_blank">http://twitter.com/brendaneich</a><br />
Wikipedia Page &#8211; <a href="http://en.wikipedia.org/wiki/Brendan_Eich" target="_blank">http://en.wikipedia.org/wiki/Brendan_Eich</a><br />
<span style="color: #ffffff;">-</span><br />
<strong>About Brendan Eich</strong><br />
Brendan Eich is a computer programmer and creator of the JavaScript programming language.<br />
<span style="color: #ffffff;">-</span><br />
He is the Chief Technology Officer at the Mozilla Corporation.</td>
</tr>
<tr>
<td colspan="3">
<hr /></td>
</tr>
<tr>
<td colspan="3"><span style="color: #999999;">#13</span></p>
<h6>Carl Sassenrath</h6>
</td>
</tr>
<tr>
<td width="210"><img class="alignnone size-full wp-image-2045" title="carlsassenrath" src="http://www.webdesigndev.com/wp-content/uploads/2009/07/carlsassenrath.jpg" alt="carlsassenrath" width="200" height="200" /></td>
<td width="10"></td>
<td><strong>Carl Sassenrath&#8217;s Websites</strong><br />
Official Site &#8211; <a href="http://www.sassenrath.com" target="_blank">http://www.sassenrath.com</a><br />
Wikipedia Page &#8211; <a href="http://en.wikipedia.org/wiki/Carl_Sassenrath" target="_blank">http://en.wikipedia.org/wiki/Carl_Sassenrath</a><br />
<span style="color: #ffffff;">-</span><br />
<strong>About Carl Sassenrath</strong><br />
Carl Sassenrath is an architect of operating systems and computer languages.<br />
<span style="color: #ffffff;">-</span><br />
He brought multitasking to personal computers in 1985 with the creation of the Amiga Computer operating system kernel, and he is currently the designer of the REBOL computer language as well as the CTO of REBOL Technologies.</td>
</tr>
<tr>
<td colspan="3">
<hr /></td>
</tr>
<tr>
<td colspan="3"><span style="color: #999999;">#14</span></p>
<h6>Bjarne Stroustrup</h6>
</td>
</tr>
<tr>
<td width="210"><img class="alignnone size-full wp-image-2046" title="bjarnestroustrup" src="http://www.webdesigndev.com/wp-content/uploads/2009/07/bjarnestroustrup.jpg" alt="bjarnestroustrup" width="200" height="200" /></td>
<td width="10"></td>
<td><strong>Bjarne Stroustrup&#8217;s Websites</strong><br />
ATT Research &#8211; http://www.research.att.com/~bs/<br />
Wikipedia &#8211; <a href="http://en.wikipedia.org/wiki/Bjarne_Stroustrup" target="_blank">http://en.wikipedia.org/wiki/Bjarne_Stroustrup</a><br />
<span style="color: #ffffff;">-</span><br />
<strong>About Bjarne Stroustrup</strong><br />
Bjarne Stroustrup is a computer scientist most notable for developing the C++ programming language.<br />
<span style="color: #ffffff;">-</span><br />
He is currently Professor and holder of the College of Engineering Chair in Computer Science at the Texas A&amp;M University.</td>
</tr>
<tr>
<td colspan="3">
<hr /></td>
</tr>
<tr>
<td colspan="3"><span style="color: #999999;">#15</span></p>
<h6>Bram Cohen</h6>
</td>
</tr>
<tr>
<td width="210"><img class="alignnone size-full wp-image-2050" title="bramcohen" src="http://www.webdesigndev.com/wp-content/uploads/2009/07/bramcohen.jpg" alt="bramcohen" width="200" height="200" /></td>
<td width="10"></td>
<td><strong>Bram Cohen&#8217;s Websites</strong><br />
Bram Cohen &#8211; <a href="http://bramcohen.com" target="_blank">http://bramcohen.com</a><br />
Wikipedia Page &#8211; <a href="http://en.wikipedia.org/wiki/Bram_Cohen" target="_blank">http://en.wikipedia.org/wiki/Bram_Cohen</a><br />
<span style="color: #ffffff;">-</span><br />
<strong>About Bram Cohen</strong><br />
Bram Cohen is an American computer programmer, best known as the author of the peer-to-peer (P2P) BitTorrent protocol.<br />
<span style="color: #ffffff;">-</span><br />
He also created the first file sharing program to use the protocol, also known as BitTorrent.</td>
</tr>
<tr>
<td colspan="3">
<hr /></td>
</tr>
<tr>
<td colspan="3"><span style="color: #999999;">#16</span></p>
<h6>Alan Cooper</h6>
</td>
</tr>
<tr>
<td width="210"><img class="alignnone size-full wp-image-2054" title="alancooper" src="http://www.webdesigndev.com/wp-content/uploads/2009/07/alancooper.jpg" alt="alancooper" width="200" height="200" /></td>
<td width="10"></td>
<td><strong>Alan Cooper&#8217;s Websites</strong><br />
Cooper &#8211; <a href="http://www.cooper.com/alan/father_of_vb.html" target="_blank">http://www.cooper.com/alan/father_of_vb.html</a><br />
Wikipedia Page &#8211; <a href="http://en.wikipedia.org/wiki/Alan_Cooper" target="_blank">http://en.wikipedia.org/wiki/Alan_Cooper</a><br />
<span style="color: #ffffff;">-</span><br />
<strong>About Alan Cooper</strong><br />
Cooper is sometimes called &#8220;the father of Visual Basic&#8221;, although much of work on Visual Basic was done by Microsoft&#8217;s internal development group.<br />
<span style="color: #ffffff;">-</span><br />
Cooper was the leading force behind VB 1.0 and pioneered the use of an IDE to create a GUI via wrapped calls to system routines in the API.</td>
</tr>
<tr>
<td colspan="3">
<hr /></td>
</tr>
<tr>
<td colspan="3"><span style="color: #999999;">#17</span></p>
<h6>Larry Wall</h6>
</td>
</tr>
<tr>
<td width="210"><img class="alignnone size-full wp-image-2055" title="larrywall" src="http://www.webdesigndev.com/wp-content/uploads/2009/07/larrywall.jpg" alt="larrywall" width="200" height="200" /></td>
<td width="10"></td>
<td><strong>Larry Wall&#8217;s Websites</strong><br />
Perl &#8211; <a href="http://www.perl.org" target="_blank">http://www.perl.org</a><br />
Wall &#8211; <a href="http://www.wall.org/~larry/" target="_blank">http://www.wall.org/~larry/</a><br />
Wikipedia Page &#8211; <a href="http://en.wikipedia.org/wiki/Larry_Wall" target="_blank">http://en.wikipedia.org/wiki/Larry_Wall</a><br />
<span style="color: #ffffff;">-</span><br />
<strong>About Larry Wall</strong><br />
Larry Wall s a programmer and author, most widely known for his creation of the Perl programming language in 1987.<br />
<span style="color: #ffffff;">-</span><br />
He is the co-author of Programming Perl, which is the definitive resource for Perl programmers.</td>
</tr>
<tr>
<td colspan="3">
<hr /></td>
</tr>
<tr>
<td colspan="3"><span style="color: #999999;">#18</span></p>
<h6>Edsger Wybe Dijkstra</h6>
</td>
</tr>
<tr>
<td width="210"><img class="alignnone size-full wp-image-2038" title="edsgerwdijkstra" src="http://www.webdesigndev.com/wp-content/uploads/2009/07/edsgerwdijkstra.jpg" alt="edsgerwdijkstra" width="200" height="200" /></td>
<td width="10"></td>
<td><strong>Edsger Wybe Dijkstra&#8217;s Websites</strong><br />
Wikipedia Page &#8211; <a href="http://en.wikipedia.org/wiki/Edsger_Dijkstra" target="_blank">http://en.wikipedia.org/wiki/Edsger_Dijkstra</a><br />
Dijkstra&#8217;s Algorithm &#8211; <a href="http://en.wikipedia.org/wiki/Dijkstra%27s_algorithm" target="_blank">http://en.wikipedia.org/wiki/Dijkstra%27s_algorithm</a><br />
<span style="color: #ffffff;">-</span><br />
<strong>About Edsger Wybe Dijkstra</strong><br />
Edsger Wybe Dijkstra was a Dutch computer scientist.<br />
<span style="color: #ffffff;">-</span><br />
He received the 1972 Turing Award for fundamental contributions to developing programming languages, and was the Schlumberger Centennial Chair of Computer Sciences at The University of Texas at Austin from 1984 until 2000.</td>
</tr>
<tr>
<td colspan="3">
<hr /></td>
</tr>
<tr>
<td colspan="3"><span style="color: #999999;">#19</span></p>
<h6>John Resig</h6>
</td>
</tr>
<tr>
<td width="210"><img class="alignnone size-full wp-image-2024" title="johnresig" src="http://www.webdesigndev.com/wp-content/uploads/2009/07/johnresig.jpg" alt="johnresig" width="200" height="200" /></td>
<td width="10"></td>
<td><strong>John Resig&#8217;s Websites</strong><br />
eJohn &#8211; <a href="http://ejohn.org" target="_blank">http://ejohn.org</a><br />
jQuery &#8211; <a href="http://www.jquery.com" target="_blank">http://www.jquery.com</a><br />
Twitter &#8211; <a href="http://twitter.com/jeresig" target="_blank">http://twitter.com/jeresig</a><br />
<span style="color: #ffffff;">-</span><br />
<strong>About John Resig</strong><br />
John is the creator of the very popular javascript library jQuery. He also is a javascript programmer, blogger and author. Oh and did i forget to mention he works for Mozilla?<br />
<span style="color: #ffffff;">-</span><br />
He is currently working on his second book &#8220;Secrets of the javascript ninja&#8221;.</td>
</tr>
<tr>
<td colspan="3">
<hr /></td>
</tr>
<tr>
<td colspan="3"><span style="color: #999999;">#20</span></p>
<h6>Guido van Rossum</h6>
</td>
</tr>
<tr>
<td width="210"><img class="alignnone size-full wp-image-2025" title="guidovanrossum" src="http://www.webdesigndev.com/wp-content/uploads/2009/07/guidovanrossum.jpg" alt="guidovanrossum" width="200" height="200" /></td>
<td width="10"></td>
<td><strong>Guido van Rossum&#8217;s Websites</strong><br />
Python &#8211; <a href="http://python.org/~guido/" target="_blank">http://python.org/~guido/</a><br />
Twitter &#8211; <a href="http://twitter.com/gvanrossum" target="_blank">http://twitter.com/gvanrossum</a><br />
<span style="color: #ffffff;">-</span><br />
<strong>About Guido van Rossum</strong><br />
Guido is the author the the python programming language. He joined google back in 2005, and he loves the fact he gets to spend half the time there on python.<br />
<span style="color: #ffffff;">-</span><br />
In June 2003, he was the finalist in the category IT Software (Individual) of the World Technology Network Awards.</td>
</tr>
<tr>
<td colspan="3">
<hr /></td>
</tr>
<tr>
<td colspan="3"><span style="color: #999999;">#21</span></p>
<h6>Douglas Crockford</h6>
</td>
</tr>
<tr>
<td width="210"><img class="alignnone size-full wp-image-2026" title="douglascrockford" src="http://www.webdesigndev.com/wp-content/uploads/2009/07/douglascrockford.jpg" alt="douglascrockford" width="200" height="200" /></td>
<td width="10"></td>
<td><strong>Douglas Crockford&#8217;s Websites</strong><br />
Crockford &#8211; <a href="http://www.crockford.com" target="_blank">http://www.crockford.com</a><br />
Wikipedia Page &#8211; <a href="http://en.wikipedia.org/wiki/Douglas_Crockford" target="_blank">http://en.wikipedia.org/wiki/Douglas_Crockford</a><br />
<span style="color: #ffffff;">-</span><br />
<strong>About Douglas Crockford</strong><br />
Douglas Crockford is a senior JavaScript Architect at the most popular websites in the world, Yahoo! He is well known for his work in introducing JavaScript Object Notation (JSON).<br />
<span style="color: #ffffff;">-</span><br />
He has also worked for companies such as Atari, Luciasfilm and Paramount.</td>
</tr>
<tr>
<td colspan="3">
<hr /></td>
</tr>
<tr>
<td colspan="3"><span style="color: #999999;">#22</span></p>
<h6>Miguel de Icaza</h6>
</td>
</tr>
<tr>
<td width="210"><img class="alignnone size-full wp-image-2031" title="migueldeIcaza" src="http://www.webdesigndev.com/wp-content/uploads/2009/07/migueldeIcaza.jpg" alt="migueldeIcaza" width="200" height="200" /></td>
<td width="10"></td>
<td><strong>Miguel de Icaza&#8217;s Websites</strong><br />
Blog &#8211; <a href="http://tirania.org/blog/" target="_blank">http://tirania.org/blog/</a><br />
Wikipedia Page &#8211; <a href="http://en.wikipedia.org/wiki/Miguel_de_Icaza" target="_blank">http://en.wikipedia.org/wiki/Miguel_de_Icaza</a><br />
<span style="color: #ffffff;">-</span><br />
<strong>About Miguel de Icaza</strong><br />
Miguel is a Mexican free software programmer, best known for starting the GNOME and Mono projects.<br />
<span style="color: #ffffff;">-</span><br />
He came from a family of scientists in which his father was a physicist and his mother a biologist. Miguel started to write free software in 1992.</td>
</tr>
<tr>
<td colspan="3">
<hr /></td>
</tr>
<tr>
<td colspan="3"><span style="color: #999999;">#23</span></p>
<h6>Jeff Atwood</h6>
</td>
</tr>
<tr>
<td width="210"><img class="alignnone size-full wp-image-2032" title="jeffatwood" src="http://www.webdesigndev.com/wp-content/uploads/2009/07/jeffatwood.jpg" alt="jeffatwood" width="200" height="200" /></td>
<td width="10"></td>
<td><strong>Jeff Atwood&#8217;s Websites</strong><br />
Coding Horror &#8211; <a href="http://www.codinghorror.com/blog/" target="_blank">http://www.codinghorror.com/blog/</a><br />
Twitter &#8211; <a href="http://twitter.com/codinghorror" target="_blank">http://twitter.com/codinghorror</a><br />
<span style="color: #ffffff;">-</span><br />
<strong>About Jeff Atwood</strong><br />
Jeff blogs about coding on CodingHorror. The blog is extremely popular, and has to date over 130,000 RSS Subscribers.<br />
<span style="color: #ffffff;">-</span><br />
The blog features a very simplistic design, but obviously the content is extremely effective.</td>
</tr>
<tr>
<td colspan="3">
<hr /></td>
</tr>
<tr>
<td colspan="3"><span style="color: #999999;">#24</span></p>
<h6>Kathy Sierra</h6>
</td>
</tr>
<tr>
<td width="210"><img class="alignnone size-full wp-image-2034" title="kathysierra" src="http://www.webdesigndev.com/wp-content/uploads/2009/07/kathysierra.jpg" alt="kathysierra" width="200" height="200" /></td>
<td width="10"></td>
<td><strong>Kathy Sierra&#8217;s Websites</strong><br />
Twitter &#8211; <a href="http://twitter.com/kathysierra" target="_blank">http://twitter.com/kathysierra</a><br />
Wikipedia Page &#8211; <a href="http://en.wikipedia.org/wiki/Kathy_Sierra" target="_blank">http://en.wikipedia.org/wiki/Kathy_Sierra</a><br />
<span style="color: #ffffff;">-</span><br />
<strong>About Kathy Sierra</strong><br />
Kathy is a programming instructor and game developer.<br />
<span style="color: #ffffff;">-</span><br />
She co-created the Head first series of books to do with computing.</td>
</tr>
<tr>
<td colspan="3">
<hr /></td>
</tr>
<tr>
<td colspan="3"><span style="color: #999999;">#25</span></p>
<h6>Scott Hanselman</h6>
</td>
</tr>
<tr>
<td width="210"><img class="alignnone size-full wp-image-2035" title="scotthanselman" src="http://www.webdesigndev.com/wp-content/uploads/2009/07/scotthanselman.jpg" alt="scotthanselman" width="200" height="200" /></td>
<td width="10"></td>
<td><strong>Scott Hanselman&#8217;s Websites</strong><br />
Hanselman &#8211; <a href="http://www.hanselman.com" target="_blank">http://www.hanselman.com</a><br />
Twitter &#8211; <a href="http://twitter.com/shanselman" target="_blank">http://twitter.com/shanselman</a><br />
<span style="color: #ffffff;">-</span><br />
<strong>About Scott Hanselman</strong><br />
Scott is the principal program manager at Microsoft&#8217;s developer division. He often speaks about software development at many Microsoft events.<br />
<span style="color: #ffffff;">-</span><br />
He also publishes a blog and a very popular podcast around the technology lines.</td>
</tr>
<tr>
<td colspan="3">
<hr /></td>
</tr>
<tr>
<td colspan="3"><span style="color: #999999;">#26</span></p>
<h6>Steven Frank</h6>
</td>
</tr>
<tr>
<td width="210"><img class="alignnone size-full wp-image-2036" title="stevenfrank" src="http://www.webdesigndev.com/wp-content/uploads/2009/07/stevenfrank.jpg" alt="stevenfrank" width="200" height="200" /></td>
<td width="10"></td>
<td><strong>Steven Frank&#8217;s Websites</strong><br />
Panic &#8211; <a href="http://www.panic.com" target="_blank">http://www.panic.com</a><br />
Steven Frank &#8211; <a href="http://stevenf.tumblr.com" target="_blank">http://stevenf.tumblr.com</a><br />
Twitter &#8211; <a href="http://twitter.com/stevenf" target="_blank">http://twitter.com/stevenf</a><br />
<span style="color: #ffffff;">-</span><br />
<strong>About Steven Frank</strong><br />
Steven Frank is the co-founder of the extremely popular mac software company, &#8220;Panic&#8221;.<br />
<span style="color: #ffffff;">-</span><br />
Panic make many amazing Mac applications. I would recommend buying more a less every one.</td>
</tr>
<tr>
<td colspan="3">
<hr /></td>
</tr>
<tr>
<td colspan="3"><span style="color: #999999;">#27</span></p>
<h6>Ben Goodger</h6>
</td>
</tr>
<tr>
<td width="210"><img class="alignnone size-full wp-image-2041" title="bengoodger" src="http://www.webdesigndev.com/wp-content/uploads/2009/07/bengoodger.jpg" alt="bengoodger" width="200" height="200" /></td>
<td width="10"></td>
<td><strong> Websites</strong><br />
Ben Goodger Blog &#8211; <a href="http://www.bengoodger.com" target="_blank">http://www.bengoodger.com</a><br />
Wikipedia Page &#8211; <a href="http://en.wikipedia.org/wiki/Ben_Goodger" target="_blank">http://en.wikipedia.org/wiki/Ben_Goodger</a><br />
<span style="color: #ffffff;">-</span><br />
<strong>About </strong><br />
Ben Goodger is a former employee of Netscape Communications Corporation and the Mozilla Foundation and former lead developer of the Firefox web browser.<br />
<span style="color: #ffffff;">-</span><br />
He is currently working for Google Inc., where he leads the Google Chrome project.</td>
</tr>
<tr>
<td colspan="3">
<hr /></td>
</tr>
<tr>
<td colspan="3"><span style="color: #999999;">#28</span></p>
<h6>Dion Almaer</h6>
</td>
</tr>
<tr>
<td width="210"><img class="alignnone size-full wp-image-2043" title="dionalmaer" src="http://www.webdesigndev.com/wp-content/uploads/2009/07/dionalmaer.jpg" alt="dionalmaer" width="200" height="200" /></td>
<td width="10"></td>
<td><strong>Dion Almaer&#8217;s Websites</strong><br />
Ajaxian &#8211; <a href="http://ajaxian.com" target="_blank">http://ajaxian.com</a><br />
Almaer &#8211; <a href="http://almaer.com/blog/" target="_blank">http://almaer.com/blog/</a><br />
Vimeo Profile &#8211; <a href="http://www.vimeo.com/dion" target="_blank">http://www.vimeo.com/dion</a><br />
Twitter &#8211; <a href="http://twitter.com/dalmaer" target="_blank">http://twitter.com/dalmaer</a><br />
<span style="color: #ffffff;">-</span><br />
<strong>About Dion Almaer</strong><br />
Dion is the co-founder of AjaxIan.com. AjaxIan teaches people about the popular javascript language, Ajax.<br />
<span style="color: #ffffff;">-</span><br />
There are also many other writers at AjaxIan.com. There are hundreds of articles, and its the ultimate Ajax resource for developers.</td>
</tr>
<tr>
<td colspan="3">
<hr /></td>
</tr>
<tr>
<td colspan="3"><span style="color: #999999;">#29</span></p>
<h6>Craig Newmark</h6>
</td>
</tr>
<tr>
<td width="210"><img class="alignnone size-full wp-image-2052" title="craignewmark" src="http://www.webdesigndev.com/wp-content/uploads/2009/07/craignewmark.jpg" alt="craignewmark" width="200" height="200" /></td>
<td width="10"></td>
<td><strong>Craig Newmark&#8217;s Websites</strong><br />
Craigslist &#8211; <a href="http://www.craigslist.org" target="_blank">http://www.craigslist.org</a><br />
Wikipedia Page &#8211; <a href="http://en.wikipedia.org/wiki/Craig_Newmark" target="_blank">http://en.wikipedia.org/wiki/Craig_Newmark</a><br />
<span style="color: #ffffff;">-</span><br />
<strong>About Craig Newmark</strong><br />
Craig was born in 1952, and is the founder of the popular website Craigslist.com.<br />
<span style="color: #ffffff;">-</span><br />
Craig developed Craigslist from the ground up, and today is used worldwide by thousands of people. He is an inspiration to all.</td>
</tr>
<tr>
<td colspan="3">
<hr /></td>
</tr>
<tr>
<td colspan="3"><span style="color: #999999;">#30</span></p>
<h6>John D. Carmack</h6>
</td>
</tr>
<tr>
<td width="210"><img class="alignnone size-full wp-image-2053" title="johncarmack" src="http://www.webdesigndev.com/wp-content/uploads/2009/07/johncarmack.jpg" alt="johncarmack" width="200" height="200" /></td>
<td width="10"></td>
<td><strong>John D. Carmack&#8217;s Websites</strong><br />
Armadillo Aerospace &#8211; <a href="http://www.armadilloaerospace.com" target="_blank">http://www.armadilloaerospace.com</a><br />
Wikipedia Page &#8211; <a href="http://en.wikipedia.org/wiki/John_Carmack" target="_blank">http://en.wikipedia.org/wiki/John_Carmack</a><br />
<span style="color: #ffffff;">-</span><br />
<strong>About John D. Carmack</strong><br />
John D. Carmack is an American game programmer, and the co-founder of id Software.<br />
<span style="color: #ffffff;">-</span><br />
Carmack was the lead programmer of the id computer games Commander Keen, Wolfenstein 3D, Doom, Quake, and the sequels to Doom, Quake and Wolfenstein.</td>
</tr>
</tbody>
</table>
<div style='clear:both'></div>]]></content:encoded>
			<wfw:commentRss>http://www.webdesigndev.com/programming/30-most-influential-people-in-programming/feed</wfw:commentRss>
		<slash:comments>112</slash:comments>
		</item>
		<item>
		<title>How To Display Your Last Tweet Using Javascript And The Twitter API</title>
		<link>http://www.webdesigndev.com/programming/how-to-display-your-last-tweet-using-javascript-and-the-twitter-api</link>
		<comments>http://www.webdesigndev.com/programming/how-to-display-your-last-tweet-using-javascript-and-the-twitter-api#comments</comments>
		<pubDate>Fri, 12 Jun 2009 15:41:20 +0000</pubDate>
		<dc:creator>Web Design</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[Connect To Twitter User Timeline]]></category>
		<category><![CDATA[Connecting To Twitter API]]></category>
		<category><![CDATA[Display Last Tweet]]></category>
		<category><![CDATA[Display Last Tweet Using Javascript]]></category>
		<category><![CDATA[Make Your Own Twitter Widget]]></category>
		<category><![CDATA[Twitter API]]></category>
		<category><![CDATA[Twitter Javascript]]></category>

		<guid isPermaLink="false">http://www.webdesigndev.com/?p=995</guid>
		<description><![CDATA[This tutorial will teach you how to display your last twitter tweet, without the use of any plugins. Infact it only uses 2 lines of JavaScript, and 1 line of HTML.]]></description>
			<content:encoded><![CDATA[<p>The other day I was working on a small project of mine, and it doesn&#8217;t use a content management system such as WordPress or Joomla. It&#8217;s just all html and css to style the pages. So I wanted to display my last tweet from twitter, and jazz it up using css. Now when people usually want to display their last tweet, and are running wordpress, they usually just install a plugin to do it for them.</p>
<p>Now remember my site is only HTML and CSS. So I looked into the Twitter API, and found a way you can display your last tweet using the twitterCallback javascript function. I have summed it up in a few easy to follow steps. And its hardly any code at all! (icon by <a href="http://dryicons.com/free-icons/preview/coquette-icons-set/" target="_blank">dryicons</a>)</p>
<h3>Step 1:</h3>
<p>First, decide where about on your page you want your last tweet to display. Then paste in this line of HTML.</p>
<p>[html]&lt;div id=&#8221;twitter_update_list&#8221;&gt;<br />
&lt;/div&gt;[/html]</p>
<h3>Step 2:</h3>
<p>Next you need to put these 2 lines of JavaScript below the code in step 1. On the 2nd line of code where it says <strong>12345.json</strong>, you need to replace <strong>12345</strong> with your twitter username. So mine would be <strong>webdesigndev.json</strong>.</p>
<p>[js]&lt;script type=&#8221;text/javascript&#8221; src=&#8221;http://twitter.com/javascripts/blogger.js&#8221;&gt;<br />
&lt;/script&gt;<br />
&lt;script type=&#8221;text/javascript&#8221; src=&#8221;http://twitter.com/statuses/user_timeline/12345.json?callback=twitterCallback2&amp;count=1&#8243;&gt;<br />
&lt;/script&gt;[/js]</p>
<p>Now you will have a plain text version of your last tweet being displayed. So simple! Continue reading below to find out how to style your little twitter widget using CSS, and even customize it by playing around with some of the Twitter API Parameters.</p>
<h3>(optional styling)</h3>
<p>Of course all webdesigners should perform some sort of styling to their last tweet, to jazz it up a little. At the moment your last tweet is displayed as a bullet list. To remove this and make it pure plain text, put this in your CSS Stylesheet.</p>
<p>[css]#twitter_update_list li {<br />
list-style-type: none;<br />
}[/css]</p>
<div id="in_post_ad_middle_1" style="margin: 5px;padding: 0px;"><a href="http://www.wix.com/amazingwebsites/editoreasy?utm_campaign=af_webdesigndev.com&experiment_id=af_webdesigndev.com1middlepostnewLP" target="_blank" rel="nofollow">
<img src="http://www.webdesigndev.com/expressions_website3.gif" width="300" height="250" alt="create a free website" /></a></div><p>Then, you can change the colour of the main tweet text. If I wanted to make the text orange and then background black, i would put&#8230;</p>
<p>[css]#twitter_update_list span {<br />
color: #FFCC00;<br />
background: #000000;<br />
}[/css]</p>
<p>Then you can style the links within your last tweet, and style when happens when you hover over them. An example would be the following.</p>
<p>[css]#twitter_update_list span a {<br />
display: inline;<br />
color: #000000;<br />
}<br />
#twitter_update_list span a:hover {<br />
text-decoration: underline;<br />
color: #666666;<br />
}[/css]</p>
<p>I have styled mine using CSS, and come out with something that looks like this&#8230;</p>
<p><img class="alignnone size-full wp-image-1113" title="twit" src="http://www.webdesigndev.com/wp-content/uploads/2009/06/twit.png" alt="twit" width="349" height="64" /></p>
<p>You can play around with the CSS, and what you want your widget to look like.</p>
<h3>(optional customization)</h3>
<p>Twitters API is very big. You can play around with many of the different settings for the twitterCallback function. You can view the api documentation over at this link.</p>
<p>http://apiwiki.twitter.com/Twitter-REST-API-Method%3A-statuses-user_timeline</p>
<p>Enjoy!</p>
<div style='clear:both'></div>]]></content:encoded>
			<wfw:commentRss>http://www.webdesigndev.com/programming/how-to-display-your-last-tweet-using-javascript-and-the-twitter-api/feed</wfw:commentRss>
		<slash:comments>113</slash:comments>
		</item>
		<item>
		<title>15 Top PHP Coding Tutorials, Tips and Tricks</title>
		<link>http://www.webdesigndev.com/programming/15-top-php-coding-tutorials-tips-and-tricks</link>
		<comments>http://www.webdesigndev.com/programming/15-top-php-coding-tutorials-tips-and-tricks#comments</comments>
		<pubDate>Mon, 25 May 2009 14:37:20 +0000</pubDate>
		<dc:creator>Web Design</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[Development With PHP]]></category>
		<category><![CDATA[List Of PHP Tutorials]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[PHP Development]]></category>
		<category><![CDATA[PHP Development Tutorials]]></category>
		<category><![CDATA[PHP Password Utility]]></category>
		<category><![CDATA[PHP Tips And Tricks]]></category>
		<category><![CDATA[Top Coding Tutorials]]></category>
		<category><![CDATA[Top PHP Tutorials]]></category>
		<category><![CDATA[Useful PHP Tutorials]]></category>

		<guid isPermaLink="false">http://www.webdesigndev.com/?p=735</guid>
		<description><![CDATA[PHP is used in more or less on most websites on the internet. I have compiled a list of 15 top useful PHP tips / tricks and tutorials. These should keep you busy for a while. They all can come in handy sometime when you are coding.]]></description>
			<content:encoded><![CDATA[<p>PHP is used in more a less most websites on the internet. I have compiled a list of 15 top useful PHP tips / tricks and tutorials. These should keep you busy for a while. They all can come in handy sometime when you are coding.</p>
<h3>Limit Characters From Your Text</h3>
<p>In this tutorial you will learn how to limit characters from a sentence without cutting words up. This is a really useful tutorial.<a href="http://www.jooria.com/Limit-Characters-From-Your-Text-a139.html" target="_blank"></p>
<p>http://www.jooria.com/Limit-Characters-From-Your-Text-a139.html</a></p>
<p><img class="alignnone size-full wp-image-770" title="120" src="http://www.webdesigndev.com/wp-content/uploads/2009/05/120.jpg" alt="120" width="542" height="100" /></p>
<h3>Create An Advanced Password Recovery Utility</h3>
<p>Learn how to create a very advanced password recovery tool using PHP. This can be useful, and you can implement it in to your website login system.<a href="http://net.tutsplus.com/tutorials/php/creating-an-advanced-password-recovery-utility/" target="_blank"></p>
<p>http://net.tutsplus.com/tutorials/php/creating-an-advanced-password-recovery-utility/</a></p>
<h3>Login To Analytics API Using PHP</h3>
<p>Great little tip / trick that teaches you how to login to the Google Analytics API using ClientLogin.<a href="http://www.electrictoolbox.com/google-analytics-login-php-curl-username-password/" target="_blank"></p>
<p>http://www.electrictoolbox.com/google-analytics-login-php-curl-username-password/</a></p>
<h3>Error 404 Pages With PHP Auto-Mailer</h3>
<p>An awesome tutorial for creating a custom error 404 page.<a href="http://net.tutsplus.com/tutorials/php/404403-website-error-pages-with-php-auto-mailer/" target="_blank"></p>
<p>http://net.tutsplus.com/tutorials/php/404403-website-error-pages-with-php-auto-mailer/</a></p>
<h3>Resession (Session Manager)</h3>
<p>Check this out. Its a really nifty session manager that you can integrate with your website.<a href="http://www.milesj.me/resources/script/session-manager" target="_blank"></p>
<p>http://www.milesj.me/resources/script/session-manager</a></p>
<p><img class="alignnone size-full wp-image-771" title="219" src="http://www.webdesigndev.com/wp-content/uploads/2009/05/219.jpg" alt="219" width="542" height="100" /></p>
<h3>Web Contact Forms With PHP</h3>
<p>Learn how to create web radio buttons, and checkboxes using PHP.</p>
<h3>Simple And Minimalistic User System</h3>
<p>This tutorial will teach you how to create a minimalistic user system for a website from scratch.</p>
<p>http://rmb-scripting.com/tutorials.php?tutorial&#038;tid=371</p>
<h3>Simple PHP Class For Parsing Markup</h3>
<div id="in_post_ad_middle_1" style="margin: 5px;padding: 0px;"><a href="http://www.wix.com/amazingwebsites/editoreasy?utm_campaign=af_webdesigndev.com&experiment_id=af_webdesigndev.com1middlepostnewLP" target="_blank" rel="nofollow">
<img src="http://www.webdesigndev.com/expressions_website3.gif" width="300" height="250" alt="create a free website" /></a></div><p>This tutorial will teach you how to make a simple class that wraps PHP&#8217;s various regex functions in a fluent interface.<a href="http://www.prodevtips.com/2009/03/26/simple-php-class-for-parsing-markup/" target="_blank"></p>
<p>http://www.prodevtips.com/2009/03/26/simple-php-class-for-parsing-markup/</a></p>
<h3>PHP Based Address Book Using MySQL</h3>
<p>Learn how to create a PHP address book and store all the addresses in a MySQL database.<a href="http://hubpages.com/hub/Simple-PHP-web-based-address-book-using-MySql" target="_blank"></p>
<p>http://hubpages.com/hub/Simple-PHP-web-based-address-book-using-MySql</a></p>
<h3>Single Signon Using OpenID, PHP and MySQL</h3>
<p>Enable your website / web application to accept OpenID as a way of login.<a href="http://www.webdesignermag.co.uk/tutorials/enabling-single-signon-using-open-id-login-php-and-mysql/" target="_blank"></p>
<p>http://www.webdesignermag.co.uk/tutorials/enabling-single-signon-using-open-id-login-php-and-mysql/</a></p>
<p><img class="alignnone size-full wp-image-772" title="37" src="http://www.webdesigndev.com/wp-content/uploads/2009/05/37.jpg" alt="37" width="542" height="100" /></p>
<h3>Creating a File &amp; Downloading It Using PHP</h3>
<p>In this tutorial, you will learn how to create a file using PHP, and then enable your users to download it.<a href="http://pfmashup.tumblr.com/post/90347622/creatingfiledownloadingitinphp" target="_blank"></p>
<p>http://pfmashup.tumblr.com/post/90347622/creatingfiledownloadingitinphp</a></p>
<h3>Creating A Shopping Cart Using PHP</h3>
<p>This tutorial will teach you how to create a simple and easy to use shopping cart to use on your website. There are 3 parts, enjoy!<a href="http://www.insanelyart.com/tutorial.php?id=168" target="_blank"><br />
Part 1</a> / <a href="http://www.insanelyart.com/tutorial.php?id=170" target="_blank">Part 2</a> / <a href="http://www.insanelyart.com/tutorial.php?id=172" target="_blank">Part 3</a></p>
<h3>Zero Fill a Number</h3>
<p>Learn how to make a number a certain amount of characters. Such as 5 you could make to 005.<a href="http://www.wlscripting.com/tutorial/55" target="_blank"></p>
<p>http://www.wlscripting.com/tutorial/55</a></p>
<h3>Make a Unique Hits Counter</h3>
<p>This tutorial will teach you how to create a unique hits counter, and keep the values permanently.</p>
<p>http://designkai.com/unique-hits-counter/</p>
<h3>Tutorial Management System</h3>
<p>Learn in 5 parts, how to create a fully functional tutorial management system, including comments!<br />
Part 1 / Part 2 / Part 3 / Part 4 / Part 5</p>
<p><img class="alignnone size-full wp-image-773" title="47" src="http://www.webdesigndev.com/wp-content/uploads/2009/05/47.jpg" alt="47" width="542" height="100" /></p>
<div style='clear:both'></div>]]></content:encoded>
			<wfw:commentRss>http://www.webdesigndev.com/programming/15-top-php-coding-tutorials-tips-and-tricks/feed</wfw:commentRss>
		<slash:comments>38</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk: basic (Feed is rejected)
Page Caching using disk: basic
Object Caching 934/1047 objects using disk: basic

Served from: www.webdesigndev.com @ 2012-02-12 16:01:31 -->
