<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>The Wall</title>
	<atom:link href="http://thewallblog.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://thewallblog.wordpress.com</link>
	<description>Yet Another Technology Blog!</description>
	<lastBuildDate>Thu, 18 Sep 2008 23:38:19 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='thewallblog.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>The Wall</title>
		<link>http://thewallblog.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://thewallblog.wordpress.com/osd.xml" title="The Wall" />
	<atom:link rel='hub' href='http://thewallblog.wordpress.com/?pushpress=hub'/>
		<item>
		<title>MacPorts: Getting MySQL5 to launch at startup</title>
		<link>http://thewallblog.wordpress.com/2008/09/18/macports-getting-mysql5-to-launch-at-startup/</link>
		<comments>http://thewallblog.wordpress.com/2008/09/18/macports-getting-mysql5-to-launch-at-startup/#comments</comments>
		<pubDate>Thu, 18 Sep 2008 23:23:33 +0000</pubDate>
		<dc:creator>kvncortez</dc:creator>
				<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://thewallblog.wordpress.com/?p=31</guid>
		<description><![CDATA[So if your like me and forgot to specify the +server argument to the port install command and your stuck starting it up manually everytime you boot your mac, and were to lazy to find out how and/or reinstall the port with the f***ing +server argument, Batman to the rescue!!!! I mean Kevin to the [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=thewallblog.wordpress.com&amp;blog=1528971&amp;post=31&amp;subd=thewallblog&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>So if your like me and forgot to specify the +server argument to the port install command and your stuck starting it up manually everytime you boot your mac, and were to lazy to find out how and/or reinstall the port with the f***ing +server argument, Batman to the rescue!!!! I mean Kevin to the Rescue!</p>
<p>It&#8217;s actually quite easy.</p>
<p>Before we start</p>
<p><strong>$</strong> means <strong>following</strong> text is a <strong>shell (terminal) command</strong>. <strong>Copy</strong> the <strong>text</strong> <strong>after</strong> the &#8216;<strong>$</strong>&#8216; <strong>sign.</strong></p>
<h2><span style="color:#008000;">Step 1: Create Daemon File</span></h2>
<p>$ sudo cp /opt/local/var/macports/software/mysql5/5.0.67_0+server/opt/local/etc/LaunchDaemons/org.macports.mysql5/org.macports.mysql5.plist /System/Library/LaunchDaemons/</p>
<p><span style="color:#000000;"><strong>Skip to <a href="#steptwo">Step two</a> if previous command worked.</strong></span></p>
<p>Save the following text to /System/Library/LaunchDaemons/org.macports.mysql5.plist</p>
<p>$ sudo cat &gt; /System/Library/LaunchDaemons/org.macports.mysql5.plist</p>
<p>Copy and following text in to terminal. All the way down to the line that says &#8220;## STOP COPYING&#8221;</p>
<p><span>$ cat &lt;&lt;END &gt; </span>/System/Library/LaunchDaemons/org.macports.mysql5.plist<span><br />
&lt;?xml version=&#8217;1.0&#8242; encoding=&#8217;UTF-8&#8242;?&gt;<br />
&lt;!DOCTYPE plist PUBLIC -//Apple Computer//DTD PLIST 1.0//EN<br />
http://www.apple.com/DTDs/PropertyList-1.0.dtd &gt;<br />
&lt;plist version=&#8217;1.0&#8242;&gt;<br />
&lt;dict&gt;<br />
&lt;key&gt;Label&lt;/key&gt;&lt;string&gt;org.macports.mysql5&lt;/string&gt;<br />
&lt;key&gt;ProgramArguments&lt;/key&gt;<br />
&lt;array&gt;<br />
&lt;string&gt;/opt/local/bin/daemondo&lt;/string&gt;<br />
&lt;string&gt;&#8211;label=mysql5&lt;/string&gt;<br />
&lt;string&gt;&#8211;start-cmd&lt;/string&gt;<br />
&lt;string&gt;/opt/local/etc/LaunchDaemons/org.macports.mysql5/mysql5.wrapper&lt;/string&gt;<br />
&lt;string&gt;start&lt;/string&gt;<br />
&lt;string&gt;;&lt;/string&gt;<br />
&lt;string&gt;&#8211;stop-cmd&lt;/string&gt;<br />
&lt;string&gt;/opt/local/etc/LaunchDaemons/org.macports.mysql5/mysql5.wrapper&lt;/string&gt;<br />
&lt;string&gt;stop&lt;/string&gt;<br />
&lt;string&gt;;&lt;/string&gt;<br />
&lt;string&gt;&#8211;restart-cmd&lt;/string&gt;<br />
&lt;string&gt;/opt/local/etc/LaunchDaemons/org.macports.mysql5/mysql5.wrapper&lt;/string&gt;<br />
&lt;string&gt;restart&lt;/string&gt;<br />
&lt;string&gt;;&lt;/string&gt;<br />
&lt;string&gt;&#8211;pid=none&lt;/string&gt;<br />
&lt;/array&gt;<br />
&lt;key&gt;Debug&lt;/key&gt;&lt;false/&gt;<br />
&lt;key&gt;Disabled&lt;/key&gt;&lt;true/&gt;<br />
&lt;key&gt;OnDemand&lt;/key&gt;&lt;false/&gt;<br />
&lt;key&gt;RunAtLoad&lt;/key&gt;&lt;false/&gt;<br />
&lt;/dict&gt;<br />
&lt;/plist&gt;<br />
END<br />
## Stop Copying</span></p>
<h2><span style="color:#008000;"><a name="steptwo">Step 2</a>: Start Server and Make it load at system startup</span></h2>
<p>Start server and add to start up Demon</p>
<p>$ sudo launchctl load -w /System/Library/LaunchDaemons/org.macports.mysql5.plist</p>
<h2><span style="color:#008000;">Step 3: Test MySQL Connection</span></h2>
<p>$ mysql<br />
Welcome to the MySQL monitor.  Commands end with ; or \g.<br />
Your MySQL connection id is 1<br />
Server version: 5.0.67 Source distribution<br />
Type &#8216;help;&#8217; or &#8216;\h&#8217; for help. Type &#8216;\c&#8217; to clear the buffer.</p>
<p>mysql&gt;</p>
<p>Thats all there is to it&#8230;</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/thewallblog.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/thewallblog.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/thewallblog.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/thewallblog.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/thewallblog.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/thewallblog.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/thewallblog.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/thewallblog.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/thewallblog.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/thewallblog.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/thewallblog.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/thewallblog.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/thewallblog.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/thewallblog.wordpress.com/31/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=thewallblog.wordpress.com&amp;blog=1528971&amp;post=31&amp;subd=thewallblog&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://thewallblog.wordpress.com/2008/09/18/macports-getting-mysql5-to-launch-at-startup/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c826fe5b24cd772e277a48aed0dca93c?s=96&#38;d=identicon" medium="image">
			<media:title type="html">kvncortez</media:title>
		</media:content>
	</item>
		<item>
		<title>Download of the Week</title>
		<link>http://thewallblog.wordpress.com/2008/09/17/download-of-the-week/</link>
		<comments>http://thewallblog.wordpress.com/2008/09/17/download-of-the-week/#comments</comments>
		<pubDate>Thu, 18 Sep 2008 03:56:39 +0000</pubDate>
		<dc:creator>kvncortez</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[column]]></category>
		<category><![CDATA[macromate]]></category>
		<category><![CDATA[poweruser]]></category>
		<category><![CDATA[rails]]></category>
		<category><![CDATA[text editor]]></category>
		<category><![CDATA[textmate]]></category>
		<category><![CDATA[utility]]></category>

		<guid isPermaLink="false">http://thewallblog.wordpress.com/?p=25</guid>
		<description><![CDATA[Textmate &#8220;The Missing Editor&#8221; OS: Macintosh OSX Application Type: Powerful Text Editor Price: $57 per user license (30 day Trial) Site: MacroMates.com Great for Ruby or in my case Ruby on Rails code development. Downside is the price. Or ask your local pirate. Im still on the 30 day trial, awesome editor.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=thewallblog.wordpress.com&amp;blog=1528971&amp;post=25&amp;subd=thewallblog&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://macromates.com/" target="_blank"><strong>Textmate</strong></a><em><br />
&#8220;The Missing Editor&#8221;</em></p>
<p><a href="http://thewallblog.files.wordpress.com/2008/09/textmate-12-14-07.png"><img class="alignleft size-thumbnail wp-image-26" title="TextMate_icon" src="http://thewallblog.files.wordpress.com/2008/09/textmate-12-14-07.png?w=96&#038;h=96" alt="" width="96" height="96" /></a><strong> OS:</strong> Macintosh OSX<br />
<strong>Application Type:</strong> Powerful Text Editor<br />
<strong>Price: </strong>$57 per user license (30 day Trial)<br />
<strong>Site: </strong><a href="http://macromates.com/" target="_blank">MacroMates.com<br />
</a></p>
<p>Great for Ruby or in my case Ruby on Rails code development. Downside is the price. Or ask your local pirate. Im still on the 30 day trial, awesome editor.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/thewallblog.wordpress.com/25/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/thewallblog.wordpress.com/25/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/thewallblog.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/thewallblog.wordpress.com/25/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/thewallblog.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/thewallblog.wordpress.com/25/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/thewallblog.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/thewallblog.wordpress.com/25/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/thewallblog.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/thewallblog.wordpress.com/25/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/thewallblog.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/thewallblog.wordpress.com/25/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/thewallblog.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/thewallblog.wordpress.com/25/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/thewallblog.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/thewallblog.wordpress.com/25/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=thewallblog.wordpress.com&amp;blog=1528971&amp;post=25&amp;subd=thewallblog&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://thewallblog.wordpress.com/2008/09/17/download-of-the-week/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c826fe5b24cd772e277a48aed0dca93c?s=96&#38;d=identicon" medium="image">
			<media:title type="html">kvncortez</media:title>
		</media:content>

		<media:content url="http://thewallblog.files.wordpress.com/2008/09/textmate-12-14-07.png?w=96" medium="image">
			<media:title type="html">TextMate_icon</media:title>
		</media:content>
	</item>
		<item>
		<title>OSX Firefox 3: Restoring Favicons in Bookmark Toolbar</title>
		<link>http://thewallblog.wordpress.com/2008/09/14/osx-firefox-3-restoring-favicons-in-bookmark-toolbar/</link>
		<comments>http://thewallblog.wordpress.com/2008/09/14/osx-firefox-3-restoring-favicons-in-bookmark-toolbar/#comments</comments>
		<pubDate>Mon, 15 Sep 2008 02:47:30 +0000</pubDate>
		<dc:creator>kvncortez</dc:creator>
				<category><![CDATA[OSX]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[bookmark]]></category>
		<category><![CDATA[browser]]></category>
		<category><![CDATA[favicon]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[fix]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[mac]]></category>
		<category><![CDATA[toolbar]]></category>
		<category><![CDATA[workaround]]></category>

		<guid isPermaLink="false">http://thewallblog.wordpress.com/?p=17</guid>
		<description><![CDATA[I installed Firefox 3, the other day on my new Macbook Pro, and to my horror I noticed the bookmark toolbar doesn&#8217;t display favicons next to the bookmark label. So after some Google searches I found a nice workaround to fix this cosmetic problem. So if your OCD&#8217;ing on little features like this as I [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=thewallblog.wordpress.com&amp;blog=1528971&amp;post=17&amp;subd=thewallblog&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I installed <a href="http://www.mozilla.com/en-US/firefox/" target="_blank">Firefox 3</a>, the other day on my new <a onclick="return mugicPopWin(this,event);" oncontextmenu="mugicRightClick(this);" href="http://www.apple.com" target="_blank">Macbook Pro</a>, and to my horror I noticed the bookmark toolbar doesn&#8217;t display favicons next to the bookmark label. So after some <a href="http://www.google.com">Google</a> searches I found a nice workaround to fix this cosmetic problem.</p>
<p>So if your OCD&#8217;ing on little features like this as I was here&#8217;s how to restore this functionality using some nifty extensions.</p>
<div id="attachment_22" class="wp-caption alignnone" style="width: 448px"><a href="http://thewallblog.files.wordpress.com/2008/09/toolbar_before1.gif"><img class="size-full wp-image-22" title="toolbar_before1" src="http://thewallblog.files.wordpress.com/2008/09/toolbar_before1.gif?w=438&#038;h=22" alt="Before" width="438" height="22" /></a><p class="wp-caption-text">Before</p></div>
<p><strong>Step 1:</strong> Install <a href="https://addons.mozilla.org/en-US/firefox/addon/2108" target="_blank">Stylish Firefox Extension</a>.<br />
<a href="https://addons.mozilla.org/en-US/firefox/addon/2108" target="_blank"></a></p>
<p><a href="https://addons.mozilla.org/en-US/firefox/addon/2108" target="_blank">Stylish</a> &#8220;is is to <strong>CSS</strong> what <a href="https://addons.mozilla.org/en-US/firefox/addon/748" target="_blank">Greasemonkey</a> is to <strong>JavaScript</strong>&#8220;. It allows you to create CSS stylesheets to change the look of a website or in this case the Browser.</p>
<p><strong>Step 2:</strong> Load <a href="http://userstyles.org/styles/5969" target="_blank">Mac bookmark toolbar favicons</a> style in to <a href="https://addons.mozilla.org/en-US/firefox/addon/2108" target="_blank">Stylish</a>.</p>
<p>Click the above link or go to <a href="http://userstyles.org/styles/5969">http://userstyles.org/styles/5969</a> and click the button &#8220;<strong>Load into Stylish</strong>&#8221; then in the dialog the pops up <strong>Press &#8220;Save&#8221;</strong>. Now in the bookmark toolbar you should have favicons next to the bookmark names.</p>
<div id="attachment_18" class="wp-caption alignnone" style="width: 577px"><a href="http://thewallblog.files.wordpress.com/2008/09/toolbar_after.gif"><img class="size-full wp-image-18" title="toolbar_after" src="http://thewallblog.files.wordpress.com/2008/09/toolbar_after.gif?w=567&#038;h=27" alt="After" width="567" height="27" /></a><p class="wp-caption-text">After</p></div>
<p><em><br />
Enjoy!</em></p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/thewallblog.wordpress.com/17/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/thewallblog.wordpress.com/17/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/thewallblog.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/thewallblog.wordpress.com/17/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/thewallblog.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/thewallblog.wordpress.com/17/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/thewallblog.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/thewallblog.wordpress.com/17/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/thewallblog.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/thewallblog.wordpress.com/17/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/thewallblog.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/thewallblog.wordpress.com/17/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/thewallblog.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/thewallblog.wordpress.com/17/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/thewallblog.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/thewallblog.wordpress.com/17/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=thewallblog.wordpress.com&amp;blog=1528971&amp;post=17&amp;subd=thewallblog&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://thewallblog.wordpress.com/2008/09/14/osx-firefox-3-restoring-favicons-in-bookmark-toolbar/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c826fe5b24cd772e277a48aed0dca93c?s=96&#38;d=identicon" medium="image">
			<media:title type="html">kvncortez</media:title>
		</media:content>

		<media:content url="http://thewallblog.files.wordpress.com/2008/09/toolbar_before1.gif" medium="image">
			<media:title type="html">toolbar_before1</media:title>
		</media:content>

		<media:content url="http://thewallblog.files.wordpress.com/2008/09/toolbar_after.gif" medium="image">
			<media:title type="html">toolbar_after</media:title>
		</media:content>
	</item>
		<item>
		<title>New System!</title>
		<link>http://thewallblog.wordpress.com/2007/11/25/new-system/</link>
		<comments>http://thewallblog.wordpress.com/2007/11/25/new-system/#comments</comments>
		<pubDate>Mon, 26 Nov 2007 00:03:49 +0000</pubDate>
		<dc:creator>kvncortez</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[computer]]></category>
		<category><![CDATA[gaming]]></category>
		<category><![CDATA[pc]]></category>
		<category><![CDATA[specs]]></category>
		<category><![CDATA[system]]></category>

		<guid isPermaLink="false">http://thewallblog.wordpress.com/2007/11/25/new-system/</guid>
		<description><![CDATA[I built a new system the other day. Huge upgrade from my previous set up. ASUS M2 &#8220;Crosshair&#8221; Motherboard AMD Athlon 64 x2 DualCore Processor 6000 AM2 eVGA Nvidia 8800 GTS (went for the budget model vs the GTX) Corsair DDR2-800 Dual 1 gig (2gb total) Ram Sound Blaster X-Fi XtremeGamer Fatal1ty Professional Series 7.1 [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=thewallblog.wordpress.com&amp;blog=1528971&amp;post=13&amp;subd=thewallblog&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I built a new system the other day. Huge upgrade from my previous set up.</p>
<p><a href="http://www.newegg.com/Product/Product.aspx?Item=N82E16813131593" target="_blank">ASUS M2 &#8220;Crosshair&#8221; Motherboard<br />
</a><a onclick="return mugicPopWin(this,event);" oncontextmenu="mugicRightClick(this);" href="http://www.newegg.com/Product/Product.aspx?Item=N82E16819103773" target="_blank">AMD Athlon 64 x2 DualCore Processor 6000 AM2</a><br />
<a onclick="return mugicPopWin(this,event);" oncontextmenu="mugicRightClick(this);" href="http://www.newegg.com/Product/Product.aspx?Item=N82E16814130080" target="_blank">eVGA Nvidia 8800 GTS</a> (went for the budget model vs  the GTX)<br />
<a onclick="return mugicPopWin(this,event);" oncontextmenu="mugicRightClick(this);" href="http://www.newegg.com/Product/Product.aspx?Item=N82E16820145034" target="_blank">Corsair DDR2-800 Dual 1 gig (2gb total) Ram</a><br />
<a onclick="return mugicPopWin(this,event);" oncontextmenu="mugicRightClick(this);" href="http://www.newegg.com/Product/Product.aspx?Item=N82E16829102005" target="_blank">Sound Blaster X-Fi XtremeGamer Fatal1ty Professional Series 7.1 Sound Card</a><br />
<a onclick="return mugicPopWin(this,event);" oncontextmenu="mugicRightClick(this);" href="http://www.newegg.com/Product/Product.aspx?Item=N82E16836121012" target="_blank">Logitech G51 5.1 Surround Sound Speakers</a><br />
<a onclick="return mugicPopWin(this,event);" oncontextmenu="mugicRightClick(this);" href="http://www.newegg.com/Product/Product.aspx?Item=N82E16826104076" target="_blank">Logitech G5 Gaming Mouse</a></p>
<p>I&#8217;m really liking the setup, it outperforms my old system by far.  I&#8217;ll post benchmarks when I get around to it.</p>
<p><a href="http://thewallblog.files.wordpress.com/2007/11/pc_large.jpg" title="Picture of new System"><img src="http://thewallblog.files.wordpress.com/2007/11/pc_large.thumbnail.jpg?w=450" alt="Picture of new System" /></a></p>
<p>Kevin</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/thewallblog.wordpress.com/13/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/thewallblog.wordpress.com/13/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/thewallblog.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/thewallblog.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/thewallblog.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/thewallblog.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/thewallblog.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/thewallblog.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/thewallblog.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/thewallblog.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/thewallblog.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/thewallblog.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/thewallblog.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/thewallblog.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/thewallblog.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/thewallblog.wordpress.com/13/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=thewallblog.wordpress.com&amp;blog=1528971&amp;post=13&amp;subd=thewallblog&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://thewallblog.wordpress.com/2007/11/25/new-system/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c826fe5b24cd772e277a48aed0dca93c?s=96&#38;d=identicon" medium="image">
			<media:title type="html">kvncortez</media:title>
		</media:content>

		<media:content url="http://thewallblog.files.wordpress.com/2007/11/pc_large.thumbnail.jpg" medium="image">
			<media:title type="html">Picture of new System</media:title>
		</media:content>
	</item>
		<item>
		<title>Recommended OSX Applications</title>
		<link>http://thewallblog.wordpress.com/2007/08/22/recommended-osx-applications/</link>
		<comments>http://thewallblog.wordpress.com/2007/08/22/recommended-osx-applications/#comments</comments>
		<pubDate>Wed, 22 Aug 2007 23:22:08 +0000</pubDate>
		<dc:creator>kvncortez</dc:creator>
				<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://thewallblog.wordpress.com/2007/08/22/recommended-osx-applications/</guid>
		<description><![CDATA[These are some mac applications which I find useful. Quicksilver &#8211; Extremely powerful application launcher Transmission &#8211; Lightweight bittorent client which suppors multiple downloads, and very simple interface. xPad &#8211; WYSIWYG Notepad which supports categories, spell checking, and many other features. iGTD - Personal Organizer based on the concepts introduced in the book &#8220;Getting Things [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=thewallblog.wordpress.com&amp;blog=1528971&amp;post=12&amp;subd=thewallblog&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>These are some mac applications which I find useful.</p>
<ul>
<li><a href="http://quicksilver.blacktree.com/" target="_blank">Quicksilver</a> &#8211; Extremely powerful application launcher</li>
<li><a href="http://transmission.m0k.org/" target="_blank">Transmission</a> &#8211; Lightweight bittorent client which suppors multiple downloads, and very simple interface.</li>
<li><a href="http://getxpad.com/" target="_blank">xPad</a> &#8211; WYSIWYG Notepad which supports categories, spell checking, and many other features.</li>
<li><a href="http://bargiel.home.pl/iGTD/" target="_blank">iGTD </a>- Personal Organizer based on the concepts introduced in the book <em><span class="sans">&#8220;Getting Things Done: The Art of Stress-Free Productivity&#8221; </span></em><span class="sans">by David Allen.</span></li>
<li><span class="sans"></span><a href="http://www.newsgator.com/Individuals/NetNewsWire/Default.aspx" target="_blank">NetNewsWire</a> &#8211; Award winning RSS/Atom news aggregator. ($29.95 for Full version. Free &#8220;lite&#8221; version).</li>
<li><a href="http://desktopmanager.berlios.de/">DesktopManager</a> &#8211; Virtual desktop support, has features such as menubar pager, transition effects, and uses very little memory.</li>
<li><a href="http://www.titanium.free.fr/pgs2/english/deeper.html" target="_blank">Deeper</a> &#8211; &#8220;Deeper allows you to enable and disable the hidden functions of Finder, Dock, Dashboard, Exposé, Safari, Login window and many Apple&#8217;s applications.&#8221;</li>
<li><a href="http://getdockables.com/" target="_blank">Dockables</a> &#8211; Add executables for various system events. (Sleep, Screensaver, Shutdown, Reboot, etc)</li>
</ul>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/thewallblog.wordpress.com/12/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/thewallblog.wordpress.com/12/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/thewallblog.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/thewallblog.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/thewallblog.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/thewallblog.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/thewallblog.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/thewallblog.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/thewallblog.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/thewallblog.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/thewallblog.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/thewallblog.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/thewallblog.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/thewallblog.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/thewallblog.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/thewallblog.wordpress.com/12/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=thewallblog.wordpress.com&amp;blog=1528971&amp;post=12&amp;subd=thewallblog&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://thewallblog.wordpress.com/2007/08/22/recommended-osx-applications/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c826fe5b24cd772e277a48aed0dca93c?s=96&#38;d=identicon" medium="image">
			<media:title type="html">kvncortez</media:title>
		</media:content>
	</item>
		<item>
		<title>Adventures with PGP</title>
		<link>http://thewallblog.wordpress.com/2007/08/15/adventures-with-pgp/</link>
		<comments>http://thewallblog.wordpress.com/2007/08/15/adventures-with-pgp/#comments</comments>
		<pubDate>Wed, 15 Aug 2007 22:49:39 +0000</pubDate>
		<dc:creator>kvncortez</dc:creator>
				<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://thewallblog.wordpress.com/2007/08/15/adventures-with-pgp/</guid>
		<description><![CDATA[Over the weekend I read up on PGP (Pretty Good Privacy). It &#8220;is a computer program that provides cryptographic privacy and authentication&#8221; (Wikipedia). Heres a colection of links which A helped me out, and I think it will help you out if you decide to start using PGP. General Links: GPG: The Best Free Crypto [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=thewallblog.wordpress.com&amp;blog=1528971&amp;post=6&amp;subd=thewallblog&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Over the weekend I read up on PGP (Pretty Good Privacy). It &#8220;is a computer program that provides cryptographic privacy and authentication&#8221; (Wikipedia).</p>
<p>Heres a co<img src="http://thewallblog.files.wordpress.com/2007/08/gnutls2small.jpg?w=116&#038;h=115" align="right" border="0" height="115" hspace="0" vspace="0" width="116" />lection of links which A helped me out, and I think it will help you out if you decide to start using PGP.</p>
<p><strong>General Links:</strong></p>
<p><a href="http://www.linuxjournal.com/article/4828">GPG: The Best Free Crypto You Aren&#8217;t Using, Part I of II</a><br />
<a href="http://www.linuxjournal.com/article/4892">GPG: The Best Free Crypto You Aren&#8217;t Using, Part II of II</a></p>
<p><strong>Thunderbird Extensions:</strong></p>
<p><a href="https://addons.mozilla.org/en-US/thunderbird/addon/71">Enigmail: Add-On which integrates GnuPG in to Thunderbird.</a><br />
&#8220;Enigmail adds OpenPGP message encryption and authentication to your email client. It features automatic encryption, decryption and integrated key management functionality. Enigmail requires GnuPG (www.gnupg.org) for the cryptographic functions. Note: GnuPG is not part of the installation.&#8221;</p>
<p><strong>Firefox Extensions:</strong></p>
<p><a href="http://firegpg.tuxfamily.org/?page=home&amp;lang=en">FireGPG: Use GPG easily in Firefox</a><br />
&#8220;FireGPG is a Firefox extension under GPL which brings an interface to encrypt, decrypt, sign or verify the signature of text in any web page using GnuPG.&#8221;</p>
<p><strong>My PGP Public Key:</strong></p>
<p>&#8212;&#8211;BEGIN PGP PUBLIC KEY BLOCK&#8212;&#8211;<br />
Version: PGP Key Server 0.9.6</p>
<p>mQGiBEa+ObcRBADVTe1YpZBrStPGBf5ZzGgqcxguwq6ySKNbPHUuonmDcakewV8H<br />
sm983kcM+wEMxySU8ID1pUBAdofO03qt3/e+cFUCtM80MO8LymIEwpXtrnnIe4ay<br />
Yc0CgQVdgOTe9LCwST94Mqefo6DxbLn9FnenyfAF94Oj3JbfdlXm4AiyawCgmjI0<br />
n8FxDUaexvqki3iB1CM1K9UD/3QdZ1Coc+/wgRBSOVAKDKMJax6nDSGAh4YM9Cpr<br />
whHU4ws+SUA8b1lduKN7Wd+UC4SaOTDDsJBW3ceMTQV1M5nM2grgztcHSc7rbjEX<br />
XE2FoSjRXzc6K2QXY09SooNqLtbBPI46kctGnbJuX0Tad9ixwGZTVd2sBbODECNo<br />
WRxrA/9X3vD7N0kY3PEOD3wLuVGNuJ2IC5WL/b6FinVhSl5HeKmge7mja4Eo7I8C<br />
+BL7M5q7xvnS8/+2sPqrZck9dE/h92HvZYwMrZ7pQLD80vDC4Z1L/NcT4x6aDw/b<br />
R5O8sjIQsFUA8UhhMijTU134zQy2i+4WSvB68NcZia8hx6j/CrQiS2V2aW4gQ29y<br />
dGV6IDxrdm5jb3J0ZXpAZ21haWwuY29tPohgBBMRAgAgBQJGvjm3AhsDBgsJCAcD<br />
AgQVAggDBBYCAwECHgECF4AACgkQ2yf8gTm+cAsFkwCeIZyIF9dxu72U81nafhac<br />
0u6sgXwAnjSu5S3SGzRK09ngeFH48A1oUKhnuQENBEa+ObcQBADUV/6+HbyqFLXO<br />
ftmmtWdL+m7WMAAqHuQJwJo/Ht8PerbPcMdaXY2HeA7kEvxBOIJ3m/Oowoeo5xT7<br />
l1Q70bb9IN4GDxFuO43AOrlJjJRvunWMisxaG0qvQQxx/JYg88FdHF7RqTWWmyBp<br />
pfREp97eOaBWTcnAsVpzFCJZqaTs5wADBQQAwC4vKJzRkxMlrs+BwLin34d6poXa<br />
PlN/kjYWwWbW/yko5oXbP5w2v3LKpsF3c/eFj4cbNSYDm9jqw1Qru4j+byvZUKSI<br />
D3RDz1MaZoX6nZ1mklHxZ05RtaKrDckKPadsn8nORYYCH1mYitPdQwJyGIy3Cvy5<br />
E/3/JlBYNpra9PSISQQYEQIACQUCRr45twIbDAAKCRDbJ/yBOb5wC5w3AJ4useoJ<br />
gdcGa+0RIxR6/++YvGxeEwCfXTAYIn8Ui1DKqYZWKSK/xohRYCs=<br />
=qv7v<br />
&#8212;&#8211;END PGP PUBLIC KEY BLOCK&#8212;&#8211;</p>
<p>-Kevin</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/thewallblog.wordpress.com/6/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/thewallblog.wordpress.com/6/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/thewallblog.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/thewallblog.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/thewallblog.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/thewallblog.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/thewallblog.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/thewallblog.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/thewallblog.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/thewallblog.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/thewallblog.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/thewallblog.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/thewallblog.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/thewallblog.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/thewallblog.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/thewallblog.wordpress.com/6/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=thewallblog.wordpress.com&amp;blog=1528971&amp;post=6&amp;subd=thewallblog&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://thewallblog.wordpress.com/2007/08/15/adventures-with-pgp/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c826fe5b24cd772e277a48aed0dca93c?s=96&#38;d=identicon" medium="image">
			<media:title type="html">kvncortez</media:title>
		</media:content>

		<media:content url="http://thewallblog.files.wordpress.com/2007/08/gnutls2small.jpg" medium="image" />
	</item>
		<item>
		<title>PAP2-NA Working with Gizmo!</title>
		<link>http://thewallblog.wordpress.com/2007/08/15/pap2-na-working-with-gizmo/</link>
		<comments>http://thewallblog.wordpress.com/2007/08/15/pap2-na-working-with-gizmo/#comments</comments>
		<pubDate>Wed, 15 Aug 2007 22:45:32 +0000</pubDate>
		<dc:creator>kvncortez</dc:creator>
				<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://thewallblog.wordpress.com/2007/08/15/pap2-na-working-with-gizmo/</guid>
		<description><![CDATA[Picked up a Linksys PAP2-NA on ebay the other week, got the phone in the mail yesterday. Wasn&#8217;t expecting that I would have much luck but I was wrong. Very easy to set up with GizmoProject, http://gizmoproject.com a softphone based service, similar to skype. The settings used to get PAP2 going with Gizmo were: In [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=thewallblog.wordpress.com&amp;blog=1528971&amp;post=4&amp;subd=thewallblog&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><img src="http://thewallblog.files.wordpress.com/2007/08/linksys_pap2.jpg?w=177&#038;h=177" alt="PAP2-NA" align="right" border="0" height="177" hspace="0" vspace="0" width="177" />Picked up a <a onclick="return mugicPopWin(this,event);" oncontextmenu="mugicRightClick(this);" href="http://search.ebay.com/search/search.dll?&amp;satitle=linksys+pap2-na">Linksys PAP2-NA on ebay</a> the other week, got the phone in the mail yesterday. Wasn&#8217;t expecting that I would have much luck but I was wrong. Very easy to set up with GizmoProject, <a href="http://gizmoproject.com/">http://gizmoproject.com</a> a softphone based service, similar to skype.</p>
<p>The settings used to get PAP2 going with <a href="http://gizmoproject.com" title="Gizmo" target="_blank">Gizmo</a> were:<br />
In admin view, under the tab Line 1 (or whatever line you decide to use)</p>
<p><em>Under &#8220;SIP&#8221; Tab</em></p>
<p><strong>Stun Enable: </strong>yes<br />
<strong>Stun Server: </strong>stun01.siphone.com</p>
<p><em>Under &#8220;Line 1&#8243; Tab</em></p>
<p><span style="font-weight:bold;">Proxy:</span> proxy01.sipphone.com<br />
<strong>Outbound Proxy: </strong>proxy01.siphone.com<br />
<span style="font-weight:bold;">Display Name:</span> [whatever you want to show up on caller id?)<br />
<span style="font-weight:bold;">User ID:</span> [GizmoProject Username]<br />
<span style="font-weight:bold;">Password:</span> [GizmoProject Password]<br />
<strong><a href="http://www.netphonedirectory.com/pap2_dialplan.htm">Dial Plan</a>:<br />
</strong>*xxT|*1xx|[39]11|&lt;411:18315551212&gt;S0|&lt;:1831&gt;[2-9]xxxxxxS0|1xxx[2-9]xxxxxx|[2-9]xxxxxxT|[2-9]xxxxxxxxx|011x.T<br />
<span style="font-weight:bold;">Save!</span></p>
<p>I got a regular phone plugged in to the PAP2 everything that is in a standard phone line is basically there. Caller ID Dispaly, Call Waiting, 3 Way Calling. On the other hand some differences which are kind of annoying. Instead of being routed to a &#8217;411&#8242; call center or any local 411 service you land up calling <a href="http://www.tellme.com/">tellme</a>. Which serves nothing similar to &#8217;411&#8242;. I&#8217;m unsure of how &#8217;911&#8242; is handled, and hopefully they came up with some better solution than tellme. Other than that, call quality is equal to standard telephone line but a lot cheaper!</p>
<p>Kevin</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/thewallblog.wordpress.com/4/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/thewallblog.wordpress.com/4/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/thewallblog.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/thewallblog.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/thewallblog.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/thewallblog.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/thewallblog.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/thewallblog.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/thewallblog.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/thewallblog.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/thewallblog.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/thewallblog.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/thewallblog.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/thewallblog.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/thewallblog.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/thewallblog.wordpress.com/4/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=thewallblog.wordpress.com&amp;blog=1528971&amp;post=4&amp;subd=thewallblog&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://thewallblog.wordpress.com/2007/08/15/pap2-na-working-with-gizmo/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c826fe5b24cd772e277a48aed0dca93c?s=96&#38;d=identicon" medium="image">
			<media:title type="html">kvncortez</media:title>
		</media:content>

		<media:content url="http://thewallblog.files.wordpress.com/2007/08/linksys_pap2.jpg" medium="image">
			<media:title type="html">PAP2-NA</media:title>
		</media:content>
	</item>
	</channel>
</rss>
