<?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>Evilsoft.org &#187; Tech</title>
	<atom:link href="http://www.evilsoft.org/category/tech/feed" rel="self" type="application/rss+xml" />
	<link>http://www.evilsoft.org</link>
	<description>We're everywhere....</description>
	<lastBuildDate>Wed, 30 Jun 2010 16:37:00 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Why I view ruby as immature</title>
		<link>http://www.evilsoft.org/2010/06/30/why-i-view-ruby-as-immature</link>
		<comments>http://www.evilsoft.org/2010/06/30/why-i-view-ruby-as-immature#comments</comments>
		<pubDate>Wed, 30 Jun 2010 15:54:18 +0000</pubDate>
		<dc:creator>Soulcatcher</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[RoR]]></category>
		<category><![CDATA[Tech]]></category>
		<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://www.evilsoft.org/?p=253</guid>
		<description><![CDATA[In 2006 I was introduced to ruby, and for a time I found it to be a fun language to work with.  After about 6 months, I started to notice problems and shortcomings in the ruby/rails stack and went on to bigger and better things.  The problem is that to this day I [...]]]></description>
			<content:encoded><![CDATA[<p>In 2006 I was introduced to ruby, and for a time I found it to be a fun language to work with.  After about 6 months, I started to notice problems and shortcomings in the ruby/rails stack and went on to bigger and better things.  The problem is that to this day I have to defend myself to legions of ruby/rails faithful who seem to think that it&#8217;s sacrilege to ever leave the faith. (That makes me what, an apostate?)  A friend recently asked on a <a href="http://mail.evilsoft.org/mailman/listinfo/tangent">mailing list I regularly traffic</a> why a person would consider ruby to be flawed.  The best way I can express this is in some code.<br />
<span id="more-253"></span></p>
<p>As a note, this isn&#8217;t about these specific flaws: It&#8217;s that these kinds of flaws are endemic in ruby and particularly rails.</p>
<p><strong>Set Processing</strong><br />
<code><br />
devon@chronos ~/Projects/sets $ cat sets1.rb<br />
#!/usr/bin/env ruby<br />
require 'set'<br />
require 'pp'<br />
large = Set.new(Range.new(1,10000000))<br />
small = Set.new(Range.new(1,10))<br />
pp small.intersection(large)</p>
<p>devon@chronos ~/Projects/sets $ time ./sets1.rb<br />
#&lt;Set: {5, 6, 1, 7, 2, 8, 3, 9, 4, 10}&gt;</p>
<p>real 0m35.421s<br />
user 0m23.900s<br />
sys 0m9.910s<br />
</code></p>
<p><code><br />
devon@chronos ~/Projects/sets $ cat sets2.rb<br />
#!/usr/bin/env ruby<br />
require 'set'<br />
require 'pp'<br />
large = Set.new(Range.new(1,10000000))<br />
small = Set.new(Range.new(1,10))<br />
pp large.intersection(small)</p>
<p>devon@chronos ~/Projects/sets $ time ./sets2.rb<br />
#&lt;Set: {5, 6, 1, 7, 2, 8, 3, 9, 4, 10}%gt;</p>
<p>real 0m16.917s<br />
user 0m12.720s<br />
sys 0m3.430s<br />
</code></p>
<p>So the order that I intersect the sets drastically impacts the speed of the algorithm (2x).  Let&#8217;s take a look at python to see whether a language in the same class behaves similarly.</p>
<p><code><br />
devon@chronos ~/Projects/sets $ cat sets1.py<br />
#!/usr/bin/env python</p>
<p>large = set(range(1,10000000))<br />
small = set(range(1,10))</p>
<p>print large.intersection(small)</p>
<p>devon@chronos ~/Projects/sets $ time ./sets1.py<br />
set([1, 2, 3, 4, 5, 6, 7, 8, 9])</p>
<p>real 0m2.583s<br />
user 0m1.850s<br />
sys 0m0.670s<br />
</code></p>
<p><code><br />
devon@chronos ~/Projects/sets $ cat sets2.py<br />
#!/usr/bin/env python</p>
<p>large = set(range(1,10000000))<br />
small = set(range(1,10))</p>
<p>print large.intersection(small)</p>
<p>devon@chronos ~/Projects/sets $ time ./sets2.py<br />
set([1, 2, 3, 4, 5, 6, 7, 8, 9])</p>
<p>real 0m2.598s<br />
user 0m1.760s<br />
sys 0m0.710s<br />
</code></p>
<p>So no, python handles the choice of which set to intersect with the other gracefully.  This is a good example of how the ruby set api is immature.  I&#8217;m ignoring that it&#8217;s taking between 13.7 and 6.5 times as long to execute, because I think that it&#8217;s reasonable for people to do code in something that is easier for them to work in and then optimize.  My problem here is that based on the direction you do the intersection, it can take 2x longer in ruby.  This is shoddy engineering and is the kind of thing that gets solved in a language as it matures.  The problem is that the language was immature when it exploded into widespread use, and no one seems to be doing anything to make it ready for prime time. </p>
<p>So what about 1.9?  1.9 is supposed to be where the energy is going to make the language faster and more mature.<br />
<code><br />
devon@chronos ~/Projects/sets $ cat sets1.rb<br />
#!/usr/bin/env ruby1.9<br />
require 'set'<br />
require 'pp'<br />
large = Set.new(Range.new(1,10000000))<br />
small = Set.new(Range.new(1,10))<br />
pp small.intersection(large)</p>
<p>devon@chronos ~/Projects/sets $ time ./sets1.rb<br />
#&lt;Set: {1, 2, 3, 4, 5, 6, 7, 8, 9, 10}&gt;</p>
<p>real    0m13.310s<br />
user    0m11.240s<br />
sys    0m0.680s<br />
</code></p>
<p><code><br />
devon@chronos ~/Projects/sets $ cat sets2.rb<br />
#!/usr/bin/env ruby1.9<br />
require 'set'<br />
require 'pp'<br />
large = Set.new(Range.new(1,10000000))<br />
small = Set.new(Range.new(1,10))<br />
pp large.intersection(small)</p>
<p>devon@chronos ~/Projects/sets $ time ./sets2.rb<br />
#&lt;Set: {1, 2, 3, 4, 5, 6, 7, 8, 9, 10}&gt;</p>
<p>real    0m9.181s<br />
user    0m8.280s<br />
sys    0m0.480s<br />
</code></p>
<p>While it&#8217;s faster (which wasn&#8217;t really my complaint anyway), it still is very different based on which direction you do your intersection from.  I see evidence of speed work being done on ruby, but not on maturing the language so that it meets tried and true engineering principals like the <a href="http://www.faqs.org/docs/artu/ch01s06.html">rule of least surprise.</a>  (Yes, code is a user interface for coders, so the rule of least surprise applies) <strong><em>(1)</em></strong> </p>
<p><strong>Nil as an object</strong><br />
How about this one that has actually done damage to our database:</p>
<p><code><br />
devon@chronos ~/Projects/sets $ irb<br />
irb(main):001:0> nil.id<br />
(irb):1: warning: Object#id will be deprecated; use Object#object_id<br />
=> 4<br />
</code></p>
<p>It certainly explains why we have a bizarrely large number of items in our database with foreign keys set to 4.  This conflicts directly with the rails standard for naming a database primary key as &#8216;id&#8217;, which you assess on a model at obj.id.  Yes, code should have lots of null checks, but real world code has flaws.  Sure it throws a warning, but since it doesn&#8217;t break on nil when you call .id, you get data corruption.  Gee, thanks, ruby.</p>
<p><strong>Ruby in general</strong><br />
These are just a few examples, but ruby is <em>rife</em> with happy path coding.  The language needed another 5 years of development before going into widespread use.  Instead, I think it&#8217;s getting worse because a set of rails engineers who don&#8217;t know anything about languages are at the helm, adding lots of syntactic sugar but with a distinct lack of substance behind that candied shell.</p>
<p><sub><strong><em>1.</em></strong> Perhaps it&#8217;s not fair to compare ruby to the unix philosophy, because the ruby design philosophy violates the 17 rules in ways that are clearly intentional.  Specifically, ruby and rails egregiously violate the rules of clarity and transparency, and rails in particular violates the rules of separation, composition and representation.</sub></p>
]]></content:encoded>
			<wfw:commentRss>http://www.evilsoft.org/2010/06/30/why-i-view-ruby-as-immature/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Stupid SSH config tricks</title>
		<link>http://www.evilsoft.org/2009/10/23/stupid-ssh-config-tricks</link>
		<comments>http://www.evilsoft.org/2009/10/23/stupid-ssh-config-tricks#comments</comments>
		<pubDate>Fri, 23 Oct 2009 18:03:29 +0000</pubDate>
		<dc:creator>Soulcatcher</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[Tech]]></category>

		<guid isPermaLink="false">http://www.evilsoft.org/?p=225</guid>
		<description><![CDATA[So I use ssh a lot.  And this is one damn powerful little program.  I decided to write up a log of some of my favorite ssh tricks.

Using ssh as a proxy server (to avoid your company&#8217;s/country&#8217;s anal probeware)
SSH has a built in SOCKS proxy that you can use in any program that [...]]]></description>
			<content:encoded><![CDATA[<p>So I use ssh a lot.  And this is one damn powerful little program.  I decided to write up a log of some of my favorite ssh tricks.</p>
<p><span id="more-225"></span></p>
<p><strong>Using ssh as a proxy server (to avoid your company&#8217;s/country&#8217;s anal probeware)</strong><br />
SSH has a built in SOCKS proxy that you can use in any program that can run over a SOCKS proxy.  This includes Firefox (really, all browsers), Thunderbird, Pidgin/Adium (as well as almost all other IM clients like Google Talk, AIM, etc) and a ton of other networking programs we all use.  Using SSH with the -D flag lets you create a dynamic ssh tunnel that acts as a SOCKS proxy, and sends all your traffic from the endpoint of your ssh connection.</p>
<p>To run ssh as a proxy, you need to run it like this:<br />
<code>ssh -D 127.0.0.1:3128 someserver.com</code></p>
<p>This command says you want to run a dynamic port forward, and it should be available on your local computer on port 3128 (default for SOCKS).  All traffic that runs through this will appear to be coming from someserver.com (where you need to have an ssh account).  Further, all traffic that you send through this tunnel will enter the tunnel without ever leaving your box, travel over that tunnel using ssh&#8217;s crypto, then exit at it&#8217;s endpoint where it can connect to whatever you want it to connect to.  Return traffic follows the same path but in reverse.  This is a great trick not only for avoiding firewalls (so long as your firewall does allow port 22 traffic), but also for surfing the web on any network that you don&#8217;t trust.  Instead you can browse the web/read your email from a server you control and trust by doing all your networking via an encrypted ssh proxy.</p>
<p>To configure Firefox to use this crypted tunnel, click on Edit->Preferences, and select Advanced.  From there, under Connection, click on Settings.  You will want to select Manual proxy configuraion.  Leave everything blank except SOCKS Host: localhost and Port: 3128.  Check SOCKS v5.  If you want to be able to access any resources that are on your local network without using the proxy, enter the local addresses or networks into the No Proxy For: box.</p>
<p><strong>Using a single connection (and only having to enter in the password once)</strong><br />
If you want to be able to make connections to a box, and are sick of typing in the password multiple times for multiple connections, you can use ControlMaster.  This allows you to have multiple ssh terminal sessions shared over one connection.  This means that you only establish one connection, and one consequence of that is you also only need to do auth once when you establish the connection. You can enable this by editing ~/.ssh/config and adding *:</p>
<p><code>Host *<br />
	ControlMaster auto<br />
	ControlPath ~/.ssh/master-%r@%h:%p</code></p>
<p>One nice side effect of this is that you can do an ls ~/.ssh and see exactly which boxes you are connected to presently.</p>
<p><strong>Using multiple ssh keys transparently</strong><br />
When I started at my present job, everyone was using keychain to manage the large number of ssh keys they had to deal with from our various servers.  You don&#8217;t need a key manager to transparently utilize multiple ssh keys. Once again pop open ~/.ssh/config, and now instead of workign with the Host * section, you can create sections for each class of server you access (or individual servers).  If you have multiple ssh keys that need to be used on multiple servers, you can avoid using -i and instead add a section for a class of server, and declare the ssh key inside of that via IdentityFile.  Example:</p>
<p><code>Host *.production.somedomain.com<br />
	IdentityFile ~/.ssh/id_rsa_production</code></p>
<p><code>Host *.staging.somedomain.com<br />
	IdentityFile ~/.ssh/id_rsa_staging</code></p>
<p>Now, whenever you ssh to any box in the staging subdomain, it will use the staging key, and when you ssh to any box in the production subdomain, it will use the production key.</p>
<p><strong>Keepalive</strong><br />
Some firewalls regularly snip idle connections.  If you regularly find ssh sessions that you have left idle for a while to be unresponsive when you come back to them you are suffering from this.  Not only is it irritating to lose your connection, but you may even find the whole terminal unresponsive, forcing you to close the terminal as well.  Well, ssh config has an answer for you for this as well.</p>
<p><code>Host *<br />
	ServerAliveInterval 15</code></p>
<p>ServerAliveInterval is normally off, but when you turn it on, ssh will start sending a packet every n seconds to try to keep the connection open.  Even better, now that it&#8217;s testing, if the connection truly did go away without being closed, SSH will automatically close the session if 3 of these keep alive packets go unresponded to. (you can set that to a different number by setting ServerAliveCountMax).  This means that even when connections get snipped, you won&#8217;t come back to find an unresponsive terminal.  Either the connection will be alive, or the connection will have closed, none of these unresponsive zombie connections.</p>
<p><strong>Defaulting your remote user</strong><br />
Few people are lucky enough to have the same username on all the servers they regularly visit.  Just as you can set the identity file on a per domain basis, you can also set username:</p>
<p><code>Host somedomain.com<br />
	User foo</code></p>
<p><code>Host someotherdimain.com<br />
	User bar</code></p>
<p>Now when you ssh to somedomain.com, unless you specify the username at the prompt (baz@somedomain.com) it will use foo.  This overrides the default of using your logged in username.</p>
<p><strong>Server aliases</strong><br />
Do you have a lot of domains you ssh to that you wish you had shorter names for?  Do you have some things that you ssh only to via IP address?  Both of these can be solved with the HostName directive.  For example, if your gateway accepts ssh traffic, and your internal domain doesn&#8217;t use dns, you can use ssh config to give in an alias for ssh.</p>
<p><code>Host router<br />
	HostName 192.168.1.1</code></p>
<p>Now it&#8217;s as simple as typing <code>ssh router</code> to get to the gateway.  This trick works with ip addresses or dns names.</p>
<p><strong>Executing remote commands with ssh</strong><br />
Sometimes you only need to get a small piece of information from a server, and don&#8217;t want to bother with a full ssh session.  Sometimes you may want to have a process that goes out to a server and runs a command as a part of a bigger script.  Either way, you can use ssh to run individual commands on other boxes, and get the results on stdout and stderr.  Give this a try:</p>
<p><code>devon@chronos ~ $ ssh evilsoft.org "uptime"<br />
 14:00:23 up  7:38,  1 user,  load average: 0.84, 0.34, 0.22<br />
</code></p>
<p><strong>Others</strong><br />
SSH is a powerful toolkit, and I have only scratched the surface of it&#8217;s possibilities.  Spend some time reading <code>man ssh_config</code> and you&#8217;ll be amazed at some of the incredibly cool stuff in there for you to find.<br />
* note, you only need one Host * section in your ssh config.  All the variables I am discussing can be consolidated into one Host * section.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.evilsoft.org/2009/10/23/stupid-ssh-config-tricks/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Libertarians are just crazy for firefox (and other observations)</title>
		<link>http://www.evilsoft.org/2009/08/25/libertarians-are-just-crazy-for-firefox-and-other-observations</link>
		<comments>http://www.evilsoft.org/2009/08/25/libertarians-are-just-crazy-for-firefox-and-other-observations#comments</comments>
		<pubDate>Tue, 25 Aug 2009 21:22:18 +0000</pubDate>
		<dc:creator>Soulcatcher</dc:creator>
				<category><![CDATA[NYCResistor]]></category>
		<category><![CDATA[Projects]]></category>
		<category><![CDATA[Tech]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[awesomeaugust]]></category>

		<guid isPermaLink="false">http://www.evilsoft.org/?p=151</guid>
		<description><![CDATA[A few weeks ago, a video was passed around our office that was about Google interviewing people in Times Square about what a browser is.  The results were fairly appalling.  For the most part, people responded with various portal and search web sites instead of something like &#8220;IE&#8221; or &#8220;Firefox&#8221;.  This coincided [...]]]></description>
			<content:encoded><![CDATA[<p>A few weeks ago, a video was passed around our office that was about <a href="http://thenextweb.com/2009/06/19/google-asked-people-times-square-browser-responses-shock/">Google interviewing people in Times Square about what a browser is</a>.  The results were fairly appalling.  For the most part, people responded with various portal and search web sites instead of something like &#8220;IE&#8221; or &#8220;Firefox&#8221;.  This coincided with a conversation I was having with someone in which I posited the hypothesis that IE as a browser would bias to the political right, and other browsers (specifically firefox) would bias to the political left.  My reasoning was:</p>
<ol>
<li>Conservatives would be more comfortable with a browser delivered by a major corporation that has faced antitrust charges over that browser then liberals would.</li>
<li>Liberals anecdotally are more prone to counter-cultural choices, and thus would be more likely to seek out an alternative to the default browser.</li>
</ol>
<p>The Google interviews made me realize one other thing.  In testing for this kind of effect, you would need to eliminate people who didn&#8217;t know what a browser was.  Clearly, a person who doesn&#8217;t even know what a browser is is highly unlikely to proactively switch from their system&#8217;s default browser.  Further, if a person&#8217;s political views are correlated at all with their likelihood of understanding what a browser is, not eliminating people who don&#8217;t understand could hide real results.</p>
<p>The company I work for, <a href="http://www.knewton.com">Knewton Inc</a>, is becoming known in certain circles of its clever usage for the vastly underused (IMHO) <a href="https://www.mturk.com/mturk/welcome">Amazon Mechanical Turk</a> service.  When I mentioned my contention to our guy who&#8217;s been pioneering our MTurk usage, Dahn Tamir, he suggested that we build an MTurk task and get some real data to find out whether my hypothesis had any basis in reality. The rest of this post represents my findings.</p>
<p><span id="more-151"></span></p>
<p><strong>The Experiment</strong><br />
We posted the following poll to MTurk, allowing users the ability to do the task only once (making it a lot harder to stuff the ballot box, or, at the very least, require a hell of a lot more effort on the part of the users):</p>
<p><img src="http://www.evilsoft.org/wordpress/wp-content/uploads/2009/08/poll.png" alt="The Poll" title="The Poll" width="500" height="436" class="alignleft size-full wp-image-168" /></p>
<p>The options for political affiliation were:</p>
<ul>
<li>Republican</li>
<li>Independant</li>
<li>Democrat</li>
</ul>
<p>The options for political philosophy were:</p>
<ul>
<li>Strongly Liberal</li>
<li>Liberal</li>
<li>Moderately Liberal</li>
<li>Moderate</li>
<li>Moderately Conservative</li>
<li>Conservative</li>
<li>Strongly Conservative</li>
<li>Socialist</li>
<li>Libertarian</li>
</ul>
<p>For the web browser, we considered a person to have passed the test if he or she answered Internet Explorer or Firefox, but no others.  We considered them to have failed if they answered Yahoo, Google or MSN.  It was pointed out that AOL did have a browser that could be reasonably referred to as AOL, so we ignored this field.  Finally, we recorded the workers&#8217; User Agent, letting us see what browser/os they were using.</p>
<p><strong>Raw Results</strong><br />
Observations:</p>
<ul>
<li>Clearly, MTurkers are going to be more likely to know what a browser is, and it shows in the data.  Google found that 8% of people in Times Square knew what a browser was, but 86% of respondents here did.</li>
<li>We appear to have more Democrats/Liberals than Republicans/Conservatives one would expect in the normal population.</li>
<li>I only added Socialist on a lark, and I was pretty amazed to see that it still got 2.24% in a poll of Americans</li>
<li>Firefox polled a lot higher here than one would expect in the wild. This should make it a lot easier to see any effects, along with the high pass rate of the test.</li>
</ul>
<table>
<tr>
<th colspan=2 align='center'>Party Affiliation</th>
</tr>
<tr>
<td valign=top>
<table>
<tr>
<td></td>
<th>Total</th>
<th>%</th>
</tr>
<tr>
<th>Republican</th>
<td>244</td>
<td>23.71%</td>
</tr>
<tr>
<th>Independent</th>
<td>397</td>
<td>38.58%</td>
</tr>
<tr>
<th>Democrat</th>
<td>388</td>
<td>37.71%</td>
</tr>
</table>
</td>
<td valign=top>
<a href="http://www.evilsoft.org/wordpress/wp-content/uploads/2009/08/affiliation_distribution-150x150.png"><img src="http://www.evilsoft.org/wordpress/wp-content/uploads/2009/08/affiliation_distribution.png" alt="Distribution by Party Affiliation" title="Distribution by Party Affiliation" width="239" height="266" class="alignleft size-full wp-image-152" /></a>
</td>
</table>
<table>
<tr>
<th colspan=2 align='center'>Political Philosophy</th>
</tr>
<tr>
<td valign=top>
<table>
<tr>
<td></td>
<th>Total</th>
<th>%</th>
</tr>
<tr>
<th>Strongly Liberal</th>
<td>92</td>
<td>8.94%</td>
</tr>
<tr>
<th>Liberal</th>
<td>188</td>
<td>18.27%</td>
</tr>
<tr>
<th>Moderately Liberal</th>
<td>169</td>
<td>16.42%</td>
</tr>
<tr>
<th>Moderate</th>
<td>197</td>
<td>19.14%</td>
</tr>
<tr>
<th>Moderately Conservative</th>
<td>157</td>
<td>15.26%</td>
</tr>
<tr>
<th>Conservative</th>
<td>105</td>
<td>10.20%</td>
</tr>
<tr>
<th>Strongly Conservative</th>
<td>34</td>
<td>3.30%</td>
</tr>
<tr>
<th>Socialist</th>
<td>23</td>
<td>2.24%</td>
</tr>
<tr>
<th>Libertarian</th>
<td>64</td>
<td>6.22%</td>
</tr>
</table>
</td>
<td valign=top>
<a href="http://www.evilsoft.org/wordpress/wp-content/uploads/2009/08/philosophy_distribution.png"><img src="http://www.evilsoft.org/wordpress/wp-content/uploads/2009/08/philosophy_distribution-300x167.png" alt="Distribution of Political Philosophies" title="Distribution of Political Philosophies" width="300" height="167" class="alignleft size-medium wp-image-158" /></a>
</td>
</table>
<table>
<tr>
<th colspan=2 align='center'>Browsers</th>
</tr>
<tr>
<td valign=top>
<table>
<tr>
<td></td>
<th>Total</th>
<th>%</th>
</tr>
<tr>
<th>Firefox</th>
<td>479</td>
<td>46.55%</td>
</tr>
<tr>
<th>Internet Explorer</th>
<td>439</td>
<td>42.66%</td>
</tr>
<tr>
<th>Safari</th>
<td>63</td>
<td>6.12%</td>
</tr>
<tr>
<th>Chrome</th>
<td>41</td>
<td>3.98%</td>
</tr>
<tr>
<th>Opera</th>
<td>7</td>
<td>0.68%</td>
</tr>
</table>
</td>
<td valign=top>
<a href="http://www.evilsoft.org/wordpress/wp-content/uploads/2009/08/browser_distribution-150x150.png"><img src="http://www.evilsoft.org/wordpress/wp-content/uploads/2009/08/browser_distribution.png" alt="Distribution of Browsers" title="Distribution of Browsers" width="237" height="265" class="alignleft size-full wp-image-156" /></a>
</td>
</table>
<table>
<tr>
<th colspan=2 align='center'>Browser Test Results</th>
</tr>
<tr>
<td valign=top>
<table>
<tr>
<td></td>
<th>Total</th>
<th>%</th>
</tr>
<tr>
<th>Pass</th>
<td>886</td>
<td>86.10%</td>
</tr>
<tr>
<th>Fail</th>
<td>143</td>
<td>13.90%</td>
</tr>
</table>
</td>
<td valign=top>
<a href="http://www.evilsoft.org/wordpress/wp-content/uploads/2009/08/test_distribution-150x150.png"><img src="http://www.evilsoft.org/wordpress/wp-content/uploads/2009/08/test_distribution.png" alt="Distribution of Test Results" title="Distribution of Test Results" width="210" height="265" class="alignleft size-full wp-image-159" /></a>
</td>
</table>
<p><strong>Test Results</strong><br />
Next, after pulling in the raw results, we compared browser, affiliation and philosophy to the test results.</p>
<p>Observations:</p>
<ul>
<li>Unsurprisingly, IE fared better amongst people who failed the test.  Firefox did substantially better amongst people who passed the test. Safari also did better amongst people who passed the test, which was a little surprising, because we expected all default browsers to do better with people who failed.  The sample, however, is small enough that the Safari factor could just be noise.  It has been mentioned that this could have been caused by Safari for windows.  That supposition can potentially be answered in the data.</li>
<li>Democrats did worse on the test, while Republicans and Independents did basically the same.  We see the likely reason why in the political philosophy section. The further left you go, the worse you tend to do on the browser test, until you hit strongly liberal. Strong Liberals reversed the trend entirely and tested better than any other group.</li>
</ul>
<table>
<tr>
<th colspan=2 align='center'>Test Results by Party Affiliation</th>
</tr>
<tr>
<td valign=top>
<table>
<tr>
<td></td>
<th>Pass %</th>
<th>Fail %</th>
</tr>
<tr>
<th>Republican</th>
<td>87.70%</td>
<td>12.30%</td>
</tr>
<tr>
<th>Independent</th>
<td>88.16%</td>
<td>11.84%</td>
</tr>
<tr>
<th>Democrat</th>
<td>82.99%</td>
<td>17.01%</td>
</tr>
</table>
</td>
<td valign=top>
<a href="http://www.evilsoft.org/wordpress/wp-content/uploads/2009/08/test_result_by_affiliation1-268x300.png"><img src="http://www.evilsoft.org/wordpress/wp-content/uploads/2009/08/test_result_by_affiliation1.png" alt="Test Results by Party Affiliation" title="Test Results by Party Affiliation" width="364" height="406" class="alignleft size-full wp-image-191" /></a>
</td>
</table>
<table>
<tr>
<th colspan=2 align='center'>Test Results By Political Philosophy</th>
</tr>
<tr>
<td valign=top>
<table>
<tr>
<td></td>
<th>Pass %</th>
<th>Fail %</th>
</tr>
<tr>
<th>Strongly Liberal</th>
<td>91.30%</td>
<td>8.70%</td>
</tr>
<tr>
<th>Liberal</th>
<td>81.91%</td>
<td>18.09%</td>
</tr>
<tr>
<th>Moderately Liberal</th>
<td>84.62%</td>
<td>15.38%</td>
</tr>
<tr>
<th>Moderate</th>
<td>86.29%</td>
<td>13.71%</td>
</tr>
<tr>
<th>Moderately Conservative</th>
<td>86.62%</td>
<td>13.38%</td>
</tr>
<tr>
<th>Conservative</th>
<td>87.62%</td>
<td>12.38%</td>
</tr>
<tr>
<th>Strongly Conservative</th>
<td>88.24%</td>
<td>11.76%</td>
</tr>
<tr>
<th>Socialist</th>
<td>86.96%</td>
<td>13.04%</td>
</tr>
<tr>
<th>Libertarian</th>
<td>89.06%</td>
<td>10.94%</td>
</tr>
</table>
</td>
<td valign=top>
<a href="http://www.evilsoft.org/wordpress/wp-content/uploads/2009/08/test_result_by_philosophy1.png"><br />
<img src="http://www.evilsoft.org/wordpress/wp-content/uploads/2009/08/test_result_by_philosophy1-300x199.png" alt="Test Results By Political Philosophy" title="Test Results By Political Philosophy" width="300" height="199" class="alignleft size-medium wp-image-192" /></a>
</td>
</table>
<table>
<tr>
<th colspan=2 align='center'>Browser by Test Results</th>
</tr>
<tr>
<td valign=top>
<table>
<tr>
<td></td>
<th>Pass %</th>
<th>Fail %</th>
</tr>
<tr>
<th>Internet Explorer</th>
<td>39.16%</td>
<td>64.34%</td>
</tr>
<tr>
<th>Firefox</th>
<td>49.89%</td>
<td>25.87%</td>
</tr>
<tr>
<th>Safari</th>
<td>6.21%</td>
<td>5.59%</td>
</tr>
<tr>
<th>Chrome</th>
<td>4.06%</td>
<td>3.50%</td>
</tr>
<tr>
<th>Opera</th>
<td>0.68%</td>
<td>0.70%</td>
</tr>
</table>
</td>
<td valign=top>
<a href="http://www.evilsoft.org/wordpress/wp-content/uploads/2009/08/browser_by_test_result1.png"><img src="http://www.evilsoft.org/wordpress/wp-content/uploads/2009/08/browser_by_test_result1-300x237.png" alt="Browser by Test Results" title="Browser by Test Results" width="300" height="237" class="alignleft size-medium wp-image-162" /></a></td>
</table>
<p><strong>Browser choice by political opinion</strong><br />
Here we have the final analysis.  Looking at how browser choice changes across the political spectrum.</p>
<p>Observations:</p>
<ul>
<li>My initial hypothesis appears to be supported by this data set. IE falls off sharply the further left you go on the spectrum from Moderate.  Strong liberals use IE at <strong>half</strong> the rate of strong conservatives.</li>
<li>Both Libertarians and Socialists appear to fit in on the left end of the spectrum at least where browser choice is concerned.  Libertarians appear to loath IE and  are nuts for Firefox. They have the highest Firefox rating of anyone with an astounding 70.18%</li>
<li>Firefox’s fall as you go to the right is less pronounced as IE’s fall as you go to the left. This is probably caused by the generally higher likelyhood of picking Safari as you go leftward.</li>
<li>Opera appears to have its ’stronghold’ with Socialists, who were as likely to pick it as Chrome or Safari.</li>
<li>Libertarians also appear to have an exaggerated preference for Opera, Safari and Chrome. Basically, Libertarians really don’t like IE.</li>
</ul>
<table>
<tr>
<th align='center'>Browser by Party Affiliation</th>
</tr>
<tr>
<td valign=top>
<table>
<tr>
<td></td>
<th>IE %</th>
<th>Firefox %</th>
<th>Safari %</th>
<th>Chrome %</th>
<th>Opera %</th>
</tr>
<tr>
<th>Republican</th>
<td>45.33%</td>
<td>45.79%</td>
<td>5.14%</td>
<td>3.27%</td>
<td>0.47%</td>
</tr>
<tr>
<th>Independent</th>
<td>36.00%</td>
<td>52.86%</td>
<td>6.57%</td>
<td>3.71%</td>
<td>0.86%</td>
</tr>
<tr>
<th>Democrat</th>
<td>38.51%</td>
<td>49.38%</td>
<td>6.52%</td>
<td>4.97%</td>
<td>0.62%</td>
</tr>
</table>
</td>
</tr>
<tr>
<td valign=top>
<img src="http://www.evilsoft.org/wordpress/wp-content/uploads/2009/08/browser_by_affiliation.png" alt="Browser By party Affiliation" title="Browser By party Affiliation" width="491" height="365" class="alignleft size-full wp-image-153" />
</td>
</table>
<table>
<tr>
<th align='center'>Browser By Political Philosophy</th>
</tr>
<tr>
<td valign=top>
<table>
<tr>
<td></td>
<th>IE %</th>
<th>Firefox %</th>
<th>Safari %</th>
<th>Chrome %</th>
<th>Opera %</th>
</tr>
<tr>
<th>Strongly Liberal</th>
<td>25.00%</td>
<td>63.10%</td>
<td>8.33%</td>
<td>3.57%</td>
<td>0.00%</td>
</tr>
<tr>
<th>Liberal</th>
<td>35.71%</td>
<td>50.65%</td>
<td>9.74%</td>
<td>2.60%</td>
<td>1.30%</td>
</tr>
<tr>
<th>Moderately Liberal</th>
<td>41.96%</td>
<td>48.25%</td>
<td>4.20%</td>
<td>5.59%</td>
<td>0.00%</td>
</tr>
<tr>
<th>Moderate</th>
<td>45.88%	44.12%</td>
<td>4.12%</td>
<td>5.88%</td>
<td>0.00%</td>
</tr>
<tr>
<th>Moderately Conservative</th>
<td>47.06%</td>
<td>43.38%</td>
<td>7.35%</td>
<td>2.21%</td>
<td>0.00%</td>
</tr>
<tr>
<th>Conservative</th>
<td>44.57%</td>
<td>46.74%</td>
<td>4.35%</td>
<td>3.26%</td>
<td>1.09%</td>
</tr>
<tr>
<th>Strongly Conservative</th>
<td>50.00%</td>
<td>46.67%</td>
<td>0.00%</td>
<td>3.33%</td>
<td>0.00%</td>
</tr>
<tr>
<th>Socalist</th>
<td>30.00%</td>
<td>55.00%</td>
<td>5.00%</td>
<td>5.00%</td>
<td>5.00%</td>
</tr>
<tr>
<th>Libertarian</th>
<td>12.28%</td>
<td>70.18%</td>
<td>8.77%</td>
<td>5.26%</td>
<td>3.51%</td>
</tr>
</table>
</td>
</tr>
<tr>
<td valign=top>
<img src="http://www.evilsoft.org/wordpress/wp-content/uploads/2009/08/browser_by_philosophy2.png" alt="Browser By Political Philosophy" title="Browser By Political Philosophy" width="500" height="705" class="alignleft size-full wp-image-202" />
</td>
</table>
<p><strong>Edit</strong><br />
Some have found the graph confusing, so here are two other versions.  Both horizontal, showing the data in one by browser, and in the other by political philosophy.  Click on them to enlarge</p>
<p><a href="http://www.evilsoft.org/wordpress/wp-content/uploads/2009/08/affiliation_by_browser.png" border=1 color="blue"><img src="http://www.evilsoft.org/wordpress/wp-content/uploads/2009/08/affiliation_by_browser-300x161.png" alt="Affiliation By Browser" title="Affiliation By Browser" width="300" height="161" class="alignleft size-medium wp-image-222" /><br />(enlarge)</a></p>
<p><a href="http://www.evilsoft.org/wordpress/wp-content/uploads/2009/08/browser_by_affiliation2.png" alt="Browser By Affiliation" title="Browser By Affiliation" width="1048" height="492" class="alignleft size-full wp-image-223"><img src="http://www.evilsoft.org/wordpress/wp-content/uploads/2009/08/browser_by_affiliation2-300x140.png" alt="Browser By Affiliation" title="Browser By Affiliation" width="300" height="140" class="alignleft size-medium wp-image-223" /><br />(enlarge)</a></p>
<p><strong>Conclusion</strong><br />
There appear to be a few strong correlations in data between a person’s political thinking and his or her browser choice.  Still, this data is not representative of the population as a whole.  It is, instead, a sample of people who are web savvy enough to use MTurk and who are motivated to take polls like this for small amounts of money.  Also, the strong bias of the tech and open source communities toward libertarianism is probably causing the strong bias of libertarianism toward Firefox in this sample.  Still, I thought these results were too interesting to keep to myself.  Enjoy.</p>
<p><strong>Notes</strong><br />
If you want to toy with the raw data and get access to the source I used for experimenting with the data, as well as my analysis spreadsheets, those are available <a href="http://www.evilsoft.org/blogfiles/the_experiment.tar.gz">here</a>.  We did this in 3 separate data gatherings, and those samples are still separated into 3 data files the raw data.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.evilsoft.org/2009/08/25/libertarians-are-just-crazy-for-firefox-and-other-observations/feed</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>Rube Goldburg watch winder</title>
		<link>http://www.evilsoft.org/2009/02/20/rube-goldburg-watch-winder</link>
		<comments>http://www.evilsoft.org/2009/02/20/rube-goldburg-watch-winder#comments</comments>
		<pubDate>Fri, 20 Feb 2009 17:07:40 +0000</pubDate>
		<dc:creator>Soulcatcher</dc:creator>
				<category><![CDATA[NYCResistor]]></category>
		<category><![CDATA[Tech]]></category>

		<guid isPermaLink="false">http://www.evilsoft.org/?p=95</guid>
		<description><![CDATA[My parents recently visited my aunt and uncle in china, and while there they picked up some rather nice high end watches direct from the factories.  Most of the time, my father prefers his digital, and only wants to wear the watch he picked up in china when he&#8217;s in more formal dress.  [...]]]></description>
			<content:encoded><![CDATA[<p>My parents recently visited my aunt and uncle in china, and while there they picked up some rather nice high end watches direct from the factories.  Most of the time, my father prefers his digital, and only wants to wear the watch he picked up in china when he&#8217;s in more formal dress.  Thing is, the watch he bought is autowinding, so it&#8217;s always either dead, or at the very least really wrong every time he puts it on.  So he asked me to come up with a crazy contraption to wind his watch.  This is what I came up with:</p>
<p><a href="http://www.flickr.com/photos/25032167@N08/3069219509/" title="watch_winder_1 by devondjones, on Flickr"><img src="http://farm4.static.flickr.com/3210/3069219509_b5e5f0edc2.jpg" width="500" height="375" alt="watch_winder_1" /></a></p>
<p>You can see some more pics in my <a href="http://www.flickr.com/photos/25032167@N08/">flickr photostream.</a>  The part I&#8217;m most proud of is turning the pipe into a bushing to create a pretty good bearing at the top.</p>
<p>Here&#8217;s some video of it in action: (and a second video <a href="http://www.youtube.com/watch?v=zuaOh2R_vno">here</a>)</p>
<p><object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/5SnHsPFQ4VQ&#038;hl=en&#038;fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/5SnHsPFQ4VQ&#038;hl=en&#038;fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></p>
<p>Materials:</p>
<ul>
<li>2 pipe flanges (1/2&#8243;)</li>
<li>4 pipe elbows (1/2&#8243;)</li>
<li>3 pipe tees (1/2&#8243;)</li>
<li>2 pipe bushing2 (1/2&#8243;)</li>
<li>4 pipe nipples of various sizes (1/2&#8243;) from close to 6&#8243;</li>
<li>1 solarbotics gm3 motor</li>
<li>1 zip tie</li>
<li>some <a href="http://www.shapelock.com/">shapelock</a> (this stuff rocks)</li>
<li>a couple laser cut parts (the big plastic wheel and the box that holds the watch)</li>
<li>a power supply for the motor (I used what I had on hand, a <a href="http://www.uchobby.com/index.php/2008/02/19/bread-board-power-supply/">uChobby breadboard power supply</a>)</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.evilsoft.org/2009/02/20/rube-goldburg-watch-winder/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Cool Tech Friday (8/18/06)</title>
		<link>http://www.evilsoft.org/2006/08/18/cool-tech-friday-81806</link>
		<comments>http://www.evilsoft.org/2006/08/18/cool-tech-friday-81806#comments</comments>
		<pubDate>Fri, 18 Aug 2006 23:26:58 +0000</pubDate>
		<dc:creator>Administrator</dc:creator>
				<category><![CDATA[Cool Tech Friday]]></category>

		<guid isPermaLink="false">http://www.evilsoft.org/?p=76</guid>
		<description><![CDATA[Getting a little breather, so I&#8217;m sending out a ctf update. Hopefully I&#8217;ll get another one out before more then a month.
      Biotech

Your Brain Boots Up Like a Computer

          Culture

We Can Detect Liquid Explosives
Did Humans Evolve? No, Say Americans
New Cell Can [...]]]></description>
			<content:encoded><![CDATA[<p>Getting a little breather, so I&#8217;m sending out a ctf update. Hopefully I&#8217;ll get another one out before more then a month.</p>
<p>      <big><span style="font-weight: bold;">Biotech</span></big>
<ol>
<li><a href="http://news.yahoo.com/s/space/20060818/sc_space/yourbrainbootsuplikeacomputer">Your Brain Boots Up Like a Computer</a></li>
</ol>
<p>          <big><span style="font-weight: bold;">Culture</span></big>
<ol>
<li><a href="http://www.wired.com/news/wireservice/0,71584-0.html?tw=wn_technology_7">We Can Detect Liquid Explosives</a></li>
<li><a href="http://science.slashdot.org/article.pl?sid=06/08/15/1845200&#038;from=rss">Did Humans Evolve? No, Say Americans</a></li>
<li><a href="http://abcnews.go.com/Technology/story?id=2125709">New Cell Can Tell If You&#8217;re Drunk</a></li>
</ol>
<p>          <big><span style="font-weight: bold;">Robotics</span></big>
<ol>
<li><a href="http://www.timesonline.co.uk/article/0,,2087-2230715,00.html">No sex please, robot, just clean the floor</a></li>
</ol>
<p>          <big><span style="font-weight: bold;">Science</span></big>
<ol>
<li><a href="http://www.sciencedaily.com/releases/2006/08/060804135910.htm"> Satellite Data Reveals Gravity Change From Sumatran Earthquake</a></li>
<li><a href="http://www.nwfdailynews.com/articleArchive/jun2006/notevenwrong.php">Has string theory tied up better ideas in physics?</a></li>
</ol>
<p>          <big><span style="font-weight: bold;">Space</span></big>
<ol>
<li><a href="http://www.space.com/scienceastronomy/060817_moon_planet.html">Earth&#8217;s Moon Could Become a Planet</a></li>
<li><a href="http://space.com/scienceastronomy/060816_planet_definition.html">Nine Planets Become 12 with Controversial New Definition</a></li>
<li><a href="http://www.npr.org/templates/story/story.php?storyId=5631291">Pluto: Is It a Planet?</a></li>
<li><a href="http://www.space.com/scienceastronomy/060807_mm_huble_revise.html">Universe Might be Bigger and Older than Expected</a></li>
<li><a href="http://www.space.com/scienceastronomy/060803_moon_shape.html">Moon`s Strange Bulge Finally Explained</a></li>
<li><a href="http://spaceflightnow.com/shuttle/sts121/060703crack/">Crack found in Discovery external tank insulation</a></li>
<li><a href="http://news.yahoo.com/s/ap/20060630/ap_on_sc/hubble_camera_problem">NASA revives main Hubble telescope camera</a></li>
<li><a href="http://www.newscientistspace.com/article/dn9360-enigmatic-object-baffles-supernova-team.html">Enigmatic object baffles supernova team</a></li>
<li><a href="http://www.space.com/scienceastronomy/060620_space_bubbles.html">Earth Surrounded by Giant Fizzy Bubbles</a></li>
</ol>
<p>          <big><span style="font-weight: bold;">Tech</span></big>
<ol>
<li><a href="http://news.bbc.co.uk/1/hi/technology/5259594.stm">Speedy silicon sets world record</a></li>
<li><a href="http://www.designnews.com/CA6360672.html#_self">Man on a Mission &#8211; The Skin Sensing Saw</a></li>
<li><a href="http://yro.slashdot.org/article.pl?sid=06/08/10/2337259&#038;from=rss">Tracking Your Cell Phone for Traffic Reports</a></li>
<li><a href="http://www.wired.com/news/technology/0,71554-0.html?tw=rss.index">Giant Robot Imprisons Parked Cars</a></li>
<li><a href="http://uwnews.org/article.asp?articleID=25984">Pigment formulated 225 years ago could be key in emerging technologies</a></li>
<li><a href="http://www.electronichouse.com/article/14208.html">Talking Mirror Not Just for Fairy Tales Anymore</a></li>
<li><a href="http://www.newscientisttech.com/article/mg19125586.200-plasma-needle-could-replace-the-dentists-drill.html">Plasma needle could replace the dentist&#8217;s drill</a></li>
<li><a href="http://www.newswise.com/articles/view/521339/#imagetop">New System Blocks Unwanted Video &#038; Still Photography</a></li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://www.evilsoft.org/2006/08/18/cool-tech-friday-81806/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Cool Tech Friday (6/09/06)</title>
		<link>http://www.evilsoft.org/2006/06/12/cool-tech-friday-60906</link>
		<comments>http://www.evilsoft.org/2006/06/12/cool-tech-friday-60906#comments</comments>
		<pubDate>Mon, 12 Jun 2006 14:01:56 +0000</pubDate>
		<dc:creator>Administrator</dc:creator>
				<category><![CDATA[Cool Tech Friday]]></category>

		<guid isPermaLink="false">http://www.evilsoft.org/?p=75</guid>
		<description><![CDATA[Whoops, forgot to release it on friday.
      Biotech

A Dose Of Genius
Researchers grow human heart tissue from stem cells

          Culture

Proposal to Implant RFID Chips in Immigrants
When Escape Seems Just a Mouse-Click Away: Online gaming addiction in Korea
Simon Caulkin: Pull the other one [...]]]></description>
			<content:encoded><![CDATA[<p>Whoops, forgot to release it on friday.<br />
      <big><span style="font-weight: bold;">Biotech</span></big>
<ol>
<li><a href="http://www.washingtonpost.com/wp-dyn/content/article/2006/06/10/AR2006061001181.html">A Dose Of Genius</a></li>
<li><a href="http://www.abc.net.au/worldtoday/content/2006/s1657710.htm">Researchers grow human heart tissue from stem cells</a></li>
</ol>
<p>          <big><span style="font-weight: bold;">Culture</span></big>
<ol>
<li><a href="http://yro.slashdot.org/article.pl?sid=06/06/02/1514252&#038;from=rss">Proposal to Implant RFID Chips in Immigrants</a></li>
<li><a href="http://www.washingtonpost.com/wp-dyn/content/article/2006/05/26/AR2006052601960.html">When Escape Seems Just a Mouse-Click Away: Online gaming addiction in Korea</a></li>
<li><a href="http://observer.guardian.co.uk/business/story/0,,1784548,00.html">Simon Caulkin: Pull the other one &#8230; how iPods took over the world</a></li>
</ol>
<p>          <big><span style="font-weight: bold;">Energy</span></big>
<ol>
<li><a href="http://www.llnl.gov/pao/news/news_releases/2006/NR-06-06-02.html">Scientists Resolve 60-Year-Old Plutonium Questions</a></li>
<li><a href="http://www.smh.com.au/news/national/laser-enrichment-could-cut-cost-of-nuclear-power/2006/05/26/1148524888448.html">Laser enrichment could cut cost of nuclear power</a></li>
</ol>
<p>          <big><span style="font-weight: bold;">Environment</span></big>
<ol>
<li><a href="http://science.nasa.gov/headlines/y2006/26may_ozone.htm?list832167">Good News and a Puzzle</a></li>
</ol>
<p>          <big><span style="font-weight: bold;">Military</span></big>
<ol>
<li><a href="http://www.dailymail.co.uk/pages/live/articles/news/news.html?in_article_id=389357&#038;in_page_id=1770">Special forces to use strap-on Batwings</a></li>
<li><a href="http://slashdot.org/article.pl?sid=06/06/01/2332251&#038;from=rss">Numbers Stations Move From Shortwave To VoIP</a></li>
</ol>
<p>          <big><span style="font-weight: bold;">Robotics</span></big>
<ol>
<li><a href="http://robosavvy.com/Forums&#038;file=viewtopic&#038;t=288">Beer pouring robot</a></li>
</ol>
<p>          <big><span style="font-weight: bold;">Space</span></big>
<ol>
<li><a href="http://science.nasa.gov/headlines/y2006/05jun_redperil.htm?list95364">Jupiter&#8217;s Huge Storms Converge</a></li>
<li><a href="http://www.newscientistspace.com/article/dn9259-orbiting-gas-stations-key-to-interplanetary-exploration.html">Orbiting gas stations key to interplanetary exploration</a></li>
<li><a href="http://www.dailymail.co.uk/pages/live/articles/news/news.html?in_article_id=388052&#038;in_page_id=1770">One small breath for man</a></li>
</ol>
<p>          <big><span style="font-weight: bold;">Tech</span></big>
<ol>
<li><a href="http://www.techreview.com/printer_friendly_article.aspx?id=16963"> A Cleaner, Cheaper Route to Titanium</a></li>
<li><a href="http://www.sciencentral.com/articles/view.php3?type=article&#038;article_id=218392803">Super Battery</a></li>
<li><a href="http://hardware.slashdot.org/article.pl?sid=06/06/07/1945257&#038;from=rss">Ultrawideband Signal Passes Data Through Walls</a></li>
<li><a href="http://news.bbc.co.uk/1/hi/technology/5016984.stm">Fuel cells in laptops edge closer</a></li>
<li><a href="http://www.techeblog.com/?p=2190&#038;cp=2#comments">Top 10 Strangest Gadgets of the Future</a>(Watch the videos, it&#8217;s well worth it)</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://www.evilsoft.org/2006/06/12/cool-tech-friday-60906/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Cool Tech Friday (5/26/06)</title>
		<link>http://www.evilsoft.org/2006/05/26/cool-tech-friday-52606</link>
		<comments>http://www.evilsoft.org/2006/05/26/cool-tech-friday-52606#comments</comments>
		<pubDate>Fri, 26 May 2006 21:20:30 +0000</pubDate>
		<dc:creator>Administrator</dc:creator>
				<category><![CDATA[Cool Tech Friday]]></category>

		<guid isPermaLink="false">http://www.evilsoft.org/?p=74</guid>
		<description><![CDATA[Now safely nestled in the wilds of New Jersey, the time has come to restart Cool Tech Friday.  Enjoy!
      Biology

Dolphins, like humans, recognize names
New animal resembles furry lobster

          Biotech

A hangover cure that works
Pill reverses vegetative state
Drug Discovery Team To Explore [...]]]></description>
			<content:encoded><![CDATA[<p>Now safely nestled in the wilds of New Jersey, the time has come to restart Cool Tech Friday.  Enjoy!<br />
      <big><span style="font-weight: bold;">Biology</span></big>
<ol>
<li><a href="http://www.cnn.com/2006/TECH/science/05/09/dolphins.names.reut/index.html">Dolphins, like humans, recognize names</a></li>
<li><a href="http://www.cnn.com/2006/TECH/science/03/08/furry.lobster.ap/index.html">New animal resembles furry lobster</a></li>
</ol>
<p>          <big><span style="font-weight: bold;">Biotech</span></big>
<ol>
<li><a href="http://www.gizmag.com/go/5659/">A hangover cure that works</a></li>
<li><a href="http://news.bbc.co.uk/1/hi/health/5008744.stm">Pill reverses vegetative state</a></li>
<li><a href="http://www.sciencedaily.com/releases/2006/05/060522235411.htm">Drug Discovery Team To Explore Newly Discovered Deep-sea Reefs</a></li>
<li><a href="http://www.itworldcanada.com/a/News/f2a530dc-15f7-4b90-97b4-64863e15e5d4.html">This robot keeps the doctor away</a></li>
<li><a href="http://www.damninteresting.com/?p=546">Immune System Gone Bad</a></li>
<li><a href="http://news.bbc.co.uk/1/hi/england/manchester/4423847.stm">Cure for cancers &#8216;in five years&#8217;</a></li>
</ol>
<p>          <big><span style="font-weight: bold;">Culture</span></big>
<ol>
<li><a href="http://www.cnn.com/2006/TECH/science/05/26/chicken.egg/">Chicken and egg debate unscrambled</a></li>
<li><a href="http://www.wired.com/wired/archive/14.06/crowds.html">The Rise of Crowdsourcing</a>!Dad, read this one!</li>
<li><a href="http://yro.slashdot.org/article.pl?sid=06/05/22/132206&#038;from=rss">Wired Releases Full Text of AT&#038;T NSA Document</a></li>
<li><a href="http://www.nytimes.com/2006/05/22/washington/22gonzales.html?_r=1&#038;oref=slogin">Gonzales Says Prosecutions of Journalists For Publishing Leaks Are Possible</a></li>
</ol>
<p>          <big><span style="font-weight: bold;">Energy</span></big>
<ol>
<li><a href="http://news.bbc.co.uk/1/hi/sci/tech/5012638.stm">Fusion reactor work gets go-ahead</a></li>
<li><a href="http://www.techreview.com/read_article.aspx?id=16921&#038;ch=biztech">Better Fuel Cells Using Bacteria</a></li>
<li><a href="http://www.newscientisttech.com/article/dn9202-nuclear-fusion-plasma-problem-tackled.html">Nuclear fusion plasma problem tackled</a></li>
<li><a href="http://www.newscientist.com/blog/invention/">Hydrogen Fuel Balls</a></li>
<li><a href="http://www.sciam.com/article.cfm?chanID=sa003&#038;articleID=000783C6-07BB-1461-821383414B7F0000">Microbes Convert Wastewater into Useable Electricity</a></li>
<li><a href="http://www.msnbc.msn.com/id/12834398/">Algae to rescue on warming, fuel source?</a></li>
</ol>
<p>          <big><span style="font-weight: bold;">Robotics</span></big>
<ol>
<li><a href="http://news.yahoo.com/s/ap/20060525/ap_on_hi_te/honda_robot">Honda says brain waves control robot</a></li>
<li><a href="http://www.msnbc.msn.com/id/12939612">Soldiers bond with battlefield robots</a></li>
<li><a href="http://www.newscientisttech.com/article/dn9124-robotic-tentacles-get-to-grips-with-tricky-objects.html">Robotic tentacles get to grips with tricky objects</a></li>
</ol>
<p>          <big><span style="font-weight: bold;">Science</span></big>
<ol>
<li><a href="http://news.com.com/Is+evolution+predictable/2100-11395_3-6074543.html">Is evolution predictable?</a></li>
</ol>
<p>          <big><span style="font-weight: bold;">Space</span></big>
<ol>
<li><a href="http://news.bbc.co.uk/2/hi/science/nature/5010936.stm">Planet shine to aid life search</a></li>
<li><a href="http://www.cnn.com/2006/TECH/space/05/23/voyager.2/index.html"> Voyager II detects solar system&#8217;s edge</a></li>
<li><a href="http://hubblesite.org/newscenter/newsdesk/archive/releases/2006/22/full/">Astronomers Use Innovative Technique to Find Extrasolar Planett </a></li>
<li><a href="http://www.newscientistspace.com/article.ns?id=dn9200&#038;feedId=online-news_rss20">Unique wide-field telescope will make &#8217;sky movies&#8217;</a></li>
<li><a href="http://www.washingtonpost.com/wp-dyn/content/article/2006/05/19/AR2006051901039.html">NASA hopes shuttle&#8217;s next move won&#8217;t be its last</a></li>
<li><a href="http://news.com.com/Smokeless+rockets+launching+soon/2100-11397_3-6073392.html?tag=nefd.top">Smokeless rockets launching soon?</a></li>
<li><a href="http://www.newscientistspace.com/article/dn9179-distant-earths-will-only-be-seen-from-space.html">Distant &#8216;Earths&#8217; will only be seen from space</a></li>
<li><a href="http://www.space.com/scienceastronomy/060516_science_tuesday.html">Back to the Moon: Uniting Science and Exploration</a></li>
<li><a href="http://www.space.com/scienceastronomy/060510_big_spaceball.html">Big Meteorite Creates Big Mysteries</a></li>
<li><a href="http://www.cnn.com/2006/TECH/space/05/18/extrasolar.planets/index.html">Three new planets found around sun-like star</a></li>
<li><a href="http://www.space.com/scienceastronomy/060517_netpune_planets.html">Planets Found in Potentially Habitable Setup</a></li>
</ol>
<p>          <big><span style="font-weight: bold;">Tech</span></big>
<ol>
<li><a href="http://www.gizmag.com/go/5655/">The Digital Ink billboard</a></li>
<li><a href="http://www.newscientisttech.com/article/dn9222-interactive-display-system-knows-users-by-touch.html">Interactive display system knows users by touch</a></li>
<li><a href="http://news.bbc.co.uk/1/hi/sci/tech/5016068.stm">Plan for cloaking device unveiled</a></li>
<li><a href="http://www.scienceblog.com/cms/nasa-wants-your-innovative-ideas-10634.html">NASA Wants Your Innovative Ideas</a></li>
<li><a href="http://www.wired.com/wired/archive/14.03/start.html?pg=9">The M1 Battery</a></li>
<li><a href="http://www.worldchanging.com/archives/004158.html">Charge!</a></li>
</ol>
<p>          <big><span style="font-weight: bold;">Telephony</span></big>
<ol>
<li><a href="http://www.pcmag.com/article2/0,1895,1964680,00.asp">MIT Plans to Convert Cell Phone Users into Podcasters</a></li>
<li><a href="http://www.betanews.com/article/Linksys_Launches_WirelessG_Phones/1147883892">Linksys Launches Wireless-G Phones</a></li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://www.evilsoft.org/2006/05/26/cool-tech-friday-52606/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Cool Tech Friday (2/24/06)</title>
		<link>http://www.evilsoft.org/2006/02/24/cool-tech-friday-22406</link>
		<comments>http://www.evilsoft.org/2006/02/24/cool-tech-friday-22406#comments</comments>
		<pubDate>Sat, 25 Feb 2006 00:08:07 +0000</pubDate>
		<dc:creator>Soulcatcher</dc:creator>
				<category><![CDATA[Cool Tech Friday]]></category>

		<guid isPermaLink="false">http://www.evilsoft.org/?p=73</guid>
		<description><![CDATA[      Biotech

Mind Control by Parasites
Stanford neuroscientist wants to implant an electrode in his brain
NIH-Created Ebola Vaccine Passes 1st Test
Sleeping on it best for complex decisions
Alzheimer&#8217;s Progresses Faster in Educated People

          Culture

Egypt offers first look at newly discovered tomb, first saince the [...]]]></description>
			<content:encoded><![CDATA[<p>      <big><span style="font-weight: bold;">Biotech</span></big>
<ol>
<li><a href="http://news.yahoo.com/s/space/20060211/sc_space/mindcontrolbyparasites">Mind Control by Parasites</a></li>
<li><a href="http://www.technologyreview.com/BioTech-Devices/wtr_16325,306,p1.html?">Stanford neuroscientist wants to implant an electrode in his brain</a></li>
<li><a href="http://www.washingtonpost.com/wp-dyn/content/article/2006/02/17/AR2006021701666.html">NIH-Created Ebola Vaccine Passes 1st Test</a></li>
<li><a href="http://www.newscientist.com/article.ns?id=dn8732&#038;feedId=online-news_rss20">Sleeping on it best for complex decisions</a></li>
<li><a href="http://www.bloomberg.com/apps/news?pid=10000102&#038;sid=alzuc18R8oGc&#038;refer=uk">Alzheimer&#8217;s Progresses Faster in Educated People</a></li>
</ol>
<p>          <big><span style="font-weight: bold;">Culture</span></big>
<ol>
<li><a href="http://msnbc.msn.com/id/11252094/">Egypt offers first look at newly discovered tomb, first saince the tomb of Tutankhamun</a></li>
<li><a href="http://www.cnn.com/2006/HEALTH/conditions/02/14/science.of.love/index.html">Love is the drug</a></li>
<li><a href="http://www.livescience.com/othernews/060215_alan_lightman.html">The Future of Science: A Conversation with Alan Lightman</a></li>
<li><a href="http://online.wsj.com/public/article/SB114020616284677206-EJ_Vtho5dmIrMd20oVfu_r4_GGg_20070218.html?mod=blogs">The Politically Incorrect Science Fair</a></li>
</ol>
<p>          <big><span style="font-weight: bold;">Environment</span></big>
<ol>
<li><a href="http://science.slashdot.org/article.pl?sid=06/02/15/1432200">Underwater Ocean Currents Used to Power Bermuda</a></li>
<li><a href="http://www.foxnews.com/story/0,2933,184980,00.html">Mazda Plans Dual-Fuel Car in Japan</a></li>
<li><a href="http://science.slashdot.org/article.pl?sid=06/02/16/0251210">Has World Oil Production Passed Its Peak?</a></li>
<li><a href="http://science.slashdot.org/article.pl?sid=06/02/17/1825221">Segway Inventor Turns To Environment</a></li>
<li><a href="http://msnbc.msn.com/id/11385475/">Greenland&#8217;s glaciers losing ice at faster rate</a></li>
<li><a href="http://upi.com/NewsTrack/view.php?StoryID=20060222-011850-2937r"> The World Oceans Now 70% Shark Free</a></li>
</ol>
<p>          <big><span style="font-weight: bold;">Physics</span></big>
<ol>
<li><a href="http://www.scienceblog.com/cms/ny_team_confirms_ucla_tabletop_fusion_10017.html">NY team confirms UCLA tabletop fusion</a></li>
<li><a href="http://www.physorg.com/news10789.html">Physicist to Present New Exact Solution of Einstein&#8217;s Gravitational Field Equation</a></li>
<li><a href="http://www.newscientist.com/channel/info-tech/mg18925405.700.html">Quantum computer works best switched off</a></li>
</ol>
<p>          <big><span style="font-weight: bold;">Space</span></big>
<ol>
<li><a href="http://science.slashdot.org/article.pl?sid=06/02/15/1816219">Continued Success for Space Elevator Tests</a></li>
<li><a href="http://www.newscientistspace.com/article.ns?id=dn8735">Human spaceflight must come first, argues NASA</a></li>
<li><a href="http://msnbc.msn.com/id/11393569/">New group to develop passenger spaceship</a></li>
<li><a href="http://news.yahoo.com/s/nm/20060218/sc_nm/space_life_dc">Astronomers get shortlist of possible ET addresses</a></li>
<li><a href="http://science.slashdot.org/article.pl?sid=06/02/20/2027217">Solar Sail News and Upcoming JPL Missions</a></li>
<li><a href="http://www.spaceflightnow.com/news/n0602/17atlantis/">NASA plans to park space shuttle Atlantis in 2008</a></li>
<li><a href="http://science.slashdot.org/article.pl?sid=06/02/23/1949237">Draft Rules for X Prize Lunar Lander Challenge</a></li>
<li><a href="http://science.slashdot.org/article.pl?sid=06/02/24/1329214">Spaceport Singapore</a></li>
<li><a href="http://www.space.com/scienceastronomy/060223_explosion.html">NASA Detects Totally New Mystery Explosion Nearby</a></li>
</ol>
<p>          <big><span style="font-weight: bold;">Tech</span></big>
<ol>
<li><a href="http://science.slashdot.org/article.pl?sid=06/02/15/0316223">New High-Speed Nano Imaging Device</a></li>
<li><a href="http://www.newscientist.com/article.ns?id=dn8721&#038;feedId=online-news_rss20">US and Canadian skiers get smart armour</a></li>
<li><a href="http://hardware.slashdot.org/article.pl?sid=06/02/20/1332244">Moore&#8217;s Law Staying Strong Through 30nm</a></li>
<li><a href="http://www.physicstoday.org/vol-59/iss-2/p19.html">Stronger Future for Nuclear Power</a></li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://www.evilsoft.org/2006/02/24/cool-tech-friday-22406/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Cool Tech Friday (2/10/06)</title>
		<link>http://www.evilsoft.org/2006/02/10/cool-tech-friday-21006</link>
		<comments>http://www.evilsoft.org/2006/02/10/cool-tech-friday-21006#comments</comments>
		<pubDate>Sat, 11 Feb 2006 00:33:48 +0000</pubDate>
		<dc:creator>Soulcatcher</dc:creator>
				<category><![CDATA[Cool Tech Friday]]></category>

		<guid isPermaLink="false">http://www.evilsoft.org/?p=72</guid>
		<description><![CDATA[      Biotech

Innovative Hand-Held Insulin Device Effectively Controls Diabetes and Provides Reliable and Easy to Use Insulin Dosing
Babies` Cells Linger, May Protect Mothers
Skin Stem Cells Made into Bone and Muscle
Printable Skin: `Inkjet` Breakthrough Makes Human Tissue
Cow-free Beef Proposed
Sperm Cells Turned into Eggs
Has BYU prof found AIDS cure?
New pill increases dreaming sleep

 [...]]]></description>
			<content:encoded><![CDATA[<p>      <big><span style="font-weight: bold;">Biotech</span></big>
<ol>
<li><a href="http://www.gizmag.com/go/5104/">Innovative Hand-Held Insulin Device Effectively Controls Diabetes and Provides Reliable and Easy to Use Insulin Dosing</a></li>
<li><a href="http://www.npr.org/templates/story/story.php?storyId=5195551">Babies` Cells Linger, May Protect Mothers</a></li>
<li><a href="http://www.livescience.com/humanbiology/050622_stem_cells.html">Skin Stem Cells Made into Bone and Muscle</a></li>
<li><a href="http://www.livescience.com/technology/050201_skin_printing.html">Printable Skin: `Inkjet` Breakthrough Makes Human Tissue</a></li>
<li><a href="http://www.livescience.com/technology/050707_lab_meat.html">Cow-free Beef Proposed</a></li>
<li><a href="http://news.yahoo.com/s/space/20060207/sc_space/spermcellsturnedintoeggs">Sperm Cells Turned into Eggs</a></li>
<li><a href="http://www.sltrib.com/business/ci_3482712">Has BYU prof found AIDS cure?</a></li>
<li><a href="http://www.physorg.com/news10562.html">New pill increases dreaming sleep</a></li>
</ol>
<p>          <big><span style="font-weight: bold;">Culture</span></big>
<ol>
<li><a href="http://www.gizmag.com/go/5112/">3 billion people seek basic financial services is Microfinance the answer?</a></li>
<li><a href="http://www.nytimes.com/2006/02/04/science/04climate.html?ex=1139720400&#038;en=d81e4cca5576100f&#038;ei=5070">NASA Chief Backs Agency Openness</a></li>
<li><a href="http://science.slashdot.org/article.pl?sid=06/02/08/1240226">NASA Public-Affairs Appointee Resigns in Disgrace</a></li>
<li><a href="http://www.nytimes.com/2006/02/08/politics/08nasa.html?_r=1&#038;oref=slogin">A Young Bush Appointee Resigns His Post at NASA</a></li>
</ol>
<p>          <big><span style="font-weight: bold;">Entertainment</span></big>
<ol>
<li><a href="http://www.jconline.com/apps/pbcs.dll/article?AID=/20060203/NEWS0501/602030328/1152">Physics students, duct tape extend faded couch&#8217;s mileage</a></li>
</ol>
<p>          <big><span style="font-weight: bold;">Environment</span></big>
<ol>
<li><a href="http://www.gizmag.com/go/5136/">Flying Electric Generator (FEG) technology</a></li>
<li><a href="http://www.theglobeandmail.com/servlet/story/LAC.20060210.WARM10/TPStory/Environment">World at its warmest of past 1,200 years, researchers show</a></li>
</ol>
<p>          <big><span style="font-weight: bold;">Military</span></big>
<ol>
<li><a href="http://www.gizmag.com/go/5118/">C-130H Laser Gunship Program begins</a></li>
</ol>
<p>          <big><span style="font-weight: bold;">Physics</span></big>
<ol>
<li><a href="http://news.bbc.co.uk/2/hi/science/nature/4679220.stm">Dark matter comes out of the cold</a></li>
<li><a href="http://www.physorg.com/news10682.html">SLAC Physicists Develop Test For String Theory</a></li>
<li><a href="http://science.slashdot.org/article.pl?sid=06/02/09/1847240">No Time Travel, Sorry</a></li>
</ol>
<p>          <big><span style="font-weight: bold;">Space</span></big>
<ol>
<li><a href="http://www.gizmag.com/go/5170/">The solar system no longer has nine planets</a></li>
<li><a href="http://www.newscientistspace.com/article.ns?id=dn8689&#038;feedId=online-news_rss20">NASA to divert cash from science into shuttle</a></li>
<li><a href="http://www.space.com/businesstechnology/060207_lro_technology.html">Lunar Reconnaissance Orbiter: Searching For A &#8216;New Moon&#8217;</a></li>
<li><a href="http://www.newscientistspace.com/article.ns?id=dn8683">Experts poles apart over Moon landing sites</a></li>
<li><a href="http://www.physorg.com/news10646.html">Seeing `Strange` Stars</a></li>
<li><a href="http://science.slashdot.org/article.pl?sid=06/02/07/2141206&#038;from=rss">Should We Land on the Moon&#8217;s Poles or Equator?</a></li>
</ol>
<p>          <big><span style="font-weight: bold;">Tech</span></big>
<ol>
<li><a href="http://www.gizmag.com/go/5097/">Power Plastics to provide electrical power to packaging and intelligent clothing</a></li>
<li><a href="http://www.gizmag.com/go/5109/">Reclaiming all that space in the attic &#8211; EZ Attic</a></li>
<li><a href="http://www.gizmag.com/go/5132/">Web 2.0 new tools, amazing functionality, vast opportunities</a></li>
<li><a href="http://www.gizmag.com/go/5148/">VW and Google team to explore future vehicle navigation systems</a></li>
<li><a href="http://www.gizmag.com/go/5151/">Stiletto Experimental ship with carbon fiber M-hull design tops 50 knots (60mph)</a></li>
<li><a href="http://www.gizmag.com/go/5152/">The three-key mini-keyboard with OLED screen on each key</a></li>
<li><a href="http://www.gizmag.com/go/5172/">Buying, paying bills and transfering money with your mobile phone</a></li>
<li><a href="http://www.bestsyndication.com/Articles/2006/Nicole-WILSON/WhatsNew/02/020706-nano_technology_self_clean_bathroom.htm">Nano Technology may make cleaning Toilets a thing of the Past</a></li>
<li><a href="http://www.mobilemag.com/content/100/102/C6416/">Chip prototype gets under the skin</a></li>
<li><a href="http://news.yahoo.com/s/space/20060204/sc_space/dontbringhomethebaconprintit;_ylt=AqVihe.QiTscpQ594YVNJy0br7sF;_ylu=X3oDMTBiMW04NW9mBHNlYwMlJVRPUCUl">Don&#8217;t Bring Home the Bacon, Print It</a></li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://www.evilsoft.org/2006/02/10/cool-tech-friday-21006/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Search for  Band on Google</title>
		<link>http://www.evilsoft.org/2006/02/10/search-for-band-on-google</link>
		<comments>http://www.evilsoft.org/2006/02/10/search-for-band-on-google#comments</comments>
		<pubDate>Fri, 10 Feb 2006 20:23:08 +0000</pubDate>
		<dc:creator>metauser</dc:creator>
				<category><![CDATA[Music]]></category>
		<category><![CDATA[Tech]]></category>

		<guid isPermaLink="false">http://www.evilsoft.org/?p=71</guid>
		<description><![CDATA[As was reported here and here back in December, Google searches now provide a lot of nice information for a band. I was checking to see if ColdPlay had a new album in the pipeline, I searched for ColdPlay and got a really nice set of results listing their albums and links for purchase, lyrics, [...]]]></description>
			<content:encoded><![CDATA[<p>As was reported <a href="http://searchenginewatch.com/searchday/article.php/3571066">here</a> and <a href="http://news.com.com/Google%20whistles%20a%20new%20tune/2100-1024_3-5995864.html">here</a> back in December, Google searches now provide a lot of nice information for a band. I was checking to see if ColdPlay had a new album in the pipeline, I searched for ColdPlay and got a really nice set of results listing their albums and links for purchase, lyrics, album art, etc. Wow &#8211; I love finding new features in Google like that. </p>
<p>Check it out. </p>
]]></content:encoded>
			<wfw:commentRss>http://www.evilsoft.org/2006/02/10/search-for-band-on-google/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
