<?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>andr3w.net &#187; site updates</title>
	<atom:link href="http://andr3w.net/category/site-updates/feed/" rel="self" type="application/rss+xml" />
	<link>http://andr3w.net</link>
	<description>amateur web development...</description>
	<lastBuildDate>Fri, 20 Aug 2010 21:08:03 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Search Field Text Without a Submit Button</title>
		<link>http://andr3w.net/2010/03/search-field-text-without-a-submit-button/</link>
		<comments>http://andr3w.net/2010/03/search-field-text-without-a-submit-button/#comments</comments>
		<pubDate>Fri, 19 Mar 2010 17:34:25 +0000</pubDate>
		<dc:creator>Andrew</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[site updates]]></category>
		<category><![CDATA[example]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[tips]]></category>

		<guid isPermaLink="false">http://andr3w.net/?p=185</guid>
		<description><![CDATA[If you are trying to implement a search field in your website but do not plan on having a submit button (relying on the user to click enter), you&#8217;re going to want to put instructions somewhere. In my case, I decided to populate the box it self with the words &#8220;Type and press enter to [...]]]></description>
			<content:encoded><![CDATA[<p>If you are trying to implement a search field in your website but do not plan on having a submit button (relying on the user to click enter), you&#8217;re going to want to put instructions somewhere.</p>
<p>In my case, I decided to populate the box it self with the words &#8220;Type and press enter to search&#8221;.</p>
<div class="codecolorer-container html4strict default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;font: normal 12px/1.4em Monaco, Lucida Console, monospace;"><div>1<br /></div></td><td><div class="html4strict codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #009900;">&lt;<a href="http://december.com/html/4/element/input.html"><span style="color: #000000; font-weight: bold;">input</span></a> <span style="color: #000066;">type</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;text&quot;</span> <span style="color: #000066;">name</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;q&quot;</span> <span style="color: #000066;">value</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;Type and press enter to search.&quot;</span> <span style="color: #000066;">id</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;searchfield&quot;</span> <span style="color: #66cc66;">/</span>&gt;</span></div></td></tr></tbody></table></div>
<p>Unfortunately, this left the user with the task of manually deleting the text in the box before searching. Adding a tiny bit of javascript to your HTML element will automatically remove the text when the user clicks on it <em>and</em> if the user doesn&#8217;t enter anything it will add the text back when the user clicks away.</p>
<div class="codecolorer-container html4strict default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;font: normal 12px/1.4em Monaco, Lucida Console, monospace;"><div>1<br />2<br />3<br /></div></td><td><div class="html4strict codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #009900;">&lt;<a href="http://december.com/html/4/element/input.html"><span style="color: #000000; font-weight: bold;">input</span></a> <span style="color: #000066;">type</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;text&quot;</span> <span style="color: #000066;">name</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;q&quot;</span> <span style="color: #000066;">value</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;Type and press enter to search.&quot;</span> <span style="color: #000066;">id</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;searchfield&quot;</span> </span><br />
<span style="color: #009900;"><span style="color: #000066;">onfocus</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;if ( this.value=='Type and press enter to search.' ) { this.value = ''; }&quot;</span></span><br />
<span style="color: #009900;"><span style="color: #000066;">onblur</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;if ( this.value=='' ) { this.value = 'Type and press enter to search.'; }&quot;</span> <span style="color: #66cc66;">/</span>&gt;</span></div></td></tr></tbody></table></div>
<p>Hopefully it works for you all, I have only tested it in Firefox and Safari on a Mac.</p>
]]></content:encoded>
			<wfw:commentRss>http://andr3w.net/2010/03/search-field-text-without-a-submit-button/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Hashtag and Username Linking in Twitter Apps</title>
		<link>http://andr3w.net/2009/05/hashtag-and-username-linking-in-twitter-apps/</link>
		<comments>http://andr3w.net/2009/05/hashtag-and-username-linking-in-twitter-apps/#comments</comments>
		<pubDate>Tue, 12 May 2009 23:44:50 +0000</pubDate>
		<dc:creator>Andrew</dc:creator>
				<category><![CDATA[site updates]]></category>
		<category><![CDATA[amdavidson.me]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[snippet]]></category>
		<category><![CDATA[twitter]]></category>

		<guid isPermaLink="false">http://andr3w.net/?p=151</guid>
		<description><![CDATA[Are you trying to add automatic hashtag and username hot linking in your PHP twitter app? I just tried to do this with my amdavidson.me lifestreaming site. It&#8217;s just two nested regular expressions. If there&#8217;s some problem with nested preg_replace functions, or if any regular expression geniuses have better ideas, feel free to comment. But [...]]]></description>
			<content:encoded><![CDATA[<p>Are you trying to add automatic <a href="http://hashtags.org">hashtag</a> and username hot linking in your PHP twitter app?</p>
<p>I just tried to do this with my <a href="http://amdavidson.me">amdavidson.me</a> lifestreaming site. It&#8217;s just two nested regular expressions. If there&#8217;s some problem with nested preg_replace functions, or if any regular expression geniuses have better ideas, feel free to comment.</p>
<p>But if not, here&#8217;s a little code for you, should make things super easy. It assumes your tweet variable is $tweet, replace with whatever you&#8217;d need.</p>
<div class="codecolorer-container php default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;font: normal 12px/1.4em Monaco, Lucida Console, monospace;"><div>1<br />2<br />3<br />4<br />5<br /></div></td><td><div class="php codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #b1b100;">echo</span> <a href="http://www.php.net/preg_replace"><span style="color: #990000;">preg_replace</span></a><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'/\#([a-zA-Z0-9_]{1,15})?/'</span><span style="color: #339933;">,</span> <br />
<span style="color: #0000ff;">&quot;&lt;a href=<span style="color: #000099; font-weight: bold;">\&quot;</span>http://hashtags.org/tag/<span style="color: #006699; font-weight: bold;">$1</span><span style="color: #000099; font-weight: bold;">\&quot;</span>&gt;#<span style="color: #006699; font-weight: bold;">$1</span>&lt;/a&gt;&quot;</span><span style="color: #339933;">,</span> <br />
<a href="http://www.php.net/preg_replace"><span style="color: #990000;">preg_replace</span></a><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'/\@([a-zA-Z0-9_]{1,15})?/'</span><span style="color: #339933;">,</span> <br />
<span style="color: #0000ff;">&quot;&lt;a href=<span style="color: #000099; font-weight: bold;">\&quot;</span>http://twitter.com/<span style="color: #006699; font-weight: bold;">$1</span><span style="color: #000099; font-weight: bold;">\&quot;</span>&gt;@<span style="color: #006699; font-weight: bold;">$1</span>&lt;/a&gt;&quot;</span><span style="color: #339933;">,</span> <br />
<span style="color: #000088;">$tweet</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></div></td></tr></tbody></table></div>
]]></content:encoded>
			<wfw:commentRss>http://andr3w.net/2009/05/hashtag-and-username-linking-in-twitter-apps/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Minimalism Revisited</title>
		<link>http://andr3w.net/2009/05/minimalism-revisited/</link>
		<comments>http://andr3w.net/2009/05/minimalism-revisited/#comments</comments>
		<pubDate>Tue, 05 May 2009 01:45:12 +0000</pubDate>
		<dc:creator>Andrew</dc:creator>
				<category><![CDATA[design]]></category>
		<category><![CDATA[site updates]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[blogging]]></category>
		<category><![CDATA[gpl]]></category>
		<category><![CDATA[minimalism]]></category>
		<category><![CDATA[theme]]></category>

		<guid isPermaLink="false">http://andr3w.net/?p=135</guid>
		<description><![CDATA[Well, this site just got more tweaking today to make the theme feel a bit more &#8220;andr3w&#8221;. I&#8217;m pretty comfortable with it now, it will certainly still change, but I don&#8217;t think it will be all that much. The theme that I based my theme on is called Minimalism and it was done by Christian [...]]]></description>
			<content:encoded><![CDATA[<p>Well, this site just got more tweaking today to make the theme feel a bit more &#8220;andr3w&#8221;. I&#8217;m pretty comfortable with it now, it will certainly still change, but I don&#8217;t think it will be all that much.</p>
<p>The theme that I based my theme on is called <a href="http://www.genaehr.com/minimalism/">Minimalism</a> and it was done by <a href="http://www.genaehr.com/">Christian Geneahr</a>. In turn it was based on the classic <a href="http://binarybonsai.com/wordpress/kubrick/">Kubrick</a>, a theme so widely used and appreciated, I would call it the &#8220;Pappy&#8221; of all WordPress themes.</p>
<p>With Kubrick&#8217;s fine lineage, Christian was able to make quite a nice minimalist theme. It just needed a couple more refinements for me to feel totally comfortable with it and now that my changes are somewhat stable, it&#8217;s time for me to do my GPL duty.</p>
<p>So, without further adieu: <a href="http://andr3w.net/minimalism-revisited/">Minimalism-Revisited</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://andr3w.net/2009/05/minimalism-revisited/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sweetcron Stream Updating Cron Job</title>
		<link>http://andr3w.net/2009/04/sweetcron-stream-updating-cron-job/</link>
		<comments>http://andr3w.net/2009/04/sweetcron-stream-updating-cron-job/#comments</comments>
		<pubDate>Tue, 21 Apr 2009 02:04:49 +0000</pubDate>
		<dc:creator>Andrew</dc:creator>
				<category><![CDATA[site updates]]></category>
		<category><![CDATA[amdavidson.me]]></category>
		<category><![CDATA[host]]></category>
		<category><![CDATA[lifestream]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[sweetcron]]></category>
		<category><![CDATA[system]]></category>

		<guid isPermaLink="false">http://andr3w.net/?p=114</guid>
		<description><![CDATA[So the Sweetcron documentation isn&#8217;t altogether clear on what you should put in cron for it to update automatically, rather than slowing down a user every 30 minutes. It&#8217;s fairly intuitive, but for those missing this logical step, do the following. Change the setting in the admin panel from psuedo-cron to true-cron, and take note [...]]]></description>
			<content:encoded><![CDATA[<p>So the Sweetcron documentation isn&#8217;t altogether clear on what you should put in cron for it to update automatically, rather than slowing down a user every 30 minutes.</p>
<p>It&#8217;s fairly intuitive, but for those missing this logical step, do the following.</p>
<p>Change the setting in the admin panel from psuedo-cron to true-cron, and take note of the URL.</p>
<p>Then put the following in your crontab file (easily accessed with &#8216;crontab -e&#8217; on a debian machine):</p>
<div class="codecolorer-container text default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;font: normal 12px/1.4em Monaco, Lucida Console, monospace;"><div>1<br /></div></td><td><div class="text codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">*/5 * * * * curl http://your/true-cron/url</div></td></tr></tbody></table></div>
<p>You can change the 5 to be the number of minutes between updates that you want, and you&#8217;ll definitely want to change the URL to the one listed in your Sweetcron&#8217;s admin page.</p>
]]></content:encoded>
			<wfw:commentRss>http://andr3w.net/2009/04/sweetcron-stream-updating-cron-job/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Site Redesign</title>
		<link>http://andr3w.net/2009/04/site-redesign/</link>
		<comments>http://andr3w.net/2009/04/site-redesign/#comments</comments>
		<pubDate>Tue, 14 Apr 2009 00:53:26 +0000</pubDate>
		<dc:creator>Andrew</dc:creator>
				<category><![CDATA[design]]></category>
		<category><![CDATA[site updates]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[site]]></category>
		<category><![CDATA[theme]]></category>
		<category><![CDATA[update]]></category>

		<guid isPermaLink="false">http://andr3w.net/?p=103</guid>
		<description><![CDATA[Changed up the site a little. More to come, wanna try my hand at making the typography interesting. I just thought the old design was a little over done, so thanks to the awesome theming capability of WordPress&#8230; Here&#8217;s a new one.]]></description>
			<content:encoded><![CDATA[<p>Changed up the site a little. More to come, wanna try my hand at making the typography interesting.</p>
<p>I just thought the old design was a little over done, so thanks to the awesome theming capability of WordPress&#8230; Here&#8217;s a new one.</p>
]]></content:encoded>
			<wfw:commentRss>http://andr3w.net/2009/04/site-redesign/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Bad HTML</title>
		<link>http://andr3w.net/2009/04/bad-html/</link>
		<comments>http://andr3w.net/2009/04/bad-html/#comments</comments>
		<pubDate>Thu, 09 Apr 2009 23:46:00 +0000</pubDate>
		<dc:creator>Andrew</dc:creator>
				<category><![CDATA[site updates]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[blogging]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[site]]></category>
		<category><![CDATA[wysiwyg]]></category>

		<guid isPermaLink="false">http://andr3w.net/?p=101</guid>
		<description><![CDATA[Sorry to any visitors affected by the malformed site that cropped up due to my last post&#8230; Old habits die hard, and I write too many of my posts in HTML only to have a missing quotation mark leave my page poorly rendered. I need to rely on the (fairly) excellent built in wordpress wysiwyg [...]]]></description>
			<content:encoded><![CDATA[<p>Sorry to any visitors affected by the malformed site that cropped up due to my last post&#8230;</p>
<p>Old habits die hard, and I write too many of my posts in HTML only to have a missing quotation mark leave my page poorly rendered. I need to rely on the (fairly) excellent built in wordpress wysiwyg editor. At least until I write a proper, custom blog engine for this page&#8230;</p>
<p>The affected post has been fixed and you can now go about your business.</p>
]]></content:encoded>
			<wfw:commentRss>http://andr3w.net/2009/04/bad-html/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>photogriffy updated to v0.2</title>
		<link>http://andr3w.net/2009/02/photogriffy-updated-to-v02/</link>
		<comments>http://andr3w.net/2009/02/photogriffy-updated-to-v02/#comments</comments>
		<pubDate>Tue, 10 Feb 2009 23:11:03 +0000</pubDate>
		<dc:creator>Andrew</dc:creator>
				<category><![CDATA[rails]]></category>
		<category><![CDATA[site updates]]></category>
		<category><![CDATA[flickr]]></category>
		<category><![CDATA[flickraw]]></category>
		<category><![CDATA[gem]]></category>
		<category><![CDATA[photogriffy]]></category>
		<category><![CDATA[update]]></category>

		<guid isPermaLink="false">http://andr3w.net/?p=48</guid>
		<description><![CDATA[photogriffy.net was upgraged to v0.2, this is a pretty major update. I&#8217;ve changed the backend to be based entirely on the Flickr API. I was able to crank it all out with rails and the flickraw gem over the course of a few hours. There are still a lot of features I want to add [...]]]></description>
			<content:encoded><![CDATA[<p>photogriffy.net was upgraged to v0.2, this is a pretty major update. I&#8217;ve  changed the backend to be based entirely on the <a href="http://www.flickr.com/services/api/">Flickr API</a>. I was able to crank it all out with rails and the <a href="http://rubyforge.org/projects/flickraw/">flickraw</a> gem over the course of a few hours. There are still a lot of features I want to add and a bunch of formatting to do, but the site works as it stands. Rails truly is an amazing prototyping framework.</p>
<p>This is part of a larger update to the way I post my photos to the web. It&#8217;s getting a bit scattered with some photos posted to <a href="http://amdavidson.com">AMDavidson.com</a>, some to <a href="http://amdavidson.me">AMDavidson.me</a>, some to <a href="http://flickr.com/photos/amdavidson/">Flickr</a>, and even a few to <a href="http://twitpic.com">Twitpic</a> with very little planning or organization.</p>
<p>So, I&#8217;m now working towards putting everything on Flickr and then basing my other websites on that content so the content is unified between the sites and doesn&#8217;t require bouncing around the web to places unknown to see it all.</p>
]]></content:encoded>
			<wfw:commentRss>http://andr3w.net/2009/02/photogriffy-updated-to-v02/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress Tweaks</title>
		<link>http://andr3w.net/2009/01/wordpress-tweaks/</link>
		<comments>http://andr3w.net/2009/01/wordpress-tweaks/#comments</comments>
		<pubDate>Thu, 22 Jan 2009 18:39:59 +0000</pubDate>
		<dc:creator>Andrew</dc:creator>
				<category><![CDATA[design]]></category>
		<category><![CDATA[site updates]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[site]]></category>
		<category><![CDATA[theme]]></category>
		<category><![CDATA[update]]></category>

		<guid isPermaLink="false">http://andr3w.net/?p=23</guid>
		<description><![CDATA[Well, I spent an hour or two last night uploading a couple of plugins and playing with the CSS on the site. It&#8217;s amazing what you can do with just wordpress.org and a couple of hours. The theme is (heavily) based on Oulipo by Mignolo. Maybe someday I&#8217;ll do my own custom theme, but for [...]]]></description>
			<content:encoded><![CDATA[<p>Well, I spent an hour or two last night uploading a couple of plugins and playing with the CSS on the site. It&#8217;s amazing what you can do with just <a href="http://wordpress.org">wordpress.org</a> and a couple of hours.</p>
<p>The theme is (heavily) based on <a href="http://andreamignolo.com/oulipo">Oulipo</a> by <a href="http://andreamignolo.com/">Mignolo</a>. Maybe someday I&#8217;ll do my own custom theme, but for now, this&#8217;ll do; I&#8217;d rather be working on my other sites.</p>
]]></content:encoded>
			<wfw:commentRss>http://andr3w.net/2009/01/wordpress-tweaks/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress</title>
		<link>http://andr3w.net/2009/01/wordpress/</link>
		<comments>http://andr3w.net/2009/01/wordpress/#comments</comments>
		<pubDate>Wed, 21 Jan 2009 16:11:27 +0000</pubDate>
		<dc:creator>Andrew</dc:creator>
				<category><![CDATA[site updates]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[mephisto]]></category>
		<category><![CDATA[site]]></category>

		<guid isPermaLink="false">http://andr3w.net/?p=19</guid>
		<description><![CDATA[Switched this blog from Mephisto to WordPress, not a big migration yet, as there were only three posts to move. Nothing against Mephisto, but I&#8217;d like to focus my efforts on my other site, and use WordPress for this because it works well, and has a ton of plugin support to get the functionality that [...]]]></description>
			<content:encoded><![CDATA[<p>Switched this blog from <a href="http://mephistoblog.com">Mephisto</a> to <a href="http://wordpress.org">WordPress</a>, not a big migration yet, as there were only three posts to move.</p>
<p>Nothing against Mephisto, but I&#8217;d like to focus my efforts on my other site, and use WordPress for this because it works well, and has a ton of plugin support to get the functionality that I want.</p>
]]></content:encoded>
			<wfw:commentRss>http://andr3w.net/2009/01/wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>andr3w.net</title>
		<link>http://andr3w.net/2009/01/andr3wnet/</link>
		<comments>http://andr3w.net/2009/01/andr3wnet/#comments</comments>
		<pubDate>Mon, 19 Jan 2009 02:15:46 +0000</pubDate>
		<dc:creator>Andrew</dc:creator>
				<category><![CDATA[site updates]]></category>
		<category><![CDATA[mephisto]]></category>
		<category><![CDATA[site]]></category>

		<guid isPermaLink="false">http://andr3w.net/?p=3</guid>
		<description><![CDATA[Welcome to andr3w.net. This site has a very simple purpose, in my free time I code my personal site, but that site is becoming more and more of a photoblog and less and less web development content seems relevant there (although I have always kept it to a minimum). andr3w.net will be my second home [...]]]></description>
			<content:encoded><![CDATA[<p>Welcome to andr3w.net.</p>
<p>This site has a very simple purpose, in my free time I code my <a href="http://amdavidson.com/">personal site</a>, but that site is becoming more and more of a photoblog and less and less web development content seems relevant there (although I have always kept it to a minimum).</p>
<p>andr3w.net will be my second home on the web with information about my current effort with <a href="http://rubyonrails.org/">rails</a>, <a href="http://en.wikipedia.org/wiki/XHTML">(x)html</a>, <a href="http://www.w3.org/Style/CSS/">css</a>, <a href="http://en.wikipedia.org/wiki/JavaScript">js</a>, and whatever else I’m tinkering with at the time.</p>
<p>Check back soon for a restyling from the default <a href="http://mephistoblog.com/">Mephisto</a> style and more content as free time allows.</p>
]]></content:encoded>
			<wfw:commentRss>http://andr3w.net/2009/01/andr3wnet/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
