<?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>Seb&#039;s weblog &#187; Rants</title>
	<atom:link href="http://dthg.net/blog/index.php/archives/category/rants/feed/" rel="self" type="application/rss+xml" />
	<link>http://dthg.net/blog</link>
	<description>Just another selfish blog...</description>
	<lastBuildDate>Sun, 30 May 2010 15:08:16 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.5</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Floating point not allowed</title>
		<link>http://dthg.net/blog/index.php/archives/2010/05/02/floating-point-not-allowed/</link>
		<comments>http://dthg.net/blog/index.php/archives/2010/05/02/floating-point-not-allowed/#comments</comments>
		<pubDate>Sun, 02 May 2010 11:00:35 +0000</pubDate>
		<dc:creator>Sebastien Tanguy</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[Rants]]></category>

		<guid isPermaLink="false">http://dthg.net/blog/?p=377</guid>
		<description><![CDATA[	This is the error that pops up when editing the (obviously) floating point value of the character or line spacing in the Mac OS Terminal.app preferences. ]]></description>
			<content:encoded><![CDATA[	<p>This is the error that pops up when editing the (obviously) floating point value of the character or line spacing in the Mac OS Terminal.app preferences. </p>]]></content:encoded>
			<wfw:commentRss>http://dthg.net/blog/index.php/archives/2010/05/02/floating-point-not-allowed/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>safari 4 and&#8230;</title>
		<link>http://dthg.net/blog/index.php/archives/2009/10/28/safari-4-and/</link>
		<comments>http://dthg.net/blog/index.php/archives/2009/10/28/safari-4-and/#comments</comments>
		<pubDate>Wed, 28 Oct 2009 20:27:40 +0000</pubDate>
		<dc:creator>Sebastien Tanguy</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[Rants]]></category>

		<guid isPermaLink="false">http://dthg.net/blog/?p=323</guid>
		<description><![CDATA[	I preferred when Safari was chewing up tons of memory. At least then it didn&#8217;t crash every 10 minutes on random web sites.

Sure, the usual culprit is most of time the flash plugin. Ok, that&#8217;s an external thing, that could be an excuse. But my guess is more on the thread management (which was already [...]]]></description>
			<content:encoded><![CDATA[	<p>I preferred when Safari was chewing up tons of memory. At least then it didn&#8217;t crash every 10 minutes on random web sites.<br />
<span id="more-323"></span><br />
Sure, the usual culprit is most of time the flash plugin. Ok, that&#8217;s an external thing, that could be an excuse. But my guess is more on the thread management (which was already the subject of my previous post). Sometimes it would freeze loading a page when moving the mouse around. (I would bet on some kind of race condition between the cookies handling and the javascript interpreter).<br />
If somebody wanted to bad mouth apple, one could say that they send out buggy software, crashing, being slow as molasses (I&#8217;m looking at you, iTunes), but mostly on older operating system releases, to push people to the upgrade way.<br />
Bleh!</p>]]></content:encoded>
			<wfw:commentRss>http://dthg.net/blog/index.php/archives/2009/10/28/safari-4-and/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>dear php, about array declaration</title>
		<link>http://dthg.net/blog/index.php/archives/2009/09/29/dear-php-about-array-declaration/</link>
		<comments>http://dthg.net/blog/index.php/archives/2009/09/29/dear-php-about-array-declaration/#comments</comments>
		<pubDate>Tue, 29 Sep 2009 21:41:33 +0000</pubDate>
		<dc:creator>Sebastien Tanguy</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[Rants]]></category>

		<guid isPermaLink="false">http://dthg.net/blog/?p=316</guid>
		<description><![CDATA[	So, the following is legal:

	
$foo = array(
  &#34;bar&#34; =&#62; 2*2
);
var_dump($foo);


	But this is not:

class Foo {
  public static $foo = array(
    &#34;bar&#34; =&#62; 2*2
  );
}
var_dump(Foo::$foo);


	I&#8217;m sure there is a reasonable explanation for this behavior, but I&#8217;m not sure I really want to hear about it.]]></description>
			<content:encoded><![CDATA[	<p>So, the following is legal:</p>

	<p><pre class="brush: php;">
$foo = array(
  &quot;bar&quot; =&gt; 2*2
);
var_dump($foo);
</pre></p>

	<p>But this is not:<br />
<pre class="brush: php;">
class Foo {
  public static $foo = array(
    &quot;bar&quot; =&gt; 2*2
  );
}
var_dump(Foo::$foo);
</pre></p>

	<p>I&#8217;m sure there is a reasonable explanation for this behavior, but I&#8217;m not sure I really want to hear about it.</p>]]></content:encoded>
			<wfw:commentRss>http://dthg.net/blog/index.php/archives/2009/09/29/dear-php-about-array-declaration/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>safari 4 and threads</title>
		<link>http://dthg.net/blog/index.php/archives/2009/06/25/safari-4-and-threads/</link>
		<comments>http://dthg.net/blog/index.php/archives/2009/06/25/safari-4-and-threads/#comments</comments>
		<pubDate>Wed, 24 Jun 2009 23:10:49 +0000</pubDate>
		<dc:creator>Sebastien Tanguy</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[Rants]]></category>

		<guid isPermaLink="false">http://www.dthg.net/blog/?p=292</guid>
		<description><![CDATA[	Dear Lazyweb, why does Safari 4 takes up to 500 threads after a few days running? Not that I mind much the 5.6GB of virtual memory it takes or the almost 700 MB of real memory, but I&#8217;m just curious.]]></description>
			<content:encoded><![CDATA[	<p>Dear Lazyweb, why does Safari 4 takes up to 500 threads after a few days running? Not that I mind much the 5.6GB of virtual memory it takes or the almost 700 MB of real memory, but I&#8217;m just curious.</p>]]></content:encoded>
			<wfw:commentRss>http://dthg.net/blog/index.php/archives/2009/06/25/safari-4-and-threads/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Dear google reader developers&#8230;</title>
		<link>http://dthg.net/blog/index.php/archives/2009/02/28/dear-google-reader-developers/</link>
		<comments>http://dthg.net/blog/index.php/archives/2009/02/28/dear-google-reader-developers/#comments</comments>
		<pubDate>Sat, 28 Feb 2009 17:25:11 +0000</pubDate>
		<dc:creator>Sebastien Tanguy</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[Rants]]></category>

		<guid isPermaLink="false">http://www.dthg.net/blog/?p=264</guid>
		<description><![CDATA[	Automatic translation is nice, but please, allow it on a per-post basis instead of per-feed. kthxbye.

I mean, when following on a multiple-writer feed (for example, any planet type installation), I may sometimes encounter a post written in, say, chinese or japanese, but I may not need everything translated (especially when I&#8217;m at fault, using the [...]]]></description>
			<content:encoded><![CDATA[	<p>Automatic translation is nice, but please, allow it on a per-post basis instead of per-feed. kthxbye.<br />
<span id="more-264"></span><br />
I mean, when following on a multiple-writer feed (for example, any planet type installation), I may <strong>sometimes</strong> encounter a post written in, say, chinese or japanese, but I may not need everything translated (especially when I&#8217;m at fault, using the local google instance instead of the .com thing, and I find posts in english that I could understand translated into gibberish french that I don&#8217;t always understand). </p>]]></content:encoded>
			<wfw:commentRss>http://dthg.net/blog/index.php/archives/2009/02/28/dear-google-reader-developers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>journalists and up-to-date data</title>
		<link>http://dthg.net/blog/index.php/archives/2008/11/21/journalists-and-up-to-date-data/</link>
		<comments>http://dthg.net/blog/index.php/archives/2008/11/21/journalists-and-up-to-date-data/#comments</comments>
		<pubDate>Fri, 21 Nov 2008 10:44:04 +0000</pubDate>
		<dc:creator>Sebastien Tanguy</dc:creator>
				<category><![CDATA[Music]]></category>
		<category><![CDATA[Rants]]></category>

		<guid isPermaLink="false">http://www.dthg.net/blog/?p=241</guid>
		<description><![CDATA[	People, if Chinese Democracy was already reported to have cost $13M in 2001, maybe giving such a number now would be misleading since most of the tracks were recorded a few more times since then.]]></description>
			<content:encoded><![CDATA[	<p>People, if Chinese Democracy was already reported to have cost $13M in 2001, maybe giving such a number now would be misleading since most of the tracks were recorded a few more times since then.</p>]]></content:encoded>
			<wfw:commentRss>http://dthg.net/blog/index.php/archives/2008/11/21/journalists-and-up-to-date-data/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>bad taste</title>
		<link>http://dthg.net/blog/index.php/archives/2008/11/18/bad-taste/</link>
		<comments>http://dthg.net/blog/index.php/archives/2008/11/18/bad-taste/#comments</comments>
		<pubDate>Tue, 18 Nov 2008 12:44:07 +0000</pubDate>
		<dc:creator>Sebastien Tanguy</dc:creator>
				<category><![CDATA[Music]]></category>
		<category><![CDATA[Rants]]></category>

		<guid isPermaLink="false">http://www.dthg.net/blog/?p=239</guid>
		<description><![CDATA[	Replacing Brian May&#8217;s nice and clean job with some butchered (probably fretless) thing.

Remember kids, Piracy is bad for your health.]]></description>
			<content:encoded><![CDATA[	<p>Replacing Brian May&#8217;s nice and clean job with some butchered (probably fretless) thing.<br />
<span id="more-239"></span><br />
Remember kids, Piracy is bad for your health.</p>]]></content:encoded>
			<wfw:commentRss>http://dthg.net/blog/index.php/archives/2008/11/18/bad-taste/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>google reader tags.. err&#8230; folders?</title>
		<link>http://dthg.net/blog/index.php/archives/2008/11/17/google-reader-tags-err-folders/</link>
		<comments>http://dthg.net/blog/index.php/archives/2008/11/17/google-reader-tags-err-folders/#comments</comments>
		<pubDate>Mon, 17 Nov 2008 09:05:21 +0000</pubDate>
		<dc:creator>Sebastien Tanguy</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[Rants]]></category>

		<guid isPermaLink="false">http://www.dthg.net/blog/?p=238</guid>
		<description><![CDATA[	So they renamed their tags as folders. But they still act as tags. Don&#8217;t people get confused by the &#8220;change folders&#8221; behavior?]]></description>
			<content:encoded><![CDATA[	<p>So they renamed their tags as folders. But they still act as tags. Don&#8217;t people get confused by the &#8220;change folders&#8221; behavior?</p>]]></content:encoded>
			<wfw:commentRss>http://dthg.net/blog/index.php/archives/2008/11/17/google-reader-tags-err-folders/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>gmail mac notifier wtf?!</title>
		<link>http://dthg.net/blog/index.php/archives/2008/10/11/gmail-mac-notifier-wtf/</link>
		<comments>http://dthg.net/blog/index.php/archives/2008/10/11/gmail-mac-notifier-wtf/#comments</comments>
		<pubDate>Sat, 11 Oct 2008 09:55:48 +0000</pubDate>
		<dc:creator>Sebastien Tanguy</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[Rants]]></category>

		<guid isPermaLink="false">http://www.dthg.net/blog/?p=232</guid>
		<description><![CDATA[	Downloading gmail mac notifier brings a dmg file (ok) which only contains a shell script (wt?) which opens another URL to download the notifier (W-T-F-F?!). What&#8217;s wrong with you, people, seriously? ]]></description>
			<content:encoded><![CDATA[	<p>Downloading gmail mac notifier brings a dmg file (ok) which only contains a shell script (wt?) which <code>opens</code> another <span class="caps">URL</span> to download the notifier (W-T-F-F?!). What&#8217;s wrong with you, people, seriously? </p>]]></content:encoded>
			<wfw:commentRss>http://dthg.net/blog/index.php/archives/2008/10/11/gmail-mac-notifier-wtf/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>nin&#8217;s website</title>
		<link>http://dthg.net/blog/index.php/archives/2008/08/16/nins-website/</link>
		<comments>http://dthg.net/blog/index.php/archives/2008/08/16/nins-website/#comments</comments>
		<pubDate>Sat, 16 Aug 2008 10:57:01 +0000</pubDate>
		<dc:creator>Sebastien Tanguy</dc:creator>
				<category><![CDATA[Music]]></category>
		<category><![CDATA[Rants]]></category>

		<guid isPermaLink="false">http://www.dthg.net/blog/?p=223</guid>
		<description><![CDATA[	Dear Trent,

	Your website sucks. Deeply. Oh, not as much as, say, voyage-sncf (which is the high level standard for suckage), but it sucks in its own way. It sometimes looks (and works) like a weblog or even a photoblog, but there&#8217;s no history. And when you&#8217;re posting 5-6 photos in a row, only crackheads doing [...]]]></description>
			<content:encoded><![CDATA[	<p>Dear Trent,</p>

	<p>Your website sucks. Deeply. Oh, not as much as, say, voyage-sncf (which is the high level standard for suckage), but it sucks in its own way. It sometimes looks (and works) like a weblog or even a photoblog, but there&#8217;s no history. And when you&#8217;re posting 5-6 photos in a row, only crackheads doing a reload every minute can have a chance to pick all of them.</p>

	<p>Your website sucks. And to compensate the high suckage level of your website, people built <a href="http://ninblogs.wordpress.com/">their own website</a> posting everything you post there. But like I said, if they don&#8217;t have enough crack incoming, they might miss a post every now and then.</p>

	<p>There are different solutions. You could probably enable full content in the corresponding feed, this way we will at least be able to see the content and you won&#8217;t have to change the visual aspect of your site, if that&#8217;s the problem. And this way, we don&#8217;t have to think about the thousands of fan comments (&#8220;I love you, Trent&#8221;, &#8220;come play to my house&#8221;, &#8220;alessandro is so sexy&#8221;, etc&#8230;). And I know you can post this content to the full-content feed, because you just do it for the &#8220;real&#8221; news. Another solution would be to post those pictures on flickr.  It&#8217;s not like it would be difficult, again, since you&#8217;re already doing it for a selection of photos. Having pixelised phone camera pictures in the middle of dark blurry in-concert (not even large) pictures wouldn&#8217;t be such a drama.</p>

	<p>Thanks for listening, Trent. Think of the ki^H^Hwebsite.</p>

	<p>PS: don&#8217;t forget to free Robin in time for the <span class="caps">VMA</span>. Let him rehearse a bit, I&#8217;m sure Josh can help him too.</p>]]></content:encoded>
			<wfw:commentRss>http://dthg.net/blog/index.php/archives/2008/08/16/nins-website/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
