<?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>Programming Blog &#187; Chris Coyier</title>
	<atom:link href="http://www.neurosoftware.ro/programming-blog/tag/chris-coyier/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.neurosoftware.ro/programming-blog</link>
	<description>Web development , php , ajax , symfony, framework, zend</description>
	<lastBuildDate>Thu, 18 Aug 2011 08:11:19 +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>Using jQuery to Style Design Elements: 20 Impressive Plugins</title>
		<link>http://www.neurosoftware.ro/programming-blog/facebook-web-design/web-resources/using-jquery-to-style-design-elements-20-impressive-plugins/</link>
		<comments>http://www.neurosoftware.ro/programming-blog/facebook-web-design/web-resources/using-jquery-to-style-design-elements-20-impressive-plugins/#comments</comments>
		<pubDate>Sun, 10 Jan 2010 13:21:27 +0000</pubDate>
		<dc:creator>Facebook-Web-Design</dc:creator>
				<category><![CDATA[web resources]]></category>
		<category><![CDATA[anchor links]]></category>
		<category><![CDATA[Chris Coyier]]></category>
		<category><![CDATA[class]]></category>
		<category><![CDATA[design elements]]></category>
		<category><![CDATA[div style]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[quot]]></category>
		<category><![CDATA[Script]]></category>
		<category><![CDATA[span]]></category>
		<category><![CDATA[span class]]></category>
		<category><![CDATA[styling design]]></category>

		<guid isPermaLink="false">http://www.neurosoftware.ro/programming-blog/facebook-web-design/web-resources/using-jquery-to-style-design-elements-20-impressive-plugins/</guid>
		<description><![CDATA[I know we covered different jQuery posts here but you guys don&#8217;t stop asking for more. So here we are again covering more jQuery Plugins doing what: Styling Design Elements. So today we need jQuery solutions that are a little more specific. Here are 20 more handy jQuery plugins that have made websites much sleeker [...]]]></description>
			<content:encoded><![CDATA[<p>I know we covered <a href="http://devsnippets.com/reviews/15-jquery-plugins-to-fix-and-beautify-browser-issues.html">different</a> <a href="http://devsnippets.com/jquery-posts/20-jquery-plugins-for-unforgettable-user-experience.html">jQuery </a>posts here but you guys don&#8217;t stop asking for more. So here we are again covering more jQuery Plugins doing what: Styling Design Elements. So today we need jQuery solutions that are a little more specific. Here are 20 more handy jQuery plugins that have made websites much sleeker and more interesting.</p>
<h3>1. <a href="http://www.webdesignerwall.com/tutorials/jquery-sequential-list/">jQuery Sequential List</a></h3>
<p><a href="http://www.webdesignerwall.com/tutorials/jquery-sequential-list/"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/9bc17_jquery-designelements1.jpg" alt="" /></a></p>
<p>This tutorial will show you how to use jQuery to add a sequent of CSS classes to create a graphical list. The second example in this tutorial will show you how to add a comment counter to a comment list using jQuery’s prepend feature. The code is very simple, the following example shows how you can add a counter number to a comment list. </p>
<pre>
&lt;script type=&quot;text/javascript&quot; src=&quot;jquery.js&quot;&gt;&lt;/script&gt;
&lt;script type=&quot;text/javascript&quot;&gt;
$(document).ready(function(){

  $(&quot;#commentlist li&quot;).each(function (i) {
    i = i 1;
    $(this).prepend(&#39;&lt;span class=&quot;commentnumber&quot;&gt; #&#39; i &#39;&lt;/span&gt;&#39;);
   });

});
&lt;/script&gt;
</pre>
<p>To get this markup:</p>
<pre>
&lt;ol id=&quot;commentlist&quot;&gt;
	&lt;li&gt;&lt;span class=&quot;commentnumber&quot;&gt; #1&lt;/span&gt;
		...
	&lt;/li&gt;
	&lt;li&gt;&lt;span class=&quot;commentnumber&quot;&gt; #2&lt;/span&gt;
		...
	&lt;/li&gt;
	&lt;li&gt;&lt;span class=&quot;commentnumber&quot;&gt; #3&lt;/span&gt;
		...
	&lt;/li&gt;
&lt;/ol&gt;
</pre>
<p><a href="http://webdesignerwall.com/demo/jquery-sequential/jquery-sequential-list.html">Check out the demo here</a></p>
<h3>2. <a href="http://www.atblabs.com/jquery.corners.html">jQuery Corners</a></h3>
<p><a href="http://www.atblabs.com/jquery.corners.html"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/94ffa_jquery-designelements2.jpg" alt="" /></a></p>
<p>This jQuery plugin will simple allow you to create rounded corner for your design elements including forms or anchor links without using images or obstructive markup.</p>
<p>Once jQuery and jQuery.corners scripts are loaded, rounding corners is easy. </p>
<pre>
&lt;div style=&quot;background-color:#acc; padding:5px&quot; class=&quot;rounded&quot;&gt;
  Simple Example
&lt;/div&gt;
&lt;script&gt;$(document).ready( function(){
  $(&#39;.rounded&#39;).corners();
});&lt;/script&gt;
</pre>
<p><a href="http://www.atblabs.com/jquery.corners.html">Check out the demo here</a></p>
<h3>3. <a href="http://widowmaker.kiev.ua/checkbox/">jQuery Checkbox</a></h3>
<p><a href="http://widowmaker.kiev.ua/checkbox/"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/01b44_jquery-designelements3.jpg" alt="" /></a></p>
<p>This jQuery plugin will simple skin checkboxes and radio buttons in a nice way.</p>
<p><a href="http://widowmaker.kiev.ua/checkbox/">Check out the demo here</a></p>
<h3>4. <a href="http://www.filamentgroup.com/lab/styling_buttons_and_toolbars_with_the_jquery_ui_css_framework/">Styling Buttons and Toolbars with the jQuery UI CSS Framework</a></h3>
<p><a href="http://www.filamentgroup.com/lab/styling_buttons_and_toolbars_with_the_jquery_ui_css_framework/"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/a95cf_jquery-designelements4.jpg" alt="" /></a></p>
<p>This tutorial demonstrates how to incorporate the power of jQuery UI CSS framework classes in a custom widget to create and style buttons and toolbars.</p>
<p>Creating a basic button is very simple with the jQuery UI CSS framework and styling it is really easy. All you need to do is add the default &#8220;clickable&#8221; state by assigning the class ui-state-default. We also want these to have rounded corners, so we added the optional ui-corner-all framework class which adds CSS3 corner-radius properties to all corners without the need for any images or extra markup.</p>
<pre>
&lt;button class=&quot;ui-state-default ui-corner-all&quot; type=&quot;submit&quot;&gt;Button&lt;/button&gt;
&lt;a href=&quot;#&quot; class=&quot;ui-state-default ui-corner-all&quot;&gt;Link&lt;/a&gt;
</pre>
<p><a href="http://www.filamentgroup.com/examples/buttonFrameworkCSS/">Check out the demo here</a></p>
<h3>5. <a href="http://www.smashingmagazine.com/2009/01/22/ask-sm-how-to-create-a-colorful-sitemap-with-jquery/">Create A Colorful Sitemap With jQuery</a></h3>
<p><a href="http://www.smashingmagazine.com/2009/01/22/ask-sm-how-to-create-a-colorful-sitemap-with-jquery/"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/d5b61_jquery-designelements5.jpg" alt="" /></a></p>
<p>In this article, Chris Coyier teaches us how to build a visually interesting sitemap that makes the hierarchy clearer through the use of color. The idea here is, when the mouse cursor hovers over a list, that list will brighten up a bit and fade to a unique color. When the mouse cursor is removed, the list will return to its original color.</p>
<p><a href="http://css-tricks.com/examples/Sitemap">Check out the demo here</a></p>
<h3>6. <a href="http://blog.jeremymartin.name/2008/02/blogger-trick-style-author-comments.html"> Style Author Comments Differently with jQuery</a></h3>
<p><a href="http://blog.jeremymartin.name/2008/02/blogger-trick-style-author-comments.html"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/ba7d3_jquery-designelements6.jpg" alt="" /></a></p>
<p>Now you want to apply the custom styling applied to comments left by the author on blogger. The script will loop through all of the comments on the page, if the member link on the current comment matches the member link in the profile page on your blog, then it must be an author comment. The script will then apply an additional class to the comment, allowing you to style it separately.</p>
<p><a href="http://blog.jeremymartin.name/2008/02/blogger-trick-style-author-comments.html">Check out the demo here</a></p>
<h3>7. <a href="http://code.google.com/p/jquery-asmselect/">asmSelect &#8211; Alternative Select Multiple</a></h3>
<p><a href="http://code.google.com/p/jquery-asmselect/"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/8c6b7_jquery-designelements7.jpg" alt="" /></a></p>
<p>A progressive enhancement to &lt;select multiple&gt; form elements which is easier for users to understand and interact with than regular &lt;select multiple&gt; form elements. Also, it doesn&#8217;t require user to Ctrl-Click or Shift-Click multiple elements. Instead users of your form can add or remove elements individually, without risk of losing those that have already been selected. </p>
<p><a href="http://www.ryancramer.com/projects/asmselect/examples/example1.html">Check out the demo here</a></p>
<h3>8. <a href="http://plugins.jquery.com/project/flexigrid">Flexgrid </a></h3>
<p><a href="http://plugins.jquery.com/project/flexigrid"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/8ad74_jquery-designelements8.jpg" alt="" /></a></p>
<p>A lightweight but rich data grid with resizable columns and a scrolling data to match the headers, plus an ability to connect to an xml based data source to load the content. Features include: Resizable columns, Resizable height, Sortable column headers, Cool theme, Can convert an ordinary table, Paging, Show/hide columns and more.</p>
<p><a href="http://sanderkorvemaker.nl/test/flexigrid/">Check out the demo here</a></p>
<h3>9. <a href="http://www.anon-design.se/demo/maxlength/">MaxLength</a></h3>
<p><a href="http://www.anon-design.se/demo/maxlength/"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/c2de7_jquery-designelements9.jpg" alt="" /></a></p>
<p>This plugin makes it easy to apply a &quot;maxlength&quot; attribute to custom elements for example a &lt;textarea&gt;. It also gives you the possibility to add a nice character counter under the element that shows the user how many chars he/she has left before the maxlength is reached, and/or an alert message.</p>
<p>To use this on a simple text area, all you have to do is:</p>
<pre>
&lt;script type=&quot;text/javascript&quot;&gt;
  $(document).ready(function(){
    $(&#39;#textarea_1_1&#39;).maxlength();
  });
&lt;/script&gt;
</pre>
<p><a href="http://www.anon-design.se/demo/maxlength/">Check out the demo here</a></p>
<h3>10. <a href="http://www.oakcitygraphics.com/jquery/clockpick/trunk/ClockPick.cfm">ClockPick</a></h3>
<p><a href="http://www.oakcitygraphics.com/jquery/clockpick/trunk/ClockPick.cfm"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/a48b2_jquery-designelements10.jpg" alt="" /></a></p>
<p>ClockPick is a timepicker plugin, enabling users to enter a time value into a form field. Using a unique popup div UI, ClockPick gets the job done in about 1/5 the time it takes to enter a time value using a traditional select menu UI.</p>
<p><a href="http://www.oakcitygraphics.com/jquery/clockpick/trunk/ClockPick.cfm">Check out the demo here</a></p>
<h3>11. <a href="http://pupunzi.wordpress.com/2009/01/18/mbmenu/">jQuery (mb)Menu 1.5</a></h3>
<p><a href="http://pupunzi.wordpress.com/2009/01/18/mbmenu/"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/29911_jquery-designelements11.jpg" alt="" /></a></p>
<p>This is a powerful jQuery component to build easily a multilevel tree menu or a contextual menu (right click) in an intuitive way! You can add as many submenus as you want; if your submenu or menu is not declared in the page, the component’ll get it via ajax calling the template page with the id of the menu you need (the value of  “menu” attribute) the ajax page should return a well formatted code as the example below for the menu voices code.</p>
<p><a href="http://www.open-lab.com/mb.ideas/index.html#mbMenu">Check out the demo here</a></p>
<h3>12. <a href="http://pupunzi.wordpress.com/2009/02/01/mbcontainersplus/">(mb)ContainersPlus 1.0</a></h3>
<p><a href="http://pupunzi.wordpress.com/2009/02/01/mbcontainersplus/"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/3e1fa_jquery-designelements12.jpg" alt="" /></a></p>
<p>This is a useful plug in to build full featured and full skinnable containers. The container can be set to draggable, resizable, collapsable and minimizable. The container can be set to draggable and resizable by adding &#8220;draggable&#8221; and/or &#8220;resizable&#8221; to the class attribute; there is a custom attribute called buttons that accept: i [iconize], m [minimize], c [close] as value to add buttons to the button-bar. You can also add a left top corner icon by adding the attribute &#8220;icon&#8221; with the icon path as value.</p>
<p><a href="http://www.open-lab.com/mb.ideas/index.html#mbContainerPlus">Check out the demo here</a></p>
<h3>13. <a href="http://www.ollicle.com/2007/jun/03/jquery_lineheight_flexible.html">Auto line-height for flexible layouts</a></h3>
<p><a href="http://www.ollicle.com/2007/jun/03/jquery_lineheight_flexible.html"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/24b92_jquery-designelements13.jpg" alt="" /></a></p>
<p>Adjusts the line-height of a container (such as a div) in proportion to it’s width, relative to the font size.</p>
<p><a href="http://www.ollicle.com/eg/jquery/autolineheight/">Check out the demo here</a></p>
<h3>14. <a href="http://layout.jquery-dev.net/">UI.Layout</a></h3>
<p><a href="http://plugins.jquery.com/project/layout"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/8d4d8_jquery-designelements14.jpg" alt="" /></a></p>
<p>This plugin was inspired by the <a href="http://extjs.com/deploy/dev/examples/layout/complex.html">extJS border-layout</a>, and recreates that functionality as a jQuery plug-in. The UI.Layout plug-in can create any UI look you want &#8211; from simple headers or sidebars, to a complex application with toolbars, menus, help-panels, status bars, sub-forms, etc.</p>
<p><a href="http://layout.jquery-dev.net/demos/complex.html">Check out the demo here</a></p>
<h3>15. <a href="http://franca.exofire.net/jq/colorize">Colorize </a></h3>
<p><a href="http://franca.exofire.net/jq/colorize"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/3e33e_jquery-designelements15.jpg" alt="" /></a></p>
<p>Colorize is a jQuery plugin to add background color to alternate table rows, highlight a row/column on mouse over, and colorize a row/column when you click your mouse button over it. You can colorize as many table rows as you want. A repeat mouse click reverts the row to the original background color.</p>
<p><a href="http://franca.exofire.net/js/demo_plugin_2.html">Check out the demo here</a></p>
<h3>16. <a href="http://www.memorycraft.jp/project/jquery/j3ssw/index.html">jQuery 3 State Switch Plugin</a></h3>
<p><a href="http://www.memorycraft.jp/project/jquery/j3ssw/index.html"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/af764_jquery-designelements16.jpg" alt="" /></a></p>
<p>jQuery 3 State Switch Plugin(J3SSW) is a jQuery Plugin that expresses the selection and some states of list item using radio button and checkbox at the same time. The applications of J3SSW includes some interfaces for sort key or filter key of any search results.</p>
<p><a href="http://www.memorycraft.jp/project/jquery/j3ssw/index.html">Check out the demo here</a></p>
<h3>17. <a href="http://plugins.jquery.com/project/ahover">Animated Hover</a></h3>
<p><a href="http://plugins.jquery.com/project/ahover"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/5d78e_jquery-designelements17.jpg" alt="" /></a></p>
<p>Animated Hover provides animated transitions between hovered items for any jQuery project. Requires jQuery 1.2+ and Dimensions</p>
<p><a href="http://media.brianbeck.com/shared/javascript/jquery-ahover/demo/demo.html">Check out the demo here</a></p>
<h3>18. <a href="http://www.komodomedia.com/blog/2008/10/jquery-feed-menus/">jQuery Feed Menu</a></h3>
<p><a href="http://www.komodomedia.com/blog/2008/10/jquery-feed-menus/"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/5d78e_jquery-designelements18.jpg" alt="" /></a></p>
<p>It’s nice to offer users an alternate way to get at your feeds, here is an easy and standard way of offering your feeds via a nice, compact menu, just like in the location bar, but on your site.</p>
<p><a href="http://www.komodomedia.com/blog/2008/10/jquery-feed-menus/">Check out the demo here</a></p>
<h3>19. <a href="http://www.noupe.com/css/jquery-hover-sub-tag-cloud.html">jquery Hover Sub Tag Cloud</a></h3>
<p><a href="http://www.noupe.com/css/jquery-hover-sub-tag-cloud.html"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/c314c_jquery-designelements19.jpg" alt="" /></a></p>
<p>Here is a new way to create your tag cloud Using jQuery and reduce its size, so my demo will introduce &#8220;Hover Sub Tags&#8221; under each main Tag, for example if you have Ajax as a tag, you can have jquery, mootools, etc… as sub-tags.  A Sub Tag  Cloud will appear when hovering over the main Tag links.</p>
<p><a href="http://www.noupe.com/examples/tagcloud/tag-cloud.html">Check out the demo here</a></p>
<h3>20. <a href="http://www.ihwy.com/Labs/jquery-listnav-plugin.aspx">jQuery ListNav Plugin</a></h3>
<p><a href="http://www.ihwy.com/Labs/jquery-listnav-plugin.aspx"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/e8a08_jquery-designelements20.jpg" alt="" /></a></p>
<p>This jQuery plugin supplies an easy way to unobtrusively add a letter-based navigation widget to any UL or OL list. An easily stylable (via CSS) nav bar appears above the list, showing the user the letters A-through-Z. Clicking one of the letters filters the list to show only the items in the list that start with that letter. Hovering over a letter (optionally) shows a count above the letter, indicating how many items will be displayed if that letter is clicked. Other options give you control over the basic functionality.</p>
<p><a href="http://www.ihwy.com/Labs/Demos/Current/jquery-listnav-plugin.aspx">Check out the demo here</a></p>
<p><a href="http://feeds2.feedburner.com/Devsnippets">Go to Source</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.neurosoftware.ro/programming-blog/facebook-web-design/web-resources/using-jquery-to-style-design-elements-20-impressive-plugins/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Quick Tips Of The Week &#8211; December 23rd 2009</title>
		<link>http://www.neurosoftware.ro/programming-blog/facebook-web-design/web-resources/quick-tips-of-the-week-december-23rd-2009/</link>
		<comments>http://www.neurosoftware.ro/programming-blog/facebook-web-design/web-resources/quick-tips-of-the-week-december-23rd-2009/#comments</comments>
		<pubDate>Sun, 27 Dec 2009 19:45:10 +0000</pubDate>
		<dc:creator>Facebook-Web-Design</dc:creator>
				<category><![CDATA[web resources]]></category>
		<category><![CDATA[Chris Coyier]]></category>
		<category><![CDATA[com]]></category>
		<category><![CDATA[css tricks]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[Jeff Starr]]></category>
		<category><![CDATA[lifetime subscription]]></category>
		<category><![CDATA[Opacity]]></category>
		<category><![CDATA[recourses]]></category>
		<category><![CDATA[resource pack]]></category>
		<category><![CDATA[tons of time]]></category>
		<category><![CDATA[tool]]></category>
		<category><![CDATA[week]]></category>

		<guid isPermaLink="false">http://www.neurosoftware.ro/programming-blog/facebook-web-design/web-resources/quick-tips-of-the-week-december-23rd-2009/</guid>
		<description><![CDATA[Quick tips of the week for designers is round again, I will be posting five great tips that I discover during the week and share them with you! This week learn about some great recourses, css opacity change, a photoshop keystroke that will save you tons of time and find out what beautiful HTML looks [...]]]></description>
			<content:encoded><![CDATA[<p>Quick tips of the week for designers is round again, I will be posting five great tips that I discover during the week and share them with you! This week learn about some great recourses, css opacity change, a photoshop keystroke that will save you tons of time and find out what beautiful HTML looks like!<span></span></p>
<div>
<h3>#1</h3>
<p><a href="http://www.e-junkie.com/ecom/gb.php?cl=88539&amp;c=ib&amp;aff=93635"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/83374_digwp.jpg" alt="Digging Into WordPress Book" width="610" height="160" class="aligncenter size-full wp-image-1605" /></a></p>
<p><strong>Chris Coyier </strong>and <strong>Jeff Starr</strong> over at <a href="http://digwp.com">digwp.com</a> have finally released the much anticipated &#8220;<a href="https://www.e-junkie.com/ecom/gb.php?cl=88539&#38;c=ib&#38;aff=93635">Digging into WordPress</a>&#8221; book! I personally purchased it when it came out, I haven&#8217;t fully read it yet, however I have flicked through all the chapters and let me tell you; this is 400 pages worth investing in. It&#8217;s great for beginners and even experienced Wordpess users! I highly recommend picking yourself up a copy for only <strong><a href="https://www.e-junkie.com/ecom/gb.php?cl=88539&#38;c=ib&#38;aff=93635">$27</a></strong>, at the moment it is only available in PDF format however they say a print format is forthcoming. You also receive a lifetime subscription and any updates to the addition will become available to you.<br />
<a href="https://www.e-junkie.com/ecom/gb.php?cl=88539&#38;c=ib&#38;aff=93635">Get yourself a copy today</a>!</p>
</div>
<div>
<h3>#2</h3>
<p><a href="http://henryladcases.com/examples/opacity" target="blank"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/3fa32_opacity.jpg" alt="Changing Opacity With CSS" width="610" height="160" class="aligncenter size-full wp-image-1608" /></a></p>
<p>One super cool tip you can use with <strong>CSS3</strong> is editing the <em>opacity</em> of images, text etc. I&#8217;ve been using it to subtly change opacities of images and their hover states, and it is as simple as it sounds. <a href="http://henryladcases.com/examples/opacity/" target="blank">See example.</a></p>
<p>
<h2>The Code</h2>
<pre>
	#image		 { opacity: 0.8;}
	#image:hover { opacity: 1.0; }
</pre>
<p><h3><a href="http://henryladcases.com/examples/opacity/" target="blank">View Demo</a></h3>
</div>
<div>
<h3>#3</h3>
<p><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/bb2d8_keystroke.jpg" alt="Photoshop Tip" width="610" height="160" class="aligncenter size-full wp-image-1610" /></p>
<p>Have you ever wanted to switch to a tool that is in sub-menu of the &#8220;shortcut&#8221; without clicking and holding the icon? Well if you simply hold <strong>SHIFT</strong> and then the &#8220;<strong>SHORTCUT KEY</strong>&#8221; of the tool it will scroll through all tools that are in the category, thus selected your desired tool.</p>
</div>
<div>
<h3>#4</h3>
<p><a href="http://css-tricks.com/what-beautiful-html-code-looks-like/"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/526ee_whatbeautifulhtmllookslike.jpg" alt="What beautiful html looks like" width="610" height="160" class="aligncenter size-full wp-image-1614" /></a></p>
<p>If you&#8217;ve ever wondered what <em>beautiful</em> <strong>html</strong> looks like, checkout this great article from <a href="http://css-tricks.com/what-beautiful-html-code-looks-like/">css-tricks </a>to find out!</p>
</div>
<div>
<h3>#5</h3>
<p><a href="http://www.tutorial9.net/news/sign-up-today-the-ultimate-resource-pack-for-designers-new/"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/e2e68_theultimateresourcepack.jpg" alt="theultimateresourcepack" width="610" height="160" class="aligncenter size-full wp-image-1616" /></a></p>
<p>Go ahead and sign up for this fantastic FREE ultimate designers resource pack, from tutorial9.</p>
</div>
<p>Sorry for the lack of posts, I have been working on my new site, <a href="http://thedesignersyard.com">TheDesignersYard.com</a>, which I will post screen shots and features very shortly!</p>
<p><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/e2e68_L05pXATnOX0" height="1" width="1" /><br />
<a href="http://feeds.feedburner.com/HenryDurdanDesignBlog">Go to Source</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.neurosoftware.ro/programming-blog/facebook-web-design/web-resources/quick-tips-of-the-week-december-23rd-2009/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>An Interview with Jason Lengstorf</title>
		<link>http://www.neurosoftware.ro/programming-blog/facebook-web-design/web-resources/an-interview-with-jason-lengstorf/</link>
		<comments>http://www.neurosoftware.ro/programming-blog/facebook-web-design/web-resources/an-interview-with-jason-lengstorf/#comments</comments>
		<pubDate>Wed, 23 Dec 2009 17:51:14 +0000</pubDate>
		<dc:creator>Facebook-Web-Design</dc:creator>
				<category><![CDATA[web resources]]></category>
		<category><![CDATA[app]]></category>
		<category><![CDATA[Chris Coyier]]></category>
		<category><![CDATA[couple articles]]></category>
		<category><![CDATA[css tricks]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[Drew]]></category>
		<category><![CDATA[Drew Douglass]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[life in a nutshell]]></category>
		<category><![CDATA[missoula mt]]></category>
		<category><![CDATA[professional web developer]]></category>
		<category><![CDATA[time]]></category>
		<category><![CDATA[Walsh]]></category>
		<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://www.neurosoftware.ro/programming-blog/facebook-web-design/web-resources/an-interview-with-jason-lengstorf/</guid>
		<description><![CDATA[Jason Lengstorf is a professional web developer who specializes in PHP and jQuery applications. He&#8217;s the author of the recently released PHP for Absolute Beginners, which is an expert&#8217;s voice in open source. Additionally, he co-authored an eight-part tutorial on Creating a Web App from Scratch with Chris Coyier. Join us as we discuss web [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://ennuidesign.com/">Jason Lengstorf</a> is a professional web developer who specializes in PHP and jQuery applications. He&#8217;s the author of the recently released <a href="http://www.amazon.com/Absolute-Beginners-Experts-Voice-Source/dp/1430224738">PHP for Absolute Beginners</a>, which is an expert&#8217;s voice in open source. Additionally, he co-authored an eight-part tutorial on <a href="http://css-tricks.com/app-from-scratch-1-design/">Creating a Web App from Scratch</a> with <a href="http://chriscoyier.net/">Chris Coyier</a>. Join us as we discuss web development, PHP, and his life in general.</p>
<p><span></span></p>
<div><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/6598c_1.jpg" border="0" /></div>
<h4>1. Many of us may be familiar with you because of your book: &#8220;<a href="http://www.amazon.com/Absolute-Beginners-Experts-Voice-Source/dp/1430224738">PHP for Absolute Beginners.</a>&#8221; For those who are unfamiliar with you, can you tell us a bit about yourself and your life?</h4>
<p>In a nutshell, I&#8217;m a PHP developer based out of Missoula, MT. I run a company called Ennui Design that specializes in small business and individual website development. I&#8217;m also into front-end development, which I do primarily using jQuery.</p>
<p> I&#8217;m 24, and I&#8217;ve been working in web development for about six years, and I&#8217;ve been developing full-time for about a year and a half now. I&#8217;m completely self-taught, so I owe my career to the blogosphere and the great folks who are always helping out on forums like W3schools and the like.</p>
<p>I also try to write, and I&#8217;ve written a couple articles around the web for sites like Smashing Magazine, CSS Tricks, and Nettuts+, as well as for my own blog on Ennui Design. Earlier this year, I got the opportunity to write a book for Apress publishing that came out in October, called &#8220;PHP for Absolute Beginners&#8221;, and I&#8217;m currently working on a new title for Apress called &#8220;Pro PHP and jQuery.&#8221;</p>
<h4>2. How did you get started in web development?</h4>
<p>I got started in web development out of necessity. When I was 18 or 19, I played in a band, and we needed a website. When we started looking at pricing, we realized there was no way we could afford to have one built for us. So I told the rest of the guys, &#8220;Well, I think I can figure this out.&#8221;</p>
<p> I got on <a href="http://w3schools.com/" target="_blank">w3schools</a> (after searching &#8220;how to build a website&#8221; on Google) and worked through the HTML course, after which I was sure I was an expert web designer. So I built this awful, table-based website, complete with iframes and all inline styling.</p>
<p> When I got done with it, I thought to myself, &#8220;Well, that looks terrible.&#8221; So I built it again. And again. About fifteen or so rebuilds later, I had learned a little about CSS and JavaScript; the sites started looking a bit better and I felt fairly comfortable building them.</p>
<p>Right around that same time, a couple friends of mine needed websites, and I offered to build them for free. I did, and they were both happy with them, but I realized that maintenance on their sites was really cumbersome. That&#8217;s when I got into PHP, because I needed a solution that would allow for easier maintenance.</p>
<p> Since I didn&#8217;t know anything about content management systems or that there were existing CMSs available, I ended up rolling my own. It was full of holes, clunky, and feature-poor, but it did the trick, and I loved building it. I spent 14 hours a day in my favorite coffee shop tweaking it and rebuilding it.</p>
<p> After my two friends&#8217; sites launched, I received a call from my first real client, and realized I could actually make money building websites. I spent four years trying to get good enough to build sites full time, and I finally hit that goal in Fall 2008, when I quit my day job at a FedEx Kinko&#8217;s to work full-time on Ennui Design projects.</p>
<h4>3. What is the best way to learn PHP &#8211; and how was your experience writing this book?</h4>
<p>Learning PHP is like learning any language. Yeah, you can do a bunch of exercises that don&#8217;t have real world application (&#8221;Repeat after me: &#8216;Cette espadon est glissante! This swordfish is slippery!&#8217;&#8221;), but that only helps you memorize concepts. I think you have to really immerse yourself in real world uses of the language so that you can see how and why it&#8217;s used.</p>
<p> That&#8217;s the approach I took when writing &#8220;PHP for Absolute Beginners.&#8221; We cover the basic concepts, then immediately build a real-world project (a very basic content management system).</p>
<p>Writing the book was great for me, because it forced me to defend my approach in development. I had a technical, editorial, and project reviewer, all keeping an eye on how everything was put together, which put the pressure on to do everything the right way, with no shortcuts. Learning to just do it properly the first time was a good lesson in patience for me. It will also help me when I&#8217;m working on future projects with collaborators, because I now have a better grip on writing self-descriptive code, including better inline documentation, and justifying my programming choices with concrete reasoning.</p>
<div><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/6598c_2.jpg" border="0" /></div>
<h4>4. Recently, you co-wrote an 8-Part series called &#8220;Creating a Web App from Scratch&#8221; with Chris Coyier on <a href="http://www.css-tricks.com">CSS-Tricks&gt;</a>. What was that like?</h4>
<p>Chris Coyier is the man, hands-down. I&#8217;m a workaholic, but that guy manages to make me feel like a slacker with the amount of work he produces consistently.<br /> The tutorial series was a great way to force myself back into blogging (because I&#8217;ve been slacking lately), and an opportunity to give another real-world example to beginner to intermediate level developers. It&#8217;s one thing to explain a concept, but an entirely different beast when you&#8217;re attempting to explain a concept in the context of a real-life production site.</p>
<p>The comments we received were really helpful, because it showed us pieces of the app that we hadn&#8217;t thought of, like some security holes that we hadn&#8217;t considered and features that would really enhance the app.</p>
<p> That series was one of my favorite tutorials I&#8217;ve ever worked on, and I hope to put more of them together along those lines in the future.</p>
</p>
<div><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/9902e_3.png" border="0" /></div>
<h4>5. Can you provide us with any information on your upcoming book, &#8220;Pro PHP and jQuery&#8221;?</h4>
<p>Pro PHP and jQuery is going to be for intermediate to advanced PHP developers who want to become familiar with jQuery&#8217;s capabilities. It&#8217;s going to cover the creation of an AJAX-powered events calendar that&#8217;ll have a bunch of features like tooltips, file uploads, drag-n-drop ordering of events and photos, and other useful concepts.</p>
<p>AJAX is really powerful, and it allows developers to create web apps that feel like desktop apps (because they don&#8217;t have to reload all the time, etc.). The rise of jQuery and similar JavaScript libraries has made all that AJAX functionality really accessible to developers, and my goal with Pro PHP and jQuery is to bring the reader up to speed with building top-notch web apps.</p>
<div><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/9902e_4.jpg" border="0" /></div>
<h4>6. You are owner of Ennui Design, which offers custom web development. What&#8217;s your day-to-day like?</h4>
<p>As I mentioned earlier, <a href="http://ennuidesign.com/">Ennui Design</a> is the company name under which I do my freelance work. I&#8217;ve tried to become a one-man army of sorts by offering top-to-bottom site development, from art and design to customized content management systems. Recently I&#8217;ve started to take on clients who need custom applications, and that&#8217;s been a lot of fun.</p>
<p>As of this month, I&#8217;m expanding Ennui Design and trying to build a network of fellow freelancers to help me handle my client load. I just brought on <a href="http://dev-tips.com/"> Drew Douglass</a> recently, and I&#8217;m really excited to be working with him. I&#8217;m still looking for a front-end designer to help me with artwork and PSD-to-XHTML conversion, so if you know anyone&#8230; <img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/9902e_icon_smile.gif" alt=":)" class="wp-smiley" /></p>
<div><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/1200c_5.jpg" border="0" /></div>
<h4>7-What is your favorite web application framework and why?</h4>
<p>Because I never knew that web application frameworks existed, I never learned any of them. I subscribe to the concept of <a href="http://en.wikipedia.org/wiki/Multitier_architecture">multi-tiered architecture</a>, and I&#8217;ve even written an article about it for <a href="http://net.tutsplus.com/tutorials/php/add-power-to-your-php-with-multi-tiered-applications/">Nettuts+</a>.</p>
<p>I&#8217;ve looked into other patterns, like MVC, and I think they&#8217;re great, but I try not to get bogged down in programming dogma; if it&#8217;s easy to read, easy to maintain, and <a href="http://en.wikipedia.org/wiki/Don't_repeat_yourself">DRY</a> for the most part, I consider it to be good code.</p>
<h4>8. Can you tell us a bit about your personal projects?</h4>
<p>Currently, I&#8217;m working on getting my CMS ready for an open source release with Drew Douglass and a few other friends. I&#8217;m also planning on developing a version 2.0 of Colored Lists with Chris Coyier (the app we built in our 8-part &#8220;Building a Web App from Scratch&#8221; series).I&#8217;ve also got a few jQuery plugins that I want to tidy up and release sometime in the future.</p>
<p>I recently decided to try my hand at product design as well and launched an apparel company called <a href="http://humblecock.com/">Humblecock</a> with a couple close friends. We wanted high-quality, ultra-comfortable shirts for ourselves, and we decided that the best way to get them was to make them ourselves. It&#8217;s a brand new adventure, and I&#8217;m having a blast with it so far. It was one of my favorite websites to design, and it was really cool to design physical products.</p>
<div><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/1200c_6.jpg" border="0" /></div>
<p>My blog, unfortunately, has fallen victim to my overloaded project schedule. Between my client load and deadlines with my publisher, I&#8217;ve had very little free time. However, with the addition of Drew and (hopefully) other freelancers to the Ennui Design network, I&#8217;m hoping to have more time to blog again.</p>
<h4>9. What are your favorite online resources to stay up to date on the web development industry?</h4>
<p>I try to keep up with as many blogs as possible, really. If I&#8217;ve got a spare moment I&#8217;ll try and power-read as many articles as I can to see if any new developments are directly affecting any of the work I&#8217;m doing. Some of the sites I frequent are:</p>
<ul>
<li><a href="http://net.tutsplus.com">Nettuts+</a></li>
<li><a href="http://www.ajaxian.com">Ajaxian</a></li>
<li><a href="http://davidwalsh.name">David Walsh&#8217;s Blog</a></li>
<li><a href="http://snook.ca">Jonathan Snook&#8217;s blog</a></li>
<li><a href="http://themeforest.net">ThemeForest</a></li>
</ul>
<p><a href="http://shiflett.org/">Chris Shiflett </a>also has a lot of good articles on security in his back catalog that I use for reference regularly.</p>
<h4>10. What&#8217;s your opinion on WordPress and Drupal?</h4>
<p>I&#8217;ve barely used either, so I don&#8217;t think I&#8217;m really qualified to answer this question.</p>
<h4>11. When working, how do you concentrate while writing code, and what is your favorite code editor?</h4>
<p>I generally work at my home desk when I&#8217;m doing any kind of writing or heavy development. However, when I need a change of atmosphere, I&#8217;m known to haunt a local coffee shop (I actually spent so much time there that they had me build <a href="http://caffedolcemissoula.com/">their website</a> ).</p>
<div><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/3327c_7.jpg" border="0" /></div>
<p>I use <a href="http://www.apachefriends.org/en/xampp.html">XAMPP</a>, <a href="http://www.eclipse.org/">Eclipse</a>, and <a href="http://www.mozilla.com/firefox/">Firefox</a> (with Firebug/FirePHP/Web Developer Toolbar) for the majority of my development. Eclipse is Java-based, but it&#8217;s also open source and has support for everything I&#8217;ve ever needed. I&#8217;ve briefly played with a few other IDEs, but it would take a pretty solid argument to convince me to switch at this point.</p>
<h4>12. What do you think the future holds for PHP?</h4>
<p>In the immediate future, it holds great news like anonymous functions and namespaces (with the adoption of PHP 5.3). I can&#8217;t wait until there&#8217;s wide enough support by the hosting companies to start using them. <img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/17f08_icon_smile.gif" alt=":)" class="wp-smiley" /></p>
<p>On a less specific level, I think PHP and other &#8220;web&#8221; languages are going to start becoming more and more relevant for serious development. The whole world is moving online, and web apps are beginning to matter just as much as native apps, if not more so. I&#8217;m excited to see what&#8217;s next for PHP.</p>
<h4>13. Any code pet peeves?</h4>
<p>Personally, I hate to see code that sprawls. It really bothers me when code is written as a long string of actions instead of chunked up into small functions or methods that handle one action. That lack of separation leads to incredibly bloated, difficult to maintain files, and there tends to be a lot of repetitive code. It just begs for errors when you have two chunks of code that do the exact same thing.</p>
<p>In general, I just wish everyone would code like there was someone else working with you that needs to understand what the hell you&#8217;re talking about. The arrogance that leads someone to think, &#8220;If you&#8217;re not smart enough to understand how my code works, you shouldn&#8217;t be in my source code,&#8221; really bothers me; I think a better question is, &#8220;If you&#8217;re not smart enough to write clear code that any functional developer can understand, you shouldn&#8217;t be talking down to anyone.&#8221;</p>
<h4>14. What type of music do you like? Any hobbies?</h4>
<p>I grew up on country music, then started listening to Top 40 stuff as I got a bit older. I got introduced to metal, then punk and hardcore, then hip-hop, then folk. I found some good in all of it, but I listen to mostly folk/alternative and hip-hop now. I spend an inordinate amount of time listening to music, and I track it all through <a href="http://last.fm/user/jasonatennui">Last.fm</a>.</p>
<div><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/17f08_8.jpg" border="0" /></div>
<p>I stay pretty busy, so I don&#8217;t have too many hobbies, but I make an effort to keep them non-geeky (I mean, at some point I&#8217;m going to need to impress the ladies, right?). I lift weights a few times a week, and I like cooking. I&#8217;m also a big time beer lover, and I love finding new microbrews and specialty beers (especially stouts and porters). I brew my own beer every month or two for fun, which is way more fun than it sounds. Plus, there&#8217;s nothing better than drinking a beer you bottled yourself. I try to travel as much as possible, also. I&#8217;m planning a couple road trips that pass by some of my favorite breweries in the spring, and I&#8217;m hoping to get out of the country next fall and hang out in Europe for a bit.</p>
<div><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/534b5_9.jpg" border="0" /></div>
<h4>15. What are your future plans?</h4>
<p>If I get everything I&#8217;m hoping for, I&#8217;ll be doing a little less in terms of freelance work and focusing more on the teaching aspect of programming. I&#8217;d love to continue producing in-depth tutorials alongside influential bloggers in the community, like Chris Coyier. I also hope to start speaking at conferences in 2010, if I&#8217;m lucky enough to get the opportunity.</p>
<p>Apress has been great, and I hope to continue writing books about web development. I also want to get back into writing articles for sites like Nettuts+ (I haven&#8217;t forgotten about that article, <a href="http://www.jeffrey-way.com/">Jeffrey</a>! I promise!) and regularly blogging on Ennui Design.</p>
<p>I also want to try and grow Humblecock as much as possible, if for no other reason than I want to be able to make exactly the clothes I want to wear.<br /> And at some point I&#8217;ll have to grow more of a social life and start dating. My mother will have a heart attack if I keep coming home alone for Christmas. <img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/17f08_icon_smile.gif" alt=":)" class="wp-smiley" /></p>
<div><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/fa012_10.jpg" border="0" /></div>
<p>Thanks so much for your valuable time, Jason! It was a pleasure to talk with you!</p>
<ul>
<li>Follow us on <a href="http://www.twitter.com/nettuts">Twitter</a>, or subscribe to the <a href="http://feeds.feedburner.com/nettuts" title="Nettuts+ RSS Feed">Nettuts+ RSS Feed</a> for the best web development tutorials on the web. Ready</li>
</ul>
<p><strong>Ready to take your skills to the next level, and start profiting from your scripts and components? Check out our sister marketplace, <a href="http://codecanyon.net">CodeCanyon</a>.</strong></p>
<div><a href="http://codecanyon.net"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/a0594_cc_728x90_v2.gif" alt="CodeCanyon" style="width:600px" /></a></div>
</p>
<p><a href="http://feedads.g.doubleclick.net/~a/cjptXBkWn6o2GXG91_p0P-L-jZ4/0/da"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/a0594_di" border="0"></img></a><br />
<a href="http://feedads.g.doubleclick.net/~a/cjptXBkWn6o2GXG91_p0P-L-jZ4/1/da"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/a0594_di" border="0"></img></a></p>
<div>
<a href="http://feeds.feedburner.com/~ff/nettuts?a=qVeKrtMZ1aI:RoAo72PYvUI:yIl2AUoC8zA"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/a0594_nettuts?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/nettuts?a=qVeKrtMZ1aI:RoAo72PYvUI:F7zBnMyn0Lo"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/a0594_nettuts?i=qVeKrtMZ1aI:RoAo72PYvUI:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/nettuts?a=qVeKrtMZ1aI:RoAo72PYvUI:V_sGLiPBpWU"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/a0594_nettuts?i=qVeKrtMZ1aI:RoAo72PYvUI:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/nettuts?a=qVeKrtMZ1aI:RoAo72PYvUI:gIN9vFwOqvQ"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/cbe5d_nettuts?i=qVeKrtMZ1aI:RoAo72PYvUI:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/nettuts?a=qVeKrtMZ1aI:RoAo72PYvUI:TzevzKxY174"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/cbe5d_nettuts?d=TzevzKxY174" border="0"></img></a>
</div>
<p><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/cbe5d_qVeKrtMZ1aI" height="1" width="1" /><br />
<a href="http://feedproxy.google.com/nettuts">Go to Source</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.neurosoftware.ro/programming-blog/facebook-web-design/web-resources/an-interview-with-jason-lengstorf/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>33 Must Read CSS3 Tips, Tricks, Tutorial Sites and Articles</title>
		<link>http://www.neurosoftware.ro/programming-blog/blogposter/web-resources/33-must-read-css3-tips-tricks-tutorial-sites-and-articles/</link>
		<comments>http://www.neurosoftware.ro/programming-blog/blogposter/web-resources/33-must-read-css3-tips-tricks-tutorial-sites-and-articles/#comments</comments>
		<pubDate>Fri, 11 Dec 2009 17:26:25 +0000</pubDate>
		<dc:creator>BlogPoster</dc:creator>
				<category><![CDATA[web resources]]></category>
		<category><![CDATA[article]]></category>
		<category><![CDATA[Bert Bos]]></category>
		<category><![CDATA[C. Each]]></category>
		<category><![CDATA[Chris Coyier]]></category>
		<category><![CDATA[Craig Grannell]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[css text]]></category>
		<category><![CDATA[eric meyer]]></category>
		<category><![CDATA[future]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[jeffrey zeldman]]></category>
		<category><![CDATA[property]]></category>
		<category><![CDATA[Russell Grant]]></category>
		<category><![CDATA[sheet pdf]]></category>
		<category><![CDATA[showing pros]]></category>
		<category><![CDATA[w3c specification]]></category>
		<category><![CDATA[web designers]]></category>

		<guid isPermaLink="false">http://www.neurosoftware.ro/programming-blog/blogposter/web-resources/33-must-read-css3-tips-tricks-tutorial-sites-and-articles/</guid>
		<description><![CDATA[Since previous article about CSS text effects got really big attention I decided to research and find more interesting articles and websites just focused on CSS3, teaching you how to use it, showing pros and cons and much more. To be honest it&#8217;s hard for me to keep up with technologies myself, but we really [...]]]></description>
			<content:encoded><![CDATA[<div><a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.1stwebdesigner.com%2Fcss%2Fmust-read-css3-tips-tricks-tutorial-sites%2F" rel="nofollow"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/8a653_imagebutton.gif?url=http%3A%2F%2Fwww.1stwebdesigner.com%2Fcss%2Fmust-read-css3-tips-tricks-tutorial-sites%2F" height="61" width="51" /></a></div>
<p><a href="http://www.1stwebdesigner.com/css/must-read-css3-tips-tricks-tutorial-sites/" target="_self"><img class="alignleft" height="150" alt="title-css3-useful-webdev-webdesign-resources" src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/d1baa_title-css3-useful-webdev-webdesign-resources.jpg" width="150" /></a>Since previous article about CSS text effects got really big attention I decided to research and find more interesting articles and websites just focused on CSS3, teaching you how to use it, showing pros and cons and much more. To be honest it&#8217;s hard for me to keep up with technologies myself, but we really cannot not to use those new great selectors to make our designs even more beautiful, user-friendly and lightweighted. However since HTML5 is sort of tied with CSS3, I will soon continue with HTML5 article as well, so don&#8217;t miss it and keep coming back! Enjoy!<span></span></p>
</p>
<h2>1. <a href="http://www.smashingmagazine.com/2009/06/15/take-your-design-to-the-next-level-with-css3/" target="_blank">Take Your Design To The Next Level With CSS3</a></h2>
<p>In this article you&#8217;ll learn why CSS3 should be used and how web designers use it already in good way. Great article for getting you started with CSS3.</p>
<p><a href="http://www.smashingmagazine.com/2009/06/15/take-your-design-to-the-next-level-with-css3/" target="_blank"><img height="328" alt="next-level-sm-css3-useful-webdev-webdesign-resources" src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/ec485_next-level-sm-css3-useful-webdev-webdesign-resources.jpg" width="570" /></a></p>
</p>
<h2>2. <a href="http://www.smashingmagazine.com/2009/01/08/push-your-web-design-into-the-future-with-css3/" target="_blank">Push Your Web Design Into The Future With CSS3</a></h2>
<p>Here are five CSS3 techniques snatched from the future that you can put into practice in your website designs today.</p>
<p><a href="http://www.smashingmagazine.com/2009/01/08/push-your-web-design-into-the-future-with-css3/" target="_blank"><img height="240" alt="future-sm-css3-useful-webdev-webdesign-resources" src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/9e915_future-sm-css3-useful-webdev-webdesign-resources.jpg" width="570" /></a></p>
</p>
<h2>3. <a href="http://www.zurb.com/article/266/super-awesome-buttons-with-css3-and-rgba" target="_blank">Super Awesome Buttons with CSS3 and RGBA</a></h2>
<p>Learn how to create super cool, scalable buttons with CSS3.</p>
<p><a href="http://www.zurb.com/article/266/super-awesome-buttons-with-css3-and-rgba" target="_blank"><img height="222" alt="buttons-css3-useful-webdev-webdesign-resources" src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/aeb28_buttons-css3-useful-webdev-webdesign-resources.jpg" width="570" /></a></p>
<p><a href="http://www.zurb.com/blog_uploads/0000/0617/buttons-03.html" target="_blank">View Demo</a></p>
</p>
<h2>4. <a href="http://inspectelement.com/tutorials/a-look-at-some-of-the-new-selectors-introduced-in-css3/" target="_blank">A Look at Some of the New Selectors Introduced in CSS3</a></h2>
<p><a href="http://inspectelement.com/tutorials/a-look-at-some-of-the-new-selectors-introduced-in-css3/" target="_blank"><img height="214" alt="selectors-css3-useful-webdev-webdesign-resources" src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/77af2_selectors-css3-useful-webdev-webdesign-resources.jpg" width="570" /></a></p>
</p>
<h2>5. <a href="http://www.smashingmagazine.com/2009/07/13/css-3-cheat-sheet-pdf/" target="_blank">CSS 3 Cheat Sheet (PDF)</a></h2>
<p>This is printable CSS 3 Cheat Sheet (PDF), a complete listing of all the properties, selectors types and allowed values in the current CSS 3 specification from the W3C. Each property is provided in a section that attempts to match it with the section (module) that it is most actively associated within the W3C specification.(<a href="http://media.smashingmagazine.com/wp-content/uploads/images/css3-cheat-sheet/css3-cheat-sheet.pdf" target="_blank">Download *pdf</a>)</p>
<p><a href="http://www.smashingmagazine.com/2009/07/13/css-3-cheat-sheet-pdf/" target="_blank"><img height="315" alt="cheat-sheet-css3-useful-webdev-webdesign-resources" src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/2fc50_cheat-sheet-css3-useful-webdev-webdesign-resources.jpg" width="570" /></a></p>
</p>
<h2>6. <a href="http://www.css3.info/" target="_blank">CSS3.Info</a></h2>
<p>CSS3 is the new kid in the stylesheet family. It offers exciting new possibilities to create an impact with your designs, allows you to use more diverse style sheets for a variety of occasions and lots more. Also check excellent <a href="http://www.css3.info/preview/" target="_blank">CSS3 Preview page</a> there, which shows demos of new features.</p>
<p><a href="http://www.css3.info/" target="_blank"><img height="352" alt="info-all-css3-useful-webdev-webdesign-resources" src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/75e90_info-all-css3-useful-webdev-webdesign-resources.jpg" width="570" /></a></p>
</p>
<h2>7. <a href="http://www.webmonkey.com/tutorial/Get_Started_with_CSS_3" target="_blank">Get Started with CSS 3</a></h2>
<p>Beautiful CSS3 tutorial article explaining several new CSS3 features and giving solutions how to create them actually.</p>
<p><a href="http://www.webmonkey.com/tutorial/Get_Started_with_CSS_3" target="_blank"><img height="233" alt="webmonkey-css3-useful-webdev-webdesign-resources" src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/5fef2_webmonkey-css3-useful-webdev-webdesign-resources.jpg" width="570" /></a></p>
</p>
<h2>8. <a href="http://designshack.co.uk/tutorials/introduction-to-css3-part-1-what-is-it" target="_blank">Introduction to CSS3 – Part 1: What Is It?</a></h2>
<p>These six part series are providing an introduction to the new CSS3 standard which is set to take over from CSS2 from DesignShack.</p>
<p><a href="http://designshack.co.uk/tutorials/introduction-to-css3-part-1-what-is-it" target="_blank"><img height="136" alt="designshack-css3-useful-webdev-webdesign-resources" src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/cf146_designshack-css3-useful-webdev-webdesign-resources.jpg" width="570" /></a></p>
</p>
<h2>9. <a href="http://www.w3.org/TR/CSS-access" target="_blank">Accessibility Features of CSS from W3</a></h2>
<p>This document summarizes the features of the Cascading Style Sheets (CSS), level 2 Recommendation ([CSS2]) known to directly affect the accessibility of Web documents. Some of the accessibility features described in this document were available in CSS1 ([CSS1]) as well. This document has been written so that other documents may refer in a consistent manner to the accessibility features of CSS.</p>
<p><a href="http://www.w3.org/TR/CSS-access" target="_blank"><img height="220" alt="w3-css3-useful-webdev-webdesign-resources" src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/43019_w3-css3-useful-webdev-webdesign-resources.jpg" width="570" /></a></p>
</p>
<h2>10. <a href="http://dev.opera.com/articles/view/progressive-enhancement-with-css-3-a-be/" target="_blank">Progressive Enhancement with CSS 3: A better experience for modern browsers</a></h2>
<p>In this article you will look at how you can use graceful (or, progressive) enhancement techniques to make use of CSS3 features in browsers that support them, while ensuring that your code will still provide a satisfactory user experience in older browsers that do not yet support those features.</p>
</p>
<p><a href="http://sixrevisions.com/interviews/six-questions-eric-meyer-on-css3/http:/sixrevisions.com/interviews/six-questions-eric-meyer-on-css3/" target="_blank"></a></p>
<h2>11. <a href="http://xhtml.com/en/css/conversation-with-css-3-team/" target="_blank">Conversation with CSS 3 team</a></h2>
<p>In this article, xhtml.com interviews Bert Bos, chair of the CSS Working Group at W3C, about the next release of the CSS specification and how past design decisions are influencing the future of CSS. This interview offers a rare opportunity to learn more about the inner workings and thought processes of the CSS Working Group at W3C.</p>
<p><a href="http://xhtml.com/en/css/conversation-with-css-3-team/" target="_blank"><img height="181" alt="conversation-css3-useful-webdev-webdesign-resources" src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/fe81c_conversation-css3-useful-webdev-webdesign-resources.jpg" width="570" /></a></p>
</p>
<h2>12. <a href="http://sixrevisions.com/interviews/six-questions-eric-meyer-on-css3/http:/sixrevisions.com/interviews/six-questions-eric-meyer-on-css3/" target="_blank">Six Questions: Eric Meyer on CSS3</a></h2>
<p>Great interview with Eric Meyer about CSS3.</p>
<p><a href="http://sixrevisions.com/interviews/six-questions-eric-meyer-on-css3/http:/sixrevisions.com/interviews/six-questions-eric-meyer-on-css3/" target="_blank"><img height="238" alt="eric-meyer-css3-useful-webdev-webdesign-resources" src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/f13db_eric-meyer-css3-useful-webdev-webdesign-resources.jpg" width="570" /></a></p>
</p>
<h2>13. <a href="http://mattwilcox.net/archive/entry/id/1031/" target="_blank">The fundamental problems with CSS3</a></h2>
<p>This article brings up several problems and issues with CSS3, interesting reading.</p>
<p><a href="http://mattwilcox.net/archive/entry/id/1031/" target="_blank"><img height="135" alt="problems-css3-useful-webdev-webdesign-resources" src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/97d43_problems-css3-useful-webdev-webdesign-resources.jpg" width="570" /></a></p>
</p>
<h2>14. <a href="http://www.noupe.com/css3/css3-exciting-functions-and-features-30-useful-tutorials.html" target="_blank">CSS3 Exciting Functions and Features: 30+ Useful Tutorials</a></h2>
<p>In this post you will take a look at some interesting properties of CSS3 that you can put into practice in your website designs today.</p>
<p><a href="http://www.noupe.com/css3/css3-exciting-functions-and-features-30-useful-tutorials.html" target="_blank"><img height="201" alt="exciting-functions-css3-useful-webdev-webdesign-resources" src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/4f761_exciting-functions-css3-useful-webdev-webdesign-resources.jpg" width="570" /></a></p>
</p>
<h2>15. <a href="http://css-tricks.com/css3-clock/" target="_blank">Old School Clock with CSS3 and jQuery</a></h2>
<p><a href="http://css-tricks.com/css3-clock/" target="_blank"><img height="192" alt="old-school-clock-css3-useful-webdev-webdesign-resources" src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/9225e_old-school-clock-css3-useful-webdev-webdesign-resources.jpg" width="570" /></a></p>
</p>
<p><a href="http://24ways.org/2006/rounded-corner-boxes-the-css3-way" target="_blank"></a></p>
<h2>16. <a href="http://www.bloggingcss.com/en/tutorials/the-css3-border-radius-property/" target="_blank">The CSS3 border-radius property</a></h2>
<p>One of the CSS3 properties designers have been longing the most for is undoubtedly the border-radius property. With CSS3 border-radius property it’s possible to create the so popular rectangles with rounded corners exclusively via CSS &#8211; no images needed.</p>
<p><a href="http://www.bloggingcss.com/en/tutorials/the-css3-border-radius-property/" target="_blank"><img height="304" alt="border-radius-css3-useful-webdev-webdesign-resources" src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/700aa_border-radius-css3-useful-webdev-webdesign-resources.jpg" width="570" /></a></p>
</p>
<h2>17. <a href="http://www.netmag.co.uk/zine/develop-css/get-the-best-out-of-css3" target="_blank">Get the best out of CSS3</a></h2>
<p>Craig Grannell turns into a cross between Jeffrey Zeldman and Russell Grant, taking a peek at what the future of CSS has to offer – with a little help from Opera, Safari and Firefox</p>
<p><a href="http://www.netmag.co.uk/zine/develop-css/get-the-best-out-of-css3" target="_blank"><img height="128" alt="craig-grannell-css3-useful-webdev-webdesign-resources" src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/f264e_craig-grannell-css3-useful-webdev-webdesign-resources.jpg" width="570" /></a></p>
</p>
<h2>18. <a href="http://spyrestudios.com/how-to-create-a-sexy-vertical-sliding-panel-using-jquery-and-css3/" target="_blank">How To Create A Sexy Vertical Sliding Panel Using jQuery And CSS3</a></h2>
<p><a href="http://spyrestudios.com/how-to-create-a-sexy-vertical-sliding-panel-using-jquery-and-css3/" target="_blank"><img height="221" alt="sliding-jquery-css3-useful-webdev-webdesign-resources" src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/bc533_sliding-jquery-css3-useful-webdev-webdesign-resources.jpg" width="570" /></a></p>
<p><a href="http://spyrestudios.com/demos/sliding-panel-left/" target="_blank">View Demo</a></p>
</p>
<h2>19. <a href="http://24ways.org/2006/rounded-corner-boxes-the-css3-way" target="_blank">Rounded Corner Boxes the CSS3 Way</a></h2>
<p><a href="http://24ways.org/2006/rounded-corner-boxes-the-css3-way" target="_blank"><img height="206" alt="rounded-css3-useful-webdev-webdesign-resources" src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/67781_rounded-css3-useful-webdev-webdesign-resources.jpg" width="570" /></a></p>
</p>
<p><a href="http://www.zurb.com/blog_uploads/0000/0617/buttons-03.html" target="_blank"></a></p>
<h2>20. <a href="http://css-tricks.com/video-screencasts/57-using-css3/" target="_blank">#57: Using CSS3 by Chris Coyier</a></h2>
<p>This screencast covers many of CSS3 techniques now possible, focusing on the ones that can be used for progressive visual enhancement. Border radius, @font-face, animations/transitions, text-shadow, box-shadow, multiple backgrounds, RGBa, gradients, border image.</p>
<p><a href="http://css-tricks.com/video-screencasts/57-using-css3/" target="_blank"><img height="423" alt="chris-coyier-css3-useful-webdev-webdesign-resources" src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/99591_chris-coyier-css3-useful-webdev-webdesign-resources.jpg" width="570" /></a></p>
</p>
<h2>21. <a href="http://net.tutsplus.com/tutorials/html-css-techniques/html-5-and-css-3-the-techniques-youll-soon-be-using/" target="_blank">HTML 5 and CSS 3: The Techniques You’ll Soon Be Using</a></h2>
<p>In this tutorial, your are going to build a blog page using next-generation techniques from HTML 5 and CSS 3. The tutorial aims to demonstrate how we will be building websites when the specifications are finalized and the browser vendors have implemented them.</p>
<p><a href="http://net.tutsplus.com/tutorials/html-css-techniques/html-5-and-css-3-the-techniques-youll-soon-be-using/" target="_blank"><img height="398" alt="layout-html5-css3-useful-webdev-webdesign-resources" src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/f2606_layout-html5-css3-useful-webdev-webdesign-resources.jpg" width="570" /></a></p>
<p><a href="http://nettuts.s3.amazonaws.com/373_html5/final/index.html" target="_blank">View Demo</a></p>
</p>
<h2>22. <a href="http://net.tutsplus.com/tutorials/html-css-techniques/11-classic-css-techniques-made-simple-with-css3/" target="_blank">11 Classic CSS Techniques Made Simple with CSS3</a></h2>
<p>In this tutorial from Nettuts you will learn eleven different time-consuming effects that can be achieved quite easily with CSS3.</p>
<p><a href="http://net.tutsplus.com/tutorials/html-css-techniques/11-classic-css-techniques-made-simple-with-css3/" target="_blank"><img height="201" alt="11-simple-css3-useful-webdev-webdesign-resources" src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/43ab8_11-simple-css3-useful-webdev-webdesign-resources.jpg" width="570" /></a></p>
</p>
<p><a href="http://www.noupe.com/css3/css3-exciting-functions-and-features-30-useful-tutorials.html" target="_blank"></a></p>
<h2>23. <a href="http://www.456bereastreet.com/archive/200601/css_3_selectors_explained/" target="_blank">CSS 3 selectors explained &#8211; Overview of CSS 3 selector syntax</a></h2>
<h2><a href="http://www.456bereastreet.com/archive/200601/css_3_selectors_explained/" target="_blank"><img height="218" alt="explained-selectors-css3-useful-webdev-webdesign-resources" src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/57912_explained-selectors-css3-useful-webdev-webdesign-resources.jpg" width="570" /></a></h2>
</p>
<h2>24. <a href="http://cssglobe.com/post/6089/3-easy-and-fast-css-techniques-for-faux-image" target="_blank">3 Easy and Fast CSS Techniques for Faux Image Cropping</a></h2>
<p><a href="http://cssglobe.com/post/6089/3-easy-and-fast-css-techniques-for-faux-image" target="_blank"><img height="322" alt="faux-image-css3-useful-webdev-webdesign-resources" src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/a9ce8_faux-image-css3-useful-webdev-webdesign-resources.jpg" width="570" /></a></p>
</p>
<h2>25. <a href="http://www.cssportal.com/css3-preview/borders.htm" target="_blank">CSS3 Borders Preview</a></h2>
<p>CSS3 takes borders to a new level with the ability to use gradients, rounded corners, shadows and border images. Mozila, Firefox and Safari 3 have implemented this function, which allows you to create round corners on box-items.</p>
<p><a href="http://www.cssportal.com/css3-preview/borders.htm" target="_blank"><img height="247" alt="borders-css3-useful-webdev-webdesign-resources" src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/8cb1b_borders-css3-useful-webdev-webdesign-resources.jpg" width="570" /></a></p>
</p>
<h2>26. <a href="http://westciv.com/iphonetests/" target="_blank">CSS3 property tests</a></h2>
<p><a href="http://westciv.com/iphonetests/" target="_blank"><img height="331" alt="browser-support-css3-useful-webdev-webdesign-resources" src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/48e8d_browser-support-css3-useful-webdev-webdesign-resources.jpg" width="570" /></a></p>
</p>
<h2>27. <a href="http://www.zenelements.com/blog/css3-background-images/" target="_blank">CSS3 Background Images (Sizing &amp; Multiple Imgs)</a></h2>
<p>Background images / textures are being used and implemented in many ways, often adding the nicest of finishing touches to a website. It is now proposed that in CSS 3, we can apply background image dimensions as well as use multiple background images. Along with the +/- quick list of compatible browsers, here is how</p>
<p><a href="http://www.zenelements.com/blog/css3-background-images/" target="_blank"><img height="348" alt="bg-images-css3-useful-webdev-webdesign-resources" src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/3aac2_bg-images-css3-useful-webdev-webdesign-resources.jpg" width="570" /></a></p>
</p>
<h2>28. <a href="http://www.javascriptkit.com/dhtmltutors/structuralcss.shtml" target="_blank">Overview of CSS3 Structural pseudo-classes</a></h2>
<p><a href="http://www.javascriptkit.com/dhtmltutors/structuralcss.shtml" target="_blank"><img height="275" alt="structural-pesudo-css3-useful-webdev-webdesign-resources" src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/6377f_structural-pesudo-css3-useful-webdev-webdesign-resources.jpg" width="570" /></a></p>
</p>
<h2>29. <a href="http://www.noupe.com/jquery/5-css3-techniques-for-major-browsers-using-the-power-of-jquery.html" target="_blank">5 CSS3 Techniques For Major Browsers using the Power of jQuery</a></h2>
<p><a href="http://www.noupe.com/jquery/5-css3-techniques-for-major-browsers-using-the-power-of-jquery.html" target="_blank"><img height="252" alt="techniques-css3-useful-webdev-webdesign-resources" src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/68e31_techniques-css3-useful-webdev-webdesign-resources.jpg" width="570" /></a></p>
</p>
<h2>30. <a href="http://www.marcofolio.net/webdesign/jslickmenu_a_jquery_plugin_for_slick_css3_menus.html" target="_blank">jSlickmenu: A jQuery plugin for slick CSS3 menus</a></h2>
<p><a href="http://www.marcofolio.net/webdesign/jslickmenu_a_jquery_plugin_for_slick_css3_menus.html" target="_blank"><img height="244" alt="slick-jquery-menu-css3-useful-webdev-webdesign-resources" src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/48293_slick-jquery-menu-css3-useful-webdev-webdesign-resources.jpg" width="570" /></a></p>
<p><a href="http://demo.marcofolio.net/slick_jquery_css3_menu/default.html" target="_blank">View Demo</a></p>
</p>
<h2>31. <a href="http://group.mind-productions.com/articles/multiple_backgrounds__css3_/" target="_blank">Multiple Backgrounds (CSS3)</a></h2>
<p><a href="http://group.mind-productions.com/articles/multiple_backgrounds__css3_/" target="_blank"><img height="215" alt="multiple-backgrounds-css3-useful-webdev-webdesign-resources" src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/f512e_multiple-backgrounds-css3-useful-webdev-webdesign-resources.jpg" width="570" /></a></p>
</p>
<p><a href="http://www.zenelements.com/blog/css3-background-images/" target="_blank"></a></p>
<h2>32. <a href="http://www.the-art-of-web.com/css/border-radius/" target="_blank">CSS: border-radius and -moz-border-radius</a></h2>
<p><a href="http://www.the-art-of-web.com/css/border-radius/" target="_blank"><img height="256" alt="border-radius-moz-css3-useful-webdev-webdesign-resources" src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/8c999_border-radius-moz-css3-useful-webdev-webdesign-resources.jpg" width="570" /></a></p>
</p>
<h2>33. <a href="http://www.modernizr.com/" target="_blank">Modernizr</a></h2>
<p>Modernizr is a small and simple JavaScript library that helps you take advantage of emerging web technologies (CSS3, HTML 5) while still maintaining a fine level of control over older browsers that may not yet support these new technologies.</p>
<p><a href="http://www.modernizr.com/" target="_blank"><img height="269" alt="modernizr-css3-useful-webdev-webdesign-resources" src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/c0d58_modernizr-css3-useful-webdev-webdesign-resources.jpg" width="570" /></a></p>
<p>Related posts:
<ol>
<li><a href="http://www.1stwebdesigner.com/tutorials/53-jquery-tutorials-resources-tips-and-tricks-ultimate-collection/" rel="bookmark" title="Permanent Link: 55 Jquery Tutorials, Resources, Tips And Tricks: Ultimate Collection">55 Jquery Tutorials, Resources, Tips And Tricks: Ultimate Collection</a></li>
<li><a href="http://www.1stwebdesigner.com/css/advanced-css-text-effects-web-typography-tips/" rel="bookmark" title="Permanent Link: 22 Advanced CSS Text Effects And Web Typography Tips">22 Advanced CSS Text Effects And Web Typography Tips</a></li>
<li><a href="http://www.1stwebdesigner.com/development/google-adsense-monetizing-traffic-testing-tips-tricks-and-resources/" rel="bookmark" title="Permanent Link: Google Adsense Monetizing, Traffic, Testing Tips, Tricks And Resources">Google Adsense Monetizing, Traffic, Testing Tips, Tricks And Resources</a></li>
<li><a href="http://www.1stwebdesigner.com/css/35-websites-to-teach-you-how-to-use-css-effectively/" rel="bookmark" title="Permanent Link: 35 Websites To Teach You How To Use CSS Effectively">35 Websites To Teach You How To Use CSS Effectively</a></li>
<li><a href="http://www.1stwebdesigner.com/tutorials/easy-brush-text-nature-effect-tutorial/" rel="bookmark" title="Permanent Link: Easy Brush Text Nature Effect: Tutorial">Easy Brush Text Nature Effect: Tutorial</a></li>
</ol>
<div>
<a href="http://feeds.feedburner.com/~ff/1stwebdesigner?a=84amXDC_f2U:9byC6Bm_tG4:yIl2AUoC8zA"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/c0d58_1stwebdesigner?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/1stwebdesigner?a=84amXDC_f2U:9byC6Bm_tG4:7Q72WNTAKBA"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/dd660_1stwebdesigner?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/1stwebdesigner?a=84amXDC_f2U:9byC6Bm_tG4:F7zBnMyn0Lo"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/86a39_1stwebdesigner?i=84amXDC_f2U:9byC6Bm_tG4:F7zBnMyn0Lo" border="0"></img></a>
</div>
<p><a href="http://www.1stwebdesigner.com/feed/">Go to Source</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.neurosoftware.ro/programming-blog/blogposter/web-resources/33-must-read-css3-tips-tricks-tutorial-sites-and-articles/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>November 2009, 50 Bookmarks To Collect The Best Of The Web</title>
		<link>http://www.neurosoftware.ro/programming-blog/facebook-web-design/web-design/november-2009-50-bookmarks-to-collect-the-best-of-the-web/</link>
		<comments>http://www.neurosoftware.ro/programming-blog/facebook-web-design/web-design/november-2009-50-bookmarks-to-collect-the-best-of-the-web/#comments</comments>
		<pubDate>Sun, 06 Dec 2009 18:09:06 +0000</pubDate>
		<dc:creator>Facebook-Web-Design</dc:creator>
				<category><![CDATA[web design]]></category>
		<category><![CDATA[art examples]]></category>
		<category><![CDATA[autumn scene]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[Callum Chapman]]></category>
		<category><![CDATA[calvin lee]]></category>
		<category><![CDATA[Candra]]></category>
		<category><![CDATA[Chris Coyier]]></category>
		<category><![CDATA[com]]></category>
		<category><![CDATA[Derek Herman

WebM]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[Don]]></category>
		<category><![CDATA[lighting effect]]></category>
		<category><![CDATA[M Garage]]></category>
		<category><![CDATA[Michela Chiucini]]></category>
		<category><![CDATA[networking website]]></category>
		<category><![CDATA[Nice]]></category>
		<category><![CDATA[paint stroke]]></category>
		<category><![CDATA[photoshop]]></category>
		<category><![CDATA[scale websites]]></category>
		<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://www.neurosoftware.ro/programming-blog/facebook-web-design/web-design/november-2009-50-bookmarks-to-collect-the-best-of-the-web/</guid>
		<description><![CDATA[The Best of the Web selected by PV.M Garage. Every month I take a look around and select some of the most interesting readings and resources published on great websites. November was a very interesting month. Take your time to read these fantastic articles written by helpful people for the design community. That&#8217;s all guys&#8230; [...]]]></description>
			<content:encoded><![CDATA[<p><strong>The Best of the Web</strong> selected by PV.M Garage. Every month I take a look around and select some of the most interesting readings and resources published on great websites.</p>
<p><strong>November was a very interesting month</strong>. Take your time to read these fantastic articles written by helpful people for the design community. </p>
<p>That&#8217;s all guys&#8230; I hope you&#8217;ll find useful these bookmarks.<br />
<span></span></p>
<h2>Amazing Tutorials and Tips for Web and Graphic Designers</h2>
<h3>Blog.SpoonGraphics.co.uk | How to Create a Crafts Inspired Vector Kids Illustration</h3>
<p><a href="http://www.blog.spoongraphics.co.uk/tutorials/how-to-create-a-crafts-inspired-vector-kids-illustration" title="November 2009, 50 Bookmarks To Collect The Best Of The Web"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/8b21b_nov01.jpg" alt="November 2009, 50 Bookmarks To Collect The Best Of The Web" /></a> </p>
<h3>1stWebDesigner.com | How To Create Great Typographic Wallpaper In Photoshop</h3>
<p><a href="http://www.1stwebdesigner.com/tutorials/learn-how-to-create-great-typographic-wallpaper-photoshop/" title="November 2009, 50 Bookmarks To Collect The Best Of The Web"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/8b21b_nov02.jpg" alt="November 2009, 50 Bookmarks To Collect The Best Of The Web" /></a> </p>
<h3>Tutorial9.net | Create a Simple Autumn Scene in Photoshop</h3>
<p><a href="http://www.tutorial9.net/photoshop/create-a-simple-autumn-scene-in-photoshop/" title="November 2009, 50 Bookmarks To Collect The Best Of The Web"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/8b21b_nov03.jpg" alt="November 2009, 50 Bookmarks To Collect The Best Of The Web" /></a></p>
<h3>Psd.TutsPlus.com | How to Create a Realistic IES Lighting Effect in Photoshop</h3>
<p><a href="http://psd.tutsplus.com/tutorials/tutorials-effects/how-to-create-a-realistic-ies-lighting-effect-in-photoshop/" title="November 2009, 50 Bookmarks To Collect The Best Of The Web"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/1a0f8_nov04.jpg" alt="November 2009, 50 Bookmarks To Collect The Best Of The Web" /></a> </p>
<h3>Sixrevisions.com | How to Design a Band Website Layout in Photoshop</h3>
<p><a href="http://sixrevisions.com/tutorials/photoshop-tutorials/how-to-design-a-band-website-layout-in-photoshop/" title="November 2009, 50 Bookmarks To Collect The Best Of The Web"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/1a0f8_nov05.jpg" alt="November 2009, 50 Bookmarks To Collect The Best Of The Web" /></a></p>
<h3>DesignM.ag | Design an Attractive One-Page Portfolio Using Photoshop</h3>
<p><a href="http://designm.ag/tutorials/one-page-portfolio-photoshop/" title="November 2009, 50 Bookmarks To Collect The Best Of The Web"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/1a0f8_nov06.jpg" alt="November 2009, 50 Bookmarks To Collect The Best Of The Web" /></a></p>
<h3>SpyreStudios.com | The Anatomy Of An Infographic: 5 Steps To Create A Powerful Visual</h3>
<p><a href="http://spyrestudios.com/the-anatomy-of-an-infographic-5-steps-to-create-a-powerful-visual/" title="November 2009, 50 Bookmarks To Collect The Best Of The Web"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/abf30_nov07.jpg" alt="November 2009, 50 Bookmarks To Collect The Best Of The Web" /></a></p>
<h3>SixRevisions.com | Minimal and Modern Layout: PSD to XHTML/CSS Conversion</h3>
<p><a href="http://sixrevisions.com/tutorials/web-development-tutorials/minimal-and-modern-layout-psd-to-xhtmlcss-conversion/" title="November 2009, 50 Bookmarks To Collect The Best Of The Web"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/7641c_nov08.jpg" alt="November 2009, 50 Bookmarks To Collect The Best Of The Web" /></a></p>
<h3>SohTanaka.com | Mega Drop Down Menu w/ CSS and jQuery</h3>
<p><a href="http://www.sohtanaka.com/web-design/mega-drop-downs-w-css-jquery/" title="November 2009, 50 Bookmarks To Collect The Best Of The Web"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/7641c_nov09.jpg" alt="November 2009, 50 Bookmarks To Collect The Best Of The Web" /></a></p>
<h3>JankoAtWarpSpeed.com | Create YouTube-like adaptable view using CSS and jQuery</h3>
<p><a href="http://www.jankoatwarpspeed.com/post/2009/12/08/YouTube-adaptable-view-css-jquery.aspx" title="November 2009, 50 Bookmarks To Collect The Best Of The Web"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/7641c_nov10.jpg" alt="November 2009, 50 Bookmarks To Collect The Best Of The Web" /></a>       </p>
<h2>Articles and Interviews</h2>
<h3>InspiredM.com | How To: Successfully Launch a Web Design Startup with Social Media and No Budget | Inspired Magazine</h3>
<p><a href="http://www.inspiredm.com/2009/12/04/how-to-successfully-launch-a-web-design-startup-with-social-media-and-no-budget/" title="November 2009, 50 Bookmarks To Collect The Best Of The Web"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/7641c_nov11.jpg" alt="November 2009, 50 Bookmarks To Collect The Best Of The Web" /></a></p>
<h3>WebHostingSearch.com | 11 Elementary Tips to Consider When Redesigning Your Blog</h3>
<p><a href="http://www.webhostingsearch.com/articles/11-tips-before-redesign.php" title="November 2009, 50 Bookmarks To Collect The Best Of The Web"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/27a1d_nov12.jpg" alt="November 2009, 50 Bookmarks To Collect The Best Of The Web" /></a></p>
<h3>SmashingMagazine.com | Quality-Price-Ratio in Web Design (Pricing Design Work)</h3>
<p><a href="http://www.smashingmagazine.com/2009/07/14/quality-price-ratio-in-web-design-pricing-design-work/" title="November 2009, 50 Bookmarks To Collect The Best Of The Web"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/27a1d_nov13.jpg" alt="November 2009, 50 Bookmarks To Collect The Best Of The Web" /></a></p>
<h3>AcuityDesigns.com | Competing Against The Agency – The Freelancer’s Epic Battle</h3>
<p><a href="http://www.acuitydesigns.net/competing-against-the-agency-the-freelancers-epic-battle/" title="November 2009, 50 Bookmarks To Collect The Best Of The Web"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/27a1d_nov14.jpg" alt="November 2009, 50 Bookmarks To Collect The Best Of The Web" /></a></p>
<h3>SuperFreelancer.com | The other side of criticism – you can make it useful</h3>
<p><a href="http://www.superfreelancer.com/2009/12/the-other-side-of-criticism-you-can-make-it-useful/" title="November 2009, 50 Bookmarks To Collect The Best Of The Web"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/27a1d_nov15.jpg" alt="November 2009, 50 Bookmarks To Collect The Best Of The Web" /></a></p>
<h3>DesignInformer.com | Ask the Expert – Using WordPress to Build Large Scale Websites with Derek Herman</h3>
<p><a href="http://designinformer.com/using-wordpress-build-large-scale-websites-derek-herman-ask-expert/" title="November 2009, 50 Bookmarks To Collect The Best Of The Web"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/ded4e_nov16.jpg" alt="November 2009, 50 Bookmarks To Collect The Best Of The Web" /></a></p>
<h3>WebM.ag | An Interview With Chris Coyier</h3>
<p><a href="http://www.webm.ag/2009/12/09/an-interview-with-chris-coyier/" title="November 2009, 50 Bookmarks To Collect The Best Of The Web"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/ded4e_nov17.jpg" alt="November 2009, 50 Bookmarks To Collect The Best Of The Web" /></a></p>
<h3>WoorkUp.com | How to build a Social Networking Website with Drupal</h3>
<p><a href="http://woorkup.com/2009/12/10/how-to-build-a-social-networking-website-with-drupal/" title="November 2009, 50 Bookmarks To Collect The Best Of The Web"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/ded4e_nov18.jpg" alt="November 2009, 50 Bookmarks To Collect The Best Of The Web" /></a></p>
<h3>WoorkUp.com | Useful Tips Every Web Designer Should Know About SEO</h3>
<p><a href="http://woorkup.com/2009/12/16/useful-tips-every-web-designer-should-know-about-seo/" title="November 2009, 50 Bookmarks To Collect The Best Of The Web"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/ded4e_nov19.jpg" alt="November 2009, 50 Bookmarks To Collect The Best Of The Web" /></a></p>
<h2>Freebies and Resources</h2>
<h3>Blog.SpoonGraphics.co.uk | Free Hi-Resolution Paint Stroke Photoshop Brushes</h3>
<p><a href="http://www.blog.spoongraphics.co.uk/freebies/free-hi-resolution-paint-stroke-photoshop-brushes" title="November 2009, 50 Bookmarks To Collect The Best Of The Web"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/10d36_nov20.jpg" alt="November 2009, 50 Bookmarks To Collect The Best Of The Web" /></a></p>
<h3>ThePhotoArgus.com | 24 Amazing Photoshop Actions to Help You Achieve a Retro Look</h3>
<p><a href="http://www.thephotoargus.com/freebies/24-amazing-photoshop-actions-to-help-you-achieve-a-retro-look/" title="November 2009, 50 Bookmarks To Collect The Best Of The Web"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/10d36_nov21.jpg" alt="November 2009, 50 Bookmarks To Collect The Best Of The Web" /></a></p>
<h3>DesignM.ag | Freebie: Tea-Stained Paper Texture Set</h3>
<p><a href="http://designm.ag/freebies/tea-stained-paper/" title="November 2009, 50 Bookmarks To Collect The Best Of The Web"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/10d36_nov22.jpg" alt="November 2009, 50 Bookmarks To Collect The Best Of The Web" /></a></p>
<h3>WebDesignLedger.com | The Best Free Icon Sets of 2009</h3>
<p><a href="http://webdesignledger.com/freebies/the-best-free-icon-sets-of-2009" title="November 2009, 50 Bookmarks To Collect The Best Of The Web"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/10d36_nov23.jpg" alt="November 2009, 50 Bookmarks To Collect The Best Of The Web" /></a></p>
<h3>WebDesignLedger.com | 12 Excellent jQuery Plugins for Enhancing Forms</h3>
<p><a href="http://webdesignledger.com/resources/12-excellent-jquery-plugins-for-enhancing-forms" title="November 2009, 50 Bookmarks To Collect The Best Of The Web"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/10d36_nov23.jpg" alt="November 2009, 50 Bookmarks To Collect The Best Of The Web" /></a></p>
<h3>SmashingMagazine.com | 40 Free High-Quality WordPress Themes</h3>
<p><a href="http://www.smashingmagazine.com/2009/12/12/40-free-high-quality-wordpress-themes/" title="November 2009, 50 Bookmarks To Collect The Best Of The Web"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/c16c5_nov25.jpg" alt="November 2009, 50 Bookmarks To Collect The Best Of The Web" /></a></p>
<h3>WebDesignBooth.com | WordPress Web Optimization: 15 Tips And Plugins To Monitor, Speed Up And Optimize Your WordPress Blog</h3>
<p><a href="http://www.webdesignbooth.com/wordpress-web-optimization-15-tips-and-plugins-to-monitor-speed-up-and-optimize-your-wordpress-blog/" title="November 2009, 50 Bookmarks To Collect The Best Of The Web"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/c16c5_nov26.jpg" alt="November 2009, 50 Bookmarks To Collect The Best Of The Web" /></a></p>
<h2>Showcases and Inspiration</h2>
<h3>SpeckyBoy.com | 50 Examples of Effective Uses of Typography Within Web Design</h3>
<p><a href="http://speckyboy.com/2009/12/04/50-examples-of-effective-uses-of-typography-within-web-design/" title="November 2009, 50 Bookmarks To Collect The Best Of The Web"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/c16c5_nov27.jpg" alt="November 2009, 50 Bookmarks To Collect The Best Of The Web" /></a></p>
<h3>Noupe.com | The Beauty Of Splash Sculptures</h3>
<p><a href="http://www.noupe.com/inspiration/the-beauty-of-liquid-sculptures.html" title="November 2009, 50 Bookmarks To Collect The Best Of The Web"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/7e11a_nov28.jpg" alt="November 2009, 50 Bookmarks To Collect The Best Of The Web" /></a></p>
<h3>Blog.EchoEnduring.com | 25 Creative Website Footers</h3>
<p><a href="http://blog.echoenduring.com/2009/12/10/25-creative-website-footers/" title="November 2009, 50 Bookmarks To Collect The Best Of The Web"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/7e11a_nov29.jpg" alt="November 2009, 50 Bookmarks To Collect The Best Of The Web" /></a></p>
<h3>CreativityDen.com | 35 Websites that use transparency effectively</h3>
<p><a href="http://blog.creativityden.com/35-websites-that-use-transparency-effectively/" title="November 2009, 50 Bookmarks To Collect The Best Of The Web"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/7e11a_nov30.jpg" alt="November 2009, 50 Bookmarks To Collect The Best Of The Web" /></a></p>
<h3>SmashingShare.com | Photo Manipulation &#8211; 100 Kickass Photo Manipulation Art Examples</h3>
<p><a href="http://www.smashingshare.com/2009/12/02/100-kickass-photo-manipulation-art-examples/" title="November 2009, 50 Bookmarks To Collect The Best Of The Web"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/7e11a_nov31.jpg" alt="November 2009, 50 Bookmarks To Collect The Best Of The Web" /></a></p>
<h3>InstantsShift.com | 70+ Creative and Inspirational Website Designs</h3>
<p><a href="http://www.instantshift.com/2009/12/23/70-creative-and-inspirational-website-designs/" title="November 2009, 50 Bookmarks To Collect The Best Of The Web"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/42620_nov32.jpg" alt="November 2009, 50 Bookmarks To Collect The Best Of The Web" /></a></p>
<h3>InspirationTi.me | Say it Loud! 63 Websites with Huge Typography</h3>
<p><a href="http://inspirationti.me/websites/huge-type/" title="November 2009, 50 Bookmarks To Collect The Best Of The Web"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/42620_nov33.jpg" alt="November 2009, 50 Bookmarks To Collect The Best Of The Web" /></a></p>
<h3>Aext.net | Showcase of 30+ Blog Designs With Awesome Datetime Display</h3>
<p><a href="http://aext.net/2009/12/showcase-of-30-blog-designs-with-awesome-datetime-display/" title="November 2009, 50 Bookmarks To Collect The Best Of The Web"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/42620_nov34.jpg" alt="November 2009, 50 Bookmarks To Collect The Best Of The Web" /></a></p>
<h2>Illustrations and Digital Painting</h2>
<h3>Sandara on DeviantART | Black knight and companion</h3>
<p><a href="http://sandara.deviantart.com/art/black-knight-and-companion-142552178" title="November 2009, 50 Bookmarks To Collect The Best Of The Web"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/42620_nov35.jpg" alt="November 2009, 50 Bookmarks To Collect The Best Of The Web" /></a></p>
<h3>Candra on DeviantART | Potion Shop</h3>
<p><a href="http://candra.deviantart.com/art/Potion-Shop-145293506" title="November 2009, 50 Bookmarks To Collect The Best Of The Web"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/05584_nov36.jpg" alt="November 2009, 50 Bookmarks To Collect The Best Of The Web" /></a></p>
<h3>Behance.net | Portfolio Pieces on the Behance Network</h3>
<p><a href="http://www.behance.net/Gallery/Portfolio-Pieces/132602" title="November 2009, 50 Bookmarks To Collect The Best Of The Web"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/05584_nov37.jpg" alt="November 2009, 50 Bookmarks To Collect The Best Of The Web" /></a></p>
<h3>Behance.net | Sport artwork on the Behance Network</h3>
<p><a href="http://www.behance.net/Gallery/SPORT-artwork/319841" title="November 2009, 50 Bookmarks To Collect The Best Of The Web"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/05584_nov38.jpg" alt="November 2009, 50 Bookmarks To Collect The Best Of The Web" /></a></p>
<h3>Behance.net | New Illustrations on the Behance Network</h3>
<p><a href="http://www.behance.net/Gallery/New-Illustrations/313828" title="November 2009, 50 Bookmarks To Collect The Best Of The Web"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/da47c_nov39.jpg" alt="November 2009, 50 Bookmarks To Collect The Best Of The Web" /></a></p>
<h2>WebSite of The Month – NewToYork.com</h2>
<h3>Los colores olvidados</h3>
<p><a href="http://www.loscoloresolvidados.com/" title="November 2009, 50 Bookmarks To Collect The Best Of The Web"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/da47c_nov40.jpg" alt="November 2009, 50 Bookmarks To Collect The Best Of The Web" /></a></p>
<h2>Must-Follow on Twitter</h2>
<h3>Michela Chiucini (chelseagirl50) on Twitter</h3>
<p><a href="http://twitter.com/chelseagirl50" title="November 2009, 50 Bookmarks To Collect The Best Of The Web"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/da47c_nov41.jpg" alt="November 2009, 50 Bookmarks To Collect The Best Of The Web" /></a></p>
<h3>Callum Chapman (callumchapman) on Twitter</h3>
<p><a href="http://twitter.com/callumchapman" title="November 2009, 50 Bookmarks To Collect The Best Of The Web"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/da47c_nov42.jpg" alt="November 2009, 50 Bookmarks To Collect The Best Of The Web" /></a></p>
<h3>Calvin Lee (mayhemstudios) on Twitter</h3>
<p><a href="http://twitter.com/mayhemstudios" title="November 2009, 50 Bookmarks To Collect The Best Of The Web"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/4d7df_nov43.jpg" alt="November 2009, 50 Bookmarks To Collect The Best Of The Web" /></a></p>
<h2>Must Follow Blogs of the Month</h2>
<h3>BlogOf.FrancescoMugnai.com</h3>
<p><a href="http://blogof.francescomugnai.com/" title="November 2009, 50 Bookmarks To Collect The Best Of The Web"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/4d7df_nov44.jpg" alt="November 2009, 50 Bookmarks To Collect The Best Of The Web" /></a></p>
<h3>Design Informer &#8211; The Latest in Web Design and Graphic Design</h3>
<p><a href="http://designinformer.com/" title="November 2009, 50 Bookmarks To Collect The Best Of The Web"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/4d7df_nov45.jpg" alt="November 2009, 50 Bookmarks To Collect The Best Of The Web" /></a></p>
<h3>AEXT.NET &#8211; Programming, Design, Blogging</h3>
<p><a href="http://aext.net/" title="November 2009, 50 Bookmarks To Collect The Best Of The Web"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/4d7df_nov46.jpg" alt="November 2009, 50 Bookmarks To Collect The Best Of The Web" /></a></p>
<h2>The Best of the Month on Web Design Updates</h2>
<h3>55 Decisive Useful jQuery Tutorials | Web Design Updates</h3>
<p><a href="http://www.pvmgarage.com/wdu/2009/12/55-decisive-useful-jquery-tutorials/" title="November 2009, 50 Bookmarks To Collect The Best Of The Web"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/e5bbd_nov47.jpg" alt="November 2009, 50 Bookmarks To Collect The Best Of The Web" /></a></p>
<h3>Design a cool and original jeans style Business Card in Photoshop</h3>
<p><a href="http://www.pvmgarage.com/wdu/2009/12/design-a-cool-and-original-jeans-style-business-card-in-photoshop/" title="November 2009, 50 Bookmarks To Collect The Best Of The Web"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/e5bbd_nov48.jpg" alt="November 2009, 50 Bookmarks To Collect The Best Of The Web" /></a></p>
<h3>10 WordPress Plugins To Boost Up Your Theme You Have Ever Known</h3>
<p><a href="http://www.pvmgarage.com/wdu/2009/12/10-wordpress-plugins-to-boost-up-your-theme-you-have-ever-known/" title="November 2009, 50 Bookmarks To Collect The Best Of The Web"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/c3371_nov49.jpg" alt="November 2009, 50 Bookmarks To Collect The Best Of The Web" /></a></p>
<h3>Tutorial: Design a Clean Good-Looking Portfolio In Photoshop</h3>
<p><a href="http://www.pvmgarage.com/wdu/2009/12/tutorial-design-a-clean-good-looking-portfolio-in-photoshop/" title="November 2009, 50 Bookmarks To Collect The Best Of The Web"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/c3371_nov50.jpg" alt="November 2009, 50 Bookmarks To Collect The Best Of The Web" /></a></p>
<h2>Don&#8217;t Forget, Good Stuff on PV.M Garage</h2>
<h3>Nice And Simple Toolbar For Your Website With CSS3 And jQuery</h3>
<p><a href="http://www.pvmgarage.com/en/2009/12/nice-and-simple-toolbar-for-your-website-with-css3-and-jquery/" title="55 Unconventional And Original Free Fonts For An Unique Design"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/226a3_nov_pvm1.jpg" alt="55 Unconventional And Original Free Fonts For An Unique Design" /></a></p>
<h3>Inspirational Showcase Of Music-Related Logos</h3>
<p><a href="http://www.pvmgarage.com/en/2009/12/inspirational-showcase-of-music-related-logos/" title="Become A WordPress Theme Developer Who Rocks In Four Steps (and 50+ readings)"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/226a3_nov_pvm1.jpg" alt="Become A WordPress Theme Developer Who Rocks In Four Steps (and 50+ readings)" /></a></p>
<div>
<h3>Related Posts:</h3>
<ul>
<li><a href="http://www.pvmgarage.com/en/2009/06/may-2009-25-bookmarks-to-collect-the-best-of-web/" rel="bookmark">May 2009, 25+ Bookmarks to Collect the Best of Web</a></li>
<li><a href="http://www.pvmgarage.com/en/2009/07/june-2009-30-bookmarks-to-collect-the-best-of-web/" rel="bookmark">June 2009, 30+ Bookmarks to Collect the Best of Web</a></li>
<li><a href="http://www.pvmgarage.com/en/2009/09/instantshift-submission-music-inspiration-behind-web-design-work/" rel="bookmark">InstantShift Submission &#8211; Music Inspiration Behind A Web Design Work</a></li>
<li><a href="http://www.pvmgarage.com/en/2009/09/september-2009-50-bookmarks-to-collect-the-best-of-web/" rel="bookmark">September 2009, 50+ Bookmarks To Collect The Best Of The Web</a></li>
<li><a href="http://www.pvmgarage.com/en/2009/09/august-2009-50-bookmarks-to-collect-the-best-of-web/" rel="bookmark">August 2009, 50 Bookmarks To Collect The Best Of The Web</a></li>
</ul>
</div>
<p><a href="http://feedads.g.doubleclick.net/~a/ZKOEV8Ddr3U4XtZtSjI5AeRI8qM/0/da"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/54349_di" border="0"></img></a><br />
<a href="http://feedads.g.doubleclick.net/~a/ZKOEV8Ddr3U4XtZtSjI5AeRI8qM/1/da"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/54349_di" border="0"></img></a></p>
<div>
<a href="http://feeds.feedburner.com/~ff/pvmgarage_en?a=i0hKABjxjyk:SBedE80w9EQ:yIl2AUoC8zA"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/54349_pvmgarage_en?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/pvmgarage_en?a=i0hKABjxjyk:SBedE80w9EQ:dnMXMwOfBR0"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/54349_pvmgarage_en?d=dnMXMwOfBR0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/pvmgarage_en?a=i0hKABjxjyk:SBedE80w9EQ:V_sGLiPBpWU"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/39261_pvmgarage_en?i=i0hKABjxjyk:SBedE80w9EQ:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/pvmgarage_en?a=i0hKABjxjyk:SBedE80w9EQ:qj6IDK7rITs"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/39261_pvmgarage_en?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/pvmgarage_en?a=i0hKABjxjyk:SBedE80w9EQ:gIN9vFwOqvQ"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/39261_pvmgarage_en?i=i0hKABjxjyk:SBedE80w9EQ:gIN9vFwOqvQ" border="0"></img></a>
</div>
<p><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/1aec2_i0hKABjxjyk" height="1" width="1" /><br />
<a href="http://feeds2.feedburner.com/pvmgarage_en">Go to Source</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.neurosoftware.ro/programming-blog/facebook-web-design/web-design/november-2009-50-bookmarks-to-collect-the-best-of-the-web/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Digging into WordPress Review, and Free Copies: Winners Announced!</title>
		<link>http://www.neurosoftware.ro/programming-blog/facebook-web-design/web-resources/digging-into-wordpress-review-and-free-copies-winners-announced/</link>
		<comments>http://www.neurosoftware.ro/programming-blog/facebook-web-design/web-resources/digging-into-wordpress-review-and-free-copies-winners-announced/#comments</comments>
		<pubDate>Sat, 05 Dec 2009 23:45:22 +0000</pubDate>
		<dc:creator>Facebook-Web-Design</dc:creator>
				<category><![CDATA[web resources]]></category>
		<category><![CDATA[book]]></category>
		<category><![CDATA[Chris]]></category>
		<category><![CDATA[Chris Coyier]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[css tricks]]></category>
		<category><![CDATA[digging]]></category>
		<category><![CDATA[Jeff]]></category>
		<category><![CDATA[Jeff Starr]]></category>
		<category><![CDATA[Mark Christianson]]></category>
		<category><![CDATA[mini book]]></category>
		<category><![CDATA[minimal confusion]]></category>
		<category><![CDATA[page ebook]]></category>
		<category><![CDATA[Review]]></category>
		<category><![CDATA[Rodrigo Flores]]></category>
		<category><![CDATA[Teacher

Chris]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.neurosoftware.ro/programming-blog/facebook-web-design/web-resources/digging-into-wordpress-review-and-free-copies-winners-announced/</guid>
		<description><![CDATA[A couple weeks ago, I received an email from Chris Coyier, of CSS-Tricks, containing a review copy of his recently released &#8220;Digging into WordPress&#8221; e-book. Expecting it to be more of a mini-book, I nonchalantly told him that I&#8217;d post a review that Friday; little did I know that this was a full-fledged book, packed [...]]]></description>
			<content:encoded><![CDATA[<p>
A couple weeks ago, I received an email from Chris Coyier, of <a href="http://www.css-tricks.com">CSS-Tricks</a>, containing a review copy of his recently released &#8220;<a href="https://www.e-junkie.com/ecom/gb.php?cl=88539&amp;c=ib&amp;aff=28697" target="ejejcsingle">Digging into WordPress</a>&#8221; e-book. Expecting it to be more of a mini-book, I nonchalantly told him that I&#8217;d post a review that Friday; little did I know that this was a full-fledged book, packed full of knowledge.
</p>
<p><span></span></p>
<h3>Update: Winners Announced</h3>
<p>Congratulations to the following three readers who were randomly selected! </p>
<ul>
<li><a href="http://www.kajrietberg.nl/">Kaj Rietberg</a></li>
<li><a href="http://thwdg.com/">Rodrigo Flores</a></li>
<li><a href="http://www.offdutygamers.com/">Mark Christianson</a></li>
</ul>
<p><em>If your name is listed above, please contact nettuts@tutsplus.com to claim your prize!</em> </p>
<blockquote>
<p>
&#8220;Written by WordPress veterans Chris Coyier and <a href="http://www.perishablepress.com">Jeff Starr</a>, Digging into WordPress is 400+ jam-packed pages of everything you need to get the most out of WordPress. WordPress is great right out of the box, but unless you want an ordinary vanilla blog, it is essential to understand the full potential of WordPress and have the right tools to get the job done.&#8221; </p>
</blockquote>
<div>
<a href="https://www.e-junkie.com/ecom/gb.php?cl=88539&amp;c=ib&amp;aff=28697" target="ejejcsingle"><br />
<img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/aa874_book-cover.png" alt="Digging into WordPress" /><br />
</a>
</div>
<p>
Those of you who read <a href="http://www.css-tricks.com">CSS-Tricks</a> will be well aware that Chris writes in a very easy-to-understand fashion. Rather than flooding each article with high-level jargon that only the most knowledgeable of us can understand, he instead dumbs each article down to the fundamentals &#8211; even to the point of being honest enough to convey when he doesn&#8217;t quite understand the reasoning behind some line of code.
</p>
<p>
As a result, he&#8217;s built a wonderful community and reputation for himself in the last few years. This book, co-written with <a href="http://www.perishablepress.com">Jeff Starr</a>, is no different: straight-forward, easy-to-understand, and simple.
</p>
<h3>Simple Learning</h3>
<p>
Thanks to the use of fun, and helpful illustrations, even those who are brand new to WordPress will be able to <strong>dig</strong> their heals in &#8212; with minimal confusion.
</p>
<p>
The 400 page <a href="https://www.e-junkie.com/ecom/gb.php?cl=88539&amp;c=ib&amp;aff=28697" target="ejejcsingle">ebook </a>covers everything from navigating the admin panel, to creating a comments form, to even more advanced topics like plugin development. And though it&#8217;s generally good practice to point out a few negatives in one&#8217;s review, it&#8217;s difficult to do so when a book is such a pleasure to read.
</p>
<h3>Heart of a Teacher</h3>
<p>
Chris and Jeff, in this book, have proven that they have the hearts of teachers. Even for intermediate to advanced WordPressers, there&#8217;s something to be learned &#8212; and at $27, the purchase is a no-brainer!
</p>
<blockquote>
<p>
&#8220;Digging into WordPress is perfect for WordPress users in the beginner to intermediate range, but contains plenty of great information for the advanced user as well. If you have any level of experience working with web design or WordPress, this book is written to help you take WordPress to the next level.&#8221;
</p>
</blockquote>
<h3>400 Pages of Practical Information</h3>
<p>&#8220;There is much to learn about the World&#8217;s most popular publishing platform.<br />
	       From your first steps of learning about WordPress all the way through<br />
	       maintaining a site throughout the years, this book is packed with truly<br />
	       practical information.&#8221;</p>
<h3>Lots of Code Samples</h3>
<p>&#8220;We go into depth about the anatomy of a WordPress theme. How they work, and how<br />
	       to write the code you need to do the things you want. This means real code that<br />
	       you can sink your teeth into, as well as copy and paste. Beyond theme<br />
	       building, we introduce many tricks your functions.php file can pull off and show<br />
	       you ways to increase performance and security through HTAccess.&#8221;</p>
<h3>What About the Free Copies!? </h3>
<div>
<img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/b6415_digwp-468-60-01.jpg" alt="Digging into WordPress Review, and Free Copies!" />
</div>
<p>
Chris has generously offered to give away a few copies to our community. <strong>To enter, simply leave a comment, and be sure to check back on Friday to see if you were randomly chosen! </strong>
</p>
<ul>
<li>Follow us on <a href="http://www.twitter.com/nettuts">Twitter</a>, or subscribe to the <a href="http://feeds.feedburner.com/nettuts" title="Nettuts+ RSS Feed">Nettuts+ RSS Feed</a> for the best web development tutorials on the web.</li>
</ul>
<p>

</p>
<p><a href="http://feedads.g.doubleclick.net/~a/5ezgX4cqELbAVZgjGdEH1pmd_aI/0/da"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/b6415_di" border="0"></img></a><br />
<a href="http://feedads.g.doubleclick.net/~a/5ezgX4cqELbAVZgjGdEH1pmd_aI/1/da"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/1f7bd_di" border="0"></img></a></p>
<div>
<a href="http://feeds.feedburner.com/~ff/nettuts?a=gCIAI2gfqkc:oXmKIq-vNoM:yIl2AUoC8zA"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/1f7bd_nettuts?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/nettuts?a=gCIAI2gfqkc:oXmKIq-vNoM:F7zBnMyn0Lo"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/1f7bd_nettuts?i=gCIAI2gfqkc:oXmKIq-vNoM:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/nettuts?a=gCIAI2gfqkc:oXmKIq-vNoM:V_sGLiPBpWU"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/1f7bd_nettuts?i=gCIAI2gfqkc:oXmKIq-vNoM:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/nettuts?a=gCIAI2gfqkc:oXmKIq-vNoM:gIN9vFwOqvQ"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/1f7bd_nettuts?i=gCIAI2gfqkc:oXmKIq-vNoM:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/nettuts?a=gCIAI2gfqkc:oXmKIq-vNoM:TzevzKxY174"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/1f7bd_nettuts?d=TzevzKxY174" border="0"></img></a>
</div>
<p><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/7ae41_gCIAI2gfqkc" height="1" width="1" /><br />
<a href="http://feedproxy.google.com/nettuts">Go to Source</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.neurosoftware.ro/programming-blog/facebook-web-design/web-resources/digging-into-wordpress-review-and-free-copies-winners-announced/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>The Best jQuery Plugins of 2009</title>
		<link>http://www.neurosoftware.ro/programming-blog/facebook-web-design/design/the-best-jquery-plugins-of-2009/</link>
		<comments>http://www.neurosoftware.ro/programming-blog/facebook-web-design/design/the-best-jquery-plugins-of-2009/#comments</comments>
		<pubDate>Sat, 05 Dec 2009 10:15:27 +0000</pubDate>
		<dc:creator>Facebook-Web-Design</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Chris Coyier]]></category>
		<category><![CDATA[css tricks]]></category>
		<category><![CDATA[easy slider]]></category>
		<category><![CDATA[Gallery]]></category>
		<category><![CDATA[image]]></category>
		<category><![CDATA[javascript image]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[photoshop tutorials]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[slider]]></category>
		<category><![CDATA[web designers]]></category>

		<guid isPermaLink="false">http://www.neurosoftware.ro/programming-blog/facebook-web-design/design/the-best-jquery-plugins-of-2009/</guid>
		<description><![CDATA[During the past few weeks we&#8217;ve been publishing our &#8220;Best of 2009&#8243; series in which we&#8217;ve shown you the best WordPress themes, fonts, icons, and Photoshop Tutorials. In this article, our focus is on jQuery. Over the past couple of years jQuery has been growing in popularity, which means more and more plugins are being [...]]]></description>
			<content:encoded><![CDATA[<p>During the past few weeks we&#8217;ve been publishing our &#8220;Best of 2009&#8243; series in which we&#8217;ve shown you the best <a href="http://webdesignledger.com/freebies/the-best-free-wordpress-themes-of-2009">WordPress themes</a>, <a href="http://webdesignledger.com/freebies/the-best-free-fonts-of-2009">fonts</a>, <a href="http://webdesignledger.com/freebies/the-best-free-icon-sets-of-2009">icons</a>, and <a href="http://webdesignledger.com/tutorials/the-best-photoshop-tutorials-of-2009">Photoshop Tutorials</a>. In this article, our focus is on jQuery. Over the past couple of years jQuery has been growing in popularity, which means more and more plugins are being created to make web designers&#8217; lives easier. Here are our favorites from 2009.<span></span></p>
<h2>Content Sliders</h2>
<p>This year we saw a growing popularity in using content sliders as a way to display several pieces of content within a limited area or to engage the user with the sliding animation. Normally this is done in a featured banner area near the top of the page. There were several jQuery plugins written in &#8216;09 to accomplish this type of effect, but here are our favorites.</p>
<h3><a href="http://css-tricks.com/anythingslider-jquery-plugin/" target="_blank">AnythingSlider</a></h3>
<p><a href="http://css-tricks.com/anythingslider-jquery-plugin/" target="_blank"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/46c15_jquery_2009_1.jpg" alt="jquery plugins" /></a></p>
<p>AnythingSlider is created by Chris Coyier of CSS-Tricks and is a fully featured slider that is widely useful.</p>
<h3><a href="http://cssglobe.com/post/5780/easy-slider-17-numeric-navigation-jquery-slider" target="_blank">Easy Slider</a></h3>
<p><a href="http://cssglobe.com/post/5780/easy-slider-17-numeric-navigation-jquery-slider" target="_blank"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/0c016_jquery_2009_3.jpg" alt="jquery plugins" /></a></p>
<p>Easy Slider is a content slider that gives you the the option to choose between classic previous/next navigation or to use a numeric &#8220;pagination&#8221; style navigation. </p>
<h3><a href="http://www.ndoherty.biz/tag/coda-slider/" target="_blank">Coda-Slider 2.0</a></h3>
<p><a href="http://www.ndoherty.biz/tag/coda-slider/" target="_blank"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/142ab_jquery_2009_7.jpg" alt="jquery plugins" /></a></p>
<p>Coda-Slider 2.0 is aimed to mimic the slider effect on the promo page for Panic’s Coda software. The original version was hacked together in 2007, but this 2.0 version is built from the ground up.</p>
<h2>Image Galleries</h2>
<p>The days of having to use Flash to create image galleries with cross fading or sliding transitions are long gone. Thanks to jQuery these types of effects can be easily achieved with javascript. Here are our favorite image gallery plugins from this year.</p>
<h3><a href="http://devkick.com/lab/galleria/" target="_blank">Galleria</a></h3>
<p><a href="http://devkick.com/lab/galleria/" target="_blank"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/1f8f6_jquery_2009_4.jpg" alt="jquery plugins" /></a></p>
<p>Galleria is a javascript image gallery written in jQuery. It loads the images one by one from an unordered list and displays thumbnails when each image is loaded. It will create thumbnails for you if you choose so, scaled or unscaled, centered and cropped inside a fixed thumbnail box defined by CSS.</p>
<h3><a href="http://www.catchmyfame.com/2009/08/13/jquery-panel-gallery-1-1-plugin-released/" target="_blank">jQuery Panel Gallery</a></h3>
<p><a href="http://www.catchmyfame.com/2009/08/13/jquery-panel-gallery-1-1-plugin-released/" target="_blank"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/ad116_jquery_2009_5.jpg" alt="jquery plugins" /></a></p>
<p>jQuery Panel Gallery is a compact image gallery that can easily be configured. Not one image needs to be sliced or edited to work with this plugin. The plugin handles everything itself. You can even configure fading transitions per image.</p>
<h3><a href="http://www.gcmingati.net/wordpress/wp-content/lab/jquery/imagestrip/imageslide-plugin.html" target="_blank">slideViewer</a></h3>
<p><a href="http://www.gcmingati.net/wordpress/wp-content/lab/jquery/imagestrip/imageslide-plugin.html" target="_blank"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/fc2da_jquery_2009_10.jpg" alt="jquery plugins" /></a></p>
<p>slideViewer checks for the number of images within your list, and dynamically creates a set of links to command (slide) you pictures. Also, clicking on each image will make the gallery slide to the next picture.</p>
<h3><a href="http://www.buildinternet.com/project/supersized/" target="_blank">Supersized</a></h3>
<p><a href="http://www.buildinternet.com/project/supersized/" target="_blank"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/45630_jquery_2009_6.jpg" alt="jquery plugins" /></a></p>
<p>Supersized cycles images with transitions and preloading. It automatically resizes images to fill browser while maintaining image dimension ratio.</p>
<h2>Navigation</h2>
<p>I believe navigation is an aspect of a web site that should kept simple and easy to use. However, if there is a need to create a more engaging nav, jQuery is your best bet. Here are a few of the best from &#8216;09.</p>
<h3><a href="http://pupunzi.open-lab.com/mb-jquery-components/mb-_menu/" target="_blank">jquery mb.menu</a></h3>
<p><a href="http://pupunzi.open-lab.com/mb-jquery-components/mb-_menu/" target="_blank"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/59b0f_jquery_2009_8.jpg" alt="jquery plugins" /></a></p>
<h3><a href="http://www.queness.com/post/256/horizontal-scroll-menu-with-jquery-tutorial" target="_blank">Horizontal Scroll Menu with jQuery </a></h3>
<p><a href="http://www.queness.com/post/256/horizontal-scroll-menu-with-jquery-tutorial" target="_blank"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/26aa6_jquery_2009_16.jpg" alt="jquery plugins" /></a></p>
<p>This isn&#8217;t a plugin, but I had to include it since it is such a cool effect. It&#8217;s a horizontal scroll menu that scrolls automatically according to your mouse axis-Y movement.</p>
<h3><a href="http://www.newmediacampaigns.com/page/autosprites-jquery-menu-plugin" target="_blank">AutoSprites</a></h3>
<p><a href="http://www.newmediacampaigns.com/page/autosprites-jquery-menu-plugin" target="_blank"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/14394_jquery_2009_9.jpg" alt="jquery plugins" /></a></p>
<h2>Forms and Tables</h2>
<p>Working with forms and tables is probably not the most glamorous part of web design and development, but it has to be done. There were several plugins released this year to help you spice things up a bit. Here are our favorites.</p>
<h3><a href="http://www.unwrongest.com/projects/password-strength/" target="_blank">Password Strength</a></h3>
<p><a href="http://www.unwrongest.com/projects/password-strength/" target="_blank"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/bc95c_jquery_2009_12.jpg" alt="jquery plugins" /></a></p>
<p>Password Strength tries to calculate how many possibilities the hacker needs to try to guess your password.</p>
<h3><a href="http://www.webdesignbeach.com/beachbar/ajax-fancy-captcha-jquery-plugin" target="_blank">Ajax Fancy Capcha</a></h3>
<p><a href="http://www.webdesignbeach.com/beachbar/ajax-fancy-captcha-jquery-plugin" target="_blank"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/87201_jquery_2009_13.jpg" alt="jquery plugins" /></a></p>
<p>Ajax Fancy Captcha is a jQuery plugin that helps you protect your web pages from bots and spammers. It introduces a new, intuitive way of completing “verify humanity” tasks.</p>
<h3><a href="http://www.chromaloop.com/posts/chromatable-jquery-plugin" target="_blank">Chromatable</a></h3>
<p><a href="http://www.chromaloop.com/posts/chromatable-jquery-plugin" target="_blank"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/f040b_jquery_tables_10.jpg" alt="jquery tables" /></a></p>
<p>Chromatable allows you to easily create scrolling tables with fixed headers.</p>
<h3><a href="http://www.dfc-e.com/metiers/multimedia/opensource/jqtransform/" target="_blank">jqTransform</a></h3>
<p><a href="http://www.dfc-e.com/metiers/multimedia/opensource/jqtransform/" target="_blank"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/f040b_jquery_2009_14.jpg" alt="jquery plugins" /></a></p>
<p>jqTransform is a styling plugin which allows you to skin form elements.</p>
<h3><a href="http://www.uploadify.com/" target="_blank">Uploadify</a></h3>
<p><a href="http://www.uploadify.com/" target="_blank"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/d74c5_jquery_2009_15.jpg" alt="jquery plugins" /></a></p>
<p>Uploadify allows the easy integration of a multiple (or single) file uploads on your website.</p>
<h3><a href="http://www.jankoatwarpspeed.com/post/2009/07/20/Expand-table-rows-with-jQuery-jExpand-plugin.aspx" target="_blank">jExpand </a></h3>
<p><a href="http://www.jankoatwarpspeed.com/post/2009/07/20/Expand-table-rows-with-jQuery-jExpand-plugin.aspx" target="_blank"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/90ebc_jquery_tables_1.jpg" alt="jquery tables" /></a></p>
<p>jExpand is ultra lightweight jQuery plugin that will make your tables expandable. Typical for line of business applications, this feature can help you organize tables better. This way, tables can hold more information such as images, lists, diagrams and other elements.</p>
<p><a href="http://feeds.feedburner.com/WebDesignLedger">Go to Source</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.neurosoftware.ro/programming-blog/facebook-web-design/design/the-best-jquery-plugins-of-2009/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>MyInkTrail: Best of the Design Community, November 2009</title>
		<link>http://www.neurosoftware.ro/programming-blog/facebook-web-design/web-resources/myinktrail-best-of-the-design-community-november-2009/</link>
		<comments>http://www.neurosoftware.ro/programming-blog/facebook-web-design/web-resources/myinktrail-best-of-the-design-community-november-2009/#comments</comments>
		<pubDate>Fri, 04 Dec 2009 04:15:22 +0000</pubDate>
		<dc:creator>Facebook-Web-Design</dc:creator>
				<category><![CDATA[web resources]]></category>
		<category><![CDATA[Andy Soward]]></category>
		<category><![CDATA[bold predictions]]></category>
		<category><![CDATA[Chris Coyier]]></category>
		<category><![CDATA[Chris Spooner]]></category>
		<category><![CDATA[community]]></category>
		<category><![CDATA[community interview]]></category>
		<category><![CDATA[David Airey]]></category>
		<category><![CDATA[david walsh]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[grace smith]]></category>
		<category><![CDATA[informed designer]]></category>
		<category><![CDATA[Jeff Starr]]></category>
		<category><![CDATA[Jon Phillips]]></category>
		<category><![CDATA[time]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[web design samples]]></category>

		<guid isPermaLink="false">http://www.neurosoftware.ro/programming-blog/facebook-web-design/web-resources/myinktrail-best-of-the-design-community-november-2009/</guid>
		<description><![CDATA[Introduction MyInkTrail, is my trek through the articles, tutorials, freebies and general news from the design community for each month. November was a fast moving month filled with quality design articles, resources, and plenty of turkey and family. There was also a couple of good looking books from familiar names in the design blogging world. [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://feedads.g.doubleclick.net/~a/p3KP_cvTsE0VgkVkA3DmuCmyGbE/0/da"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/fea52_di" border="0"></img></a><br />
<a href="http://feedads.g.doubleclick.net/~a/p3KP_cvTsE0VgkVkA3DmuCmyGbE/1/da"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/fea52_di" border="0"></img></a></p>
<h2><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/2e9a0_MyInkTrail1009Large.jpg" alt="MyInkTrail1009Large" width="575" height="200" class="alignleft size-full wp-image-7889" />Introduction</h2>
<p>MyInkTrail, is my trek through the articles, tutorials, freebies and general news from the design community for each month. November was a fast moving month filled with quality design articles, resources, and plenty of turkey and family. There was also a couple of good looking books from familiar names in the design blogging world.</p>
<h2>Articles</h2>
<div>
<h3><a href="http://line25.com/articles/selling-ad-space-tips-from-top-design-blog-owners"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/02fdd_line-25.jpg" alt="Selling Ad Space: Tips from Top Design Blog Owners" width="140" height="140" class="alignleft size-full wp-image-7840" /></a><a href="http://line25.com/articles/selling-ad-space-tips-from-top-design-blog-owners">Selling Ad Space: Tips from Top Design Blog Owners</a></h3>
<p>A design community interview that reveals tips for selling ad space on your blog. The interview questions cover: what type of services bloggers use, how they set their pricing, solicitation methods, and what are their best performing ads.</p>
<div>&nbsp;</div>
</div>
<div>
<h3><a href="http://www.thedesigncubicle.com/2009/07/how-to-become-a-more-effective-proficient-and-informed-designer/"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/c6623_design-cubicle.jpg" alt="How To Become A More Effective, Proficient and Informed Designer" width="140" height="140" class="alignleft size-full wp-image-7843" /></a><a href="http://www.thedesigncubicle.com/2009/07/how-to-become-a-more-effective-proficient-and-informed-designer/">How To Become A More Effective, Proficient and Informed Designer</a></h3>
<p>In the never ending search to discover ways to make more time in a day, finding ways to be more effective and proficient are invaluable. This post explores ways to organize some of your daily tasks.</p>
<div>&nbsp;</div>
</div>
<div>
<h3><a href="http://www.gracesmith.co.uk/if-you-had-to-marry-a-browser-which-one/"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/50ac6_grace-smith.jpg" alt="If You Had To Marry A Browser…Which One?" width="140" height="140" class="alignleft size-full wp-image-7844" /></a><a href="http://www.gracesmith.co.uk/if-you-had-to-marry-a-browser-which-one/">If You Had To Marry A Browser…Which One?</a></h3>
<p>This is a comical design community interview that looks into what browsers people like. I love the answers that revolve around IE&#8217;s many short comings.</p>
<div>&nbsp;</div>
</div>
<div>
<h3><a href="http://www.inspiredm.com/2009/11/04/how-to-successfully-launch-a-web-design-startup-with-social-media-and-no-budget/"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/33b2c_inspired-mag.jpg" alt="How To: Successfully Launch a Web Design Startup with Social Media and No Budget" width="140" height="140" class="alignleft size-full wp-image-7846" /></a><a href="http://www.inspiredm.com/2009/11/04/how-to-successfully-launch-a-web-design-startup-with-social-media-and-no-budget/">How To: Successfully Launch a Web Design Startup with Social Media and No Budget</a></h3>
<p>This article is chocked full of practical advice for launching a web design startup. The best piece of advice from this post, may very well be&#8230; &#8220;The real cost is time.&#8221;</p>
<div>&nbsp;</div>
</div>
<div>
<h3><a href="http://spyrestudios.com/grunge-web-design-examples-best-practices/"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/33b2c_sprye-studios.jpg" alt="Grunge In Web Design: Samples And Best Practices" width="140" height="140" class="alignleft size-full wp-image-7853" /></a><a href="http://spyrestudios.com/grunge-web-design-examples-best-practices/">Grunge In Web Design: Samples And Best Practices</a></h3>
<p>This is a really well put together article about the best practices for using grunge in webdesign, it includes lots of great inspiration.</p>
<div>&nbsp;</div>
</div>
<div>
<h3><a href="http://davidwalsh.name/predictions-2010"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/85e97_david-walsh.jpg" alt="Bold Web Predictions for 2010" width="140" height="140" class="alignleft size-full wp-image-7855" /></a><a href="http://davidwalsh.name/predictions-2010">Bold Web Predictions for 2010</a></h3>
<p><a href="http://davidwalsh.name">David Walsh</a> makes some bold predictions for 2010 about social media, browsers, operating systems and more.</p>
<div>&nbsp;</div>
</div>
<div>
<h3><a href="http://sixrevisions.com/web_design/color-the-next-limited-resource/"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/3643e_six-revisions.jpg" alt="Color: The Next Limited Resource?" width="140" height="140" class="alignleft size-full wp-image-7856" /></a><a href="http://sixrevisions.com/web_design/color-the-next-limited-resource/">Color: The Next Limited Resource?</a></h3>
<p>This is an interesting and quite frightening article about the potential of big businesses owning the rights to certain colors.</p>
<div>&nbsp;</div>
</div>
<div>
<h3><a href="http://www.uxbooth.com/blog/transparency-benefits-and-best-practices/"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/cd927_ux-booth.jpg" alt="Transparency: Benefits and Best Practices" width="140" height="140" class="alignleft size-full wp-image-7858" /></a><a href="http://www.uxbooth.com/blog/transparency-benefits-and-best-practices/">Transparency: Benefits and Best Practices</a></h3>
<p>I&#8217;m trying to be more transparent and personable here on MyInkBlog, so this article about the benefits and best practices came at a good time for me.</p>
<div>&nbsp;</div>
</div>
<div>
<h3><a href="http://inspiredology.com/stories-behind-your-favourite-blogs/"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/cd927_inspiredology.jpg" alt="Stories behind your favourite blogs" width="140" height="140" class="alignleft size-full wp-image-7860" /></a><a href="http://inspiredology.com/stories-behind-your-favourite-blogs/">Stories behind your favourite blogs</a></h3>
<p>Get the story behind a lot of the top blogs in the design community and how their name originated.</p>
<div>&nbsp;</div>
</div>
<h2>Tutorials</h2>
<div>
<h3><a href="http://www.sohtanaka.com/web-design/mega-drop-downs-w-css-jquery/"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/aaebc_soh-tanaka.jpg" alt="Mega Drop Down Menus w/ CSS &amp; jQuery" width="140" height="140" class="alignleft size-full wp-image-7862" /></a><a href="http://www.sohtanaka.com/web-design/mega-drop-downs-w-css-jquery/">Mega Drop Down Menus w/ CSS &#38; jQuery</a></h3>
<p>These huge dropdown menus are getting more popular by the minute, and they are a great way to handle navigation for large sites. Learn how to create one with the use of css and jQuery.</p>
<div>&nbsp;</div>
</div>
<div>
<h3><a href="http://www.1stwebdesigner.com/tutorials/learn-how-to-create-great-typographic-wallpaper-photoshop/"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/4f448_1st-web-designer.jpg" alt="How To Create Great Typographic Wallpaper In Photoshop" width="140" height="140" class="alignleft size-full wp-image-7864" /></a><a href="http://www.1stwebdesigner.com/tutorials/learn-how-to-create-great-typographic-wallpaper-photoshop/">How To Create Great Typographic Wallpaper In Photoshop</a></h3>
<p>Check out how to create this clever, but simple typographic wallpaper in Photoshop.</p>
<div>&nbsp;</div>
</div>
<div>
<h3><a href="http://colorburned.com/2009/11/create-your-own-set-of-multi-colored-illustrator-paint-brushes.html"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/16754_colorburned.jpg" alt="Create Your Own Set of Multi-Colored Illustrator Paint Brushes" width="140" height="140" class="alignleft size-full wp-image-7866" /></a><a href="http://colorburned.com/2009/11/create-your-own-set-of-multi-colored-illustrator-paint-brushes.html">Create Your Own Set of Multi-Colored Illustrator Paint Brushes</a></h3>
<p>This is an awesomely detailed walkthrough of how to create a custom set of multi colored paint brushes for Illustrator.</p>
<div>&nbsp;</div>
</div>
<div>
<h3><a href="http://www.blog.spoongraphics.co.uk/tutorials/how-to-create-a-crafts-inspired-vector-kids-illustration"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/16754_spoon-graphics.jpg" alt="How to Create a Crafts Inspired Vector Kids Illustration" width="140" height="140" class="alignleft size-full wp-image-7869" /></a><a href="http://www.blog.spoongraphics.co.uk/tutorials/how-to-create-a-crafts-inspired-vector-kids-illustration">How to Create a Crafts Inspired Vector Kids Illustration</a></h3>
<p>This tutorial teaches you how to create clever kid illustrations with plaid textures and stitching in Illustrator.</p>
<div>&nbsp;</div>
</div>
<h2>Freebies</h2>
<div>
<h3><a href="http://www.blog.spoongraphics.co.uk/freebies/free-hi-resolution-paint-stroke-photoshop-brushes"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/098fc_spoon-graphics-brushes.jpg" alt="Free Hi-Resolution Paint Stroke Photoshop Brushes" width="140" height="140" class="alignleft size-full wp-image-7874" /></a><a href="http://www.blog.spoongraphics.co.uk/freebies/free-hi-resolution-paint-stroke-photoshop-brushes">Free Hi-Resolution Paint Stroke Photoshop Brushes</a></h3>
<p>I realize I post a paint brush freebie almost every month, but they are awesome to use for design, and this is an exceptional set.</p>
<div>&nbsp;</div>
</div>
<div>
<h3><a href="http://www.smashingmagazine.com/2009/11/07/glassical-a-free-wordpress-theme/"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/cc07d_smashing-mag.jpg" alt="Glassical: A Free WordPress Theme" width="140" height="140" class="alignleft size-full wp-image-7876" /></a><a href="http://www.smashingmagazine.com/2009/11/07/glassical-a-free-wordpress-theme/">Glassical: A Free WordPress Theme</a></h3>
<p>Hooray for high quality free WordPress themes! They can be really helpful for time pressed design jobs, or they can just provide a nice starting point. This is a refreshingly simple and clean theme.</p>
<div>&nbsp;</div>
</div>
<h2>Featured Stuff</h2>
<div>
<h3><a href="http://www.workstationsetups.com"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/cc07d_workstation-setups.jpg" alt="Workstation Setups" width="140" height="140" class="alignleft size-full wp-image-7878" /></a><a href="http://www.workstationsetups.com">Workstation Setups</a></h3>
<p>A new site to get inspiration for your home office. Check out the workstations of Chris Spooner, Jon Phillips, Andy Soward, yours truly and many others.</p>
<div>&nbsp;</div>
</div>
<div>
<h3><a href="https://myows.com/"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/da3e5_myows.jpg" alt="Myows" width="140" height="140" class="alignleft size-full wp-image-7880" /></a><a href="https://myows.com/">Myows</a></h3>
<p>This is a new site created for designers, photographers, bloggers, writers, musicians and anyone who creates copyrightable work. </p>
<div>&nbsp;</div>
</div>
<div>
<h3><a href="https://www.e-junkie.com/ecom/gb.php?cl=88539&amp;c=ib&amp;aff=96007" target="ejejcsingle"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/f9d57_digging-into-wp.jpg" alt="Digging Into WordPress" width="140" height="140" class="alignleft size-full wp-image-7882" /></a><a href="https://www.e-junkie.com/ecom/gb.php?cl=88539&amp;c=ib&amp;aff=96007" target="ejejcsingle">Digging Into WordPress</a></h3>
<p>Chris Coyier of <a href="http://www.css-tricks.com">CSS Tricks</a> and Jeff Starr of <a href="http://www.perishablepress.com">Perishable Press</a> team up to bring 400 pages of practical WordPress information.</p>
<div>&nbsp;</div>
</div>
<div>
<h3><a href="http://thefreelancefeed.com/"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/4506b_freelance-feed.jpg" alt="Freelance Feed" width="140" height="140" class="alignleft size-full wp-image-7884" /></a><a href="http://thefreelancefeed.com/">Freelance Feed</a></h3>
<p><a href="http://www.gracesmith.co.uk/">Grace Smith</a> brings you this quality, hand-picked aggregator of the most valuable articles and resources for the Freelance community online.</p>
<div>&nbsp;</div>
</div>
<div>
<h3><a href="http://www.amazon.com/gp/product/0321660765?ie=UTF8&amp;tag=myi0a-20&amp;linkCode=as2&amp;camp=1789&amp;creative=9325&amp;creativeASIN=0321660765"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/4506b_logo-design-love.jpg" alt="Logo Design Love" width="140" height="140" class="alignleft size-full wp-image-7886" /></a><a href="http://www.amazon.com/gp/product/0321660765?ie=UTF8&amp;tag=myi0a-20&amp;linkCode=as2&amp;camp=1789&amp;creative=9325&amp;creativeASIN=0321660765">Logo Design Love</a></h3>
<p>An upcoming book from the very talented <a href="http://www.davidairey.com/">David Airey</a> that will be stocked with great logo examples and best practices.</p>
<div>&nbsp;</div>
</div>
<div>
<a href="http://feeds.feedburner.com/~ff/MyInkBlog?a=IBnsTw_inoo:Rws0iRlcl4M:yIl2AUoC8zA"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/4506b_MyInkBlog?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/MyInkBlog?a=IBnsTw_inoo:Rws0iRlcl4M:7Q72WNTAKBA"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/e7679_MyInkBlog?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/MyInkBlog?a=IBnsTw_inoo:Rws0iRlcl4M:V_sGLiPBpWU"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/e7679_MyInkBlog?i=IBnsTw_inoo:Rws0iRlcl4M:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/MyInkBlog?a=IBnsTw_inoo:Rws0iRlcl4M:gIN9vFwOqvQ"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/e7679_MyInkBlog?i=IBnsTw_inoo:Rws0iRlcl4M:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/MyInkBlog?a=IBnsTw_inoo:Rws0iRlcl4M:qj6IDK7rITs"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/e7679_MyInkBlog?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/MyInkBlog?a=IBnsTw_inoo:Rws0iRlcl4M:F7zBnMyn0Lo"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/e7679_MyInkBlog?i=IBnsTw_inoo:Rws0iRlcl4M:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/MyInkBlog?a=IBnsTw_inoo:Rws0iRlcl4M:D7DqB2pKExk"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/cc96e_MyInkBlog?i=IBnsTw_inoo:Rws0iRlcl4M:D7DqB2pKExk" border="0"></img></a>
</div>
<p><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/cc96e_IBnsTw_inoo" height="1" width="1" /><br />
<a href="http://feeds2.feedburner.com/MyInkBlog">Go to Source</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.neurosoftware.ro/programming-blog/facebook-web-design/web-resources/myinktrail-best-of-the-design-community-november-2009/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>50+ Fresh CSS Techniques, Tutorials and Resources</title>
		<link>http://www.neurosoftware.ro/programming-blog/facebook-web-design/web-resources/50-fresh-css-techniques-tutorials-and-resources/</link>
		<comments>http://www.neurosoftware.ro/programming-blog/facebook-web-design/web-resources/50-fresh-css-techniques-tutorials-and-resources/#comments</comments>
		<pubDate>Wed, 02 Dec 2009 21:56:05 +0000</pubDate>
		<dc:creator>Facebook-Web-Design</dc:creator>
				<category><![CDATA[web resources]]></category>
		<category><![CDATA[absolute positioning]]></category>
		<category><![CDATA[Apple-style Slideshow]]></category>
		<category><![CDATA[Chris Coyier]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[css development]]></category>
		<category><![CDATA[custom html]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[image]]></category>
		<category><![CDATA[paul andrew]]></category>
		<category><![CDATA[seeking new solutions]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://www.neurosoftware.ro/programming-blog/facebook-web-design/web-resources/50-fresh-css-techniques-tutorials-and-resources/</guid>
		<description><![CDATA[By Paul Andrew Learning CSS and how to use it effectively can be a reasonably easy thing to do for a beginning web developer. In the hands of a seasoned professional, CSS can be stretched and pushed it to its limits where it can seem complicated and yet perfect at the same time. Being able [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://feedads.g.doubleclick.net/~a/QYQCqM-055m6Lbv8a7bsBl0llmM/0/da"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/dd678_di" border="0"></img></a><br />
<a href="http://feedads.g.doubleclick.net/~a/QYQCqM-055m6Lbv8a7bsBl0llmM/1/da"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/868d1_di" border="0"></img></a></p>
<p><em>By Paul Andrew</em></p>
<p>Learning <strong>CSS</strong> and how to use it effectively can be a reasonably easy thing to do for a beginning web developer. In the hands of a seasoned professional, CSS can be stretched and pushed it to its limits where it can seem complicated and yet perfect at the same time.</p>
<p>Being able to adapt to new ideas and different techniques, as well as seeking new solutions to old problems is part and parcel of being a web designer. And with the speed at which CSS development is constantly moving, keeping up with new developments can be challenging.</p>
<p>In this article, <strong>we&#8217;ll bring you up to date with the latest in CSS development</strong> through a collection of fresh CSS tutorials, techniques, and resources. We hope this extensive list will teach you something new, or else remind you of some methods you haven&#8217;t used for a while.</p>
<p><span></span></p>
<h3>Menus, Buttons and Forms</h3>
<p><a href="http://inspectelement.com/tutorials/create-a-button-with-hover-and-active-states-using-css-sprites/">Create a Button with Hover and Active States using CSS Sprites</a><br />Some designers neglect the click state (<code>active:</code> property in CSS) in web design, either because they&#8217;re unaware of it, underestimate the importance of it, or are just lazy. It&#8217;s a simple effect that improves usability by giving the user feedback as to what they&#8217;ve clicked on, and can add depth to a design.</p>
<p><a href="http://inspectelement.com/tutorials/create-a-button-with-hover-and-active-states-using-css-sprites/"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/b963f_freshcss10.jpg" width="480" height="200" alt="Freshcss10 in 50+ Fresh CSS Techniques, Tutorials and Resources" /></a></p>
<p><a href="http://aext.net/2009/10/css-absolute-positioning-create-a-fancy-link-block/">CSS Absolute Positioning: Create A Fancy Link Block</a><br />Absolute positioning is a well-known CSS technique supported by all web browsers. If you position an element (an image, a table, or whatever) absolutely on your page, it will appear at the exact position you specify. In this tutorial, you&#8217;ll use absolute positioning to create a fancy link block.</p>
<p><a href="http://aext.net/2009/10/css-absolute-positioning-create-a-fancy-link-block/"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/7469f_freshcss8.jpg" width="480" height="200" alt="Freshcss8 in 50+ Fresh CSS Techniques, Tutorials and Resources" /></a></p>
<p><a href="http://www.p51labs.com/simply-buttons-v2/">Simply-Buttons v2</a><br />Cross-browser, custom HTML <code>&lt;button&gt;</code> elements with inactive, active, and hover states.</p>
<p><a href="http://www.p51labs.com/simply-buttons-v2/"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/5af8f_freshcss1.jpg" width="480" height="200" alt="Freshcss1 in 50+ Fresh CSS Techniques, Tutorials and Resources" /></a></p>
<p><a href="http://spyrestudios.com/how-to-create-a-sexy-vertical-sliding-panel-using-jquery-and-css3/">Create A Sexy Vertical Sliding Panel Using jQuery And CSS3</a><br />In this post you will learn how to create a flexible vertically-positioned sliding panel that simulates a drawer effect. Normally, this technique would be used for a horizontally-positioned sliding panel that would push everything else down, but with this technique, the panel overlays the content.</p>
<p><a href="http://spyrestudios.com/how-to-create-a-sexy-vertical-sliding-panel-using-jquery-and-css3/"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/813e5_freshcss6.jpg" width="480" height="200" alt="Freshcss6 in 50+ Fresh CSS Techniques, Tutorials and Resources" /></a></p>
<p><a href="http://css-tricks.com/style-a-list-with-one-pixel/">Style a List with One Pixel</a><br />Using a one-pixel background image in CSS (<code>repeat-x</code> for a horizontal line, <code>repeat-y</code> for vertical, and <code>repeat</code> for a fill color) you&#8217;ll learn how to style a depth-chart looking unordered list.</p>
<p><a href="http://css-tricks.com/style-a-list-with-one-pixel/"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/9bcf2_freshcss7.jpg" width="480" height="200" alt="Freshcss7 in 50+ Fresh CSS Techniques, Tutorials and Resources" /></a></p>
<p><a href="http://www.smashingmagazine.com/2009/12/02/pushing-your-buttons-with-practical-css3/">Pushing Your Buttons With Practical CSS3</a><br />&#8220;Calls to action are critical for any website, and a compelling, attention-grabbing, clickable button goes a long way toward driving that engagement. In the past, really awesome buttons needed extra markup, sliding doors or other trickery. We’ll show you here how to create nice button styles without any hacks or cheats.&#8221;</p>
<p><a href="http://www.smashingmagazine.com/2009/12/02/pushing-your-buttons-with-practical-css3/"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/3a645_large-buttons.png" width="487" height="214" alt="Large-buttons in 50+ Fresh CSS Techniques, Tutorials and Resources" /></a></p>
<p><a href="http://www.wittysparks.com/2009/09/21/build-multi-level-multi-column-multi-menus-with-pure-css/">Multi-level Multi-column Multi Menus with pure CSS</a><br />Have you ever successfully built a multi-level, multi-column, multi-menu, light-weight, and cross browser menu or navigation with pure CSS and without JavaScript? This tutorial will teach you how.</p>
<p><a href="http://www.wittysparks.com/2009/09/21/build-multi-level-multi-column-multi-menus-with-pure-css/"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/b2d5d_freshcss3.jpg" width="480" height="200" alt="Freshcss3 in 50+ Fresh CSS Techniques, Tutorials and Resources" /></a></p>
<p><a href="http://aext.net/2009/09/elegant-drop-menu-with-css-only/">Elegant Drop Menu with CSS only</a><br />If you have a clean web site that&#8217;s become cluttered with extra content, categories, and pages, this clean and elegant menu offers a great space-saving solution.</p>
<p><a href="http://aext.net/2009/09/elegant-drop-menu-with-css-only/"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/b2d5d_freshcss4.jpg" width="480" height="200" alt="Freshcss4 in 50+ Fresh CSS Techniques, Tutorials and Resources" /></a></p>
<p><a href="http://www.problogdesign.com/wordpress/how-to-create-a-beautiful-dropdown-blogroll-without-javascript/">Create a Beautiful Dropdown Blogroll Without JavaScript</a><br />This tutorial demonstrates how to style a drop-down menu to hold your blogroll content (instead of using the typically-ugly HTML <code>&lt;select&gt;</code> element). Done with pure CSS, but requires hacks to work with IE6.</p>
<p><a href="http://www.problogdesign.com/wordpress/how-to-create-a-beautiful-dropdown-blogroll-without-javascript/"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/6798a_freshcss5.jpg" width="480" height="200" alt="Freshcss5 in 50+ Fresh CSS Techniques, Tutorials and Resources" /></a></p>
<p><a href="http://line25.com/tutorials/how-to-build-a-simple-button-with-css-image-sprites">Build a Simple Button with CSS Image Sprites</a><br />In this tutorial you&#8217;ll learn how to create a simple button using CSS sprites. The tutorial covers creation of the image in Photoshop and finishes with the coded example.</p>
<p><a href="http://line25.com/tutorials/how-to-build-a-simple-button-with-css-image-sprites"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/2fe57_freshcss9.jpg" width="480" height="200" alt="Freshcss9 in 50+ Fresh CSS Techniques, Tutorials and Resources" /></a></p>
<p><a href="http://www.kamikazemusic.com/quick-tips/css3-hover-tabs-without-javascript/">CSS3 Hover Tabs without JavaScript</a><br />Using some new CSS3 techniques you&#8217;ll learn how to create a basic tabbed content area that changes on hover using pure CSS</p>
<p><a href="http://www.kamikazemusic.com/quick-tips/css3-hover-tabs-without-javascript/"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/dab41_freshcss2.jpg" width="480" height="200" alt="Freshcss2 in 50+ Fresh CSS Techniques, Tutorials and Resources" /></a></p>
<p><a href="http://www.onextrapixel.com/2009/08/25/how-to-use-pure-css-to-style-web-form-dynamically-plus-12-awesome-javascript-plugins/">Use Pure CSS To Style a Web Form Dynamically</a><br />Form elements are normally styled by changing the border color or background color properties via CSS. This tutorial shows you how to style text field and textarea elements of varying widths with rounded-corner background images.</p>
<p><a href="http://www.onextrapixel.com/2009/08/25/how-to-use-pure-css-to-style-web-form-dynamically-plus-12-awesome-javascript-plugins/"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/1331a_freshcss11.jpg" width="480" height="200" alt="Freshcss11 in 50+ Fresh CSS Techniques, Tutorials and Resources" /></a></p>
<p><a href="http://www.sohtanaka.com/web-design/horizontal-sub-nav-with-css-jquery/">Horizontal Sub-nav with CSS &amp; jQuery</a><br />In this tutorial, Soh Tanaka teaches you how to create an elegant horizontal sub-nav using CSS and a little jQuery for IE6 compatibility.</p>
<p><a href="http://www.sohtanaka.com/web-design/horizontal-sub-nav-with-css-jquery/"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/826d0_freshcss12.jpg" width="480" height="200" alt="Freshcss12 in 50+ Fresh CSS Techniques, Tutorials and Resources" /></a></p>
<p><a href="http://sublimeorange.com/css/css3-speech-bubble/">CSS3 Speech Bubble</a><br />Learn how to create a speech bubble with HTML and CSS3.</p>
<p><a href="http://sublimeorange.com/css/css3-speech-bubble/"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/11996_freshcss13.jpg" width="480" height="200" alt="Freshcss13 in 50+ Fresh CSS Techniques, Tutorials and Resources" /></a></p>
<p><a href="http://aceinfowayindia.com/blog/2009/09/how-to-create-nice-scalable-css-based-breadcrumbs/">Create Nice Scalable CSS Based Breadcrumbs</a><br />This tutorial shows you how to create a scalable CSS-based breadcrumb navigation using a single graphic, some basic CSS, and an unordered list.</p>
<p><a href="http://aceinfowayindia.com/blog/2009/09/how-to-create-nice-scalable-css-based-breadcrumbs/"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/11996_freshcss14.jpg" width="480" height="200" alt="Freshcss14 in 50+ Fresh CSS Techniques, Tutorials and Resources" /></a></p>
<p><a href="http://friedcellcollective.net/outbreak/2009/10/04/fluid-searchbox/">Fluid Searchbox</a><br />Creating a search box that adjusts to the size of the browser window is simple, but becomes difficult when you add elements to the left and right of it, some being fixed width (width in px or em) and some fluid width (width in %). This article demonstrates a solution to this problem.</p>
<p><a href="http://friedcellcollective.net/outbreak/2009/10/04/fluid-searchbox/"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/1d25f_freshcss15.jpg" width="480" height="200" alt="Freshcss15 in 50+ Fresh CSS Techniques, Tutorials and Resources" /></a></p>
<p><a href="http://buildinternet.com/2009/10/using-rounded-corners-with-css3/">Using Rounded Corners with CSS3</a><br />As CSS3 gets closer to becoming the new standard for mainstream design, the days of rounded corners through elaborate background images is fading. In this tutorial you&#8217;ll learn how to create rounded corners using vendor-specific CSS3 techniques supported by Firefox and Safari.</p>
<p><a href="http://buildinternet.com/2009/10/using-rounded-corners-with-css3/"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/57abb_freshcss16.jpg" width="480" height="200" alt="Freshcss16 in 50+ Fresh CSS Techniques, Tutorials and Resources" /></a></p>
<h3>Web Page Layout Techniques</h3>
<p><a href="http://net.tutsplus.com/videos/screencasts/the-ultimate-guide-to-creating-a-design-and-converting-it-to-html-and-css/">The Ultimate Guide to Creating a Design and Converting it to HTML and CSS</a><br />This in-depth screencast tutorial is the third part of a series that demonstrates how to create an iPhone app web site. This tutorial demonstrates the final step: converting the Photoshop design into HTML and CSS.</p>
<p><a href="http://net.tutsplus.com/videos/screencasts/the-ultimate-guide-to-creating-a-design-and-converting-it-to-html-and-css/"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/cb1c6_freshcss17.jpg" width="480" height="200" alt="Freshcss17 in 50+ Fresh CSS Techniques, Tutorials and Resources" /></a></p>
<p><a href="http://designm.ag/tutorials/psd-to-html-clean-folio/">How to Code a Clean Portfolio Design with jQuery Slider</a><br />This tutorial will teach you how to slice and code a web page from a Photoshop design, plus teach you how to implement a jQuery image slider.</p>
<p><a href="http://designm.ag/tutorials/psd-to-html-clean-folio/"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/cd9f3_freshcss18.jpg" width="480" height="200" alt="Freshcss18 in 50+ Fresh CSS Techniques, Tutorials and Resources" /></a></p>
<p><a href="http://sixrevisions.com/tutorials/web-development-tutorials/minimal-and-modern-layout-psd-to-xhtmlcss-conversion/">Minimal and Modern Layout: PSD to XHTML/CSS Conversion</a><br />This is the second part of a two-part series of creating a minimal and modern website layout in Photoshop. The part focuses on converting the design to styled markup.</p>
<p><a href="http://sixrevisions.com/tutorials/web-development-tutorials/minimal-and-modern-layout-psd-to-xhtmlcss-conversion/"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/cd9f3_freshcss19.jpg" width="480" height="200" alt="Freshcss19 in 50+ Fresh CSS Techniques, Tutorials and Resources" /></a></p>
<p><a href="http://www.jankoatwarpspeed.com/post/2009/11/08/YouTube-adaptable-view-css-jquery.aspx">Create YouTube-like adaptable view using CSS and jQuery</a><br />Have you ever noticed the &quot;change view&quot; feature on YouTube that allows you to switch between normal and wide mode and thus expand/shrink the movie area? In this tutorial you&#8217;ll learn how to duplicate this feature using CSS and jQuery.</p>
<p><a href="http://www.jankoatwarpspeed.com/post/2009/11/08/YouTube-adaptable-view-css-jquery.aspx"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/24bce_freshcss20.jpg" width="480" height="200" alt="Freshcss20 in 50+ Fresh CSS Techniques, Tutorials and Resources" /></a></p>
<p><a href="http://woorkup.com/2009/10/07/how-to-distribute-elements-horizontally-using-css/">How to distribute elements horizontally using CSS</a><br />This article shows you how to resolve the problem of extra margin settings on first and last children that are distributed horizontally within a main container using CSS.</p>
<p><a href="http://woorkup.com/2009/10/07/how-to-distribute-elements-horizontally-using-css/"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/13759_freshcss21.jpg" width="480" height="200" alt="Freshcss21 in 50+ Fresh CSS Techniques, Tutorials and Resources" /></a></p>
<p><a href="http://designm.ag/tutorials/sticky-sidenav-layout/">Sticky (Fixed) SideNav Layout with CSS</a><br />This tutorial teaches you how to build a frame-like fixed sidebar navigation menu that stays in place when the page is scrolled.</p>
<p><a href="http://designm.ag/tutorials/sticky-sidenav-layout/"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/a40b6_freshcss22.jpg" width="480" height="200" alt="Freshcss22 in 50+ Fresh CSS Techniques, Tutorials and Resources" /></a></p>
<p><a href="http://www.webdesignerwall.com/tutorials/css-design-out-of-the-box/">CSS: Design Out Of The Box</a><br />In this informative post, the author discusses a number of example website designs that break away from typical columned and boxed layout. The article includes a number of tips and best practices that can help designers accomplish a similar style.</p>
<p><a href="http://www.webdesignerwall.com/tutorials/css-design-out-of-the-box/"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/d5bc5_freshcss55.jpg" width="480" height="200" alt="Freshcss55 in 50+ Fresh CSS Techniques, Tutorials and Resources" /></a></p>
<p><a href="http://www.webdesignerwall.com/tutorials/5-simple-but-useful-css-properties/">5 Simple, But Useful CSS Properties</a><br />Another article from Web Designer Wall, this time discussing five well-supported, practical, but rarely-used, CSS properties</p>
<p><a href="http://www.webdesignerwall.com/tutorials/5-simple-but-useful-css-properties/"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/f2fe2_freshcss54.jpg" width="480" height="200" alt="Freshcss54 in 50+ Fresh CSS Techniques, Tutorials and Resources" /></a></p>
<p><a href="http://webdeveloperplus.com/css/25-incredibly-useful-css-tricks-you-should-know/">25 Incredibly Useful CSS Tricks You Should Know</a><br />This article describes 25 useful CSS tips and techniques to help you design great web interfaces.</p>
<p><a href="http://webdeveloperplus.com/css/25-incredibly-useful-css-tricks-you-should-know/"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/a9cd2_freshcss56.jpg" width="480" height="200" alt="Freshcss56 in 50+ Fresh CSS Techniques, Tutorials and Resources" /></a></p>
<p><a href="http://net.tutsplus.com/tutorials/html-css-techniques/11-classic-css-techniques-made-simple-with-css3/">11 Classic CSS Techniques Made Simple with CSS3</a><br />You shouldn&#39;t limit yourself to old techniques when there&#39;s a new age coming. This new age includes the use of CSS3. In this tutorial, you&#8217;ll learn eleven different effects that can be achieved quite easily with CSS3 but would normally be quite time-consuming with standard CSS methods.</p>
<p><a href="http://net.tutsplus.com/tutorials/html-css-techniques/11-classic-css-techniques-made-simple-with-css3/"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/a9cd2_freshcss52.jpg" width="480" height="200" alt="Freshcss52 in 50+ Fresh CSS Techniques, Tutorials and Resources" /></a></p>
<p><a href="http://woorkup.com/2009/10/18/5-rules-to-write-more-readable-css-files/">5 Rules To Write More Readable CSS Files</a><br />This article describes five  practical rules that can help you write well-structured and more readable CSS files.</p>
<p><a href="http://woorkup.com/2009/10/18/5-rules-to-write-more-readable-css-files/"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/f34f4_freshcss53.jpg" width="480" height="200" alt="Freshcss53 in 50+ Fresh CSS Techniques, Tutorials and Resources" /></a></p>
<h3>Text and Typography</h3>
<p><a href="http://net.tutsplus.com/tutorials/html-css-techniques/six-ways-to-improve-your-web-typography/">6 Ways To Improve Your Web Typography</a><br />Because of the many options available, not to mention cross-browser differences, improving typography on the web is not always simple. In this post you&#8217;ll learn six different ways to improve typography on your web projects.</p>
<p><a href="http://net.tutsplus.com/tutorials/html-css-techniques/six-ways-to-improve-your-web-typography/"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/79b4e_freshcss23.jpg" width="480" height="200" alt="Freshcss23 in 50+ Fresh CSS Techniques, Tutorials and Resources" /></a></p>
<p><a href="http://line25.com/tutorials/create-a-letterpress-effect-with-css-text-shadow">Create a Letterpress Effect with CSS Text-Shadow</a><br />The letterpress effect is becoming hugely popular in web design, and with a couple of modern browsers now showing support for the text-shadow CSS3 property it&#8217;s now simple and easy to create the effect with pure CSS.</p>
<p><a href="http://line25.com/tutorials/create-a-letterpress-effect-with-css-text-shadow"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/23b5a_freshcss25.jpg" width="480" height="200" alt="Freshcss25 in 50+ Fresh CSS Techniques, Tutorials and Resources" /></a></p>
<h3>Images, Galleries and Sprites</h3>
<p><a href="http://cssglobe.com/post/6089/3-easy-and-fast-css-techniques-for-faux-image">3 Easy and Fast CSS Techniques for Faux Image Cropping</a><br />This article is a summary of 3 fast and easy CSS techniques you can use to display only a portion of an image in your content. Because the images aren&#8217;t literally cropped, the method is termed &#8220;Faux Image Cropping&#8221;.</p>
<p><a href="http://cssglobe.com/post/6089/3-easy-and-fast-css-techniques-for-faux-image"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/5258b_freshcss26.jpg" width="480" height="251" alt="Freshcss26 in 50+ Fresh CSS Techniques, Tutorials and Resources" /></a></p>
<p><a href="http://markuptips.com/htmlcss-tips/use-css-to-build-a-map-with-hoverable-regions/">Use CSS to build a map with hoverable regions</a><br />In this article you will learn how to how to build a map with hoverable regions, using CSS and a single image.</p>
<p><a href="http://markuptips.com/htmlcss-tips/use-css-to-build-a-map-with-hoverable-regions/"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/5258b_freshcss27.jpg" width="480" height="200" alt="Freshcss27 in 50+ Fresh CSS Techniques, Tutorials and Resources" /></a></p>
<p><a href="http://css-tricks.com/date-display-with-sprites/">Date Display Technique with Sprites</a><br />This article on CSS-Tricks demonstrates how to display the date on WordPress blog posts using image sprites &#8212; the same method that&#8217;s used on the Learning jQuery website.</p>
<p><a href="http://css-tricks.com/date-display-with-sprites/"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/13e6e_freshcss28.jpg" width="480" height="200" alt="Freshcss28 in 50+ Fresh CSS Techniques, Tutorials and Resources" /></a></p>
<p><a href="http://www.tutorial9.net/web-tutorials/building-faster-websites-with-css-sprites/">Building Faster Websites with CSS Sprites</a><br />In this tutorial you&#8217;ll learn how to take advantage of CSS sprites to greatly increase your website&#8217;s speed.</p>
<p><a href="http://www.tutorial9.net/web-tutorials/building-faster-websites-with-css-sprites/"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/bc5a3_freshcss29.jpg" width="480" height="200" alt="Freshcss29 in 50+ Fresh CSS Techniques, Tutorials and Resources" /></a></p>
<p><a href="http://css-tricks.com/perfect-full-page-background-image/">Perfect Full Page Background Image</a><br />Another technique from CSS-Tricks, this time demonstrating how to implement a full-page background image that fills the entire page, will scale the image as needed, retain image proportions, does not cause scrollbars, and is cross-browser compatible.</p>
<p><a href="http://css-tricks.com/perfect-full-page-background-image/"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/b3226_freshcss30.jpg" width="480" height="200" alt="Freshcss30 in 50+ Fresh CSS Techniques, Tutorials and Resources" /></a></p>
<p><a href="http://tutorialzine.com/2009/11/beautiful-apple-gallery-slideshow/">A Beautiful Apple-style Slideshow Gallery With CSS &amp; jQuery</a><br />Learn how to build an Apple-like slideshow gallery, similar to what Apple uses to showcase their products.</p>
<p><a href="http://tutorialzine.com/2009/11/beautiful-apple-gallery-slideshow/"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/df3a9_freshcss31.jpg" width="480" height="200" alt="Freshcss31 in 50+ Fresh CSS Techniques, Tutorials and Resources" /></a></p>
<p><a href="http://line25.com/tutorials/how-to-create-a-pure-css-polaroid-photo-gallery">How To Create a Pure CSS Polaroid Photo Gallery</a><br />Magical things can be created by combining various CSS properties, especially when some of the new CSS3 tricks are thrown into the mix. In this tutorial you&#8217;ll learn how to build a Polaroid photo gallery with a re-stacking hover effect using pure CSS.</p>
<p><a href="http://line25.com/tutorials/how-to-create-a-pure-css-polaroid-photo-gallery"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/df3a9_freshcss32.jpg" width="480" height="200" alt="Freshcss32 in 50+ Fresh CSS Techniques, Tutorials and Resources" /></a></p>
<p><a href="http://css-tricks.com/video-screencasts/74-editable-css3-image-gallery/">Editable CSS3 Image Gallery</a><br />A screencast from CSS-Tricks that demonstrates how to create a fancy image gallery with some HTML5, CSS3, and jQuery. Works best in a WebKit browser.</p>
<p><a href="http://css-tricks.com/video-screencasts/74-editable-css3-image-gallery/"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/69856_freshcss33.jpg" width="480" height="200" alt="Freshcss33 in 50+ Fresh CSS Techniques, Tutorials and Resources" /></a></p>
<p><a href="http://www.zurb.com/article/305/easily-turn-your-images-into-polaroids-wi">Turn Your Images Into Polaroids with CSS3</a><br />In the first part of this tutorial you&#8217;ll create a grid of images that&#8217;s linked to a Flickr account. In the second part, you&#8217;ll spice it up by giving the images a pure CSS Polaroid effect.</p>
<p><a href="http://www.zurb.com/article/305/easily-turn-your-images-into-polaroids-wi"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/c985a_freshcss34.jpg" width="480" height="200" alt="Freshcss34 in 50+ Fresh CSS Techniques, Tutorials and Resources" /></a></p>
<p><a href="http://css-tricks.com/css-sprites/">CSS Sprites: What They Are, Why They&#8217;re Cool, and How To Use Them</a><br />This is a comprehensive discussion of the technique of CSS image sprites, by Chris Coyier. The article has been recently updated to include more up-to-date information and methods.</p>
<p><a href="http://css-tricks.com/css-sprites/"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/df42b_freshcss35.jpg" width="480" height="200" alt="Freshcss35 in 50+ Fresh CSS Techniques, Tutorials and Resources" /></a></p>
<h3>Fresh CSS Frameworks</h3>
<p><a href="http://anthonyshort.com.au/scaffold/">CSScaffold Framework</a><br />CSScaffold is a a new type of CSS Framework, built with PHP, that helps speed up your development time by doing the hard work for you. Its power lies in its ability to extend CSS and generate CSS found in other CSS frameworks.</p>
<p><p><a href="http://xcss.antpaw.org/">xCSS &#8211; Object Oriented CSS Framework</a><br />xCSS is a lightweight framework, still in beta, that allows you to take advantage of an object-oriented workflow, which means a dramatic cut-down in development time through the use of variables and other handy features.</p>
<p><a href="http://xcss.antpaw.org/"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/5c091_freshcss37.jpg" width="480" height="200" alt="Freshcss37 in 50+ Fresh CSS Techniques, Tutorials and Resources" /></a></p>
<p><a href="http://ecsstender.org/">eCSStender.org</a><br />eCSStender is a JavaScript library that lets you write CSS without having to use browser-specific properties and hacks. Extensions built with eCSStender greatly simplify the design process because you can author modern CSS using advanced selectors, properties such as border-radius, and custom font faces, all of which work in IE6.</p>
<p><a href="http://ecsstender.org/"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/5c091_freshcss39.jpg" width="480" height="200" alt="Freshcss39 in 50+ Fresh CSS Techniques, Tutorials and Resources" /></a></p>
<h3>Cross Browser Hacks, Fixes and Guides</h3>
<p><a href="http://robots.thoughtbot.com/post/170612102/render-alternate-layouts-in-ie6-using-only-css">Render alternate layouts in IE6 with only CSS</a><br />Although this may not be something you would do on a client project, this article shows you how to create an alternate layout IE6 users using CSS and a conditional comment.</p>
<p><a href="http://robots.thoughtbot.com/post/170612102/render-alternate-layouts-in-ie6-using-only-css"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/0b49c_freshcss40.jpg" width="480" height="200" alt="Freshcss40 in 50+ Fresh CSS Techniques, Tutorials and Resources" /></a></p>
<p><a href="http://sixrevisions.com/web-development/definitive-guide-to-taming-the-ie6-beast/">Definitive Guide to Taming the IE6 Beast</a><br />A useful collection of IE6 hacks and fixes that will, as the title implies, help you tame the beast that is IE6.</p>
<p><a href="http://sixrevisions.com/web-development/definitive-guide-to-taming-the-ie6-beast/"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/2064d_freshcss41.jpg" width="480" height="200" alt="Freshcss41 in 50+ Fresh CSS Techniques, Tutorials and Resources" /></a></p>
<p><a href="http://www.virtuosimedia.com/tutorials/ultimate-ie6-cheatsheet-how-to-fix-25-internet-explorer-6-bugs">Ultimate IE6 Cheatsheet: How To Fix 25+ Internet Explorer 6 Bugs</a><br />The author of this article &#39;has scoured the web&#39; for resources and fixes for IE6 and put them all together in this cheatsheet/reference manual as a resource for anyone who has to deal with Internet Explorer 6 on a regular basis.</p>
<p><a href="http://www.virtuosimedia.com/tutorials/ultimate-ie6-cheatsheet-how-to-fix-25-internet-explorer-6-bugs"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/e5728_freshcss42.jpg" width="480" height="200" alt="Freshcss42 in 50+ Fresh CSS Techniques, Tutorials and Resources" /></a></p>
<p><a href="http://www.onderhond.com/tools/ie6fixer">ie6fixer</a><br />ie6fixer is a tool specifically designed to ease the pain of the IE6 CSS debugger. The tool was conceived to decrease the monkey work when starting an ie6 CSS fix file by applying a series of basic fixes that are known to conquer many problems and cause as little harm as possible. It should fix 40-60% of all IE6 issues and problems, with just one click, outputting rough CSS that can be placed in a separate section and can be used as a solid start for debugging IE6 issues.</p>
<p><a href="http://www.onderhond.com/tools/ie6fixer"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/4e36b_freshcss43.jpg" width="480" height="200" alt="Freshcss43 in 50+ Fresh CSS Techniques, Tutorials and Resources" /></a></p>
<h3>Useful CSS Resources</h3>
<p><a href="http://cssglobe.com/post/6295/cssg-collection-free-comment-styles">CSSG Collection: Free Comment Styles</a><br />Designing the dreaded comments section of a web page can be a pain. To help you with this, CSS Globe is giving away a collection of comment styles that you can use on your own projects to save you a lot of time and agony.</p>
<p><a href="http://cssglobe.com/post/6295/cssg-collection-free-comment-styles"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/61661_freshcss44.jpg" width="480" height="200" alt="Freshcss44 in 50+ Fresh CSS Techniques, Tutorials and Resources" /></a></p>
<p><a href="http://www.smashingmagazine.com/2009/07/13/css-3-cheat-sheet-pdf/">CSS 3 Cheat Sheet (PDF)</a><br />This printable CSS 3 Cheat Sheet (PDF), first published on SM in July 2009, offers a complete listing of all the properties, selector types, and allowed values in the current CSS 3 specification from the W3C. Each property is provided in a section that attempts to match it with the section (module) that it is most actively associated within the W3C specification. Next to each property is a listing of the expected values that that property takes.</p>
<p><a href="http://www.smashingmagazine.com/2009/07/13/css-3-cheat-sheet-pdf/"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/fbe29_freshcss45.jpg" width="480" height="200" alt="Freshcss45 in 50+ Fresh CSS Techniques, Tutorials and Resources" /></a></p>
<p><a href="http://woorkup.com/2009/10/02/css2-visual-cheat-sheet/">Cascading Style Sheet Level 2 Visual Cheat Sheet</a><br />This cheat sheet (3 pages) contains an essential reference to CSS2 properties with detailed descriptions and some sample code. The simple visual style used to design this sheet allows you to find, at a glance, everything you&#8217;re looking for.</p>
<p><a href="http://woorkup.com/2009/10/02/css2-visual-cheat-sheet/"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/3994e_freshcss46.jpg" width="480" height="200" alt="Freshcss46 in 50+ Fresh CSS Techniques, Tutorials and Resources" /></a></p>
<p><a href="http://www.vcarrer.com/2009/09/css-specificity-cheat-sheet.html">CSS Specificity &#8211; Cheat Sheet</a><br />A common difficulty with CSS is determining what CSS rule will be applied on the page. This cheat sheet can help you better understand CSS specificity.</p>
<p><a href="http://www.vcarrer.com/2009/09/css-specificity-cheat-sheet.html"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/1b5e2_freshcss47.jpg" width="480" height="200" alt="Freshcss47 in 50+ Fresh CSS Techniques, Tutorials and Resources" /></a></p>
<p><a href="http://www.bestwebframeworks.com/">Best Web-Frameworks &#8211; Find and compare PHP, Ruby, Python, Java, JS and CSS Frameworks</a><br />This useful resource helps you compare almost all CSS, PHP, Ruby, Python, Java and JavaScript frameworks, so you can make the right choice for your project.</p>
<p><a href="http://www.bestwebframeworks.com/"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/bd114_freshcss48.jpg" width="480" height="200" alt="Freshcss48 in 50+ Fresh CSS Techniques, Tutorials and Resources" /></a></p>
<p><a href="http://tutorialfeed.blogspot.com/2009/10/visual-cheat-sheet-css-compatiblity.html">Visual Cheat Sheet: CSS Compatibility with Internet Explorer 6, 7 and 8</a><br />This Visual Cheat Sheet will help you understand CSS behavior in the three commonly-used versions of Internet Explorer. It includes information on @rules, element selectors, attribute selectors, pseudo-classes, border and layout properties, and more.</p>
<p><a href="http://tutorialfeed.blogspot.com/2009/10/visual-cheat-sheet-css-compatiblity.html"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/bd114_freshcss49.jpg" width="480" height="200" alt="Freshcss49 in 50+ Fresh CSS Techniques, Tutorials and Resources" /></a></p>
<p><a href="http://astuteo.com/slickmap/">SlickMap CSS &#8211; A Visual Sitemapping Tool for Web Developers</a><br />SlickMap CSS is a simple stylesheet for displaying finished sitemaps directly from HTML unordered list navigation. It’s suitable for most web sites – accommodating up to three levels of page navigation and additional utility links – and can easily be customized to meet your own individual needs, branding, or style preferences.</p>
<p><a href="http://astuteo.com/slickmap/"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/0b4d3_freshcss50.jpg" width="480" height="200" alt="Freshcss50 in 50+ Fresh CSS Techniques, Tutorials and Resources" /></a></p>
<p><a href="http://www.cssbasics.com/">CSS Basics</a><br />CSS Basics is divided into 18 chapters, covering all aspects of CSS, from CSS classes and IDs to the more difficult pseudo elements and positioning. CSS basics covers a wide range of information so it&#8217;s valuable for those learning the basics of CSS as well as experienced CSS developers. Each chapter is downloadable and printable and you also have the option to download the entire series in a single PDF file. </p>
<p><a href="http://www.cssbasics.com/"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/90250_freshcss51.jpg" width="480" height="200" alt="Freshcss51 in 50+ Fresh CSS Techniques, Tutorials and Resources" /></a></p>
<h3>Further Reading</h3>
<p><a href="http://meiert.com/en/blog/20091015/html-css-and-web-development-practices/">HTML, CSS, and Web Development Practices: Past, Present, and Future</a></p>
<p><a href="http://anidea.com/technology/css-best-practices-for-modern-designs/">CSS Best Practices for Modern Designs</a></p>
<p><a href="http://reinholdweber.com/css/guidelines-for-writing-accessible-css/">Guidelines for Writing Accessible CSS</a></p>
<p><a href="http://www.typesett.com/2009/09/css-selectors-a-guide-to-the-common-the-rare/">CSS Selectors – A Guide To The Common &amp; The Rare</a></p>
<p><a href="http://www.webdesignerdepot.com/2009/08/5-css3-design-enhancements-that-you-can-use-today/">5 CSS3 Design Enhancements That You Can Use Today</a></p>
<p><a href="http://designreviver.com/tips/trick-out-your-css-with-server-side-code/">Trick Out Your CSS With Server Side Code</a></p>
<h4>About the author</h4>
<p><em>Paul Andrew is a freelance web designer. He is chief admin for  <a href="http://speckyboy.com/">Speckyboy &#8211; Design Magazine</a>, a web design, web development and graphic design resource blog. Follow him on Twitter here: <a href="http://twitter.com/speckyboy">twitter.com/speckyboy</a>.</em></p>
<p><em>(ll)</em></p>
<div>
<a href="http://feeds.feedburner.com/~ff/Noupe?a=87VYGQL02cI:WvPxivJ7ghY:V_sGLiPBpWU"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/90250_Noupe?i=87VYGQL02cI:WvPxivJ7ghY:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Noupe?a=87VYGQL02cI:WvPxivJ7ghY:F7zBnMyn0Lo"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/90250_Noupe?i=87VYGQL02cI:WvPxivJ7ghY:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Noupe?a=87VYGQL02cI:WvPxivJ7ghY:gIN9vFwOqvQ"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/bf7cf_Noupe?i=87VYGQL02cI:WvPxivJ7ghY:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Noupe?a=87VYGQL02cI:WvPxivJ7ghY:7Q72WNTAKBA"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/bf7cf_Noupe?d=7Q72WNTAKBA" border="0"></img></a>
</div>
<p><a href="http://feeds2.feedburner.com/Noupe">Go to Source</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.neurosoftware.ro/programming-blog/facebook-web-design/web-resources/50-fresh-css-techniques-tutorials-and-resources/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Digging into WordPress Review, and Free Copies!</title>
		<link>http://www.neurosoftware.ro/programming-blog/facebook-web-design/web-resources/digging-into-wordpress-review-and-free-copies/</link>
		<comments>http://www.neurosoftware.ro/programming-blog/facebook-web-design/web-resources/digging-into-wordpress-review-and-free-copies/#comments</comments>
		<pubDate>Tue, 01 Dec 2009 07:20:20 +0000</pubDate>
		<dc:creator>Facebook-Web-Design</dc:creator>
				<category><![CDATA[web resources]]></category>
		<category><![CDATA[book]]></category>
		<category><![CDATA[Chris]]></category>
		<category><![CDATA[Chris Coyier]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[css tricks]]></category>
		<category><![CDATA[digging]]></category>
		<category><![CDATA[great reputation]]></category>
		<category><![CDATA[Jeff]]></category>
		<category><![CDATA[Jeff Star]]></category>
		<category><![CDATA[Jeff Starr]]></category>
		<category><![CDATA[mini book]]></category>
		<category><![CDATA[minimal confusion]]></category>
		<category><![CDATA[page ebook]]></category>
		<category><![CDATA[Review]]></category>
		<category><![CDATA[Teacher

Chris]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.neurosoftware.ro/programming-blog/facebook-web-design/web-resources/digging-into-wordpress-review-and-free-copies/</guid>
		<description><![CDATA[A couple weeks ago, I received an email from Chris Coyier, of CSS-Tricks, containing a review copy of his recently released &#8220;Digging into WordPress&#8221; e-book. Expecting it to be more of a mini-book, I nonchalantly told him that I&#8217;d post a review that Friday; little did I know that this was a full-fledged book, packed [...]]]></description>
			<content:encoded><![CDATA[<p>
A couple weeks ago, I received an email from Chris Coyier, of <a href="http://www.css-tricks.com">CSS-Tricks</a>, containing a review copy of his recently released &#8220;<a href="https://www.e-junkie.com/ecom/gb.php?cl=88539&amp;c=ib&amp;aff=28697" target="ejejcsingle">Digging into WordPress</a>&#8221; e-book. Expecting it to be more of a mini-book, I nonchalantly told him that I&#8217;d post a review that Friday; little did I know that this was a full-fledged book, packed full of knowledge.
</p>
<p><span></span></p>
<blockquote>
<p>
&#8220;Written by WordPress veterans Chris Coyier and Jeff Starr, Digging into WordPress is 400+ jam-packed pages of everything you need to get the most out of WordPress. WordPress is great right out of the box, but unless you want an ordinary vanilla blog, it is essential to understand the full potential of WordPress and have the right tools to get the job done.&#8221; </p>
</blockquote>
<div>
<a href="https://www.e-junkie.com/ecom/gb.php?cl=88539&amp;c=ib&amp;aff=28697" target="ejejcsingle"><br />
<img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/2db13_book-cover.png" alt="Digging into WordPress" /><br />
</a>
</div>
<p>
Those of you who read <a href="http://www.css-tricks.com">CSS-Tricks</a> will be well aware that Chris writes in a very easy-to-understand fashion. Rather than flooding each article with high-level jargon that only the most knowledgeable of us can understand, he instead dumbs each article down to the fundamentals &#8211; even to the point of being honest enough to convey when he doesn&#8217;t quite understand the reasoning behind some line of code.
</p>
<p>
As a result, he&#8217;s built a wonderful community, and has built a great reputation for himself in the last few years. This book, co-written with Jeff Star, is no different: straight-forward, easy-to-understand, and simple.
</p>
<h3>Simple Learning</h3>
<p>
Thanks to the use of fun, and helpful illustrations, even those who are brand new to WordPress will be able to <strong>dig</strong> their heals in &#8212; with minimal confusion.
</p>
<p>
The 400 page <a href="https://www.e-junkie.com/ecom/gb.php?cl=88539&amp;c=ib&amp;aff=28697" target="ejejcsingle">ebook </a>covers everything from navigating the admin panel, to creating a comments form, to even more advanced topics like plugin development. And though it&#8217;s generally good practice to point out a few negatives in one&#8217;s review, it&#8217;s difficult to do so when a book is such a pleasure to read.
</p>
<h3>Heart of a Teacher</h3>
<p>
Chris and Jeff, in this book, have proven that they have the hearts of teachers. Even for intermediate to advanced WordPressers, there&#8217;s something to be learned &#8212; and at $27, the purchase is a no-brainer!
</p>
<blockquote>
<p>
&#8220;Digging into WordPress is perfect for WordPress users in the beginner to intermediate range, but contains plenty of great information for the advanced user as well. If you have any level of experience working with web design or WordPress, this book is written to help you take WordPress to the next level.&#8221;
</p>
</blockquote>
<h3>400 Pages of Practical Information</h3>
<p>&#8220;There is much to learn about the World&#8217;s most popular publishing platform.<br />
	       From your first steps of learning about WordPress all the way through<br />
	       maintaining a site throughout the years, this book is packed with truly<br />
	       practical information.&#8221;</p>
<h3>Lots of Code Samples</h3>
<p>&#8220;We go into depth about the anatomy of a WordPress theme. How they work, and how<br />
	       to write the code you need to do the things you want. This means real code that<br />
	       you can sink your teeth into, as well as copy and paste. Beyond theme<br />
	       building, we introduce many tricks your functions.php file can pull off and show<br />
	       you ways to increase performance and security through HTAccess.&#8221;</p>
<h3>What About the Free Copies!? </h3>
<div>
<img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/af7ab_digwp-468-60-01.jpg" alt="Digging into WordPress Review, and Free Copies!" />
</div>
<p>
Chris has generously offered to give away a few copies to our community. <strong>To enter, simply leave a comment, and be sure to check back on Friday to see if you were randomly chosen! </strong>
</p>
<ul>
<li>Follow us on <a href="http://www.twitter.com/nettuts">Twitter</a>, or subscribe to the <a href="http://feeds.feedburner.com/nettuts" title="Nettuts+ RSS Feed">Nettuts+ RSS Feed</a> for the best web development tutorials on the web.</li>
</ul>
<p>

</p>
<p><a href="http://feedads.g.doubleclick.net/~a/UmYrOh-avsOsHXAnc4ILjW3UKI8/0/da"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/af7ab_di" border="0"></img></a><br />
<a href="http://feedads.g.doubleclick.net/~a/UmYrOh-avsOsHXAnc4ILjW3UKI8/1/da"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/a8152_di" border="0"></img></a></p>
<div>
<a href="http://feeds.feedburner.com/~ff/nettuts?a=p6srqzaIRlw:oXmKIq-vNoM:yIl2AUoC8zA"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/a8152_nettuts?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/nettuts?a=p6srqzaIRlw:oXmKIq-vNoM:F7zBnMyn0Lo"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/a8152_nettuts?i=p6srqzaIRlw:oXmKIq-vNoM:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/nettuts?a=p6srqzaIRlw:oXmKIq-vNoM:V_sGLiPBpWU"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/a8152_nettuts?i=p6srqzaIRlw:oXmKIq-vNoM:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/nettuts?a=p6srqzaIRlw:oXmKIq-vNoM:gIN9vFwOqvQ"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/a8152_nettuts?i=p6srqzaIRlw:oXmKIq-vNoM:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/nettuts?a=p6srqzaIRlw:oXmKIq-vNoM:TzevzKxY174"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/a8152_nettuts?d=TzevzKxY174" border="0"></img></a>
</div>
<p><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/a8152_p6srqzaIRlw" height="1" width="1" /><br />
<a href="http://feedproxy.google.com/nettuts">Go to Source</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.neurosoftware.ro/programming-blog/facebook-web-design/web-resources/digging-into-wordpress-review-and-free-copies/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Introducing MooTools&#160;ScrollSidebar</title>
		<link>http://www.neurosoftware.ro/programming-blog/facebook-web-design/web-resources/introducing-mootoolsscrollsidebar/</link>
		<comments>http://www.neurosoftware.ro/programming-blog/facebook-web-design/web-resources/introducing-mootoolsscrollsidebar/#comments</comments>
		<pubDate>Mon, 30 Nov 2009 17:15:05 +0000</pubDate>
		<dc:creator>Facebook-Web-Design</dc:creator>
				<category><![CDATA[web resources]]></category>
		<category><![CDATA[Center]]></category>
		<category><![CDATA[Chris Coyier]]></category>
		<category><![CDATA[david walsh]]></category>
		<category><![CDATA[David Walsh Blog]]></category>
		<category><![CDATA[div id]]></category>
		<category><![CDATA[Don]]></category>
		<category><![CDATA[function]]></category>
		<category><![CDATA[gt homepage]]></category>
		<category><![CDATA[html navigation]]></category>
		<category><![CDATA[menu]]></category>
		<category><![CDATA[menu down]]></category>
		<category><![CDATA[navigation block]]></category>
		<category><![CDATA[quot]]></category>
		<category><![CDATA[var]]></category>

		<guid isPermaLink="false">http://www.neurosoftware.ro/programming-blog/facebook-web-design/web-resources/introducing-mootoolsscrollsidebar/</guid>
		<description><![CDATA[How many times are you putting together a HTML navigation block or utility block of elements that you wish could be seen everywhere on a page? I&#8217;ve created a solution that will seamlessly allow you to do so: ScrollSidebar. ScrollSidebar allows you to attach an element to a place on the screen and animate the [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://davidwalsh.name/dw-content/scrolling-sidebar.php"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/37551_scroll-sidebar.jpg" class="image" alt="Side ScrollBar" /></a></p>
<p>How many times are you putting together a HTML navigation block or utility block of elements that you wish could be seen everywhere on a page?  I&#8217;ve created a solution that will seamlessly allow you to do so:  ScrollSidebar.  ScrollSidebar allows you to attach an element to a place on the screen and animate the menu to the current scroll position.</p>
<div><a href="http://davidwalsh.name/dw-content/scrolling-sidebar.php">View Demo</a>
<div></div>
</div>
<h2>The HTML</h2>
<pre>
&lt;div id=&quot;sidebar-menu&quot;&gt;
	&lt;ul&gt;
		&lt;li&gt;&lt;a href=&quot;#pagetop&quot; id=&quot;sidebar-menu-top&quot; title=&quot;Top of Page&quot; style=&quot;background:url(menu-up-arrow.png) center center no-repeat;&quot;&gt;Top of Page&lt;/a&gt;&lt;/li&gt;
		&lt;li&gt;&lt;a href=&quot;/&quot; style=&quot;background:url(menu-home.png) center center no-repeat;&quot; title=&quot;Go to the Homepage&quot;&gt;Homepage&lt;/a&gt;&lt;/li&gt;
		&lt;li&gt;&lt;a href=&quot;http://twitter.com/home?status=I love David Walsh's blog!  MooTools, CSS, jQuery, PHP...it has everything!&quot; id=&quot;sidebar-menu-twitter&quot; style=&quot;background:url(menu-twitter.png) center center no-repeat;&quot; title=&quot;Share on Twitter&quot;&gt;Post on Twitter&lt;/a&gt;&lt;/li&gt;
		&lt;li&gt;&lt;a href=&quot;#pagebottom&quot; id=&quot;sidebar-menu-bottom&quot; style=&quot;background:url(menu-down-arrow.png) center center no-repeat;&quot; title=&quot;Bottom of Page&quot;&gt;Bottom of Page&lt;/a&gt;&lt;/li&gt;
	&lt;/ul&gt;
&lt;/div&gt;
</pre>
<p>You may code the menu&#8217;s HTML any way you&#8217;d like.  For the sake of accessibility and semantics <em>(I literally just shivered at the thought of following semantics) </em>I&#8217;ve used an HTML list.</p>
<h2>The CSS</h2>
<pre>
#sidebar-menu	{ display:none; width:48px; background:#333; border:1px solid #000; padding:10px; -webkit-border-radius:10px; -moz-border-radius:10px; }
#sidebar-menu ul{ padding:0; list-style-type:none; }
#sidebar-menu a	{ color:#fff; display:block; height:48px; width:48px; text-indent:-3000px; overflow:hidden; }
</pre>
<p>You may code the sidebar menu any way you&#8217;d like too.  No need to worry about positioning the menu though &#8212; the plugin will override that anyway.  I highly recommend addressing the menu&#8217;s width.  I&#8217;m also defaulting the menu to <span>display:none</span> until the menu can be positioned.</p>
<h2>The MooTools Javascript</h2>
<pre>
var ScrollSidebar = new Class({

	Implements: [Options],

	options: {
		offsets: { x:0, y:0 },
		mode: 'vertical',
		positionVertical: 'top',
		positionHorizontal: 'right',
		speed: 400
	},

	initialize: function(menu,options) {
		/* initial options */
		this.setOptions(options);
		this.menu = $(menu);
		this.move = this.options.mode == 'vertical' ? 'y' : 'x';
		this.property = this.move == 'y' ? 'positionVertical' : 'positionHorizontal';
		/* ensure a few things */
		var css = { position: 'absolute', display:'block' };
		css[this.options.positionVertical] = this.options.offsets.y;
		css[this.options.positionHorizontal] = this.options.offsets.x;
		this.menu.setStyles(css).set('tween',{ duration: this.options.speed });
		/* start listening */
		this.startListeners();
	},

	startListeners: function() {
		var action = function() {
			this.setPosition($(document.body).getScroll()[this.move] + this.options.offsets[this.move]);
		}.bind(this);
		window.addEvent('scroll',action);
		window.addEvent('load',action);
	},

	setPosition: function(move) {
		this.menu.tween(this.options[this.property],move);
		return this;
	}
});

/* usage */
window.addEvent('domready',function() {
	$('sidebar-menu').set('opacity',0.8); //opacity effect for fun
	var sidebar = new ScrollSidebar('sidebar-menu',{
		offsets: {
			x: 20,
			y: 20
		}
	});
});
</pre>
<p>I wont bore you with the parameter/option descriptions as they&#8217;re self-explanatory.  I&#8217;ve kept the class very simple.  For those who care to see what the functionality looked like pre-Class, here you go:</p>
<pre>
//paired with smooooothscroll
new SmoothScroll({ duration:300 });
//vars
var menu = $('sidebar-menu'), offsetY = 20, offsetX = 20, speed = 450;
var setPosition = function(top) {
	var scroll = $(document.body).getScroll();
	menu.tween('top',scroll.y + offsetY);
};
//settings
menu.set('tween',{ duration: speed }).setStyles({
	position: 'absolute',
	right: offsetX,
	top: offsetY,
	opacity: 0.8
});
//events
window.addEvents({
	scroll: setPosition,
	load: setPosition
});
</pre>
<p>As you can probably tell, the functionality was begging to be placed into plugin format.</p>
<div><a href="http://davidwalsh.name/dw-content/scrolling-sidebar.php">View Demo</a>
<div></div>
</div>
<p>Have any feature suggestions?  Share them.  If you&#8217;re looking for a sweet jQuery version, please <a href="http://css-tricks.com/scrollfollow-sidebar">head over to CSS-Tricks</a> to see Chris Coyier&#8217;s take!</p>
<div>
                                <a href="http://davidwalsh.name/wp-content/plugins/as-pdf/generate.php?post=3985"><br />
                                    <span>Download PDF</span><br />
                                </a>
                            </div>
<p>Don&#8217;t forget to <a href="http://twitter.com/davidwalshblog">follow me on Twitter</a> and be sure to visit <a href="http://scriptandstyle.com">Script &amp; Style</a> for the best Javascript and CSS articles around!</p>
<p><a href="http://buysellads.com/buy/detail/1687">Sponsor the David Walsh Blog</a> and get your brand in front of several thousand users per day!</p>
<p><a href="http://davidwalsh.name/scroll-sidebar">Introducing MooTools&nbsp;ScrollSidebar</a></p>
<p>Related posts:
<ol>
<li><a href="http://davidwalsh.name/lazyload" rel="bookmark" title="Permanent Link: Introducing MooTools LazyLoad">Introducing MooTools&nbsp;LazyLoad</a></li>
<li><a href="http://davidwalsh.name/mootools-watermark" rel="bookmark" title="Permanent Link: “Top” Watermark Using MooTools">&#8220;Top&#8221; Watermark Using&nbsp;MooTools</a></li>
<li><a href="http://davidwalsh.name/scrollspy" rel="bookmark" title="Permanent Link: Introducing MooTools ScrollSpy">Introducing MooTools&nbsp;ScrollSpy</a></li>
<li><a href="http://davidwalsh.name/css-sprite-menu" rel="bookmark" title="Permanent Link: Create a Sprited Navigation Menu Using CSS and MooTools">Create a Sprited Navigation Menu Using CSS and&nbsp;MooTools</a></li>
<li><a href="http://davidwalsh.name/editable-content-mootools-php-mysql" rel="bookmark" title="Permanent Link: Editable Content Using MooTools 1.2, PHP, and MySQL">Editable Content Using MooTools 1.2, PHP, and&nbsp;MySQL</a></li>
</ol>
<p><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/fe2a7_AqZ-1QGmPPI" height="1" width="1" /><br />
<a href="http://davidwalsh.name/feed/atom">Go to Source</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.neurosoftware.ro/programming-blog/facebook-web-design/web-resources/introducing-mootoolsscrollsidebar/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>What I&#8217;m Thankful For: 2009 Web&#160;Edition</title>
		<link>http://www.neurosoftware.ro/programming-blog/facebook-web-design/web-resources/what-im-thankful-for-2009-webedition/</link>
		<comments>http://www.neurosoftware.ro/programming-blog/facebook-web-design/web-resources/what-im-thankful-for-2009-webedition/#comments</comments>
		<pubDate>Thu, 26 Nov 2009 16:05:05 +0000</pubDate>
		<dc:creator>Facebook-Web-Design</dc:creator>
				<category><![CDATA[web resources]]></category>
		<category><![CDATA[Aaron Newton]]></category>
		<category><![CDATA[babel fish]]></category>
		<category><![CDATA[Chelsea]]></category>
		<category><![CDATA[chelsea fan]]></category>
		<category><![CDATA[Chris Coyier]]></category>
		<category><![CDATA[crappy sites]]></category>
		<category><![CDATA[Darren Waddell]]></category>
		<category><![CDATA[David Walsh Blog]]></category>
		<category><![CDATA[Don]]></category>
		<category><![CDATA[driven group]]></category>
		<category><![CDATA[Eric Wendelin]]></category>
		<category><![CDATA[errors of my ways]]></category>
		<category><![CDATA[League]]></category>
		<category><![CDATA[mootools]]></category>
		<category><![CDATA[Rey Bango]]></category>
		<category><![CDATA[team]]></category>
		<category><![CDATA[work]]></category>

		<guid isPermaLink="false">http://www.neurosoftware.ro/programming-blog/facebook-web-design/web-resources/what-im-thankful-for-2009-webedition/</guid>
		<description><![CDATA[I&#8217;d like to take a moment this Thanksgiving to thank some people that deserved to be. I&#8217;d like to thank the MooTools team for all of the support and hard work. I feel truly honored to be around such intelligent, driven group of individuals. I&#8217;d like to specifically thank Aaron Newton and Valerio Proietti for [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/5af0f_sexy-turkey.jpg" alt="Turkey" class="image" /></p>
<p>I&#8217;d like to take a moment this <a href="http://en.wikipedia.org/wiki/Thanksgiving">Thanksgiving</a> to thank some people that deserved to be.</p>
<ul>
<li>I&#8217;d like to thank the MooTools team for all of the support and hard work.  I feel truly honored to be around such intelligent, driven group of individuals.  I&#8217;d like to specifically thank Aaron Newton and Valerio Proietti for being great leaders and advisers.  MooTools FTW.</li>
<li>I&#8217;d like to thank members of the MooTools community for all of their hard work.  Sometimes I don&#8217;t think we all realize just how much we&#8217;re changing the web.  Keep up the good work MooToolers!</li>
<li>I&#8217;d like to thank friends like Chris Coyier and Eric Wendelin for letting me bounce ideas off of them, however rubbish they may be.</li>
<li>I&#8217;d like to thank Babel Fish for allowing me to easily translate senseless phrases to other languages so that I may send said messages to foreign members of the MooTools team.</li>
<li>I&#8217;d like to thank Rey Bango for being my whipping boy whenever I need to talk smack to someone.</li>
<li>I&#8217;d like to thank Twitter for creating a service that allows me to be riveting in 140 characters or less.</li>
<li>I&#8217;d like to thank DirecTv for allowing to purchase not one but two soccer packages.  I get to see EPL, SPL, La Liga, Serie A, Bundesliga, Ligue, Russian League, and Champhions League.  In turn I&#8217;d like to thank Darren Waddell for being patient with me as I ask questions and initially attempted to be a Chelsea fan.  I&#8217;ve seen the errors of my ways:  go Gunners!</li>
<li>I&#8217;d like to thank Internet Explorer for continuing to encourage my creativity and making me think out each piece of my javascript code.</li>
<li>I&#8217;d like to thank my advertisers who are unknowingly paying for the rock I just bought.</li>
<li>I&#8217;d like to thank all of the crappy sites our there for giving me so many ideas for improvements.</li>
<li>I&#8217;d like to thank the developers and designers that follow me here, provide encouragement and constructive criticism, and reach out to help with projects.  You guys make all the time I spend on this blog worth it.</li>
</ul>
<p>Thank you again!</p>
<div>
                                <a href="http://davidwalsh.name/wp-content/plugins/as-pdf/generate.php?post=4307"><br />
                                    <span>Download PDF</span><br />
                                </a>
                            </div>
<p>Don&#8217;t forget to <a href="http://twitter.com/davidwalshblog">follow me on Twitter</a> and be sure to visit <a href="http://scriptandstyle.com">Script &amp; Style</a> for the best Javascript and CSS articles around!</p>
<p><a href="http://buysellads.com/buy/detail/1687">Sponsor the David Walsh Blog</a> and get your brand in front of several thousand users per day!</p>
<p><a href="http://davidwalsh.name/thanksgiving-2009">What I&#8217;m Thankful For: 2009 Web&nbsp;Edition</a></p>
<p>Related posts:
<ol>
<li><a href="http://davidwalsh.name/blog-goals-2009" rel="bookmark" title="Permanent Link: Blog Goals for 2009">Blog Goals for&nbsp;2009</a></li>
<li><a href="http://davidwalsh.name/thanksgiving-2008" rel="bookmark" title="Permanent Link: What I’m Thankful For: 2008 Edition">What I&#8217;m Thankful For: 2008&nbsp;Edition</a></li>
<li><a href="http://davidwalsh.name/web-predictions-2009" rel="bookmark" title="Permanent Link: Web Predictions For 2009">Web Predictions For&nbsp;2009</a></li>
<li><a href="http://davidwalsh.name/faces-of-moo" rel="bookmark" title="Permanent Link: Faces of Moo: Represent Your Framework!">Faces of Moo: Represent Your&nbsp;Framework!</a></li>
<li><a href="http://davidwalsh.name/5-simple-ways-programmers-and-designers-should-give-back" rel="bookmark" title="Permanent Link: 5 Simple Ways Programmers and Designers Should Give Back">5 Simple Ways Programmers and Designers Should Give&nbsp;Back</a></li>
</ol>
<p><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/5af0f_7ZKqYvYaut8" height="1" width="1" /><br />
<a href="http://davidwalsh.name/feed/atom">Go to Source</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.neurosoftware.ro/programming-blog/facebook-web-design/web-resources/what-im-thankful-for-2009-webedition/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Better Pull Quotes with&#160;MooTools</title>
		<link>http://www.neurosoftware.ro/programming-blog/facebook-web-design/web-resources/better-pull-quotes-withmootools/</link>
		<comments>http://www.neurosoftware.ro/programming-blog/facebook-web-design/web-resources/better-pull-quotes-withmootools/#comments</comments>
		<pubDate>Mon, 23 Nov 2009 16:50:05 +0000</pubDate>
		<dc:creator>Facebook-Web-Design</dc:creator>
				<category><![CDATA[web resources]]></category>
		<category><![CDATA[background color]]></category>
		<category><![CDATA[Chris]]></category>
		<category><![CDATA[Chris Coyier]]></category>
		<category><![CDATA[David Walsh Blog]]></category>
		<category><![CDATA[Don]]></category>
		<category><![CDATA[element]]></category>
		<category><![CDATA[mootools]]></category>
		<category><![CDATA[new element]]></category>
		<category><![CDATA[padding]]></category>
		<category><![CDATA[quote]]></category>
		<category><![CDATA[span]]></category>
		<category><![CDATA[span class]]></category>
		<category><![CDATA[twitter]]></category>

		<guid isPermaLink="false">http://www.neurosoftware.ro/programming-blog/facebook-web-design/web-resources/better-pull-quotes-withmootools/</guid>
		<description><![CDATA[Chris Coyier authored a post titled Better Pull Quotes: Don&#8217;t Repeat Markup a while back. In his post he created great-looking pull quotes without repeating any content &#8212; instead he uses jQuery to dynamically create the pull quotes. The following is the MooTools method for doing so. View Demo The HTML &#60;p&#62;&#60;span class=&#34;pull-me&#34;&#62;As a MooTools [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://davidwalsh.name/dw-content/mootools-pull-quote.php"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/fce5d_pullquotes.png" alt="Pull Quotes" /></a></p>
<p>Chris Coyier authored a post titled <a href="http://css-tricks.com/better-pull-quotes/">Better Pull Quotes: Don&#8217;t Repeat Markup</a> a while back.  In his post he created great-looking pull quotes without repeating any content &#8212; instead he uses jQuery to dynamically create the pull quotes.  The following is the MooTools method for doing so.</p>
<div><a href="http://davidwalsh.name/dw-content/mootools-pull-quote.php">View Demo</a>
<div></div>
</div>
<h2>The HTML</h2>
<pre>
&lt;p&gt;&lt;span class=&quot;pull-me&quot;&gt;As a MooTools &quot;insider&quot;, however, I'm excited for what the MooTools team will bring to the table during 2010.&lt;/span&gt; We'll be launching the Forge (our public plugin repository), releasing MooTools 2, continuing to grow MooTools More, featuring more community work, and much more. MooTools FTW!&lt;/p&gt;
</pre>
<p>The HTML above features a paragraph of content with a SPAN tag wrapping what I&#8217;d like to be the pull quote.</p>
<h2>The CSS</h2>
<pre>
.quote { padding:20px; margin:0 0 20px 20px; font-size:20px; font-style:italic; background:#eee; color:#999; display:block; width:200px; float:right; }
</pre>
<p>You may style the quote any way you&#8217;d like.  These elements are traditionally large in text with italicized text and a different background color.</p>
<h2>The MooTools Javascript</h2>
<pre>
window.addEvent('domready',function() {
	//grab all quotes
	$$('span.pull-me').each(function(span) {
		//inject styled quote into page
		new Element('span',{
			'class': 'quote',
			text: span.get('text')
		}).inject(span.getParent(),'top');
	});
});
</pre>
<p>We find each element with a &#8220;pull-me&#8221; CSS class and generate a new element with our &#8220;quote&#8221; class.  We then inject the new element into the original element&#8217;s parent.  That&#8217;s all!</p>
<div><a href="http://davidwalsh.name/dw-content/mootools-pull-quote.php">View Demo</a>
<div></div>
</div>
<p>Chris did a great job with the execution of his idea.  This is a technique that will likely be used well into the future.</p>
<div>
                                <a href="http://davidwalsh.name/wp-content/plugins/as-pdf/generate.php?post=4292"><br />
                                    <span>Download PDF</span><br />
                                </a>
                            </div>
<p>Don&#8217;t forget to <a href="http://twitter.com/davidwalshblog">follow me on Twitter</a> and be sure to visit <a href="http://scriptandstyle.com">Script &amp; Style</a> for the best Javascript and CSS articles around!</p>
<p><a href="http://buysellads.com/buy/detail/1687">Sponsor the David Walsh Blog</a> and get your brand in front of several thousand users per day!</p>
<p><a href="http://davidwalsh.name/mootools-pull-quotes">Better Pull Quotes with&nbsp;MooTools</a></p>
<p>Related posts:
<ol>
<li><a href="http://davidwalsh.name/highlight-table-columns" rel="bookmark" title="Permanent Link: Highlight Table Rows, Columns, and Cells Using MooTools 1.2.3">Highlight Table Rows, Columns, and Cells Using MooTools&nbsp;1.2.3</a></li>
<li><a href="http://davidwalsh.name/predictions-2010" rel="bookmark" title="Permanent Link: Bold Web Predictions for 2010">Bold Web Predictions for&nbsp;2010</a></li>
<li><a href="http://davidwalsh.name/mootools-html-police-dwmarkupmarine" rel="bookmark" title="Permanent Link: MooTools HTML Police: dwMarkupMarine">MooTools HTML Police:&nbsp;dwMarkupMarine</a></li>
<li><a href="http://davidwalsh.name/method-chaining" rel="bookmark" title="Permanent Link: Method Chaining in MooTools and PHP">Method Chaining in MooTools and&nbsp;PHP</a></li>
<li><a href="http://davidwalsh.name/image-protector-plugin-for-jquery" rel="bookmark" title="Permanent Link: dwImageProtector Plugin for jQuery">dwImageProtector Plugin for&nbsp;jQuery</a></li>
</ol>
<p><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/fce5d_NCxy8TQwalw" height="1" width="1" /><br />
<a href="http://davidwalsh.name/feed/atom">Go to Source</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.neurosoftware.ro/programming-blog/facebook-web-design/web-resources/better-pull-quotes-withmootools/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>30 Covers in 30 Days, Part 2</title>
		<link>http://www.neurosoftware.ro/programming-blog/blogposter/web-resources/30-covers-in-30-days-part-2/</link>
		<comments>http://www.neurosoftware.ro/programming-blog/blogposter/web-resources/30-covers-in-30-days-part-2/#comments</comments>
		<pubDate>Thu, 12 Nov 2009 04:09:32 +0000</pubDate>
		<dc:creator>BlogPoster</dc:creator>
				<category><![CDATA[web resources]]></category>
		<category><![CDATA[action comics]]></category>
		<category><![CDATA[Alexander Deluca]]></category>
		<category><![CDATA[Chris]]></category>
		<category><![CDATA[Chris Baty]]></category>
		<category><![CDATA[Chris Coyier]]></category>
		<category><![CDATA[cover]]></category>
		<category><![CDATA[Cynthia Dawn]]></category>
		<category><![CDATA[John Foe]]></category>
		<category><![CDATA[lee metzger]]></category>
		<category><![CDATA[library of congress]]></category>
		<category><![CDATA[Marcia Lee Metzger]]></category>
		<category><![CDATA[NaNoWriMo]]></category>
		<category><![CDATA[something]]></category>
		<category><![CDATA[Stacey Shackford]]></category>
		<category><![CDATA[view]]></category>
		<category><![CDATA[week]]></category>

		<guid isPermaLink="false">http://www.neurosoftware.ro/programming-blog/blogposter/web-resources/30-covers-in-30-days-part-2/</guid>
		<description><![CDATA[We return you now to a NaNoWriMo challenge already in progress. Chris of Fwis is still working hard to design 30 Cover in 30 Days. Below, his first 5 covers and Part Two of our ongoing interview. Enjoy! Could you give us a sentence or two about each cover you produced this week? What methods [...]]]></description>
			<content:encoded><![CDATA[<div><a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.snap2objects.com%2F2009%2F11%2F11%2F30-covers-in-30-days-part-2%2F"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/31915_imagebutton.gif?url=http%3A%2F%2Fwww.snap2objects.com%2F2009%2F11%2F11%2F30-covers-in-30-days-part-2%2F" height="61" width="51" /></a></div>
<p><img class="alignnone size-full wp-image-4465" src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/cb7fc_fwis01b.png" alt="fwis01b" width="483" height="146" /></p>
<p>We return you now to a NaNoWriMo challenge already in progress. Chris of Fwis is still working hard to design 30 Cover in 30 Days. Below, his first 5 covers and Part Two of our ongoing interview.</p>
<p>Enjoy!</p>
<p><span></span></p>
<p><strong>Could you give us a sentence or two about each cover you produced this week? What methods did you use? Are there any new styles or techniques that you experimented with? What ideas did you want to convey?</strong></p>
<p><em>1: <a href="http://www.nanowrimo.org/eng/node/3367228" target="_blank">The Business </a></em><a href="http://www.nanowrimo.org/eng/node/3367228" target="_blank">by Tricialee Friedman</a> <em>(<a href="http://www.nanowrimo.org/eng/node/3367228" target="_blank">view full</a>)<a href="http://www.nanowrimo.org/eng/node/3367228"><img class="alignright size-full wp-image-4467" src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/feb62_fwiscover01_business.png" alt="fwiscover01_business" width="71" height="100" /></a></em></p>
<p>The first one is always the toughest, and I was a little fussy on this one. I still don&#8217;t like the type treatment. The image is from the Library of Congress. I wanted to convey something along the lines of a shattering injury.</p>
<p><em>2: <a href="http://www.nanowrimo.org/eng/node/3369884" target="_blank">Traffic Lights </a></em><a href="http://www.nanowrimo.org/eng/node/3369884" target="_blank">by Cynthia Dawn</a> (<em><a href="http://www.nanowrimo.org/eng/node/3369884" target="_blank">view full</a>)<a href="http://www.nanowrimo.org/eng/node/3369884"><img class="alignright size-full wp-image-4468" src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/506c0_fwiscover02_traffic.png" alt="fwiscover02_traffic" width="71" height="100" /></a></em></p>
<p>Pen &amp; ink. I need to do more like this, just simple, broad strokes. I wanted to convey precociousness but also something dramatic and a little insidious.</p>
<p><em>3: <a href="http://www.nanowrimo.org/eng/node/3405839" target="_blank">The Beauty of a Grid </a></em><a href="http://www.nanowrimo.org/eng/node/3405839" target="_blank">by Alexander Deluca</a> <em>(<a href="http://www.nanowrimo.org/eng/node/3405839">view full</a>) <a href="http://www.nanowrimo.org/eng/node/3405839"><img class="alignright size-full wp-image-4469" src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/84b65_fwiscover03_grid.png" alt="fwiscover03_grid" width="71" height="100" /></a></em></p>
<p>This is one of those covers that just sorta happened on the first pass &#8211; its my favorite one so far, though it might need a little more contrast.</p>
<p><em>4: <a href="http://www.nanowrimo.org/eng/node/3420241" target="_blank">Meet John Foe by </a></em><a href="http://www.nanowrimo.org/eng/node/3420241" target="_blank">Marcia Lee Metzger</a><em> (<a href="http://www.nanowrimo.org/eng/node/3420241" target="_blank">view full</a>) <a href="http://www.nanowrimo.org/eng/node/3420241"><img class="alignright size-full wp-image-4470" src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/28a8d_fwiscover04_johnfoe.png" alt="fwiscover04_johnfoe" width="71" height="100" /></a></em></p>
<p>More LoC images here &#8211; basically just an Action Comics cover.</p>
<p><em>5: <a href="http://www.nanowrimo.org/eng/node/3436336">King of the Food Court by </a></em><a href="http://www.nanowrimo.org/eng/node/3436336" target="_blank">Stacey Shackford</a> <em>(<a href="http://www.nanowrimo.org/eng/node/3436336" target="_blank">view full</a>)</em> <a href="http://www.nanowrimo.org/eng/node/3436336"><em><img class="alignright size-full wp-image-4466" src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/a3079_fwiscover05_foodcourt.png" alt="fwiscover05_foodcourt" width="71" height="100" /></em></a></p>
<p>I had a really short description for this one, but I really like the idea of some mall-bound sage or poet. The type is sort of an embarrassing one amongst designers so I had to use it.</p>
<p><strong>Chris Baty (founder of NaNoWriMo) has defined Week One as being full of energy and anticipation. Would you say that accurately describes your experience this week?</strong></p>
<p>No, I am struggling trying to write, run a business, and finish these covers. My social life is in the pits!</p>
<p><strong>Have you met your goals for this week?</strong></p>
<p>No!!</p>
<p><strong>How much time have you spent on covers? Your novel? </strong></p>
<p>I&#8217;d say about an hour apiece on the covers. I am something like 10,000 words behind on my novel, but I&#8217;m taking a week off for Thanksgiving and expect to make it up then.</p>
<p><strong> You&#8217;ve said you&#8217;re not using stock images for this project. Where are you getting images from, and how has this affected the final products? </strong></p>
<p>As I mentioned, the Library of Congress Image Search is great; I&#8217;ll probably end up using some of my own photos, staying purely typographic, or illustrating by hand. I&#8217;m not exactly sure to what extent I&#8217;m willing to go fair-use on copyrighted images, but its an option.</p>
<p><strong>On the third, you went outside the parameters and designed a cover of your choosing. The Nominations thread is now some 200 posts long. Are you browsing for more ideas that spark your interest, or leaving it up to the NaNoWriMo selection team? </strong></p>
<p>Probably not; I need to get the covers done for the people the NaNoWriMo editors have chosen &#8211; they made some excellent choices and I need to nail those to the wall before I start tossing wrenches into their careful curation. Sorry Chris &amp; TK!</p>
<p><strong>You can always find Chris&#8217; latest cover in this forum thread:</strong> <a href="http://www.nanowrimo.org/eng/node/3438529" target="_blank">http://www.nanowrimo.org/eng/node/3438529</a></p>
<p>Have a question for Chris? Leave it in the comments!</p>
<p><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/ba53b_?ak_action=api_record_view&amp;id=4464&amp;type=feed" alt="" /></p>
<p>Related posts:
<ol>
<li><a href="http://www.snap2objects.com/2009/11/02/30-covers-in-30-days/" rel="bookmark" title="Permanent Link: 30 Covers in 30 Days">30 Covers in 30 Days</a></li>
<li><a href="http://www.snap2objects.com/2008/02/08/five-css-coding-steps-from-a-profesional/" rel="bookmark" title="Permanent Link: Five CSS-Coding Steps from a Professional">Five CSS-Coding Steps from a Professional</a></li>
<li><a href="http://www.snap2objects.com/2008/01/27/next-thursday-interview-with-chris-coyier-the-guy-who-show-us-how-beautiful-html-codes-looks-like/" rel="bookmark" title="Permanent Link: Next Thursday Interview with Chris Coyier: The guy who showed us how Beautiful HTML Codes Looks like">Next Thursday Interview with Chris Coyier: The guy who showed us how Beautiful HTML Codes Looks like</a></li>
</ol>
<div>
<a href="http://feeds.feedburner.com/~ff/Snap2objects?a=Ey68rzgPpfk:4Htu49wXj9U:yIl2AUoC8zA"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/ba53b_Snap2objects?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Snap2objects?a=Ey68rzgPpfk:4Htu49wXj9U:qj6IDK7rITs"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/ba53b_Snap2objects?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Snap2objects?a=Ey68rzgPpfk:4Htu49wXj9U:TzevzKxY174"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/ba53b_Snap2objects?d=TzevzKxY174" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Snap2objects?a=Ey68rzgPpfk:4Htu49wXj9U:gIN9vFwOqvQ"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/ba53b_Snap2objects?i=Ey68rzgPpfk:4Htu49wXj9U:gIN9vFwOqvQ" border="0"></img></a>
</div>
<p><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/ba53b_Ey68rzgPpfk" height="1" width="1" /><br />
<a href="http://www.snap2objects.com/feed/">Go to Source</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.neurosoftware.ro/programming-blog/blogposter/web-resources/30-covers-in-30-days-part-2/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>When Webmasters&#160;Attack!</title>
		<link>http://www.neurosoftware.ro/programming-blog/blogposter/web-resources/when-webmastersattack/</link>
		<comments>http://www.neurosoftware.ro/programming-blog/blogposter/web-resources/when-webmastersattack/#comments</comments>
		<pubDate>Tue, 10 Nov 2009 03:09:04 +0000</pubDate>
		<dc:creator>BlogPoster</dc:creator>
				<category><![CDATA[web resources]]></category>
		<category><![CDATA[Chris]]></category>
		<category><![CDATA[Chris Coyier]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[David Walsh Blog]]></category>
		<category><![CDATA[digg]]></category>
		<category><![CDATA[Don]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[Kitty]]></category>
		<category><![CDATA[one giant]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[png image]]></category>
		<category><![CDATA[proper programming]]></category>
		<category><![CDATA[subjective description]]></category>
		<category><![CDATA[waste bandwidth]]></category>

		<guid isPermaLink="false">http://www.neurosoftware.ro/programming-blog/blogposter/web-resources/when-webmastersattack/</guid>
		<description><![CDATA[CSS-Tricks scribe Chris Coyier wrote a great post titled What Beautiful HTML Code Looks Like where he outlined (with a great image, no less) how a great HTML/PHP file looks when proper programming practices are used. The post was so popular that the featured image was promoted to the Digg homepage. Then the webmasters logged [...]]]></description>
			<content:encoded><![CDATA[<p>CSS-Tricks scribe Chris Coyier wrote a great post titled <a href="http://css-tricks.com/what-beautiful-html-code-looks-like/">What Beautiful HTML Code Looks Like</a> where he outlined (with a great image, no less) how a great HTML/PHP file looks when proper programming practices are used.  The post was so popular that the featured image was promoted to the Digg homepage.  Then the webmasters logged out of their guild chat long enough to <a href="http://digg.com/design/What_Beautiful_HTML_Code_Looks_Like_inforgraphic">bless the Digg comments with their wisdom</a>.  I present to you&#8230;</p>
<h2>When Webmasters Attack!</h2>
<blockquote><p>Also, what kind of web designer doesn&#8217;t already know this? It&#8217;s called being organized. However, all that white-space is going to add-up and waste bandwidth, which makes this &#8220;beautiful code&#8221; (a self-serving, inaccurate, subjective description) not-so-perfect.</p></blockquote>
<p>What kind of web designer doesn&#8217;t know how easy it is to GZIP content which compresses/eliminates all of the extra whitespace that makes code more maintainable?</p>
<blockquote><p>I don&#8217;t think &lt;?php .. is valid HTML 5 either.</p></blockquote>
<p>This isn&#8217;t a &#8220;Hello Kitty&#8221; picture, Webmaster, so please don&#8217;t comment.  This will get parsed by PHP and output as HTML.</p>
<blockquote><p>I link to one stylesheet. It works on firefox, safari and ie8.<br />
<Br /><br />
If you can&#8217;t be bothered to upgrade your browser, I can&#8217;t be bothered with you.<br />
<Br /><br />
None of this If IE&gt;blabla shit.<br />
<Br /><br />
Oh, and spare me the &#8220;but i need IE6 to use some of the software at my office&#8221;. I DONT CARE! Use a more recent browser to surf the internet, and stop spreading viruses because you&#8217;re too lazy.</p></blockquote>
<p>I was going to ask you, Webmaster, about your clients&#8217; web visitors and the money they&#8217;d be losing by turning away persons with IE6 and IE7 browsers but then I realized I took them all from you.  Apparently the order of importance goes:  you, client, visitors.  That&#8217;s completely backward.</p>
<blockquote><p>&#8230;The irony of this article is that it&#8217;s one giant PNG image.  Further proof that the most beautiful HTML is the nonexistent kind.</p></blockquote>
<p>Apparently Chris should have used a JPEG?</p>
<blockquote><p>Why I am not surprised to see a MacOS window?</p></blockquote>
<p>Because you&#8217;re a psychic?  WTF is that supposed to mean?</p>
<blockquote><p>PHP in a .HTML file?<br />
<Br /><br />
change the title to &#8220;What Beautiful HTML Code Looks Like [infoFAIL]&#8220;</p></blockquote>
<p>As long as you&#8217;re going to ignore the main point of the post and be a smart ass about the PHP/HTML, I&#8217;ll point out that Chris added a .htaccess directive to parse .html files as PHP.  Ouch, sick burn!</p>
<blockquote><p>No title attributes in the anchor tags. Since when does that make for beautiful HTML?</p></blockquote>
<p>The article isn&#8217;t called &#8220;What Beautiful SEO Looks Like&#8221;.</p>
<blockquote><p>This page has a story, a sidebar, and a footer. &#8216;Real&#8217; websites are far more dynamic than this, and by &#8216;real&#8217; I mean ones that people will go to. Complex websites have complex markup. You shouldn&#8217;t be bragging just because you&#8217;ve passed your w3schools tests.</p></blockquote>
<p>You&#8217;re right.  What he should really brag about are the dozens of thousands of RSS followers and his status within the community.</p>
<blockquote><p>I get it but to some point it gets stupid. Stop accommodating specific browsers. If the web page loads properly then good but if it doesnt and looks broken then that tells he consumer to upgrade their fucking browser! It should be that simple.</p></blockquote>
<p>Another lazy, ignorant idiot that doesn&#8217;t understand that he isn&#8217;t important &#8212; his clients and their visitors are.  This person clearly doesn&#8217;t get it.</p>
<h2>In the end&#8230;</h2>
<p>Thank you again, Webmaster, for reminding me why I should be so proud of the work I do.  Without you I couldn&#8217;t pay for house, cars, and fine wine.  Keep up the good work so I can keep up my fine life!</p>
<div>
                                <a href="http://davidwalsh.name/wp-content/plugins/as-pdf/generate.php?post=4177"><br />
                                    <span>Download PDF</span><br />
                                </a>
                            </div>
<p>Don&#8217;t forget to <a href="http://twitter.com/davidwalshblog">follow me on Twitter</a> and be sure to visit <a href="http://scriptandstyle.com">Script &amp; Style</a> for the best Javascript and CSS articles around!</p>
<p><a href="http://buysellads.com/buy/detail/1687">Sponsor the David Walsh Blog</a> and get your brand in front of several thousand users per day!</p>
<p><a href="http://davidwalsh.name/when-webmasters-attack">When Webmasters&nbsp;Attack!</a></p>
<p>Related posts:
<ol>
<li><a href="http://davidwalsh.name/create-digg-url-php" rel="bookmark" title="Permanent Link: Create Digg URLs Using PHP">Create Digg URLs Using&nbsp;PHP</a></li>
<li><a href="http://davidwalsh.name/advanced-htaccess-security-block-unwanted-referrers" rel="bookmark" title="Permanent Link: Advanced .htaccess Security – Block Unwanted Referrers">Advanced .htaccess Security &#8211; Block Unwanted&nbsp;Referrers</a></li>
<li><a href="http://davidwalsh.name/6-reason-why-digg-is-losing-me" rel="bookmark" title="Permanent Link: 6 Reason Why Digg Is Losing Me">6 Reason Why Digg Is Losing&nbsp;Me</a></li>
<li><a href="http://davidwalsh.name/msn-live-search-result-grabber" rel="bookmark" title="Permanent Link: MSN Live Search Result Grabber">MSN Live Search Result&nbsp;Grabber</a></li>
<li><a href="http://davidwalsh.name/google-spy-php-total-search-results" rel="bookmark" title="Permanent Link: Google Grabber — Using PHP to Find Out How Many Pages Your Domain Has Listed in Google">Google Grabber &#8212; Using PHP to Find Out How Many Pages Your Domain Has Listed in&nbsp;Google</a></li>
</ol>
<p><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/f20b9_O7vAD1YYehY" height="1" width="1" /><br />
<a href="http://davidwalsh.name/feed/atom">Go to Source</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.neurosoftware.ro/programming-blog/blogposter/web-resources/when-webmastersattack/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Really Useful Tutorials You Should Have Read in October 2009</title>
		<link>http://www.neurosoftware.ro/programming-blog/blogposter/web-resources/really-useful-tutorials-you-should-have-read-in-october-2009/</link>
		<comments>http://www.neurosoftware.ro/programming-blog/blogposter/web-resources/really-useful-tutorials-you-should-have-read-in-october-2009/#comments</comments>
		<pubDate>Sat, 31 Oct 2009 20:21:05 +0000</pubDate>
		<dc:creator>BlogPoster</dc:creator>
				<category><![CDATA[web resources]]></category>
		<category><![CDATA[Andrew Burgess]]></category>
		<category><![CDATA[Chris Coyier]]></category>
		<category><![CDATA[Featured]]></category>
		<category><![CDATA[Janko]]></category>
		<category><![CDATA[Jean-Baptiste Jung]]></category>
		<category><![CDATA[Jonathan Snook]]></category>
		<category><![CDATA[Joshua Johnson]]></category>
		<category><![CDATA[jovanovic]]></category>
		<category><![CDATA[link]]></category>
		<category><![CDATA[Marco Kuiper]]></category>
		<category><![CDATA[October]]></category>
		<category><![CDATA[screen]]></category>
		<category><![CDATA[Tom Kenny]]></category>
		<category><![CDATA[update]]></category>

		<guid isPermaLink="false">http://www.neurosoftware.ro/programming-blog/blogposter/web-resources/really-useful-tutorials-you-should-have-read-in-october-2009/</guid>
		<description><![CDATA[This update covers tutorials, how-to, screen casts, tips and techniques that you should have read in October 2009. Featured authors include: Marco Kuiper, Janko Jovanovic, Konstantin Kovshenin, Andrew Burgess, Tom Kenny, Joshua Johnson, Chris Coyier, Jonathan Snook, Jean-Baptiste Jung and more&#8230;. DIRECT LINK &#187; Go to Source]]></description>
			<content:encoded><![CDATA[<p>This update covers tutorials, how-to, screen casts, tips and techniques that you should have read in October 2009. Featured authors include: Marco Kuiper, Janko Jovanovic, Konstantin Kovshenin, Andrew Burgess, Tom Kenny, Joshua Johnson, Chris Coyier, Jonathan Snook, Jean-Baptiste Jung and more&#8230;.</p>
<p><a href="http://www.w3avenue.com/2009/10/31/tutorials-2009-october/">DIRECT LINK &raquo;</a><br />
<a href="http://feeds2.feedburner.com/Devsnippets">Go to Source</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.neurosoftware.ro/programming-blog/blogposter/web-resources/really-useful-tutorials-you-should-have-read-in-october-2009/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Quick Tips Of The Week &#8211; August 22nd 2009</title>
		<link>http://www.neurosoftware.ro/programming-blog/blogposter/web-resources/quick-tips-of-the-week-august-22nd-2009/</link>
		<comments>http://www.neurosoftware.ro/programming-blog/blogposter/web-resources/quick-tips-of-the-week-august-22nd-2009/#comments</comments>
		<pubDate>Sun, 11 Oct 2009 15:11:47 +0000</pubDate>
		<dc:creator>BlogPoster</dc:creator>
				<category><![CDATA[web resources]]></category>
		<category><![CDATA[Chris Coyier]]></category>
		<category><![CDATA[Douglas Neiner]]></category>
		<category><![CDATA[eye dropper]]></category>
		<category><![CDATA[google logo]]></category>
		<category><![CDATA[hex]]></category>
		<category><![CDATA[hex code]]></category>
		<category><![CDATA[hex codes]]></category>
		<category><![CDATA[image]]></category>
		<category><![CDATA[killer font]]></category>
		<category><![CDATA[photoshop]]></category>
		<category><![CDATA[Tip]]></category>
		<category><![CDATA[week]]></category>

		<guid isPermaLink="false">http://www.neurosoftware.ro/programming-blog/blogposter/web-resources/quick-tips-of-the-week-august-22nd-2009/</guid>
		<description><![CDATA[Quick tips of the week for designers is now here, I will be posting five great tips that I discover during the week and share them with you! This week learn how to vertically and horizontally center using css, quickly grab hex codes, find those mysterious fonts, a great Photoshop blending mode tip and a [...]]]></description>
			<content:encoded><![CDATA[<p>Quick tips of the week for designers is now here, I will be posting five great tips that I discover during the week and share them with you! This week learn how to vertically and horizontally center using css, quickly grab hex codes, find those mysterious fonts, a great Photoshop blending mode tip and a fantastic jQuery content slider.<span></span></p>
<div>
<h3>#1</h3>
<p><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/2a784_verticallycenter1.jpg" alt="verticallycenter1" width="610" height="88" class="aligncenter size-full wp-image-1113" /></p>
<p>Vertically and Horizontally centering using css is probably easier than you think, sure everyone knows how to horizontally center using the old <b>0 auto margin</b> trick.  To get an image/object exactly centered using css, simply apply a negative top margin of half the images height, and a negative left margin of half the images width. For example:</p>
<pre>
#centered {
  position: fixed;
  top: 50%;
  left: 50%;
  margin-top: -75px;
  margin-left: -150px;
}
</pre>
<p><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/88149_centerverticallyexample.jpg" alt="centerverticallyexample" width="610" height="243" class="aligncenter size-full wp-image-1110" /></p>
</div>
<div>
<h3>#2</h3>
<p><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/e6720_whatthehex.jpg" alt="whatthehex" width="610" height="88" class="aligncenter size-full wp-image-1058" /></p>
<p>Have you ever come across a great colour that you just don&#8217;t know what it&#8217;s <strong>hex code</strong> is?</p>
<p><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/62f0f_colorzilla.jpg" alt="colorzilla" width="610" height="100" class="aligncenter size-full wp-image-976" /></p>
<p><a href="http://www.colorzilla.com/firefox/"><b>Colorzilla</b></a> is a great firefox add-on, the color picker sits discretely at the bottom left status bar of the browser, to use it just simply click the eye dropper icon and place the &#8216;cross hair&#8217; any where in the browser and the 6 digit hex code will be displayed. Then right click the eye dropper icon and select cody &#8220;#178271&#8243; hex code. I use <a href="http://www.colorzilla.com/firefox/">Colorzilla</a> all the time as 9 times out of 10 the color that I want to know will be on a website therefore there is no need to take a screen shot and take it into Photoshop.</p>
</div>
<div>
<h3>#3</h3>
<p><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/9c2da_whatsthatfont.jpg" alt="whatsthatfont" width="610" height="88" class="aligncenter size-full wp-image-1060" /></p>
<p>Have you ever come across a killer font you just don&#8217;t know the name of well here is a nifty web service that will take an images of the font, analyze the image and give you a list of fonts that match. It&#8217;s great! This web service is called <a href="http://new.myfonts.com/WhatTheFont/">WhatTheFont.com</a></p>
<p><a href="http://new.myfonts.com/WhatTheFont/"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/1c312_whatfontstep1.jpg" alt="whatfontstep1" width="610" height="223" class="aligncenter size-full wp-image-1092" /></a></p>
<p>The first step is uploading an image of the font or you can give the link to the image location, for this example I will be using the famous google logo.</p>
<p><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/01d05_whatfontstep32.png" alt="whatfontstep32" width="610" height="251" class="aligncenter size-full wp-image-1121" /></p>
<p>Next it will break the text up into individual characters, if it has analyzed a character wrong you can change it manually.</p>
<p><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/f6cec_whatfontstep31.png" alt="whatfontstep31" width="610" height="255" class="aligncenter size-full wp-image-1101" /></p>
<p>The service will then take the information/images and compare them to the database and provide you with a list fonts that match and their names.</p>
</div>
<div>
<h3>#4</h3>
<p><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/88f55_photoshopbledningmode.jpg" alt="photoshopbledningmode" width="610" height="88" class="aligncenter size-full wp-image-1062" /></p>
<p>A quick tip for choosing a blending mode in Photoshop on a mac is to use the hot keys <b>SHIFT &#8211; +</b> to scroll through the blending modes <b>+</b> will scroll forwards and <b>-</b> backwards. </p>
<p><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/dbd80_blendingmodes.jpg" alt="blendingmodes" width="610" height="164" class="aligncenter size-full wp-image-1098" />
</div>
<div>
<h3>#5</h3>
<p><a href="http://css-tricks.com/examples/AnythingSlider/"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/b2134_anythingslider.jpg" alt="anythingslider" width="610" height="88" class="aligncenter size-full wp-image-1114" /></a></p>
<p>For this weeks last tip here is a useful jQuery content slider, sure there are loads of sliders already out there however this one is all of them in one with other cool features including slide buttons, tabs, auto playing and a start/stop button and many more, plus I think its one of the best looking one out there. It was created by <a href="http://chriscoyier.net">Chris Coyier</a>, <a href="http://jqueryfordesigners.com">Remy Sharp</a> and <a href="http://pixelgraphics.us/">Douglas Neiner</a>.</p>
<p><a href="http://css-tricks.com/examples/AnythingSlider/"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/47cbd_anythingslider-example.jpg" alt="anythingslider-example" width="610" height="281" class="aligncenter size-full wp-image-1116" /></a></p>
<p>That wraps it up for this weeks <b>quick tips</b>, what did you think of them? leave your thoughts below, don&#8217;t hesitate to suggest a quick tip for next weeks article.</p>
</div>
<p><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/47cbd_1cupq9MQlPI" height="1" width="1" /><br />
<a href="http://feeds.feedburner.com/HenryDurdanDesignBlog">Go to Source</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.neurosoftware.ro/programming-blog/blogposter/web-resources/quick-tips-of-the-week-august-22nd-2009/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>#davidwalshblog on IRC</title>
		<link>http://www.neurosoftware.ro/programming-blog/blogposter/web-resources/davidwalshblog-on-irc/</link>
		<comments>http://www.neurosoftware.ro/programming-blog/blogposter/web-resources/davidwalshblog-on-irc/#comments</comments>
		<pubDate>Tue, 14 Apr 2009 00:37:25 +0000</pubDate>
		<dc:creator>BlogPoster</dc:creator>
				<category><![CDATA[web resources]]></category>
		<category><![CDATA[Chris Coyier]]></category>
		<category><![CDATA[Christoph Pojer]]></category>
		<category><![CDATA[css tricks]]></category>
		<category><![CDATA[Eric Wendelin]]></category>
		<category><![CDATA[Garrick Cheung]]></category>
		<category><![CDATA[helping others]]></category>
		<category><![CDATA[irc chat rooms]]></category>
		<category><![CDATA[irc client]]></category>
		<category><![CDATA[room members]]></category>
		<category><![CDATA[script style]]></category>
		<category><![CDATA[special thanks]]></category>

		<guid isPermaLink="false">http://www.neurosoftware.ro/programming-blog/blogposter/web-resources/davidwalshblog-on-irc/</guid>
		<description><![CDATA[I&#8217;ve had some great experiences on the #mootools and #cakephp IRC chat rooms. I&#8217;ve gotten help when I&#8217;ve desperately needed it and have been able to return the favor by giving tips to others. With that spirit in mind, I&#8217;ve created the #davidwalshblog IRC chat room. Join Chat Download Pidgin My audience is very diverse [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/f8666_top-logo.gif" alt="David Walsh - IRC" class="image" /></p>
<p>I&#8217;ve had some great experiences on the <a href="irc://irc.freenode.net/#mootools">#mootools</a> and <a href="irc://irc.freenode.net/#cakephp">#cakephp</a> IRC chat rooms.  I&#8217;ve gotten help when I&#8217;ve desperately needed it and have been able to return the favor by giving tips to others.  With that spirit in mind, I&#8217;ve created the <a href="irc://irc.freenode.net/#davidwalshblog">#davidwalshblog</a> IRC chat room.</p>
<div>
<a href="irc://irc.freenode.net/#davidwalshblog">Join Chat</a><br />
<a href="http://pidgin.im">Download Pidgin</a></p>
<div></div>
</div>
<p>My audience is very diverse so expect to see topics in #davidwalshblog ranging from MooTools to jQuery to PHP to CSS and so on.  Please sign on any time you&#8217;d like!  If you need help or feel like helping others, #davidwalshblog will be a great place to do so. Of course you&#8217;ll see me quite a bit, but you may even see special guest drop-ins like <a href="http://css-tricks.com">CSS-Tricks&#8217; Chris Coyier</a>, <a href="http://eriwen.com">Eric Wendelin</a>, <a href="http://og5.net/christoph/">Christoph Pojer</a>, and other Moo devs.</p>
<p>I will act as moderator along with super-helpful #mootools room members <a href="http://www.garrickcheung.com/">Garrick Cheung</a> and  Jabis.  A special thanks to both of them.  Remember, however, that when you need help with difficult MooTools issues, be sure to hit <a href="irc://irc.freenode.net/#mootools">#mootools</a> as well!</p>
<p>So why wait?  <a href="irc://irc.freenode.net/#davidwalshblog">Join the fun now!</a>  And if you don&#8217;t have an IRC client, please <a href="http://www.pidgin.im/">support Pidgin</a>!</p>
<div>
<a href="irc://irc.freenode.net/#davidwalshblog">Join Chat</a><br />
<a href="http://pidgin.im">Download Pidgin</a></p>
<div></div>
</div>
<p>Don&#8217;t forget to <a href="http://twitter.com/davidwalshblog">follow me on Twitter</a> and be sure to visit <a href="http://scriptandstyle.com">Script &amp; Style</a> for the best Javascript and CSS articles around!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.neurosoftware.ro/programming-blog/blogposter/web-resources/davidwalshblog-on-irc/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Are My Sites Up?</title>
		<link>http://www.neurosoftware.ro/programming-blog/blogposter/web-resources/are-my-sites-up/</link>
		<comments>http://www.neurosoftware.ro/programming-blog/blogposter/web-resources/are-my-sites-up/#comments</comments>
		<pubDate>Tue, 07 Apr 2009 11:15:41 +0000</pubDate>
		<dc:creator>BlogPoster</dc:creator>
				<category><![CDATA[web resources]]></category>
		<category><![CDATA[Chris Coyier]]></category>
		<category><![CDATA[css tricks]]></category>

		<guid isPermaLink="false">http://www.neurosoftware.ro/programming-blog/blogposter/web-resources/are-my-sites-up/</guid>
		<description><![CDATA[Have you ever wondered how often your website (or your clients websites) go down? Its usually the clients complaining about this, but now you can have the upper hand! Chris Coyier (the css-tricks guy!) released Are My Sites Up? a few months ago that monitors your websites and notifies you (via email, sms, twitter) if [...]]]></description>
			<content:encoded><![CDATA[<p>Have you ever wondered how often your website (or your clients websites) go down? Its usually the clients complaining about this, but now you can have the upper hand! Chris Coyier (the <a href="http://css-tricks.com">css-tricks</a> guy!) released <a href="http://aremysitesup.com">Are My Sites Up?</a> a few months ago that monitors your websites and notifies you (via email, sms, twitter) if they go down. The site even has a companion iPhone app! This service has saved my butt a time or two &#8211; so go check it out!</p>
<p><a href="http://feedads.googleadservices.com/~a/PA7GHWJoQTcB9CRxWy9BjZv_9sw/a"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/3360a_i" border="0"></img></a></p>
<div>
<a href="http://feeds2.feedburner.com/~ff/creattica?a=JnDJxmpckZA:1Dt32Zk_NS4:yIl2AUoC8zA"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/a9884_creattica?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds2.feedburner.com/~ff/creattica?a=JnDJxmpckZA:1Dt32Zk_NS4:D7DqB2pKExk"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/db28d_creattica?i=JnDJxmpckZA:1Dt32Zk_NS4:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds2.feedburner.com/~ff/creattica?a=JnDJxmpckZA:1Dt32Zk_NS4:F7zBnMyn0Lo"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/db28d_creattica?i=JnDJxmpckZA:1Dt32Zk_NS4:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds2.feedburner.com/~ff/creattica?a=JnDJxmpckZA:1Dt32Zk_NS4:V_sGLiPBpWU"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/db28d_creattica?i=JnDJxmpckZA:1Dt32Zk_NS4:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds2.feedburner.com/~ff/creattica?a=JnDJxmpckZA:1Dt32Zk_NS4:gIN9vFwOqvQ"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/db28d_creattica?i=JnDJxmpckZA:1Dt32Zk_NS4:gIN9vFwOqvQ" border="0"></img></a>
</div>
<p><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/6260c_JnDJxmpckZA" height="1" width="1" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.neurosoftware.ro/programming-blog/blogposter/web-resources/are-my-sites-up/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>LyricSift</title>
		<link>http://www.neurosoftware.ro/programming-blog/blogposter/web-resources/lyricsift/</link>
		<comments>http://www.neurosoftware.ro/programming-blog/blogposter/web-resources/lyricsift/#comments</comments>
		<pubDate>Mon, 06 Apr 2009 15:03:57 +0000</pubDate>
		<dc:creator>BlogPoster</dc:creator>
				<category><![CDATA[web resources]]></category>
		<category><![CDATA[Chris Coyier]]></category>
		<category><![CDATA[Matt Harzewski]]></category>
		<category><![CDATA[music lyric]]></category>
		<category><![CDATA[random music]]></category>
		<category><![CDATA[richard felix]]></category>

		<guid isPermaLink="false">http://www.neurosoftware.ro/programming-blog/blogposter/web-resources/lyricsift/</guid>
		<description><![CDATA[Designer Matt Harzewski sent in this link to LyricSift, a mini site, put together by Richard Felix and Chris Coyier, that displays a random music lyric whenever you reload the page. Also, check out Matt&#8217;s write up on the site.]]></description>
			<content:encoded><![CDATA[<p>Designer Matt Harzewski sent in this link to <a href="http://lyricsift.com/">LyricSift</a>, a mini site, put together by Richard Felix and Chris Coyier, that displays a random music lyric whenever you reload the page.</p>
<p>Also, check out <a href="http://www.webmaster-source.com/2009/03/09/design-spotlight-lyricsift/">Matt&#8217;s write up on the site</a>.</p>
<p><a href="http://feedads.googleadservices.com/~a/lTDt1InIRW_txNMEojQQrF9e0Ao/a"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/61ddc_i" border="0"></img></a></p>
<div>
<a href="http://feeds2.feedburner.com/~ff/creattica?a=rBRy7PH6bhs:ZD3sT2SbVgE:yIl2AUoC8zA"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/61ddc_creattica?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds2.feedburner.com/~ff/creattica?a=rBRy7PH6bhs:ZD3sT2SbVgE:D7DqB2pKExk"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/61ddc_creattica?i=rBRy7PH6bhs:ZD3sT2SbVgE:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds2.feedburner.com/~ff/creattica?a=rBRy7PH6bhs:ZD3sT2SbVgE:F7zBnMyn0Lo"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/7b2c4_creattica?i=rBRy7PH6bhs:ZD3sT2SbVgE:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds2.feedburner.com/~ff/creattica?a=rBRy7PH6bhs:ZD3sT2SbVgE:V_sGLiPBpWU"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/7b2c4_creattica?i=rBRy7PH6bhs:ZD3sT2SbVgE:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds2.feedburner.com/~ff/creattica?a=rBRy7PH6bhs:ZD3sT2SbVgE:gIN9vFwOqvQ"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/7b2c4_creattica?i=rBRy7PH6bhs:ZD3sT2SbVgE:gIN9vFwOqvQ" border="0"></img></a>
</div>
<p><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/7b2c4_rBRy7PH6bhs" height="1" width="1" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.neurosoftware.ro/programming-blog/blogposter/web-resources/lyricsift/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

