<?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>MacdougalMedia &#187; WebDev</title>
	<atom:link href="http://macdougalmedia.com/category/webdev/feed/" rel="self" type="application/rss+xml" />
	<link>http://macdougalmedia.com</link>
	<description>by Scott Macdougal Weaver</description>
	<lastBuildDate>Tue, 18 May 2010 10:56:19 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Reddit Tabbed Links</title>
		<link>http://macdougalmedia.com/2010/03/10/reddit-tabbed-links/</link>
		<comments>http://macdougalmedia.com/2010/03/10/reddit-tabbed-links/#comments</comments>
		<pubDate>Wed, 10 Mar 2010 22:02:53 +0000</pubDate>
		<dc:creator>Scott</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[Greasemonkey Scripts]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[WebDev]]></category>
		<category><![CDATA[Firefox]]></category>
		<category><![CDATA[Reddit]]></category>
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://macdougalmedia.com/?p=160</guid>
		<description><![CDATA[Put simply, I was just tired of shift+clicking the links on Reddit, so I made a Greasemonkey script that does it for all the main links and comment links:
Reddit Tabbed Links
Here's the direct link to the script:
reddit_tabbed_links.js
Enjoy.
http://userscripts.org/scripts/show/71070Reddit Tabbed Links
]]></description>
			<content:encoded><![CDATA[<p>Put simply, I was just tired of shift+clicking the links on <a title="Reddit" href="http://www.reddit.com" target="_blank">Reddit</a>, so I made a <a title="Greasemonkey for Firefox" href="https://addons.mozilla.org/en-US/firefox/addon/748" target="_blank">Greasemonkey</a> script that does it for all the main links and comment links:</p>
<p><a title="Reddit Tabbed Links" href="http://userscripts.org/scripts/show/71070" target="_blank">Reddit Tabbed Links</a></p>
<p>Here's the direct link to the script:</p>
<p><a href="http://userscripts.org/scripts/source/71070.user.js">reddit_tabbed_links.js</a></p>
<p>Enjoy.</p>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow: hidden;">http://userscripts.org/scripts/show/71070Reddit Tabbed Links</div>
]]></content:encoded>
			<wfw:commentRss>http://macdougalmedia.com/2010/03/10/reddit-tabbed-links/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MemcacheD + PHP + MySQL = Dream Team</title>
		<link>http://macdougalmedia.com/2010/02/25/memcached-php-mysql-dream-team/</link>
		<comments>http://macdougalmedia.com/2010/02/25/memcached-php-mysql-dream-team/#comments</comments>
		<pubDate>Fri, 26 Feb 2010 01:37:55 +0000</pubDate>
		<dc:creator>Scott</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[WebDev]]></category>
		<category><![CDATA[MemcacheD]]></category>
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://macdougalmedia.com/?p=150</guid>
		<description><![CDATA[
When using development frameworks like CakePHP, Zend or even Smarty, I always took their ability to cache data for granted. After all, I hadn't built all of my applications using frameworks and those that were lacking didn't seem to be hurting too badly. It just seemed like a bonus for using their environments and while [...]]]></description>
			<content:encoded><![CDATA[<p><a title="memcached" href="http://memcached.org" target="_blank"><img class="alignnone size-full wp-image-154" title="memcached" src="http://macdougalmedia.com/wp-content/uploads/2010/02/memcached.jpg" alt="memcached" width="600" height="186" /></a></p>
<p>When using development frameworks like CakePHP, Zend or even Smarty, I always took their ability to cache data for granted. After all, I hadn't built all of my applications using frameworks and those that were lacking didn't seem to be hurting too badly. It just seemed like a bonus for using their environments and while I was very aware of the fact that caching reduces stress on the database, I hadn't really built anything that was in dire need of caching as a means of improving overall functionality.</p>
<p>Once I started learning about memcached, I actually started to think about my non-frameworked applications and whether there were any noticeable lags. It wasn't long before I had thought of a few glaringly obvious examples where (mem)caching could be used to significantly improve performance. But before I go into those examples, here is a brief explanation of what memcached does for you (taken directly from <a title="memcached" href="http://memcached.org" target="_blank">memcached.org</a>):</p>
<blockquote>
<div>
<div id="mc-is">
<h3>What is Memcached?</h3>
<p><strong>Free &amp; open source, high-performance, distributed  memory object caching system</strong>, generic in nature, but intended  for use in speeding up dynamic web applications by alleviating database  load.</p>
<p>Memcached is an in-memory key-value store for small chunks of  arbitrary data (strings, objects) from results of database calls, API  calls, or page         rendering.</p>
<p><strong>Memcached is simple yet powerful</strong>. Its simple  design promotes quick deployment, ease of development, and solves many  problems facing large data caches. Its <a href="http://code.google.com/p/memcached/wiki/Clients" target="_blank">API</a> is  available for most popular languages.</p>
</div>
</div>
</blockquote>
<p>So first on my list was <a title="Blogflare" href="http://www.blogflare.com" target="_blank">Blogflare.com</a>, with its MySQL-based statistical cruncher running on regular intervals and its PHP-based image tickers, the load on the database was strained on a very regular basis. I noticed if I just adjusted the simple database calls to push updates to memcached and then check memcached for data before I even touch the database, performance significantly increased on the front-end. Additionally, this same improvement was helpful in terms of serving out ticker images that are normally database-driven. With these two simple changes, load on the database dropped enough to make scaling much less of a pain. This is relevant, too, as the site has grown steadily over the past few months and shows no signs of stopping.</p>
<p>The next item on the list is one I can't actually link you to but an application that I've built for the <a title="Claire Trevor School of the Arts" href="http://www.arts.uci.edu" target="_blank">University's Art School</a> to handle finance planning and reporting for graduate students. After a few moments of thinking about its structure I realized the database is very read-heavy, particularly in the reporting area. Reports are generated from stored procedures and perform some pretty heavy calculations on each student's data in order to provide administrators with a very accurate picture of spending and planned spending. Updating the database calls for insert/update/delete methods to perform calls to memcached first proved to be ENORMOUSLY effective at speeding up use of the database. While this helps to reduce load on the server, the most important factor in this case was how much better the overall user experience was. Lagginess became intermittent rather than constant.</p>
<p>When I was researching memcached and wondering about how such a thing would scale, I found a clipping from this article entitled <a title="How to Dramatically Speed Up Your Web Application: An Introduction to memcached" href="http://www.majordojo.com/2007/03/memcached-howto.php" target="_blank">How to Dramatically Speed Up Your Web Application: An Introduction to memcached</a> very helpful-</p>
<blockquote><p>No doubt if you took Computer Science in school you were cautioned of  the temptation to abuse caches because there is a law of diminishing  returns in regards to the size of your cache: the larger your cache gets  the more costly it is retrieve and store information within it.  Memcache however is not heavily constrained in this way, because the  cache at large is made up of lots of little caches. This allows  memcached to be much more responsive even when the cache itself begins  to reach sizes that might be really inefficient in other circumstances.</p></blockquote>
<p>So this little bit managed to assuage my fears and give me the confidence to jump right in and start testing it with my lesser-applications. The results, even this early, have been astounding and I can now see how they are a very vital part of modern web application development.</p>
]]></content:encoded>
			<wfw:commentRss>http://macdougalmedia.com/2010/02/25/memcached-php-mysql-dream-team/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Use jQuery to Tally Forms</title>
		<link>http://macdougalmedia.com/2009/12/11/use-jquery-to-tally-forms/</link>
		<comments>http://macdougalmedia.com/2009/12/11/use-jquery-to-tally-forms/#comments</comments>
		<pubDate>Fri, 11 Dec 2009 23:41:00 +0000</pubDate>
		<dc:creator>Scott</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[WebDev]]></category>
		<category><![CDATA[jQuery]]></category>

		<guid isPermaLink="false">http://macdougalmedia.com/?p=136</guid>
		<description><![CDATA[
Recently, I had the task of creating a simple form to be submitted to a specific department member here on campus. I felt this was a great opportunity to utilize jQuery and to see just how simple I could make adding new fields, since I wanted the form to be somewhat dynamic (adding/removing of inputs [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://macdougalmedia.com/wp-content/uploads/2009/12/travel_expenses.png"><img class="size-full wp-image-148 alignnone" title="Travel Expenses" src="http://macdougalmedia.com/wp-content/uploads/2009/12/travel_expenses.png" alt="Travel Expenses" width="616" height="245" /></a></p>
<p>Recently, I had the task of creating a simple form to be submitted to a specific department member here on campus. I felt this was a great opportunity to utilize jQuery and to see just how simple I could make adding new fields, since I wanted the form to be somewhat dynamic (adding/removing of inputs and such).</p>
<p>After trying a few methods here and there, I was able to utilize a few jQuery functions and a nice plugin (<a title="jQuery Format Currency" href="http://code.google.com/p/jquery-formatcurrency/" target="_blank">jquery-formatcurrency</a>) to make everything work as desired.</p>
<p>Here is what I came up with:</p>

<div class="wp_syntax"><div class="code"><pre class="javascript" style="font-family:monospace;">$<span style="color: #009900;">&#40;</span>document<span style="color: #009900;">&#41;</span>.<span style="color: #660066;">ready</span><span style="color: #009900;">&#40;</span><span style="color: #003366; font-weight: bold;">function</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span>
&nbsp;
	<span style="color: #003366; font-weight: bold;">var</span> total <span style="color: #339933;">=</span> <span style="color: #CC0000;">0</span><span style="color: #339933;">;</span>
&nbsp;
	$<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'.currency'</span><span style="color: #009900;">&#41;</span>.<span style="color: #000066;">blur</span><span style="color: #009900;">&#40;</span><span style="color: #003366; font-weight: bold;">function</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span>
	<span style="color: #009900;">&#123;</span>
		total <span style="color: #339933;">=</span> <span style="color: #CC0000;">0</span><span style="color: #339933;">;</span>
&nbsp;
		$<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'.add'</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">each</span><span style="color: #009900;">&#40;</span><span style="color: #003366; font-weight: bold;">function</span><span style="color: #009900;">&#40;</span>i<span style="color: #339933;">,</span>obj<span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span>
			total <span style="color: #339933;">+=</span> $<span style="color: #009900;">&#40;</span>obj<span style="color: #009900;">&#41;</span>.<span style="color: #660066;">val</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">*</span><span style="color: #CC0000;">1</span><span style="color: #339933;">;</span>
		<span style="color: #009900;">&#125;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
		$<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'.subtract'</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">each</span><span style="color: #009900;">&#40;</span><span style="color: #003366; font-weight: bold;">function</span><span style="color: #009900;">&#40;</span>i<span style="color: #339933;">,</span>obj<span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span>
			total <span style="color: #339933;">-=</span> $<span style="color: #009900;">&#40;</span>obj<span style="color: #009900;">&#41;</span>.<span style="color: #660066;">val</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">*</span><span style="color: #CC0000;">1</span><span style="color: #339933;">;</span>
		<span style="color: #009900;">&#125;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
		$<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'#total'</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">val</span><span style="color: #009900;">&#40;</span>total<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
		$<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'.currency'</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">formatCurrency</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#123;</span>symbol<span style="color: #339933;">:</span><span style="color: #3366CC;">''</span><span style="color: #009900;">&#125;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	<span style="color: #009900;">&#125;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
<span style="color: #009900;">&#125;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></div></div>

<p>What's neat about this method is that it handles everything on the blur (loss of focus) of any element with the 'currency' class applied. That means it won't do anything to the field while a person is typing in it -- annoying for some people -- it waits until the user moves on to the next field or away from the field altogether.</p>
<p>The really cool part of what happens first is the mathematical operation. Notice the similarity between the following methods:</p>

<div class="wp_syntax"><div class="code"><pre class="javascript" style="font-family:monospace;">$<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'.add'</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">each</span><span style="color: #009900;">&#40;</span><span style="color: #003366; font-weight: bold;">function</span><span style="color: #009900;">&#40;</span>i<span style="color: #339933;">,</span>obj<span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span>
	total <span style="color: #339933;">+=</span> $<span style="color: #009900;">&#40;</span>obj<span style="color: #009900;">&#41;</span>.<span style="color: #660066;">val</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">*</span><span style="color: #CC0000;">1</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
$<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'.subtract'</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">each</span><span style="color: #009900;">&#40;</span><span style="color: #003366; font-weight: bold;">function</span><span style="color: #009900;">&#40;</span>i<span style="color: #339933;">,</span>obj<span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span>
	total <span style="color: #339933;">-=</span> $<span style="color: #009900;">&#40;</span>obj<span style="color: #009900;">&#41;</span>.<span style="color: #660066;">val</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">*</span><span style="color: #CC0000;">1</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></div></div>

<p>The first method looks at all elements with the 'add' class applied. The <strong>.each</strong> jQuery function cycles through each matched element and feeds two variables to the attached function: an incremented index and the object reference itself. This makes a tally extremely simple as jQuery will automagically cycle through all the elements you want to either add or subtract based on what class you have applied. The same applies to both classes and, of course, can be extended if you want to do more complex mathematics or formatting to your fields.</p>
<p>After these methods run, the <em>total</em> variable now holds the correct sum for all fields properly classed either 'add' or 'subtract.' This can now be applied to the input field with an id of 'total':</p>

<div class="wp_syntax"><div class="code"><pre class="javascript" style="font-family:monospace;">$<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'#total'</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">val</span><span style="color: #009900;">&#40;</span>total<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></div></div>

<p>This will set the 'total' input field's value to the sum of the fields.</p>
<p>Lastly, it will format all fields to currency using the <em>formatCurrency </em>function:</p>

<div class="wp_syntax"><div class="code"><pre class="javascript" style="font-family:monospace;">$<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'.currency'</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">formatCurrency</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#123;</span>symbol<span style="color: #339933;">:</span><span style="color: #3366CC;">''</span><span style="color: #009900;">&#125;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></div></div>

<p>Notice I specify here that I do not want any currency symbol (e.g. '$') as I specify that outside the field itself to display to the user.</p>
<p>Again, all of this happens every time a field gets updated and loses focus. So yes, it's magic.</p>
]]></content:encoded>
			<wfw:commentRss>http://macdougalmedia.com/2009/12/11/use-jquery-to-tally-forms/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>I am a Web Ninja</title>
		<link>http://macdougalmedia.com/2009/12/11/i-am-a-web-ninja/</link>
		<comments>http://macdougalmedia.com/2009/12/11/i-am-a-web-ninja/#comments</comments>
		<pubDate>Fri, 11 Dec 2009 10:22:07 +0000</pubDate>
		<dc:creator>Scott</dc:creator>
				<category><![CDATA[WebDev]]></category>
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://macdougalmedia.com/?p=133</guid>
		<description><![CDATA[I doubt I'll be applying for a job in Amsterdam anytime soon, but I thought I'd see if I could work my way through this test anyway. It doesn't really involve any sort of real web development prowess, really, but it does require some reasonable know-how with Firebug (one of my most favorite tools ever).
The [...]]]></description>
			<content:encoded><![CDATA[<div id="attachment_134" class="wp-caption alignleft" style="width: 310px"><a href="http://macdougalmedia.com/wp-content/uploads/2009/12/thesedays-webninja.png"><img class="size-medium wp-image-134 " title="thesedays-webninja" src="http://macdougalmedia.com/wp-content/uploads/2009/12/thesedays-webninja-300x125.png" alt="Are you Ninja enough?" width="300" height="125" /></a><p class="wp-caption-text">Click to Enlarge</p></div>
<p>I doubt I'll be applying for a job in Amsterdam anytime soon, but I thought I'd see if I could work my way through this test anyway. It doesn't really involve any sort of real web development prowess, really, but it does require some reasonable know-how with <a title="Firebug" href="http://getfirebug.com/" target="_blank">Firebug</a> (one of my most favorite tools ever).</p>
<p>The test took me about five minutes (four of which was spent on number three), the last minute was spent on the other questions. That's pretty decent in my mind, but who knows how well other people did?</p>
<p>I really like this style of interviewing though, and I think more companies should use it to weed out the riffraff. It does require a lot of creativity on the design end but, I'd imagine, reduces man hours (spent interviewing and processing) like crazy. If I ever hire more developers, I plan to come up with a puzzle test like this.</p>
<p>If you're interested in seeing how you'll do, <a title="Web Ninja Test" href="http://playground.thesedays.com/ninja/" target="_blank">click here to take the web ninja test</a>.</p>
<p>-Scott</p>
]]></content:encoded>
			<wfw:commentRss>http://macdougalmedia.com/2009/12/11/i-am-a-web-ninja/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
