<?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>quiet despair &#187; Tech</title>
	<atom:link href="http://quietdespair.com/category/tech/feed" rel="self" type="application/rss+xml" />
	<link>http://quietdespair.com</link>
	<description>a long series of disappointments</description>
	<lastBuildDate>Thu, 16 Oct 2008 12:38:31 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.3</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Interfacing With Another Species 7.2 Ksecs Too Early</title>
		<link>http://quietdespair.com/special/interfacing-with-another-species-72-ksecs-too-early.html</link>
		<comments>http://quietdespair.com/special/interfacing-with-another-species-72-ksecs-too-early.html#comments</comments>
		<pubDate>Mon, 29 Sep 2008 10:57:39 +0000</pubDate>
		<dc:creator>Maker</dc:creator>
				<category><![CDATA[code]]></category>
		<category><![CDATA[special]]></category>
		<category><![CDATA[coding]]></category>
		<category><![CDATA[conference]]></category>
		<category><![CDATA[japan]]></category>
		<category><![CDATA[meeting]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[work]]></category>

		<guid isPermaLink="false">http://quietdespair.com/?p=281</guid>
		<description><![CDATA[I&#8217;ve been scheduled for a conference call without my input on the time for more than 7Ksecs before I usually resume consciousness.  In the past this has usually resulted in disaster for the other involved parties, as I typically can&#8217;t resume from standby that early, let alone speak in coherent sentences or form what humans [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been scheduled for a conference call without my input on the time for more than <a title="Kiloseconds" href="http://en.wikipedia.org/wiki/Kilosecond">7Ksecs</a> before I usually resume consciousness.  In the past this has usually resulted in disaster for the other involved parties, as I typically can&#8217;t resume from standby that early, let alone speak in coherent sentences or form what humans would consider lucid thoughts.  My ideal employer would either be able to work with this better, or be located in <a title="Satellite Map View of Tokyo, Japan." href="http://maps.google.com/maps?q=tokyo,+japan&amp;ie=UTF8&amp;oe=UTF-8&amp;cd=1&amp;t=h&amp;layer=x&amp;ll=36.093499,139.682922&amp;spn=1.125208,2.513123&amp;z=9" target="_blank">Japan</a>.</p>
<p>This article on <a title="Why Code at Night?" href="http://codeclimber.blogspot.com/2008/04/burning-midnight-oil.html">Code Climber</a> identifies a lot of the most important reasons I and so many others work best at night.  There are numerous benefits to working at night:</p>
<ul>
<li>There are far less interruptions by email, instant message, and news via RSS</li>
<li>There is minimal interaction with human species, as they seem to prefer sleeping while <a title="Your local star" href="http://photojournal.jpl.nasa.gov/target/Sun" target="_blank">Sol</a> illuminates the oppopsite side of their planet</li>
<li>My best and most productive work requires long periods of concentration and <a title="A Deepness in the Sky by Vernor Vinge" href="http://books.google.com/books?id=CzbMxAcAE-QC&amp;output=html" target="_blank">Focus</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://quietdespair.com/special/interfacing-with-another-species-72-ksecs-too-early.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A little regex in php for fun</title>
		<link>http://quietdespair.com/tech/code/a-little-regex-in-php-for-fun.html</link>
		<comments>http://quietdespair.com/tech/code/a-little-regex-in-php-for-fun.html#comments</comments>
		<pubDate>Thu, 14 Aug 2008 08:01:44 +0000</pubDate>
		<dc:creator>Maker</dc:creator>
				<category><![CDATA[code]]></category>
		<category><![CDATA[coding]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[regex]]></category>

		<guid isPermaLink="false">http://quietdespair.com/?p=277</guid>
		<description><![CDATA[So after working thirteen hours in a row I came home and thought of a handy function to bandaid some legacy code that returns a url with double slashes after the TLD. I realize this is a worse solution than fixing the code in question, but my regex-fu could use work so I though I&#8217;d [...]]]></description>
			<content:encoded><![CDATA[<p>So after working thirteen hours in a row I came home and thought of a handy function to bandaid some legacy code that returns a url with double slashes after the TLD. I realize this is a worse solution than fixing the code in question, but my regex-fu could use work so I though I&#8217;d do a little exploring. motel6 sparked my imagination and deserves full credit for my work below. Here&#8217;s what I came up with:</p>
<p><code> &lt;?php<br />
</code><code> $url = remove_url_slashes('http://www.killallhumans.com//?robots_eating=hobos&amp;passion=361', 'killallhumans');</code></p>
<p>function remove_url_slashes($url=&#8221;,$domain=&#8221;) {<br />
<code> </code><code> </code><code>if(empty($url))<br />
</code><code> </code><code> </code><code> </code><code> </code><code>return false;<br />
</code><code> </code><code> </code><code>if(empty($domain))<br />
</code><code> </code><code> </code><code> </code><code> </code><code> $domain = 'killallhumans';</code><code><br />
</code><code> </code><code> </code><code>$pattern = "/($domain)(.*?)(\/+)/ie";</code><code><br />
</code><code> </code><code> </code><code>return preg_replace($pattern, "'\\1\\2/'", $url);<br />
}<br />
</code>?&gt;</p>
]]></content:encoded>
			<wfw:commentRss>http://quietdespair.com/tech/code/a-little-regex-in-php-for-fun.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New Phone and New Comment</title>
		<link>http://quietdespair.com/tech/phonesolution.html</link>
		<comments>http://quietdespair.com/tech/phonesolution.html#comments</comments>
		<pubDate>Mon, 09 Jun 2008 19:41:20 +0000</pubDate>
		<dc:creator>Maker</dc:creator>
				<category><![CDATA[Tech]]></category>

		<guid isPermaLink="false">http://quietdespair.com/tech/phonesolution.html</guid>
		<description><![CDATA[Real quick, here&#8217;s a little clip about when I&#8217;m getting a new phone:
SAN FRANCISCO, June 9 /PRNewswire-FirstCall/ — Apple(R) today introduced the new iPhone(TM) 3G, combining all the revolutionary features of iPhone with 3G networking that is twice as fast* as the first generation iPhone, built-in GPS for expanded location based mobile services, and iPhone [...]]]></description>
			<content:encoded><![CDATA[<p>Real quick, here&#8217;s a little clip about when I&#8217;m getting a new phone:</p>
<p>SAN FRANCISCO, June 9 /PRNewswire-FirstCall/ — Apple(R) today introduced the new iPhone(TM) 3G, combining all the revolutionary features of iPhone with 3G networking that is twice as fast* as the first generation iPhone, built-in GPS for expanded location based mobile services, and <a href="http://gizmodo.com/tag/iphone-2%270/" class="autolink" rel="nofollow" title="Click here to read more posts tagged IPHONE 2.0">iPhone 2.0</a> software which includes support for Microsoft Exchange ActiveSync and runs the hundreds of third party applications already built with the recently released iPhone SDK. In the US the new iPhone 3G is priced at a stunning $199 for the 8GB model, and just $299 for the 16GB model.  (<a href="http://gizmodo.com/5014675/the-3g-iphone-is-official--july-11th-starting-at-199">Gizmodo</a>)</p>
<p>Onto something just as important,  <a href="http://stackpointer.org/blog/">ojuice</a> and I got a <a href="http://quietdespair.com/special/castle-ebonheart.html#comment-11581">comment on our screenshots</a> from a while back and it wasn&#8217;t spam!</p>
]]></content:encoded>
			<wfw:commentRss>http://quietdespair.com/tech/phonesolution.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Mobile Computing Device Settlement</title>
		<link>http://quietdespair.com/tech/iphone.html</link>
		<comments>http://quietdespair.com/tech/iphone.html#comments</comments>
		<pubDate>Sun, 06 Apr 2008 11:17:37 +0000</pubDate>
		<dc:creator>Maker</dc:creator>
				<category><![CDATA[Tech]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[keyboard]]></category>
		<category><![CDATA[mobile]]></category>
		<category><![CDATA[phone]]></category>

		<guid isPermaLink="false">http://quietdespair.com/tech/iphone.html</guid>
		<description><![CDATA[I have decided to wait for the next generation of iPhone. Hopefully these will be out by early 2009. The keyboard on it may be two times slower than regular qwerty phones, but it suits my giant fingers and missing keys a lot.
]]></description>
			<content:encoded><![CDATA[<p>I have decided to wait for the next generation of <a href="http://www.apple.com/iphone/" target="_blank">iPhone</a>. Hopefully these will be out by early <a href="http://www.engadget.com/2007/09/18/3g-iphone-coming-early-next-year/" target="_blank">2009</a>. The <a href="http://blogs.business2.com/apple/2007/06/how_the_iphone_.html" target="_blank">keyboard</a> on it may be <a href="http://www.tuaw.com/2007/08/18/study-iphones-keyboard-two-times-slower-than-other-phones/" target="_blank">two times slower</a> than regular qwerty phones, but it suits my giant fingers and missing keys a lot.</p>
]]></content:encoded>
			<wfw:commentRss>http://quietdespair.com/tech/iphone.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
