<?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>The Life of Lew Ayotte &#187; php</title>
	<atom:link href="http://lewayotte.com/tag/php/feed/" rel="self" type="application/rss+xml" />
	<link>http://lewayotte.com</link>
	<description>Pursue righteousness, godliness, faith, love, perseverance and gentleness. Fight the good fight of faith; take hold of the eternal life to which you were called... - 1 Timothy 6:11-12</description>
	<lastBuildDate>Wed, 09 May 2012 16:30:56 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>Allowing Hyperlinks in Your WordPress Excerpts</title>
		<link>http://lewayotte.com/2010/09/22/allowing-hyperlinks-in-your-wordpress-excerpts/</link>
		<comments>http://lewayotte.com/2010/09/22/allowing-hyperlinks-in-your-wordpress-excerpts/#comments</comments>
		<pubDate>Wed, 22 Sep 2010 16:30:11 +0000</pubDate>
		<dc:creator>Lew</dc:creator>
				<category><![CDATA[Mind]]></category>
		<category><![CDATA[functions.php]]></category>
		<category><![CDATA[get_the_excerpt]]></category>
		<category><![CDATA[mu-plugins]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[preg_split]]></category>
		<category><![CDATA[strip_tags]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[wp_trim_excerpt]]></category>

		<guid isPermaLink="false">http://lewayotte.com/?p=1896</guid>
		<description><![CDATA[By default, WordPress strips out all the HTML tags from your post excerpts. I needed to allow hyperlinks, but there is a problem when WordPress tries to truncate the post&#8217;s content. The wp_trim_excerpt function is what WordPress uses to do all the trimming work, I simply copied the code, modified it, and stuck my new [...]<div class="addthis_toolbox addthis_default_style addthis_" addthis:url='http://lewayotte.com/2010/09/22/allowing-hyperlinks-in-your-wordpress-excerpts/' addthis:title='Allowing Hyperlinks in Your WordPress Excerpts ' ><a class="addthis_button_preferred_1"></a><a class="addthis_button_preferred_2"></a><a class="addthis_button_preferred_3"></a><a class="addthis_button_preferred_4"></a><a class="addthis_button_compact"></a></div>]]></description>
			<content:encoded><![CDATA[<p>By default, WordPress strips out all the HTML tags from your post excerpts. I needed to allow hyperlinks, but there is a problem when WordPress tries to truncate the post&#8217;s content. The wp_trim_excerpt function is what WordPress uses to do all the trimming work, I simply copied the code, modified it, and stuck my new version in the mu-plugins directory (or you could add it to your functions.php).</p>
<p>The first line I needed to change was the PHP function call <a  href="http://php.net/strip_tags">strip_tags()</a>. I need to set it to allow the &lt;a&gt; tag&#8230; very simple to do:</p>
<p>Original Line:</p>
<pre class="php" name='code'>$text = strip_tags($text);</pre>
<p>New Line:</p>
<pre class="php" name='code'>$text = strip_tags($text, '&lt;a&gt;');</pre>
<p>The second line I needed to change was where WordPress splits the excerpt up into separate words. This was a bit tricky because you run into an issue where you could be cutting of the &lt;/a&gt;, which could screw up your entire page. I decided the best thing to do would be to treat the entire hyperlink as a single word. So, <em><strong>&lt;a href=&#8221;http://lewayotte.com/&#8221;&gt;My Website&lt;/a&gt;</strong></em>, would count as a single word. By default, WordPress creates a 55 word excerpt. <a  href="http://codex.wordpress.org/Function_Reference/the_excerpt#Control_Excerpt_Length_using_Filters">That is pretty easy to change as well.</a></p>
<p>Original Line:</p>
<pre class="php" name='code'>$words = preg_split('/[\n\r\t ]', $text, $excerpt_length + 1, PREG_SPLIT_NO_EMPTY );</pre>
<p>New Line:</p>
<pre class="php" name='code'>$words = preg_split('/(&lt;a.*?a&gt;)|\n|\r|\t|\s/', $text, $excerpt_length + 1, PREG_SPLIT_NO_EMPTY|PREG_SPLIT_DELIM_CAPTURE );</pre>
<p>Next, you simple need to remove the current wp_trim_excerpt filter and add a new one that points to your new function. Here is what the entire block of code looks like for me:</p>
<pre class="php" name='code'>&lt;?php
function new_wp_trim_excerpt($text) {
	$raw_excerpt = $text;
	if ( '' == $text ) {
		$text = get_the_content('');

		$text = strip_shortcodes( $text );

		$text = apply_filters('the_content', $text);
		$text = str_replace(']]&gt;', ']]&gt;', $text);
		$text = strip_tags($text, '&lt;a&gt;');
		$excerpt_length = apply_filters('excerpt_length', 55);

		$excerpt_more = apply_filters('excerpt_more', ' ' . '[...]');
		$words = preg_split('/(&lt;a.*?a&gt;)|\n|\r|\t|\s/', $text, $excerpt_length + 1, PREG_SPLIT_NO_EMPTY|PREG_SPLIT_DELIM_CAPTURE );
		if ( count($words) &gt; $excerpt_length ) {
			array_pop($words);
			$text = implode(' ', $words);
			$text = $text . $excerpt_more;
		} else {
			$text = implode(' ', $words);
		}
	}
	return apply_filters('new_wp_trim_excerpt', $text, $raw_excerpt);

}
remove_filter('get_the_excerpt', 'wp_trim_excerpt');
add_filter('get_the_excerpt', 'new_wp_trim_excerpt');</pre>
<p><strong>Regular Expression Explained</strong></p>
<p>I changed /[\n\r\t\s ]/ to /(&lt;a.*?a&gt;)|\n|\r|\t|\s/ because I needed to capture everything in the &lt;a&gt; HTML tags and count it as a single word. \n, \r, \t, \s are all pretty basic regex characters that <a  href="http://php.net/preg_split">preg_split()</a> is using to break up the content. (&lt;a.*?a&gt;) is what captures everything in the &lt;a&gt; tag. The .* means all &#8220;characters&#8221; adding the ? to .* makes it &#8220;non-greedy.&#8221; This for the case where there are multiple hyperlinks in the content. It prevents the regex from thinking <em><strong>&lt;a href=&#8221;link1&#8243;&gt;link 1&lt;/a&gt;, &lt;a href=&#8221;link2&#8243;&gt;link 2&lt;/a&gt;</strong></em> is a single word. The parenthesis simply group the &lt;a.*?a&gt; together, so it doesn&#8217;t try to split those items separately and then I needed to add PREG_SPLIT_DELIM_CAPTURE to preg_split, or preg_split would have just removed the link as garbage.</p>
<p>You should be able to use this as a pretty solid base for adding other HTML tags.</p>
<div class="addthis_toolbox addthis_default_style addthis_" addthis:url='http://lewayotte.com/2010/09/22/allowing-hyperlinks-in-your-wordpress-excerpts/' addthis:title='Allowing Hyperlinks in Your WordPress Excerpts ' ><a class="addthis_button_preferred_1"></a><a class="addthis_button_preferred_2"></a><a class="addthis_button_preferred_3"></a><a class="addthis_button_preferred_4"></a><a class="addthis_button_compact"></a></div>]]></content:encoded>
			<wfw:commentRss>http://lewayotte.com/2010/09/22/allowing-hyperlinks-in-your-wordpress-excerpts/feed/</wfw:commentRss>
		<slash:comments>15</slash:comments>
		</item>
		<item>
		<title>Embed an RSS/ATOM Feed into your WordPress Website</title>
		<link>http://lewayotte.com/2010/04/26/embed-an-rssatom-feed-into-your-wordpress-website/</link>
		<comments>http://lewayotte.com/2010/04/26/embed-an-rssatom-feed-into-your-wordpress-website/#comments</comments>
		<pubDate>Mon, 26 Apr 2010 23:00:21 +0000</pubDate>
		<dc:creator>Lew</dc:creator>
				<category><![CDATA[Mind]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[rss]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://lewayotte.com/?p=1670</guid>
		<description><![CDATA[One of my clients needs to pull an RSS feed from a real estate virtual tour provider and display it on one of their pages. I looked into a few plugins and could not find one that was easily customizable. After a quick google search I discovered that WordPress has some built-in functions based off [...]<div class="addthis_toolbox addthis_default_style addthis_" addthis:url='http://lewayotte.com/2010/04/26/embed-an-rssatom-feed-into-your-wordpress-website/' addthis:title='Embed an RSS/ATOM Feed into your WordPress Website ' ><a class="addthis_button_preferred_1"></a><a class="addthis_button_preferred_2"></a><a class="addthis_button_preferred_3"></a><a class="addthis_button_preferred_4"></a><a class="addthis_button_compact"></a></div>]]></description>
			<content:encoded><![CDATA[<p>One of my clients needs to pull an RSS feed from a real estate virtual tour provider and display it on one of their pages. I looked into a few plugins and could not find one that was easily customizable. After a quick google search I discovered that WordPress has some built-in functions based off of <a  href="http://simplepie.org/">SimplePie</a>&#8216;s easy to use RSS API.</p>
<p>I also needed to customize the output a little bit, which required me to rely on PHP&#8217;s preg_match and preg_replace functions. Here is some simple example for embedding a feed into your WordPess website:</p>
<pre name="code" class="php">&lt;?php
include_once(ABSPATH.WPINC.'/rss.php'); // path to include script
$feed = fetch_feed('http://url.to.feed/'); // specify feed url
?&gt;

&lt;?php
if (!is_wp_error($feed)) :
	$rss_items = $feed->get_items();
?&gt;
<ul>
	// Loop through each feed item and display each item as a hyperlink.
	&lt;?php foreach ( $rss_items as $item ) : ?&gt;
<li>
		&lt;?php echo $item->get_title(); ?&gt;
	</li>

	&lt;?php endforeach; ?&gt;
</ul>
</pre>
<p>Check out the <a  href="http://codex.wordpress.org/Function_Reference/fetch_feed">codex</a> for more information about WordPress&#8217; function feed_fetch()&#8230; and with a little extra coding you can format the feed any way you like, see our <a  href="http://www.nccapitalhomes.com/featured-homes">example</a> at NC Capital Homes.</p>
<div class="addthis_toolbox addthis_default_style addthis_" addthis:url='http://lewayotte.com/2010/04/26/embed-an-rssatom-feed-into-your-wordpress-website/' addthis:title='Embed an RSS/ATOM Feed into your WordPress Website ' ><a class="addthis_button_preferred_1"></a><a class="addthis_button_preferred_2"></a><a class="addthis_button_preferred_3"></a><a class="addthis_button_preferred_4"></a><a class="addthis_button_compact"></a></div>]]></content:encoded>
			<wfw:commentRss>http://lewayotte.com/2010/04/26/embed-an-rssatom-feed-into-your-wordpress-website/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Easily Extended Contact Info in WordPress</title>
		<link>http://lewayotte.com/2010/04/22/easily-extended-contact-info-in-wordpress/</link>
		<comments>http://lewayotte.com/2010/04/22/easily-extended-contact-info-in-wordpress/#comments</comments>
		<pubDate>Thu, 22 Apr 2010 20:50:54 +0000</pubDate>
		<dc:creator>Lew</dc:creator>
				<category><![CDATA[Mind]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[functions.php]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://lewayotte.com/?p=1668</guid>
		<description><![CDATA[I&#8217;m working on a project where I need the ability to add &#8220;Phone&#8221;, &#8220;Building&#8221;, and &#8220;Room&#8221; as information a user could add in their profile. I also wanted to remove &#8220;AIM&#8221;, &#8220;Yahoo&#8221;, and &#8220;Jabber&#8221; &#8212; none of the users are going to need to fill in that info. You can easily add this code into [...]<div class="addthis_toolbox addthis_default_style addthis_" addthis:url='http://lewayotte.com/2010/04/22/easily-extended-contact-info-in-wordpress/' addthis:title='Easily Extended Contact Info in WordPress ' ><a class="addthis_button_preferred_1"></a><a class="addthis_button_preferred_2"></a><a class="addthis_button_preferred_3"></a><a class="addthis_button_preferred_4"></a><a class="addthis_button_compact"></a></div>]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m working on a project where I need the ability to add &#8220;Phone&#8221;, &#8220;Building&#8221;, and &#8220;Room&#8221; as information a user could add in their profile. I also wanted to remove &#8220;AIM&#8221;, &#8220;Yahoo&#8221;, and &#8220;Jabber&#8221; &#8212; none of the users are going to need to fill in that info.</p>
<p>You can easily add this code into your functions.php. I was writing it for a WordPress MU site with multiple themes and needed to make sure it was enforced, so I stuck it in the mu-plugins directory, in a file named &#8220;extended-contact-info.php&#8221;.</p>
<p>This is the simple code block you need:</p>
<pre name="code" class="php">
function extended_contact_info($user_contactmethods) {
	//Use this if you want to append to the default
	//contact methods (AIM, Yahoo, Jabber)
	//$user_contactmethods += array(
	//	'building' => __('Building'),
	//	'room' => __('Room'),
	//	'phone' => __('Phone')
	//);

	//Use this if you want to ignore the default
	//contact methods (AIM, Yahoo, Jabber)
	$user_contactmethods = array(
		'building' => __('Building'),
		'room' => __('Room'),
		'phone' => __('Phone')
	);

	return $user_contactmethods;
}

add_filter('user_contactmethods', 'extended_contact_info');
</pre>
<div class="addthis_toolbox addthis_default_style addthis_" addthis:url='http://lewayotte.com/2010/04/22/easily-extended-contact-info-in-wordpress/' addthis:title='Easily Extended Contact Info in WordPress ' ><a class="addthis_button_preferred_1"></a><a class="addthis_button_preferred_2"></a><a class="addthis_button_preferred_3"></a><a class="addthis_button_preferred_4"></a><a class="addthis_button_compact"></a></div>]]></content:encoded>
			<wfw:commentRss>http://lewayotte.com/2010/04/22/easily-extended-contact-info-in-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Notable Tech Posts &#8211; 2010.01.17</title>
		<link>http://lewayotte.com/2010/01/17/notable-tech-posts-2010-01-17/</link>
		<comments>http://lewayotte.com/2010/01/17/notable-tech-posts-2010-01-17/#comments</comments>
		<pubDate>Sun, 17 Jan 2010 14:35:37 +0000</pubDate>
		<dc:creator>Lew</dc:creator>
				<category><![CDATA[Mind]]></category>
		<category><![CDATA[api]]></category>
		<category><![CDATA[cheat sheets]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[plugins]]></category>
		<category><![CDATA[tutorials]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://lewayotte.com/?p=1452</guid>
		<description><![CDATA[TiptTp jQuery plugin Create a PHP  server load meter jQuery Events: MouseOver &#8211; MouseOut vs MouseEnter &#8211; MouseLeave 15 useful jQuery plugins and tutorials CSS important Sexy jQuery drop down multi-level menu jQuery quick guide Take your HTML tables to a new level with Javascript frameworks Javascript replace all using regex for 10 best tutorials [...]<div class="addthis_toolbox addthis_default_style addthis_" addthis:url='http://lewayotte.com/2010/01/17/notable-tech-posts-2010-01-17/' addthis:title='Notable Tech Posts &#8211; 2010.01.17 ' ><a class="addthis_button_preferred_1"></a><a class="addthis_button_preferred_2"></a><a class="addthis_button_preferred_3"></a><a class="addthis_button_preferred_4"></a><a class="addthis_button_compact"></a></div>]]></description>
			<content:encoded><![CDATA[<p><a  href="http://code.drewwilson.com/entry/tiptip-jquery-plugin" target="_blank">TiptTp jQuery plugin</a></p>
<p><a  href="http://boxietuts.com/web-development/php/create-a-php-server-load-meter/" target="_blank">Create a PHP  server load meter</a></p>
<p><a  href="http://www.bennadel.com/blog/1805-jQuery-Events-MouseOver-MouseOut-vs-MouseEnter-MouseLeave.htm" target="_blank">jQuery Events: MouseOver &#8211; MouseOut vs MouseEnter &#8211; MouseLeave</a></p>
<p><a  href="http://www.designer-daily.com/15-useful-jquery-plugins-and-tutorials-5207" target="_blank">15 useful jQuery plugins and tutorials</a></p>
<p><a  href="http://www.webcredible.co.uk/user-friendly-resources/web-dev/css-important.shtml" target="_blank">CSS important</a></p>
<p><a  href="http://www.narga.net/sexy-jquery-drop-down-multi-level-menu/" target="_blank">Sexy jQuery drop down multi-level menu</a></p>
<p><a  href="http://www.tutorialspoint.com/jquery/jquery-quick-guide.htm" target="_blank">jQuery quick guide</a></p>
<p><a  href="http://www.thepixelart.com/take-your-html-tables-to-a-new-level-with-javascript-frameworks/" target="_blank">Take your HTML tables to a new level with Javascript frameworks</a></p>
<p><a  href="http://icfun.blogspot.com/2009/12/javascript-replace-all-using-regex-for.html" target="_blank">Javascript replace all using regex for</a></p>
<div>
<p><a  href="http://aext.net/2010/01/10-best-tutorials-to-learn-css3/" target="_blank">10 best tutorials to learn CSS3</a></p>
<p><a  href="http://craigsworks.com/projects/qtip/" target="_blank">http://craigsworks.com/projects/qtip/</a></p>
<p><a  href="http://www.1stwebdesigner.com/wordpress/wordpress-plugins-handy-toolbars-blog/" target="_blank">WordPress plugins handy toolbars blog</a></p>
<p><a  href="http://www.queness.com/post/1696/create-a-beautiful-looking-custom-dialog-box-with-jquery-and-css3" target="_blank">Create a beautiful looking custom dialog box with jQuery and CSS3</a></p>
<p><a  href="http://futurecolors.ru/jquery/" target="_blank">jQuery 1.4 API Cheat Sheet</a></p>
<p><a  href="http://lifehacker.com/5447726/" target="_blank">Install PHProxy in Your Web Space to Access Blocked Sites</a></p>
<p><a  href="http://www.devtheweb.net/blog/2010/01/12/things-you-probably-didnt-know-about-php/" target="_blank">Things you probably didn&#8217;t know about PHP</a></p>
</div>
<div class="addthis_toolbox addthis_default_style addthis_" addthis:url='http://lewayotte.com/2010/01/17/notable-tech-posts-2010-01-17/' addthis:title='Notable Tech Posts &#8211; 2010.01.17 ' ><a class="addthis_button_preferred_1"></a><a class="addthis_button_preferred_2"></a><a class="addthis_button_preferred_3"></a><a class="addthis_button_preferred_4"></a><a class="addthis_button_compact"></a></div>]]></content:encoded>
			<wfw:commentRss>http://lewayotte.com/2010/01/17/notable-tech-posts-2010-01-17/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Notable Tech Posts &#8211; 2010.01.10</title>
		<link>http://lewayotte.com/2010/01/10/notable-tech-posts-2010-01-10/</link>
		<comments>http://lewayotte.com/2010/01/10/notable-tech-posts-2010-01-10/#comments</comments>
		<pubDate>Mon, 11 Jan 2010 03:06:22 +0000</pubDate>
		<dc:creator>Lew</dc:creator>
				<category><![CDATA[Mind]]></category>
		<category><![CDATA[cheat sheets]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[icons]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[plugins]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://lewayotte.com/?p=1430</guid>
		<description><![CDATA[Getting started with jQuery Free furry cushions social icons set WordPress shopping cart plugins Converting your PHP app to MySQLi prepared statements Autosuggest jQuery plugin jQuery validation with regular expressions Extending CSS with jQuery a new years guide CSS 3D meninas -  just something cool to look at, pure CSS/HTML jQuery animations a 7-step program [...]<div class="addthis_toolbox addthis_default_style addthis_" addthis:url='http://lewayotte.com/2010/01/10/notable-tech-posts-2010-01-10/' addthis:title='Notable Tech Posts &#8211; 2010.01.10 ' ><a class="addthis_button_preferred_1"></a><a class="addthis_button_preferred_2"></a><a class="addthis_button_preferred_3"></a><a class="addthis_button_preferred_4"></a><a class="addthis_button_compact"></a></div>]]></description>
			<content:encoded><![CDATA[<p><a  href="http://sixrevisions.com/javascript/getting-started-with-jquery/" target="_blank">Getting started with jQuery</a></p>
<p><a  href="http://www.noupe.com/freebie/free-furry-cushions-social-icons-set.html" target="_blank">Free furry cushions social icons set</a></p>
<p><a  href="http://www.zlwo.com/wordpress/wordpress-shopping-cart-plugins/" target="_blank">WordPress shopping cart plugins</a></p>
<p><a  href="http://www.greebo.net/2010/01/02/converting-your-php-app-to-mysqli-prepared-statements/" target="_blank">Converting your PHP app to MySQLi prepared statements</a></p>
<p><a  href="http://code.drewwilson.com/entry/autosuggest-jquery-plugin" target="_blank">Autosuggest jQuery plugin</a></p>
<p><a  href="http://www.9lessons.info/2010/01/jquery-validation-with-regular.html" target="_blank">jQuery validation with regular expressions</a></p>
<p><a  href="http://addyosmani.com/blog/extending-css-with-jquery-a-new-years-guide/" target="_blank">Extending CSS with jQuery a new years guide</a></p>
<p><a  href="http://www.romancortes.com/blog/css-3d-meninas/" target="_blank">CSS 3D meninas</a> -  just something cool to look at, pure CSS/HTML</p>
<p><a  href="http://net.tutsplus.com/tutorials/javascript-ajax/jquery-animations-a-7-step-program/" target="_blank">jQuery animations a 7-step program</a></p>
<p><a  href="http://www.webstuffshare.com/2010/01/implement-password-strength-meter-gauge-js/" target="_blank">Implement password strength meter gauge JS</a></p>
<p><a  href="http://tutorialzine.com/2009/12/colorful-clock-jquery-css/" target="_blank">Colorful clock jQuery CSS</a></p>
<p><a  href="http://usejquery.com/posts/5/the-best-of-the-best-jquery-resources-number-1" target="_blank">The best of the best jQuery resources</a></p>
<p><a  href="http://www.designussion.com/cheat-sheet-series-java-script/" target="_blank">Cheat sheet series Javascript</a></p>
<p><a  href="http://www.electrictoolbox.com/mysql-using-if-in-where/" target="_blank">MySQL: Using if in where</a></p>
<div class="addthis_toolbox addthis_default_style addthis_" addthis:url='http://lewayotte.com/2010/01/10/notable-tech-posts-2010-01-10/' addthis:title='Notable Tech Posts &#8211; 2010.01.10 ' ><a class="addthis_button_preferred_1"></a><a class="addthis_button_preferred_2"></a><a class="addthis_button_preferred_3"></a><a class="addthis_button_preferred_4"></a><a class="addthis_button_compact"></a></div>]]></content:encoded>
			<wfw:commentRss>http://lewayotte.com/2010/01/10/notable-tech-posts-2010-01-10/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Notable Tech Posts &#8211; 2009.12.27</title>
		<link>http://lewayotte.com/2009/12/28/notable-tech-posts-2009-12-27/</link>
		<comments>http://lewayotte.com/2009/12/28/notable-tech-posts-2009-12-27/#comments</comments>
		<pubDate>Mon, 28 Dec 2009 12:47:25 +0000</pubDate>
		<dc:creator>Lew</dc:creator>
				<category><![CDATA[Mind]]></category>
		<category><![CDATA[best practices]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[forms]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[json]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[tutorials]]></category>
		<category><![CDATA[ui]]></category>

		<guid isPermaLink="false">http://lewayotte.com/?p=1414</guid>
		<description><![CDATA[jQuery Roundabout 5 awesome CSS3 features Best jQuery video plugins Orderly JSON Interface design inspiration 30 impressive ways to design sign up pageform Backpress core PHP libraries for web apps Display editable form data as regular tabular data 20 jQuery utilities for a smashing website Awesome tutorial animation using jQuery 15 best practices tips designing [...]<div class="addthis_toolbox addthis_default_style addthis_" addthis:url='http://lewayotte.com/2009/12/28/notable-tech-posts-2009-12-27/' addthis:title='Notable Tech Posts &#8211; 2009.12.27 ' ><a class="addthis_button_preferred_1"></a><a class="addthis_button_preferred_2"></a><a class="addthis_button_preferred_3"></a><a class="addthis_button_preferred_4"></a><a class="addthis_button_compact"></a></div>]]></description>
			<content:encoded><![CDATA[<p><a  href="http://fredhq.com/projects/roundabout/" target="_blank">jQuery Roundabout</a></p>
<p><a  href="http://aceinfowayindia.com/blog/2009/12/5-awesome-css3-features/" target="_blank">5 awesome CSS3 features</a></p>
<p><a  href="http://www.jquery.wisdomplug.com/jquery-plugins/multimedia-jquery-plugins/best-jquery-video-plugins/" target="_blank">Best jQuery video plugins</a></p>
<p><a  href="http://ajaxian.com/archives/orderly-json" target="_blank">Orderly JSON</a></p>
<p><a  href="http://dzineblog.com/2009/12/interface-design-inspiration-30-impressive-ways-to-design-sign-up-pageform.html" target="_blank">Interface design inspiration 30 impressive ways to design sign up pageform</a></p>
<p><a  href="http://www.webresourcesdepot.com/backpress-core-php-libraries-for-web-apps" target="_blank">Backpress core PHP libraries for web apps</a></p>
<p><a  href="http://www.webappers.com/2009/12/24/display-editable-form-data-as-regular-tabular-data" target="_blank">Display editable form data as regular tabular data</a></p>
<p><a  href="http://www.jquery.wisdomplug.com/jquery-plugins/jquery-utilities-plugins-jquery-plugins/20-jquery-utilities-for-a-smashing-website/" target="_blank">20 jQuery utilities for a smashing website</a></p>
<p><a  href="http://www.denbagus.net/awesome-tutorial-animation-using-jquery/" target="_blank">Awesome tutorial animation using jQuery</a></p>
<p><a  href="http://www.admixweb.com/2009/12/22/15-best-practices-tips-designing-web-form/" target="_blank">15 best practices tips designing web form</a></p>
<div class="addthis_toolbox addthis_default_style addthis_" addthis:url='http://lewayotte.com/2009/12/28/notable-tech-posts-2009-12-27/' addthis:title='Notable Tech Posts &#8211; 2009.12.27 ' ><a class="addthis_button_preferred_1"></a><a class="addthis_button_preferred_2"></a><a class="addthis_button_preferred_3"></a><a class="addthis_button_preferred_4"></a><a class="addthis_button_compact"></a></div>]]></content:encoded>
			<wfw:commentRss>http://lewayotte.com/2009/12/28/notable-tech-posts-2009-12-27/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Notable Tech Posts &#8211; 2009.12.06</title>
		<link>http://lewayotte.com/2009/12/06/notable-tech-posts-2009-12-06/</link>
		<comments>http://lewayotte.com/2009/12/06/notable-tech-posts-2009-12-06/#comments</comments>
		<pubDate>Sun, 06 Dec 2009 20:00:16 +0000</pubDate>
		<dc:creator>Lew</dc:creator>
				<category><![CDATA[Mind]]></category>
		<category><![CDATA[api]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[plugins]]></category>
		<category><![CDATA[security]]></category>
		<category><![CDATA[themes]]></category>
		<category><![CDATA[tutorials]]></category>
		<category><![CDATA[usability]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://lewayotte.com/?p=1394</guid>
		<description><![CDATA[10 usability crimes you really shouldn&#8217;t commit Design WordPress theme scratch 10 useful code snippets and plugins to spice up WordPress avatar How to create a simple API with PHP and MySQL Star Wars HTML and CSS a New Hope 10 ways to make WordPress more useful 10 front end techniques to improve your site [...]<div class="addthis_toolbox addthis_default_style addthis_" addthis:url='http://lewayotte.com/2009/12/06/notable-tech-posts-2009-12-06/' addthis:title='Notable Tech Posts &#8211; 2009.12.06 ' ><a class="addthis_button_preferred_1"></a><a class="addthis_button_preferred_2"></a><a class="addthis_button_preferred_3"></a><a class="addthis_button_preferred_4"></a><a class="addthis_button_compact"></a></div>]]></description>
			<content:encoded><![CDATA[<p><a  href="http://line25.com/articles/10-usability-crimes-you-really-shouldnt-commit" target="_blank">10 usability crimes you really shouldn&#8217;t commit</a></p>
<p><a  href="http://www.grafpedia.com/tutorials/design-wordpress-theme-scratch-theme" target="_blank">Design WordPress theme scratch</a></p>
<p><a  href="http://aext.net/2009/12/10-useful-code-snippets-and-plugins-to-spice-up-wordpress-avatar/" target="_blank">10 useful code snippets and plugins to spice up WordPress avatar</a></p>
<p><a  href="http://brenelz.com/2009/11/30/how-to-create-a-simple-api-with-php-and-mysql/" target="_blank">How to create a simple API with PHP and MySQL</a></p>
<p><a  href="http://ajaxian.com/archives/star-wars-html-and-css-a-new-hope" target="_blank">Star Wars HTML and CSS a New Hope</a></p>
<p><a  href="http://www.openforum.com/idea-hub/topics/marketing/article/10-ways-to-make-wordpress-more-useful-john-jantsch" target="_blank">10 ways to make WordPress more useful</a></p>
<p><a  href="http://www.catswhocode.com/blog/10-front-end-techniques-to-improve-your-site-usability" target="_blank">10 front end techniques to improve your site usability</a></p>
<p><a  href="http://blog.tuvinh.com/the-ultimate-toolbox-for-iphone-development/" target="_blank">The ultimate toolbox for iPhone development</a></p>
<p><a  href="http://www.1stwebdesigner.com/wordpress/premium-free-fresh-wordpress-themes-year-2009/" target="_blank">Premium free fresh WordPress themes year 2009</a></p>
<p><a  href="http://www.webm.ag/2009/12/04/10-wordpress-security-plugins-to-keep-your-blog-safe/" target="_blank">10 WordPress security plugins to keep your blog safe</a></p>
<p><a  href="http://webdesignfan.com/jquery-slider-tutorials-and-plugins/" target="_blank">jQuery slider tutorials and  plugins</a></p>
<div class="addthis_toolbox addthis_default_style addthis_" addthis:url='http://lewayotte.com/2009/12/06/notable-tech-posts-2009-12-06/' addthis:title='Notable Tech Posts &#8211; 2009.12.06 ' ><a class="addthis_button_preferred_1"></a><a class="addthis_button_preferred_2"></a><a class="addthis_button_preferred_3"></a><a class="addthis_button_preferred_4"></a><a class="addthis_button_compact"></a></div>]]></content:encoded>
			<wfw:commentRss>http://lewayotte.com/2009/12/06/notable-tech-posts-2009-12-06/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Notable Tech Posts &#8211; 2009.11.29</title>
		<link>http://lewayotte.com/2009/11/29/notable-tech-posts-2009-11-29/</link>
		<comments>http://lewayotte.com/2009/11/29/notable-tech-posts-2009-11-29/#comments</comments>
		<pubDate>Mon, 30 Nov 2009 02:25:59 +0000</pubDate>
		<dc:creator>Lew</dc:creator>
				<category><![CDATA[Mind]]></category>
		<category><![CDATA[cheat sheets]]></category>
		<category><![CDATA[dao]]></category>
		<category><![CDATA[htaccess]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[photoshop]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[seo]]></category>
		<category><![CDATA[usability]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://lewayotte.com/?p=1379</guid>
		<description><![CDATA[34 cheat sheets for web designers and developers Using the DAO generator for PHP and MySQL Create a twitter style login form with jQuery 15 useful resources to get clued up on HTML5 25 more places to become a photoshop expert Website usability testing WordPress SEO mistakes 12 useful jQuery plugins for working with tables [...]<div class="addthis_toolbox addthis_default_style addthis_" addthis:url='http://lewayotte.com/2009/11/29/notable-tech-posts-2009-11-29/' addthis:title='Notable Tech Posts &#8211; 2009.11.29 ' ><a class="addthis_button_preferred_1"></a><a class="addthis_button_preferred_2"></a><a class="addthis_button_preferred_3"></a><a class="addthis_button_preferred_4"></a><a class="addthis_button_compact"></a></div>]]></description>
			<content:encoded><![CDATA[<p><a  href="http://www.webanddesigners.com/34-cheat-sheets-for-web-designers-and-developers" target="_blank">34 cheat sheets for web designers and developers</a></p>
<p><a  href="http://blog.tuvinh.com/using-the-dao-generator-for-php-and-mysql/" target="_blank">Using the DAO generator for PHP and MySQL</a></p>
<p><a  href="http://www.webappers.com/2009/11/20/create-a-twitter-style-login-form-with-jquery/" target="_blank">Create a twitter style login form with jQuery</a></p>
<p><a  href="http://line25.com/articles/15-useful-resources-to-get-clued-up-on-html5" target="_blank">15 useful resources to get clued up on HTML5</a></p>
<p><a  href="http://designreviver.com/tutorials/25-more-places-to-become-a-photoshop-expert/" target="_blank">25 more places to become a photoshop expert</a></p>
<p><a  href="http://www.fivefingercoding.com/xhtml-and-css/website-usability-testing" target="_blank">Website usability testing</a></p>
<p><a  href="http://www.dotsauce.com/2009/11/17/wordpress-seo-mistakes/" target="_blank">WordPress SEO mistakes</a></p>
<p><a  href="http://webdesignledger.com/resources/12-useful-jquery-plugins-for-working-with-tables" target="_blank">12 useful jQuery plugins for working with tables</a></p>
<p><a  href="http://aext.net/2009/11/5-fresh-and-useful-jquery-plugins-were-born-in-november-2009/" target="_blank">5 fresh and useful jQuery plugins were born in November 2009</a></p>
<p><a  href="http://ma.tt/2009/11/this-week-in-startups/" target="_blank">This week in startups</a></p>
<div><a  href="http://www.quirksmode.org/blog/archives/2009/11/apple_is_not_ev.html" target="_blank">Apple is not evil</a><a  href="http://net.tutsplus.com/tutorials/other/top-20-mysql-best-practices/" target="_blank">Top 20 MySQL best practices</a></p>
<p><a  href="http://blog.decaf.de/2009/07/iphone-like-password-fields-using-jquery/" target="_blank">iPhone like password fields using jQuery</a></p>
<p><a  href="http://ajaxmint.com/2009/11/3d-tag-cloud-using-jquery/" target="_blank">3d tag cloud using jQuery</a></p>
<p><a  href="http://www.webm.ag/2009/11/27/how-to-make-dynamically-generated-seo-friendly-urls-using-php-and-htaccess/" target="_blank">How to make dynamically generated SEO friendly urls using PHP and .htaccess</a></p>
<p><a  href="http://woorkup.com/2009/11/29/jquery-lesson-series-how-to-add-options-to-plugins/" target="_blank">jQuery lesson series how to add options to  plugins</a></div>
<div class="addthis_toolbox addthis_default_style addthis_" addthis:url='http://lewayotte.com/2009/11/29/notable-tech-posts-2009-11-29/' addthis:title='Notable Tech Posts &#8211; 2009.11.29 ' ><a class="addthis_button_preferred_1"></a><a class="addthis_button_preferred_2"></a><a class="addthis_button_preferred_3"></a><a class="addthis_button_preferred_4"></a><a class="addthis_button_compact"></a></div>]]></content:encoded>
			<wfw:commentRss>http://lewayotte.com/2009/11/29/notable-tech-posts-2009-11-29/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Notable Tech Posts &#8211; 2009.11.22</title>
		<link>http://lewayotte.com/2009/11/22/notable-tech-posts-2009-11-22/</link>
		<comments>http://lewayotte.com/2009/11/22/notable-tech-posts-2009-11-22/#comments</comments>
		<pubDate>Sun, 22 Nov 2009 17:00:48 +0000</pubDate>
		<dc:creator>Lew</dc:creator>
				<category><![CDATA[Mind]]></category>
		<category><![CDATA[buddypress]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[facebook]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[hack]]></category>
		<category><![CDATA[ie]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[photoshop]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[seo]]></category>
		<category><![CDATA[twitter]]></category>
		<category><![CDATA[typography]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://lewayotte.com/?p=1369</guid>
		<description><![CDATA[13 useful jQuery plugins for Twitter PHP and MySQL with Paypal Top rated jQuery plugins 9 most common IE bugs and how to fix them Google page speed may be a ranking factor in 2010 25 places to become a Photoshop expert Facebook Programming API Friends 20 Do&#8217;s and Dont&#8217;s of effective web typography 8 [...]<div class="addthis_toolbox addthis_default_style addthis_" addthis:url='http://lewayotte.com/2009/11/22/notable-tech-posts-2009-11-22/' addthis:title='Notable Tech Posts &#8211; 2009.11.22 ' ><a class="addthis_button_preferred_1"></a><a class="addthis_button_preferred_2"></a><a class="addthis_button_preferred_3"></a><a class="addthis_button_preferred_4"></a><a class="addthis_button_compact"></a></div>]]></description>
			<content:encoded><![CDATA[<p><a  href="http://www.webbyzone.com/2009/11/14/13-useful-jquery-plugins-for-twitter/" target="_blank">13 useful jQuery plugins for Twitter</a></p>
<p><a  href="http://www.developertutorials.com/tutorials/php/php-and-mysql-with-paypal-7-11-14/page1.html" target="_blank">PHP and MySQL with Paypal</a></p>
<p><a  href="http://www.tripwiremagazine.com/ajax/developer-toolbox/is-top-rated-jquery-plugins-the-best.html" target="_blank">Top rated jQuery plugins</a></p>
<p><a  href="http://net.tutsplus.com/tutorials/html-css-techniques/9-most-common-ie-bugs-and-how-to-fix-them/" target="_blank">9 most common IE bugs and how to fix them</a></p>
<p><a  href="http://www.webpronews.com/topnews/2009/11/13/google-page-speed-may-be-a-ranking-factor-in-2010" target="_blank">Google page speed may be a ranking factor in 2010</a></p>
<p><a  href="http://designreviver.com/tutorials/25-places-to-become-a-photoshop-expert/" target="_blank">25 places to become a Photoshop expert</a></p>
<p><a  href="http://www.phpeveryday.com/articles/Facebook-Programming-API-Friends-P851.html" target="_blank">Facebook Programming API Friends</a></p>
<p><a  href="http://webdesignledger.com/tips/20-dos-and-donts-of-effective-web-typography" target="_blank">20 Do&#8217;s and Dont&#8217;s of effective web typography</a></p>
<p><a  href="http://www.admixweb.com/2009/11/15/8-tips-concerning-domain-names/" target="_blank">8 tips concerning domain names</a></p>
<p><a  href="http://www.phpriot.com/articles/google-maps-geocoding" target="_blank">Google maps geocoding</a></p>
<p><a  href="http://www.reynoldsftw.com/2009/02/6-jquery-chart-plugins-reviewed/" target="_blank">6 jQuery chart plugins reviewed</a></p>
<p><a  href="http://mustardamus.com/show-your-demos-like-a-champ-iframe-jquery-css3/" target="_blank">Show your demos like a champ iFrame jQuery CSS3</a></p>
<p><a  href="http://speckyboy.com/2009/11/16/20-easy-to-use-jquery-text-effects-and-animations/" target="_blank">20 easy to use jQuery text effects and animations</a></p>
<p><a  href="http://blog.tuvinh.com/how-to-accept-credit-card-payments-on-your-site-without-a-merchant-account/" target="_blank">How to accept credit card payments on your site without a merchant account</a></p>
<p><a  href="http://www.developertutorials.com/tutorials/php/practical-php-performance-8-02-07/page1.html" target="_blank">Practical PHP performance</a></p>
<p><a  href="http://net.tutsplus.com/articles/web-roundups/jquery-for-absolute-beginners-video-series/" target="_blank">jQuery for absolute beginners video series</a></p>
<p><a  href="http://blog.themeforest.net/resources/20-jquery-plugins-worth-implementing-into-your-themes/" target="_blank">20 jQuery plugins worth implementing into your themes</a></p>
<p><a  href="http://www.dotsauce.com/2009/11/17/wordpress-seo-mistakes/" target="_blank">WordPress SEO mistakes</a></p>
<p><a  href="http://www.wprecipes.com/wordpress-hack-automatically-output-the-content-in-two-columns" target="_blank">WordPress hack automatically output the content in two columns</a></p>
<p><a  href="http://iphoneized.com/2009/11/21-prototyping-mockup-wireframing-tools-iphone-app-development/" target="_blank">21 prototyping mockup wireframing tools iPhone app development</a></p>
<p><a  href="http://wpmututorials.com/themes/buddypress-themes-skinning/" target="_blank">Buddypress themes skinning</a></p>
<p><a  href="http://m.webdesignerdepot.com/2009/11/the-ultimate-toolbox-for-iphone-development/" target="_blank">The ultimate toolbox for iPhone development</a></p>
<p><a  href="http://designshack.co.uk/articles/accessibility/12-accessibility-pitfalls-to-avoid" target="_blank">12 accessibility pitfalls to avoid</a></p>
<p><a  href="http://spyrestudios.com/10-wordpress-hacks/" target="_blank">10 WordPress  hacks</a></p>
<div class="addthis_toolbox addthis_default_style addthis_" addthis:url='http://lewayotte.com/2009/11/22/notable-tech-posts-2009-11-22/' addthis:title='Notable Tech Posts &#8211; 2009.11.22 ' ><a class="addthis_button_preferred_1"></a><a class="addthis_button_preferred_2"></a><a class="addthis_button_preferred_3"></a><a class="addthis_button_preferred_4"></a><a class="addthis_button_compact"></a></div>]]></content:encoded>
			<wfw:commentRss>http://lewayotte.com/2009/11/22/notable-tech-posts-2009-11-22/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Notable Tech Posts &#8211; 2009.11.15</title>
		<link>http://lewayotte.com/2009/11/15/notable-tech-posts-2009-11-15/</link>
		<comments>http://lewayotte.com/2009/11/15/notable-tech-posts-2009-11-15/#comments</comments>
		<pubDate>Sun, 15 Nov 2009 17:00:51 +0000</pubDate>
		<dc:creator>Lew</dc:creator>
				<category><![CDATA[Mind]]></category>
		<category><![CDATA[best practices]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[open source]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[tools]]></category>
		<category><![CDATA[tutorials]]></category>
		<category><![CDATA[usability]]></category>
		<category><![CDATA[user interface]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://lewayotte.com/?p=1351</guid>
		<description><![CDATA[Best practices for 6 common user interface elements 7 ways to crash a database A collection of little known coding for unix 20 Javascript codes to make your web design look excellent Create a zoomable interactive maps with jQuery 16 WordPress sites to help you build a better blog Introducing catswhoblog com Awesome jQuery sliders [...]<div class="addthis_toolbox addthis_default_style addthis_" addthis:url='http://lewayotte.com/2009/11/15/notable-tech-posts-2009-11-15/' addthis:title='Notable Tech Posts &#8211; 2009.11.15 ' ><a class="addthis_button_preferred_1"></a><a class="addthis_button_preferred_2"></a><a class="addthis_button_preferred_3"></a><a class="addthis_button_preferred_4"></a><a class="addthis_button_compact"></a></div>]]></description>
			<content:encoded><![CDATA[<p><a  href="http://www.webdesignerdepot.com/2009/11/best-practices-for-6-common-user-interface-elements/" target="_blank">Best practices for 6 common user interface elements</a></p>
<p><a  href="http://blog.tuvinh.com/7-ways-to-crash-a-database/" target="_blank">7 ways to crash a database</a></p>
<p><a  href="http://designreviver.com/tips/a-collection-of-little-known-coding-for-unix/" target="_blank">A collection of little known coding for unix</a></p>
<p><a  href="http://www.psdeluxe.com/articles/web-design/20-javascript-codes-to-make-your-web-design-look-excellent.html" target="_blank">20 Javascript codes to make your web design look excellent</a></p>
<p><a  href="http://www.webappers.com/2009/11/09/create-a-zoomable-interactive-maps-with-jquery/" target="_blank">Create a zoomable interactive maps with jQuery</a></p>
<p><a  href="http://sixrevisions.com/wordpress/16-wordpress-sites-to-help-you-build-a-better-blog/" target="_blank">16 WordPress sites to help you build a better blog</a></p>
<p><a  href="http://www.catswhocode.com/blog/introducing-catswhoblog-com" target="_blank">Introducing catswhoblog com</a></p>
<p><a  href="http://coderplus.com/2009/11/awesome-jquery-sliders/" target="_blank">Awesome jQuery sliders</a></p>
<p><a  href="http://www.webdesignerwall.com/tutorials/5-simple-but-useful-css-properties/" target="_blank">5 simple but useful CSS properties</a></p>
<p><a  href="http://habitually.blogmas.com/2009/11/10/design-and-promote-your-e-commerce-site/" target="_blank">Design and promote your e-Commerce site</a></p>
<p><a  href="http://hungred.com/useful-information/php-form-validation-snippets/" target="_blank">PHP form validation snippets</a></p>
<p><a  href="http://www.webdesignerwall.com/tutorials/5-simple-but-useful-css-properties/" target="_blank">5 simple but useful CSS properties</a></p>
<p><a  href="http://blog.tuvinh.com/10-tools-to-improve-your-site%E2%80%99s-usability-on-a-low-budget/" target="_blank">10 tools to improve your site&#8217;s usability on a low budget</a></p>
<p><a  href="http://css-tricks.com/what-beautiful-html-code-looks-like/" target="_blank">What beautiful HTML code looks like</a></p>
<p><a  href="http://www.fivefingercoding.com/xhtml-and-css/how-to-master-tableless-web-design" target="_blank">How to master tableless web design</a></p>
<p><a  href="http://designreviver.com/articles/13-really-useful-online-css-tools-to-streamline-development/" target="_blank">13 really useful online CSS tools to streamline development</a></p>
<p><a  href="http://www.noupe.com/design/ultimate-guide-to-grid-based-web-design.html" target="_blank">Ultimate guide to grid based web design</a></p>
<p><a  href="http://aext.net/2009/11/5-fresh-and-useful-jquery-plugins-you-should-try/" target="_blank">5 fresh and useful jQuery plugins you should try</a></p>
<p><a  href="http://www.splashnology.com/blog/jquery/246.html" target="_blank">jQuery AutoComplete</a></p>
<p><a  href="http://technosailor.com/2009/11/11/10-things-you-need-to-know-about-wordpress-2-9/" target="_blank">10 things you need to know about WordPress 2.9</a></p>
<p><a  href="http://net.tutsplus.com/tutorials/html-css-techniques/20-html-forms-best-practices-for-beginners/" target="_blank">20 HTML forms best practices for beginners</a></p>
<p><a  href="http://webdesignledger.com/tips/10-tips-for-writing-better-css" target="_blank">10 tips for writing better CSS</a></p>
<p><a  href="http://www.vanseodesign.com/css/css-background-property/" target="_blank">CSS background property</a></p>
<p><a  href="http://net.tutsplus.com/tutorials/html-css-techniques/20-html-forms-best-practices-for-beginners/" target="_blank">20 HTML forms best practices for beginners</a></p>
<p><a  href="http://www.sitepoint.com/blogs/2009/11/12/google-closure-how-not-to-write-javascript/" target="_blank">Google closure how not to write Javascript</a></p>
<p><a  href="http://www.sitepoint.com/blogs/2009/11/12/google-open-source-javascript-closure-library/" target="_blank">Google open source Javascript closure library</a></p>
<p><a  href="http://www.bestdesigntuts.com/30-free-online-tools-to-test-your-website/" target="_blank">30 free online tools to test your website</a></p>
<p><a  href="http://screenr.com/IdB" target="_blank">Learn how to Select Anything and Everything with jQuery in 4 Minutes</a></p>
<p><a  href="http://www.dzinepress.com/2009/11/55-decisive-useful-jquery-tutorials/" target="_blank">55 decisive useful jQuery tutorials</a></p>
<div class="addthis_toolbox addthis_default_style addthis_" addthis:url='http://lewayotte.com/2009/11/15/notable-tech-posts-2009-11-15/' addthis:title='Notable Tech Posts &#8211; 2009.11.15 ' ><a class="addthis_button_preferred_1"></a><a class="addthis_button_preferred_2"></a><a class="addthis_button_preferred_3"></a><a class="addthis_button_preferred_4"></a><a class="addthis_button_compact"></a></div>]]></content:encoded>
			<wfw:commentRss>http://lewayotte.com/2009/11/15/notable-tech-posts-2009-11-15/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Notable Tech Posts &#8211; 2009.11.01</title>
		<link>http://lewayotte.com/2009/11/01/notable-tech-posts-2009-11-01/</link>
		<comments>http://lewayotte.com/2009/11/01/notable-tech-posts-2009-11-01/#comments</comments>
		<pubDate>Sun, 01 Nov 2009 14:28:01 +0000</pubDate>
		<dc:creator>Lew</dc:creator>
				<category><![CDATA[Mind]]></category>
		<category><![CDATA[ajax]]></category>
		<category><![CDATA[cms]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[framework]]></category>
		<category><![CDATA[freelance]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[plugins]]></category>
		<category><![CDATA[security]]></category>
		<category><![CDATA[sql]]></category>
		<category><![CDATA[themes]]></category>
		<category><![CDATA[web design]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://lewayotte.com/?p=1285</guid>
		<description><![CDATA[20 do&#8217;s and dont&#8217;s of effective web design ten most popular firefox plugins of web designers six foundations of freelance success 5 rules to write more readable CSS files the Blueprint CSS framework tutorials how to guides and tools how to write a permission system using bits and bitwise operations in  PHP CSS framework comparison [...]<div class="addthis_toolbox addthis_default_style addthis_" addthis:url='http://lewayotte.com/2009/11/01/notable-tech-posts-2009-11-01/' addthis:title='Notable Tech Posts &#8211; 2009.11.01 ' ><a class="addthis_button_preferred_1"></a><a class="addthis_button_preferred_2"></a><a class="addthis_button_preferred_3"></a><a class="addthis_button_preferred_4"></a><a class="addthis_button_compact"></a></div>]]></description>
			<content:encoded><![CDATA[<p><a  href="http://webdesignledger.com/tips/20-dos-and-donts-of-effective-web-design" target="_blank">20 do&#8217;s and dont&#8217;s of effective web design</a></p>
<p><a  href="http://webdesignledger.com/tools/ten-most-popular-firefox-plugins-of-web-designers" target="_blank">ten most popular firefox plugins of web designers</a></p>
<p><a  href="http://freelancefolder.com/six-foundations-of-freelance-success/" target="_blank">six foundations of freelance success</a></p>
<p><a  href="http://woorkup.com/2009/10/18/5-rules-to-write-more-readable-css-files/" target="_blank">5 rules to write more readable CSS files</a></p>
<p><a  href="http://speckyboy.com/2009/10/26/the-blueprint-css-framework-tutorials-how-to-guides-and-tools/" target="_blank">the Blueprint CSS framework tutorials how to guides and tools</a></p>
<p><a  href="http://blog.code-head.com/how-to-write-a-permission-system-using-bits-and-bitwise-operations-in-php" target="_blank">how to write a permission system using bits and bitwise operations in  PHP</a></p>
<p><a  href="http://sethetter.com/web-design/css-framework-comparison/" target="_blank">CSS framework comparison</a></p>
<p><a  href="http://hungred.com/useful-information/ways-optimize-sql-queries/" target="_blank">ways optimizeSQL queries</a></p>
<p><a  href="http://blog.tuvinh.com/top-7-php-security-blunders/" target="_blank">top 7 PHP security blunders</a></p>
<p><a  href="http://www.incomediary.com/18-alternative-ways-to-use-wordpress/" target="_blank">18 alternative ways to use WordPress</a></p>
<p><a  href="http://webdesignledger.com/resources/12-essential-plugins-that-extend-wordpress-as-a-cms" target="_blank">12 essential plugins that extend WordPress as a CMS</a></p>
<p><a  href="http://cashrevelations.com/magazine/2009/10/ajax-and-javascript-techniques/" target="_blank">AJAX and Javascript techniques</a></p>
<p><a  href="http://www.owasp.org/index.php/Main_Page" target="_blank">Open Web Application Security Project</a></p>
<p><a  href="http://www.jquery.wisdomplug.com/jquery-plugins/jquery-table-plugins-jquery-plugins/30-amazing-jquery-plugins-to-play-with-tables/" target="_blank">30 amazing jQuery plugins to play with tables</a></p>
<p><a  href="http://www.devshed.com/c/a/PHP/Mastering-WHILE-Loops-for-PHP-and-MySQL/?kc=rss" target="_blank">Mastering WHILE Loops for PHP and MySQL</a></p>
<p><a  href="http://net.tutsplus.com/tutorials/javascript-ajax/simple-draggable-element-persistence-with-jquery/" target="_blank">simple draggable element persistence with jQuery</a></p>
<p><a  href="http://www.geekology.co.za/blog/2009/10/12-tips-improve-your-jquery-code/" target="_blank">12 tips improve your jQuery code</a></p>
<p><a  href="http://www.webdesignbooth.com/9-useful-jquery-calendar-and-date-picker-plugins-for-web-designers/" target="_blank">9 useful jQuery calendar and date picker plugins for web designers</a></p>
<p><a  href="http://www.geeksucks.com/showcases/14-great-posts-on-jquery-plugins.htm" target="_blank">14 great posts on jQuery plugins</a></p>
<p><a  href="http://woorkup.com/2009/10/30/how-to-improve-your-wordpress-theme-with-9-useful-plugins/" target="_blank">how to improve your WordPress theme with 9 useful plugins</a></p>
<p><a  href="http://www.appsheriff.com/web-apps/script/15-unforgettable-websites-to-find-code-snippets-with-ease/" target="_blank">15 unforgettable websites to find code snippets with ease</a></p>
<div class="addthis_toolbox addthis_default_style addthis_" addthis:url='http://lewayotte.com/2009/11/01/notable-tech-posts-2009-11-01/' addthis:title='Notable Tech Posts &#8211; 2009.11.01 ' ><a class="addthis_button_preferred_1"></a><a class="addthis_button_preferred_2"></a><a class="addthis_button_preferred_3"></a><a class="addthis_button_preferred_4"></a><a class="addthis_button_compact"></a></div>]]></content:encoded>
			<wfw:commentRss>http://lewayotte.com/2009/11/01/notable-tech-posts-2009-11-01/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Notable Tech Posts &#8211; 2009.10.25</title>
		<link>http://lewayotte.com/2009/10/25/notable-tech-posts-2009-10-25/</link>
		<comments>http://lewayotte.com/2009/10/25/notable-tech-posts-2009-10-25/#comments</comments>
		<pubDate>Mon, 26 Oct 2009 01:51:22 +0000</pubDate>
		<dc:creator>Lew</dc:creator>
				<category><![CDATA[Mind]]></category>
		<category><![CDATA[accessibility]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[forms]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[plugins]]></category>
		<category><![CDATA[project management]]></category>
		<category><![CDATA[rss]]></category>
		<category><![CDATA[usability]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://lewayotte.com/?p=1280</guid>
		<description><![CDATA[7 areas of PHP you might want to optimize jQuery concrete concreteui programming in jQuery Adaptive web forms .ASPX 10 astonishing jQuery resources to spice up your website the mystery of CSS float property website accessibility and usability ten tips on how to make your website more viewer friendly using RSS 35 fresh useful jQuery [...]<div class="addthis_toolbox addthis_default_style addthis_" addthis:url='http://lewayotte.com/2009/10/25/notable-tech-posts-2009-10-25/' addthis:title='Notable Tech Posts &#8211; 2009.10.25 ' ><a class="addthis_button_preferred_1"></a><a class="addthis_button_preferred_2"></a><a class="addthis_button_preferred_3"></a><a class="addthis_button_preferred_4"></a><a class="addthis_button_compact"></a></div>]]></description>
			<content:encoded><![CDATA[<p><a  href="http://www.webdesignbooth.com/7-areas-of-php-you-might-want-to-optimize/" target="_blank">7 areas of PHP you might want to optimize</a></p>
<p><a  href="http://ajaxian.com/archives/jquery-concrete-concreteui-programming-in-jquery" target="_blank">jQuery concrete concreteui programming in jQuery</a></p>
<p><a  href="http://www.jankoatwarpspeed.com/post/2009/10/19/Adaptive-web-forms.aspx" target="_blank">Adaptive web forms .ASPX</a></p>
<p><a  href="http://www.catswhocode.com/blog/10-astonishing-jquery-resources-to-spice-up-your-website" target="_blank">10 astonishing jQuery resources to spice up your website</a></p>
<p><a  href="http://www.smashingmagazine.com/2009/10/19/the-mystery-of-css-float-property/" target="_blank">the mystery of CSS float property</a></p>
<p><a  href="http://designreviver.com/articles/website-accessibility-and-usability-ten-tips-on-how-to-make-your-website-more-viewer-friendly/" target="_blank">website accessibility and usability ten tips on how to make your website more viewer friendly</a></p>
<p><a  href="http://boagworld.com/reviews/usingrss" target="_blank">using RSS</a></p>
<p><a  href="http://www.noupe.com/jquery/35-fresh-useful-jquery-plugins.html" target="_blank">35 fresh useful jQuery plugins</a></p>
<p><a  href="http://www.sitepoint.com/blogs/2009/04/14/how-to-estimate-time-for-a-project/" target="_blank">how to estimate time for a project</a></p>
<p><a  href="http://www.nathanrice.net/blog/an-introduction-to-wordpress-action-hooks/" target="_blank">an introduction to WordPress action hooks</a></p>
<p><a  href="http://webdesignledger.com/resources/14-jquery-plugins-for-enhanced-content-viewing" target="_blank">14 jQuery plugins for enhanced content viewing</a></p>
<p><a  href="http://www.tripwiremagazine.com/tutorials/tutorials/jquery-and-general-javascript-tips-to-improve-your-code.html" target="_blank">jQuery and general Javascript tips to improve your code</a></p>
<div class="addthis_toolbox addthis_default_style addthis_" addthis:url='http://lewayotte.com/2009/10/25/notable-tech-posts-2009-10-25/' addthis:title='Notable Tech Posts &#8211; 2009.10.25 ' ><a class="addthis_button_preferred_1"></a><a class="addthis_button_preferred_2"></a><a class="addthis_button_preferred_3"></a><a class="addthis_button_preferred_4"></a><a class="addthis_button_compact"></a></div>]]></content:encoded>
			<wfw:commentRss>http://lewayotte.com/2009/10/25/notable-tech-posts-2009-10-25/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Notable Tech Posts &#8211; 2009.09.27</title>
		<link>http://lewayotte.com/2009/09/27/notable-tech-posts-2009-09-27/</link>
		<comments>http://lewayotte.com/2009/09/27/notable-tech-posts-2009-09-27/#comments</comments>
		<pubDate>Sun, 27 Sep 2009 22:33:45 +0000</pubDate>
		<dc:creator>Lew</dc:creator>
				<category><![CDATA[Mind]]></category>
		<category><![CDATA[cheat sheets]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[photoshop]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://lewayotte.com/?p=1218</guid>
		<description><![CDATA[21 Excellent 3D Text Photoshop and Illustrator Tutorials 9 Useful jQuery Calendar and Date Picker Plugins for Web Designers Sproing Make an Elastic Thumbnail Menu 10 Topnotch CSS Editors You Know You Should Use Javascript When 20 Powerful WordPress Security Plugins and Some Tips and Tricks 10 Extremely Useful PHP Classes 30 Best jQuery Photo [...]<div class="addthis_toolbox addthis_default_style addthis_" addthis:url='http://lewayotte.com/2009/09/27/notable-tech-posts-2009-09-27/' addthis:title='Notable Tech Posts &#8211; 2009.09.27 ' ><a class="addthis_button_preferred_1"></a><a class="addthis_button_preferred_2"></a><a class="addthis_button_preferred_3"></a><a class="addthis_button_preferred_4"></a><a class="addthis_button_compact"></a></div>]]></description>
			<content:encoded><![CDATA[<p><a  href="http://webdesignledger.com/tutorials/21-excellent-3d-text-photoshop-and-illustrator-tutorials" target="_blank">21 Excellent 3D Text Photoshop and Illustrator Tutorials</a></p>
<p><a  href="http://www.webdesignbooth.com/9-useful-jquery-calendar-and-date-picker-plugins-for-web-designers/" target="_blank">9 Useful jQuery Calendar and Date Picker Plugins for Web Designers</a></p>
<p><a  href="http://buildinternet.com/2009/09/sproing-make-an-elastic-thumbnail-menu/" target="_blank">Sproing Make an Elastic Thumbnail Menu</a></p>
<p><a  href="http://cssglobe.com/post/6217/10-topnotch-css-editors" target="_blank">10 Topnotch CSS Editors</a></p>
<p><a  href="http://css-tricks.com/you-know-you-should-use-javascript-when/" target="_blank">You Know You Should Use Javascript When</a></p>
<p><a  href="http://speckyboy.com/2009/09/22/20-powerful-wordpress-security-plugins-and-some-tips-and-tricks/" target="_blank">20 Powerful WordPress Security Plugins and Some Tips and Tricks</a></p>
<p><a  href="http://www.catswhocode.com/blog/10-extremely-useful-php-classes" target="_blank">10 Extremely Useful PHP Classes</a></p>
<p><a  href="http://javabyexample.wisdomplug.com/web-programming/47-javascript/85-30-best-jquery-photo-plugins-sliders-slideshow-galleries-and-scrollers.html" target="_blank">30 Best jQuery Photo Plugins, Sliders, Slideshow Galleries, and Scrollers</a></p>
<p><a  href="http://www.webdesigndev.com/programming/the-ultimate-programming-cheat-sheet-list-for-web-designers-and-developers" target="_blank">The Ultimate Programming Cheat Sheet List for Web Designers and Developers</a></p>
<p><a  href="http://net.tutsplus.com/tutorials/php/creating-a-crypter-class/" target="_blank">Creating a Crypter Class in PHP<br />
</a></p>
<div id="_mcePaste" style="overflow: hidden; position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px;">http://webdesignledger.com/tutorials/21-excellent-3d-text-photoshop-and-illustrator-tutorials</p>
<p>http://www.webdesignbooth.com/9-useful-jquery-calendar-and-date-picker-plugins-for-web-designers/</p>
<p>http://buildinternet.com/2009/09/sproing-make-an-elastic-thumbnail-menu/</p>
<p>http://cssglobe.com/post/6217/10-topnotch-css-editors</p>
<p>http://css-tricks.com/you-know-you-should-use-javascript-when/</p>
<p>http://speckyboy.com/2009/09/22/20-powerful-wordpress-security-plugins-and-some-tips-and-tricks/</p>
<p>http://www.catswhocode.com/blog/10-extremely-useful-php-classes</p>
<p>http://javabyexample.wisdomplug.com/web-programming/47-javascript/85-30-best-jquery-photo-plugins-sliders-slideshow-galleries-and-scrollers.html</p>
<p>http://www.webdesigndev.com/programming/the-ultimate-programming-cheat-sheet-list-for-web-designers-and-developers</p>
<p>http://net.tutsplus.com/tutorials/php/creating-a-crypter-class/</p></div>
<div class="addthis_toolbox addthis_default_style addthis_" addthis:url='http://lewayotte.com/2009/09/27/notable-tech-posts-2009-09-27/' addthis:title='Notable Tech Posts &#8211; 2009.09.27 ' ><a class="addthis_button_preferred_1"></a><a class="addthis_button_preferred_2"></a><a class="addthis_button_preferred_3"></a><a class="addthis_button_preferred_4"></a><a class="addthis_button_compact"></a></div>]]></content:encoded>
			<wfw:commentRss>http://lewayotte.com/2009/09/27/notable-tech-posts-2009-09-27/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Notable Tech Posts &#8211; 2009.09.06</title>
		<link>http://lewayotte.com/2009/09/06/notable-tech-posts-2009-09-06/</link>
		<comments>http://lewayotte.com/2009/09/06/notable-tech-posts-2009-09-06/#comments</comments>
		<pubDate>Sun, 06 Sep 2009 13:00:13 +0000</pubDate>
		<dc:creator>Lew</dc:creator>
				<category><![CDATA[Mind]]></category>
		<category><![CDATA[cheat sheets]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[photoshop]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[tutorials]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://lewayotte.com/?p=1123</guid>
		<description><![CDATA[30 Useful Photoshop Tutorials for Vintage and Retro Style Active State in CSS Navigations 300 Resources to Help You become a Photoshop Expert/ How to Create a Pure CSS Polaroid Photo Gallery PHP Image Filter How to Design and Code a Flexible Website Caching AJAX 95 Exceptionally Useful jQuery Plugins, Tutorials, and Cheat Sheets 20 [...]<div class="addthis_toolbox addthis_default_style addthis_" addthis:url='http://lewayotte.com/2009/09/06/notable-tech-posts-2009-09-06/' addthis:title='Notable Tech Posts &#8211; 2009.09.06 ' ><a class="addthis_button_preferred_1"></a><a class="addthis_button_preferred_2"></a><a class="addthis_button_preferred_3"></a><a class="addthis_button_preferred_4"></a><a class="addthis_button_compact"></a></div>]]></description>
			<content:encoded><![CDATA[<p><a  href="http://webdesignledger.com/tutorials/30-useful-photoshop-tutorials-for-vintage-and-retro-style" target="_blank">30 Useful Photoshop Tutorials for Vintage and Retro Style</a></p>
<p><a  href="http://www.sohtanaka.com/web-design/active-state-in-css-navigations/" target="_blank">Active State in CSS Navigations</a></p>
<p><a  href="http://www.webdesignerdepot.com/2009/08/300-resources-to-help-you-become-a-photoshop-expert/" target="_blank">300 Resources to Help You become a Photoshop Expert/</a></p>
<p><a  href="http://line25.com/tutorials/how-to-create-a-pure-css-polaroid-photo-gallery" target="_blank">How to Create a Pure CSS Polaroid Photo Gallery</a></p>
<p><a  href="http://davidwalsh.name/php-image-filter" target="_blank">PHP Image Filter</a></p>
<p><a  href="http://net.tutsplus.com/tutorials/html-css-techniques/how-to-design-and-code-a-flexible-website/" target="_blank">How to Design and Code a Flexible Website</a></p>
<p><a  href="http://davidwalsh.name/cache-ajax" target="_blank">Caching AJAX</a></p>
<p><a  href="http://www.tripwiremagazine.com/tutorials/tools/95-exceptionally-useful-jquery-plugins-tutorials-and-cheat-sheets.html" target="_blank">95 Exceptionally Useful jQuery Plugins, Tutorials, and Cheat Sheets</a></p>
<p><a  href="http://net.tutsplus.com/tutorials/html-css-techniques/20-html-forms-best-practices-for-beginners/" target="_blank">20 HTML Forms Best Practices for Beginners</a></p>
<p><a  href="http://css-tricks.com/snippets/" target="_blank">http://css-tricks.com/snippets/</a></p>
<p><a  href="http://carsonified.com/blog/design/css/how-to-create-a-valid-non-javascript-lightbox/" target="_blank">How to Create a Valid non-Javascript Lightbox</a></p>
<p><a  href="http://designreviver.com/tips/a-collection-of-wordpress-tutorials-tips-and-themes/" target="_blank">A Collection of WordPress Tutorials, Tips, and Themes</a></p>
<p><a  href="http://www.1stwebdesigner.com/resources/38-jquery-and-css-drop-down-multi-level-menu-solutions/" target="_blank">38 jQuery and CSS Drop-down Multi-level menu Solutions</a></p>
<div class="addthis_toolbox addthis_default_style addthis_" addthis:url='http://lewayotte.com/2009/09/06/notable-tech-posts-2009-09-06/' addthis:title='Notable Tech Posts &#8211; 2009.09.06 ' ><a class="addthis_button_preferred_1"></a><a class="addthis_button_preferred_2"></a><a class="addthis_button_preferred_3"></a><a class="addthis_button_preferred_4"></a><a class="addthis_button_compact"></a></div>]]></content:encoded>
			<wfw:commentRss>http://lewayotte.com/2009/09/06/notable-tech-posts-2009-09-06/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Notable Tech Posts &#8211; 2009.08.30</title>
		<link>http://lewayotte.com/2009/08/30/notable-tech-posts-2009-08-30/</link>
		<comments>http://lewayotte.com/2009/08/30/notable-tech-posts-2009-08-30/#comments</comments>
		<pubDate>Sun, 30 Aug 2009 16:00:40 +0000</pubDate>
		<dc:creator>Lew</dc:creator>
				<category><![CDATA[Mind]]></category>
		<category><![CDATA[cms]]></category>
		<category><![CDATA[coldfusion]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[freelance]]></category>
		<category><![CDATA[hooks]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[photoshop]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[tools]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://lewayotte.com/?p=1109</guid>
		<description><![CDATA[http://net.tutsplus.com/articles/web-roundups/top-10-most-usable-content-management-systems/ http://webdesignledger.com/tutorials/13-super-useful-jquery-content-slider-scripts-and-tutorials http://sixrevisions.com/tools/10-excellent-feedback-tools-for-web-designers/ http://www.cre8ivecommando.com/exclude-a-category-from-your-wordpress-index-page-830/ http://www.webdesignerdepot.com/2009/08/free-photoshop-brushes-sparkling-light-effects/ http://sixrevisions.com/javascript/build-an-elastic-textarea-with-ext-js/ http://adambrown.info/p/wp_hooks &#8211; WordPress Hooks Database http://www.newmediacampaigns.com/page/create-a-jquery-calendar-with-ajax-php-and-a-remote-data-source http://www.webdesignerdepot.com/2009/08/20-quick-tips-for-aspiring-freelancers/ http://www.sitepoint.com/blogs/2009/08/27/rate-your-stuff-with-coldfusion/ http://www.sitepoint.com/blogs/2009/08/27/questions-to-ask-before-taking-on-rush-projects/ http://net.tutsplus.com/tutorials/php/supercharge-your-css-with-php-under-the-hood/ http://www.jankoatwarpspeed.com/post/2009/07/28/reinventing-drop-down-with-css-jquery.aspx<div class="addthis_toolbox addthis_default_style addthis_" addthis:url='http://lewayotte.com/2009/08/30/notable-tech-posts-2009-08-30/' addthis:title='Notable Tech Posts &#8211; 2009.08.30 ' ><a class="addthis_button_preferred_1"></a><a class="addthis_button_preferred_2"></a><a class="addthis_button_preferred_3"></a><a class="addthis_button_preferred_4"></a><a class="addthis_button_compact"></a></div>]]></description>
			<content:encoded><![CDATA[<p><a  href="http://net.tutsplus.com/articles/web-roundups/top-10-most-usable-content-management-systems/">http://net.tutsplus.com/articles/web-roundups/top-10-most-usable-content-management-systems/</a></p>
<p><a  href="http://webdesignledger.com/tutorials/13-super-useful-jquery-content-slider-scripts-and-tutorials">http://webdesignledger.com/tutorials/13-super-useful-jquery-content-slider-scripts-and-tutorials</a></p>
<p><a  href="http://sixrevisions.com/tools/10-excellent-feedback-tools-for-web-designers/">http://sixrevisions.com/tools/10-excellent-feedback-tools-for-web-designers/</a></p>
<p><a  href="http://www.cre8ivecommando.com/exclude-a-category-from-your-wordpress-index-page-830/">http://www.cre8ivecommando.com/exclude-a-category-from-your-wordpress-index-page-830/</a></p>
<p><a  href="http://www.webdesignerdepot.com/2009/08/free-photoshop-brushes-sparkling-light-effects/">http://www.webdesignerdepot.com/2009/08/free-photoshop-brushes-sparkling-light-effects/</a></p>
<p><a  href="http://sixrevisions.com/javascript/build-an-elastic-textarea-with-ext-js/">http://sixrevisions.com/javascript/build-an-elastic-textarea-with-ext-js/</a></p>
<p><a  href="http://adambrown.info/p/wp_hooks">http://adambrown.info/p/wp_hooks</a> &#8211; WordPress Hooks Database</p>
<p><a  href="http://www.newmediacampaigns.com/page/create-a-jquery-calendar-with-ajax-php-and-a-remote-data-source">http://www.newmediacampaigns.com/page/create-a-jquery-calendar-with-ajax-php-and-a-remote-data-source</a></p>
<p><a  href="http://www.webdesignerdepot.com/2009/08/20-quick-tips-for-aspiring-freelancers/">http://www.webdesignerdepot.com/2009/08/20-quick-tips-for-aspiring-freelancers/</a></p>
<p><a  href="http://www.sitepoint.com/blogs/2009/08/27/rate-your-stuff-with-coldfusion/">http://www.sitepoint.com/blogs/2009/08/27/rate-your-stuff-with-coldfusion/</a></p>
<p><a  href="http://www.sitepoint.com/blogs/2009/08/27/questions-to-ask-before-taking-on-rush-projects/">http://www.sitepoint.com/blogs/2009/08/27/questions-to-ask-before-taking-on-rush-projects/</a></p>
<p><a  href="http://net.tutsplus.com/tutorials/php/supercharge-your-css-with-php-under-the-hood/">http://net.tutsplus.com/tutorials/php/supercharge-your-css-with-php-under-the-hood/</a></p>
<p><a  href="http://www.jankoatwarpspeed.com/post/2009/07/28/reinventing-drop-down-with-css-jquery.aspx">http://www.jankoatwarpspeed.com/post/2009/07/28/reinventing-drop-down-with-css-jquery.aspx</a></p>
<div class="addthis_toolbox addthis_default_style addthis_" addthis:url='http://lewayotte.com/2009/08/30/notable-tech-posts-2009-08-30/' addthis:title='Notable Tech Posts &#8211; 2009.08.30 ' ><a class="addthis_button_preferred_1"></a><a class="addthis_button_preferred_2"></a><a class="addthis_button_preferred_3"></a><a class="addthis_button_preferred_4"></a><a class="addthis_button_compact"></a></div>]]></content:encoded>
			<wfw:commentRss>http://lewayotte.com/2009/08/30/notable-tech-posts-2009-08-30/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

