<?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>robinadr &#187; robinadr.com</title>
	<atom:link href="http://robinadr.com/categories/robinadrcom/feed" rel="self" type="application/rss+xml" />
	<link>http://robinadr.com</link>
	<description>big pimpin&#039;</description>
	<lastBuildDate>Sun, 25 Dec 2011 23:27:28 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Domain Moved to NearlyFreeSpeech</title>
		<link>http://robinadr.com/2011/12/domain-moved-to-nearlyfreespeech</link>
		<comments>http://robinadr.com/2011/12/domain-moved-to-nearlyfreespeech#comments</comments>
		<pubDate>Sun, 25 Dec 2011 23:25:16 +0000</pubDate>
		<dc:creator>Robin</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[robinadr.com]]></category>
		<category><![CDATA[domain]]></category>
		<category><![CDATA[GoDaddy]]></category>
		<category><![CDATA[NearlyFreeSpeech]]></category>
		<category><![CDATA[SOPA]]></category>

		<guid isPermaLink="false">http://robinadr.com/?p=368</guid>
		<description><![CDATA[Just moved the domain away from GoDaddy to NearlyFreeSpeech, largely due to GoDaddy&#8217;s support for SOPA. Despite them saying they have withdrawn support for SOPA, this appears to merely be a PR move, and they have not actually withdrawn support &#8230; <a href="http://robinadr.com/2011/12/domain-moved-to-nearlyfreespeech">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Just moved the domain away from GoDaddy to <a href="http://www.nearlyfreespeech.net">NearlyFreeSpeech</a>, largely due to GoDaddy&#8217;s <a href="http://www.forbes.com/sites/timworstall/2011/12/24/reddit-godaddy-sopa-and-consumer-sovereignty/">support for SOPA</a>. Despite them saying they have withdrawn support for SOPA, this appears to <a href="http://www.reddit.com/r/technology/comments/npair/godaddy_has_not_withdrawn_its_official/">merely be a PR move</a>, and they have not actually withdrawn support for SOPA.</p>

<p>Read more about <a href="http://en.wikipedia.org/wiki/Stop_Online_Piracy_Act">SOPA on Wikipedia</a>, and find out why it&#8217;s not a good thing. Also, here&#8217;s <a href="http://blog.nearlyfreespeech.net/2011/12/24/welcome-sopa-refugees/">NFS.net&#8217;s official stance on SOPA</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://robinadr.com/2011/12/domain-moved-to-nearlyfreespeech/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google&#8217;s Hosted jQuery with WordPress</title>
		<link>http://robinadr.com/2011/01/googles-hosted-jquery-with-wordpress</link>
		<comments>http://robinadr.com/2011/01/googles-hosted-jquery-with-wordpress#comments</comments>
		<pubDate>Fri, 21 Jan 2011 23:36:08 +0000</pubDate>
		<dc:creator>Robin</dc:creator>
				<category><![CDATA[robinadr.com]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://robinadr.com/?p=295</guid>
		<description><![CDATA[Update: I&#8217;ve modified the plugin to use a generic URL (.../1/jquery...) which loads the latest 1.x version. That way I don&#8217;t have to change the plugin everytime jQuery is updated. The ZIP file has been updated, just overwrite your old &#8230; <a href="http://robinadr.com/2011/01/googles-hosted-jquery-with-wordpress">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<blockquote>
  <p><strong>Update</strong>: I&#8217;ve modified the plugin to use a generic URL (<code>.../1/jquery...</code>) which loads the latest 1.x version. That way I don&#8217;t have to change the plugin everytime jQuery is updated.</p>
  
  <p>The ZIP file has been updated, just overwrite your old <code>googlejs.php</code> file and everything will be gravy.</p>
</blockquote>

<p>In an effort to save bandwidth, I made a quick plugin to modify WordPress to use <a href="http://code.google.com/apis/libraries/devguide.html#jquery">Google&#8217;s Libraries API</a>, which offers a Google-hosted jQuery. Here&#8217;s the code in question:</p>

<pre style="overflow-x:auto"><code>function radr_google_js( &#038;$scripts ) {
    $scripts->remove( 'jquery' );
    
    $scripts->add(
        'jquery', // shortname
        'https://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js', // url
        false // dependancies (none)
    );
}

add_action( 'wp_default_scripts', 'radr_google_js' );</code></pre>

<p>If you&#8217;re interested in using this on your own site, you&#8217;re welcome to <a href="http://robinadr.com/files/googlejs.zip">download this quick plugin</a>. Just follow standard procedure &#8212; unzip, copy to <code>wp-content/plugins</code>, and activate.</p>
]]></content:encoded>
			<wfw:commentRss>http://robinadr.com/2011/01/googles-hosted-jquery-with-wordpress/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Pay as You Go Hosting</title>
		<link>http://robinadr.com/2011/01/pay-as-you-go-hosting</link>
		<comments>http://robinadr.com/2011/01/pay-as-you-go-hosting#comments</comments>
		<pubDate>Sat, 15 Jan 2011 00:20:31 +0000</pubDate>
		<dc:creator>Robin</dc:creator>
				<category><![CDATA[robinadr.com]]></category>
		<category><![CDATA[blogging]]></category>
		<category><![CDATA[Nearly Free Speech]]></category>
		<category><![CDATA[web host]]></category>

		<guid isPermaLink="false">http://robinadr.com/?p=273</guid>
		<description><![CDATA[Seeing as nothing ever happens on this site anymore, I&#8217;ve switched it to Nearly Free Speech hosting, which bills itself as &#8220;the original home of only pay for what you use hosting.&#8221; Why? Even though DreamHost has a pretty good &#8230; <a href="http://robinadr.com/2011/01/pay-as-you-go-hosting">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Seeing as nothing ever happens on this site anymore, I&#8217;ve switched it to <a href="https://www.nearlyfreespeech.net/">Nearly Free Speech</a> hosting, which bills itself as &#8220;the original home of only pay for what you use hosting.&#8221; Why? Even though <a href="http://dreamhost.com/">DreamHost</a> has a pretty good plan (unlimited disk usage and bandwidth for $10.95/month), by the <a href="https://www.nearlyfreespeech.net/estimate">NFSN price estimate</a> I can cut that yearly cost by 1000%.</p>

<p>It&#8217;s been a breeze to set up; took about 4 hours total to make the move (3.5 of which was waiting for DNS to propagate), and, as a plus, the site seems much faster in general.</p>

<p>Back to ignoring the site for now.</p>
]]></content:encoded>
			<wfw:commentRss>http://robinadr.com/2011/01/pay-as-you-go-hosting/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Titan</title>
		<link>http://robinadr.com/2010/03/titan</link>
		<comments>http://robinadr.com/2010/03/titan#comments</comments>
		<pubDate>Wed, 10 Mar 2010 01:21:10 +0000</pubDate>
		<dc:creator>Robin</dc:creator>
				<category><![CDATA[robinadr.com]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[redesign]]></category>
		<category><![CDATA[theme]]></category>
		<category><![CDATA[Titan]]></category>

		<guid isPermaLink="false">http://robinadr.com/?p=203</guid>
		<description><![CDATA[I&#8217;ve switched the site over from a very customized Grid Focus theme to Titan by the Theme Foundry. I found it after searching through many pages of the WordPress theme directory. What I especially like about it are the colors &#8230; <a href="http://robinadr.com/2010/03/titan">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><img src="http://robinadr.com/uploads/2010/03/robinadr-titan.png" alt="robinadr on Titan" /></p>

<p>I&#8217;ve switched the site over from a very customized <a href="http://5thirtyone.com/grid-focus">Grid Focus</a> theme to <a href="http://thethemefoundry.com/titan/">Titan</a> by the <a href="http://thethemefoundry.com/">Theme Foundry</a>. I found it after searching through many pages of the <a href="http://wordpress.org/extend/themes/">WordPress theme directory</a>. What I especially like about it are the colors as well as the layout.</p>

<p>It also comes with extensive options for customizing what goes where, especially in the sidebar and the header, which was a nice surprise. I originally intended to design my own theme, but that is honestly too much work.</p>
]]></content:encoded>
			<wfw:commentRss>http://robinadr.com/2010/03/titan/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Housekeeping</title>
		<link>http://robinadr.com/2009/12/housekeeping</link>
		<comments>http://robinadr.com/2009/12/housekeeping#comments</comments>
		<pubDate>Tue, 29 Dec 2009 17:01:05 +0000</pubDate>
		<dc:creator>Robin</dc:creator>
				<category><![CDATA[robinadr.com]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[housekeeping]]></category>
		<category><![CDATA[plugins]]></category>

		<guid isPermaLink="false">http://robinadr.com/?p=137</guid>
		<description><![CDATA[With a bit (a lot) of spare time over the holidays, I&#8217;ve done some housekeeping around here. Including updating plugins (more on that in a bit), deactivating plugins that I haven&#8217;t used in, well, years, and poking around in cPanel. &#8230; <a href="http://robinadr.com/2009/12/housekeeping">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>With a bit (a lot) of spare time over the holidays, I&#8217;ve done some housekeeping around here. Including updating plugins (more on that in a bit), deactivating plugins that I haven&#8217;t used in, well, years, and poking around in cPanel. I can&#8217;t tell if it&#8217;s just a <a href="http://en.wikipedia.org/wiki/Placebo">Placebo</a> or not, but it definitely feels a lot faster.<span id="more-137"></span></p>

<p>As for updating plugins, it was less than pleasant. I seem to remember WordPress directly downloading the plugin ZIP files (presumably with <a href="http://www.php.net/fopen"><code>fopen</code> and etc</a>) and writing the files directly. In recent releases, however, installing with FTP seems to be the only option.</p>

<p>To say this doesn&#8217;t always end well would be an understatement. Sometimes it makes WordPress unusable for minutes, and I say only WordPress because everything else served from the same web server works fine in the meanwhile. And there seems to be a weird bug that causes a <code>mdawaffe-test.zip</code> file to download instead of the actual plugin, which caused some irritation too.</p>

<p>In the end I just opened SSH up and used <code>wget</code> and did it myself&#8230;</p>

<p>I&#8217;m not sure why they got rid of the original system, but I suppose the security risk of making all of <code>wp-content</code> writable could be part of it. Then again, I haven&#8217;t really kept up with WordPress at all <a href="http://robinadr.com/2007/08/leaving_wordpress_behind">since I left</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://robinadr.com/2009/12/housekeeping/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Back to ASO</title>
		<link>http://robinadr.com/2009/07/back_to_aso</link>
		<comments>http://robinadr.com/2009/07/back_to_aso#comments</comments>
		<pubDate>Mon, 27 Jul 2009 00:34:27 +0000</pubDate>
		<dc:creator>Robin</dc:creator>
				<category><![CDATA[robinadr.com]]></category>
		<category><![CDATA[A Small Orange]]></category>
		<category><![CDATA[DreamHost]]></category>

		<guid isPermaLink="false">http://robinadr.com/?p=110</guid>
		<description><![CDATA[So seeing as how I don&#8217;t use this site anymore at all (it took me 30 seconds to figure out where the write post page was in the new WordPress menu), I&#8217;ve shifted it back to A Small Orange for &#8230; <a href="http://robinadr.com/2009/07/back_to_aso">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>So seeing as how I don&#8217;t use this site anymore at all (it took me 30 seconds to figure out where the write post page was in the new WordPress menu), I&#8217;ve shifted it back to <a href="http://asmallorange.com/">A Small Orange</a> for their dirt cheap $25/year Tiny plan. Compared to <a href="http://www.dreamhost.com/">DreamHost</a>, this is about a fourth of the cost.</p>

<p>Surprisingly enough, I didn&#8217;t completely screw it up.</p>
]]></content:encoded>
			<wfw:commentRss>http://robinadr.com/2009/07/back_to_aso/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress 2.5</title>
		<link>http://robinadr.com/2008/03/wordpress_25</link>
		<comments>http://robinadr.com/2008/03/wordpress_25#comments</comments>
		<pubDate>Sun, 30 Mar 2008 00:43:05 +0000</pubDate>
		<dc:creator>Robin</dc:creator>
				<category><![CDATA[robinadr.com]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[admin]]></category>
		<category><![CDATA[colors]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[upgrade]]></category>

		<guid isPermaLink="false">http://robinadr.com/?p=96</guid>
		<description><![CDATA[Soo, WordPress 2.5 has been released. Upgrade went fine, but I definitely cannot say I like the new admin. The navigation, especially, seems unfinished and not thought through. Oh, and the submit buttons are ugly as hell. My new excuse &#8230; <a href="http://robinadr.com/2008/03/wordpress_25">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Soo, <a href="http://wordpress.org/development/2008/03/wordpress-25-brecker/">WordPress 2.5 has been released</a>. Upgrade went fine, but I definitely cannot say I like the new admin. The navigation, especially, seems unfinished and not thought through. Oh, and the submit buttons are ugly as hell.</p>

<p>My new excuse of not blogging is so I don&#8217;t hurt my eyes straining to decipher the extremely non-contrasting colors in the new admin design. Ugh. I even have to turn down my screen&#8217;s brightness so I&#8217;m not blinded.</p>

<p>At least they got rid of the DBX boxes.</p>
]]></content:encoded>
			<wfw:commentRss>http://robinadr.com/2008/03/wordpress_25/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>An Influx of Updates</title>
		<link>http://robinadr.com/2008/01/an_influx_of_updates</link>
		<comments>http://robinadr.com/2008/01/an_influx_of_updates#comments</comments>
		<pubDate>Thu, 03 Jan 2008 09:13:59 +0000</pubDate>
		<dc:creator>Robin</dc:creator>
				<category><![CDATA[Gaming]]></category>
		<category><![CDATA[robinadr.com]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[2008]]></category>
		<category><![CDATA[Happy Cog]]></category>
		<category><![CDATA[IPv6]]></category>
		<category><![CDATA[redesign]]></category>
		<category><![CDATA[updates]]></category>
		<category><![CDATA[World of Warcraft]]></category>

		<guid isPermaLink="false">http://robinadr.com/2008/01/an_influx_of_updates</guid>
		<description><![CDATA[I haven&#8217;t written anything since December 15 of last year, so I guess I&#8217;ll just post a bunch of small tidbits to make up for it. Merry Christmas, Happy New Year. 2008 feels the same as 2007, so far. My &#8230; <a href="http://robinadr.com/2008/01/an_influx_of_updates">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I haven&#8217;t written anything since December 15 of last year, so I guess I&#8217;ll just post a bunch of small tidbits to make up for it.</p>

<ul>
<li>Merry Christmas, Happy New Year. 2008 feels the same as 2007, so far.</li>
<li>My main reason for lack of posting is that I&#8217;ve begun playing <a href="http://www.worldofwarcraft.com/">World of Warcraft</a>. Gotta&#8230; level&#8230; to&#8230; 70&#8230; Only 39 more levels to go &#8212; this is worse than heroin.</li>
<li><a href="http://en.wikipedia.org/wiki/IPv6">IPv6</a> may not <a href="http://arstechnica.com/news.ars/post/20080102-icann-to-add-ipv6-addresses-for-root-dns-servers.html">be a pipe dream after all</a>. Yippee, I guess. As long as it doesn&#8217;t bite me in the ass.</li>
</ul>

<h3>WordPress 2.5 Admin</h3>

<p>(This is going to take a bit more space.)</p>

<p>Apparently parts of the admin, which is about 10% there, are being checked into the WordPress SVN repository. It makes no sense to me why they would commit them to the public (note, public) repository in such early stages, and <a href="http://factoryjoe.com/">Chris Messina</a> has <a href="http://factoryjoe.com/blog/2008/01/03/the-problem-with-open-source-design/">something related to say about that</a>, which I agreed with.</p>

<p>That said, I can&#8217;t say I&#8217;m too impressed with what&#8217;s been checked in so far, but I&#8217;m holding judgement due to the faith I have in <a href="http://www.happycog.com/">Happy Cog Studios</a> (and the fact it&#8217;s only 10% done). That color scheme reminds me of something, but for the life of me I can&#8217;t figure out what. Oh, and I can&#8217;t say I&#8217;m really with that comments bubble on the menu item. Looks a bit tacky, but maybe that&#8217;s just me.</p>

<h3>That&#8217;s that.</h3>

<p>I hope to redesign soon. But, then again, when don&#8217;t I. Apparently my <a href="http://robinadr.com/projects/footnotes">Footnotes plugin</a> is <a href="http://robinadr.com/2007/09/footnotes_10#comment-1071">incompatible with recent versions</a> of <a href="http://habariproject.org/">Habari</a>, which I should really fix. I&#8217;ll give them all a quick checking-on, too.</p>
]]></content:encoded>
			<wfw:commentRss>http://robinadr.com/2008/01/an_influx_of_updates/feed</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
	</channel>
</rss>

