<?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>sixohthree.com &#187; Web</title>
	<atom:link href="http://sixohthree.com/tag/web/feed" rel="self" type="application/rss+xml" />
	<link>http://sixohthree.com</link>
	<description>The Weblog of Adam Backstrom</description>
	<lastBuildDate>Wed, 16 May 2012 15:01:59 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>PHP 5.3.0 Changes</title>
		<link>http://sixohthree.com/748/php-530-changes</link>
		<comments>http://sixohthree.com/748/php-530-changes#comments</comments>
		<pubDate>Thu, 19 Mar 2009 15:19:52 +0000</pubDate>
		<dc:creator>Adam Backstrom</dc:creator>
				<category><![CDATA[Personal]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://blogs.bwerp.net/?p=748</guid>
		<description><![CDATA[PHP 5.3.0 looks promising.]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify">PHP 5.3.0 looks promising. So far:</p>
<ul>
<li><a href="http://www.php.net/manual/en/language.oop5.overloading.php#language.oop5.overloading.methods">__callStatic()</a></li>
<li><a href="http://bugs.php.net/bug.php?id=33595">Circular reference garbage collection</a></li>
<li><a href="http://php.net/manual/en/function.get-called-class.php">get_called_class()</a></li>
<li><a href="http://wiki.php.net/rfc/closures">Closures</a></li>
<li><a href="http://www.php.net/manual/en/datetime.gettimestamp.php">DateTime::getTimestamp()</a></li>
<li><a href="http://us.php.net/manual/en/language.namespaces.php">Namespaces</a></li>
<li><a href="http://us.php.net/lsb">Late Static Binding</a></li>
<li><a href="http://docs.php.net/manual/en/book.phar.php">Phar</a> as part of the default install</li>
<li><var>__DIR__</var> — no more <code>dirname(__FILE__)</code>!</li>
</ul>
<p>PHP 5.3.0 was <a href="http://www.php.net/archive/2009.php#id2009-06-30-1">released</a> on 23 June, 2009! A <a href="http://docs.php.net/migration53">migration guide</a> is available.</p>
]]></content:encoded>
			<wfw:commentRss>http://sixohthree.com/748/php-530-changes/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>JavaScript Bookmarklets</title>
		<link>http://sixohthree.com/554/bookmarklet</link>
		<comments>http://sixohthree.com/554/bookmarklet#comments</comments>
		<pubDate>Mon, 06 Oct 2008 13:38:02 +0000</pubDate>
		<dc:creator>Adam Backstrom</dc:creator>
				<category><![CDATA[Web]]></category>
		<category><![CDATA[bookmarklet]]></category>

		<guid isPermaLink="false">http://blogs.bwerp.net/?p=554</guid>
		<description><![CDATA[Automation is good.]]></description>
			<content:encoded><![CDATA[<p>I wrote my first <a href="http://en.wikipedia.org/wiki/Bookmarklet">bookmarklet</a> as a proof-of-concept the other day. I often find myself shortcutting up to the location bar to switch between development and production web servers. Here&#8217;s a bookmarklet that toggles &#8220;dev&#8221; and &#8220;www&#8221; subdomains for me, broken into a few lines for readability:</p>
<pre><code>javascript:dL=document.location;
nH=dL.host.split('.')[0]=='www'?'dev':'www';
dL.href=dL.href.replace(/^(https?:\/\/)[^\.]+/i,"$1"+nH);</code></pre>
<p>And in its ready-to-drag-to-your-bookmark-bar version: <a href="\/\/)[^\.]+/i,'$1'+nH);">switch</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://sixohthree.com/554/bookmarklet/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

