<?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>Taricorp.net</title>
	<atom:link href="http://www.taricorp.net/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.taricorp.net</link>
	<description>Coming to paradise just to burn it to the ground</description>
	<lastBuildDate>Fri, 23 Jul 2010 21:10:19 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>markov.py</title>
		<link>http://www.taricorp.net/2010/07/markov-py/</link>
		<comments>http://www.taricorp.net/2010/07/markov-py/#comments</comments>
		<pubDate>Sun, 18 Jul 2010 18:50:36 +0000</pubDate>
		<dc:creator>tari</dc:creator>
				<category><![CDATA[programming]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[computing]]></category>
		<category><![CDATA[languages]]></category>
		<category><![CDATA[oss]]></category>
		<category><![CDATA[python]]></category>
		<category><![CDATA[zezifadi]]></category>

		<guid isPermaLink="false">http://www.taricorp.net/?p=166</guid>
		<description><![CDATA[This was a little for-fun project that I built: a Python module/script that can be used to semi-randomly generate words, based on Markov chains. Background, implementation I was inspired by recalling the story of the Automated Curse Generator, which seemed like something that would be interesting to implement for fun in my own time, as [...]]]></description>
			<content:encoded><![CDATA[<p>This was a little for-fun project that I built: a Python module/script that can be used to semi-randomly generate words, based on <a href="http://en.wikipedia.org/wiki/Markov_chain">Markov chains</a>.</p>
<h2>Background, implementation</h2>
<p>I was inspired by recalling the story of the <a href="http://thedailywtf.com/Articles/The-Automated-Curse-Generator.aspx">Automated Curse Generator</a>, which seemed like something that would be interesting to implement for fun in my own time, as it did indeed turn out to be.  In short, the module examines input text and generates a graph with edges weighted based on character frequency, then traverses the graph to generate a word.</p>
<p>To generate the chains, the module builds a directed graph based on the seed text, where characters are  linked to all the characters which are known to follow them, with edges weighted according to the percentage of all following characters any particular character consists of.  For example, the string "zezifadi r00lz dr" would generate the following graph, where the value of each edge is the probability of choosing that edge to leave the associated vertex:</p>
<div id="attachment_173" class="wp-caption aligncenter" style="width: 694px"><a href="http://www.taricorp.net/wp-content/uploads/2010/07/zezifadi.gvz"><img class="size-full wp-image-173 " title="zezifadi" src="http://www.taricorp.net/wp-content/uploads/2010/07/zezifadi.png" alt="Graphviz" width="684" height="535" /></a><p class="wp-caption-text">Click for graphviz source code.</p></div>
<p>To generate a word, then, it can be as simple as starting at ' ' (the red node) and continuing to traverse the graph until another ' ' is encountered.  In reality, while that worked, it was awfully boring.  When seeded with some text in English, there was a disappointing number of short, boring (not to mention unpronounceable) words and far too few amusing longer ones.  Think 'ad' and 's' rather than 'throm'.</p>
<p>It was rather easy to generate more interesting words, however, by simply adding some word-length limits, defaulting to a minimum of 4 character and a maximum of 12, tunable via arguments to the word generation method of the map.  Rather than blindly following edges, as long as the word generated is shorter than the minimum, any chaining result of ' ' will be ignored.  When maximum length is reached, the word will be immediately terminated provided the current character has any connection to blank space.  If not, generation continues until such a connection is found.</p>
<p>What makes this so entertaining, I think, is its versatility.  Since word generation is based entirely on the character frequency statistics of the input text, it works for any language.  By extension, that means it could be easily be made to generate whole phrases in $(East-Asian language of your choice) by feeding it ideographs rather than Latin characters (ばかです (yes, I'm aware this is actually Kana)), or just nonsense that pronounces a lot like <a href="http://en.wikipedia.org/wiki/Simlish">Simlish</a> by putting in some other Simlish nonsense.</p>
<h2>The script</h2>
<p>Having implemented word generation in the module, it was reasonably short work to wrap the whole thing in a script so it could be invoked from the command line for great lulz.  Something like the following does a decent job of providing amusement by generating a word every 15 seconds.  For more fun, pipe the output into a speech synthesizer.</p>
<pre style="padding-left: 30px;">Tari@Kerwin ~ $ while markov.py; do sleep 15; done</pre>
<p>Of course, before anything can be generated, a graph must be generated, which can be done via the -s option on the script or by invoking the addString method of MarkovMap.  Quick example:</p>
<pre style="padding-left: 30px;">Tari@Kerwin ~ $ # Add the given string to the current graph, or to a new one.
Tari@Kerwin ~ $ markov.py -s"String to seed with" -ffoo.pkl
IO error on foo.pkl, creating new map
seeeeed
Tari@Kerwin ~ $ # Add some Delmore Schwartz to the map via stdin
Tari@Kerwin ~ $ markov.py -ffoo.pkl -s- &lt;&lt; EOF
&gt; (This is the school in which we learn...)
&gt;What is the self amid this  blaze?
&gt;What am I now that I was then
&gt;Which I shall suffer and act  again,
&gt;The theodicy I wrote in my high school days
&gt;Restored all  life from infancy,
&gt;The children shouting are bright as they run
&gt;(This  is the school in which they learn...)
&gt;Ravished entirely in their  passing play!
&gt;(...that time is the fire in which they burn.)
&gt;EOF
idagheam
Tari@Kerwin ~ $ # Generate a word from the default graph in file markov.pkl
Tari@Kerwin ~ $ markov.py
awaike
Tari@Kerwin ~ $</pre>
<p>Easy enough.  I've found that a Maori seed (via <a href="http://www.gutenberg.org/cache/epub/22009/pg22009.txt">Project Gutenburg</a>) makes for some of the more easily pronounced words, but any language will (mostly) generate words that are pronounceable via that language's pronunciation rules.</p>
<p>For seeding with non-Latin character sets, the script can take the -l or --lax option ('strict' keyword parameter to MarkovMap.addString()), which removes the restriction keeping graphed characters as only alphabetic.  The downside, then, is that everything in the input is mapped out, so you're much more likely to get garbage out unless the input is carefully sanitized of punctuation and such (GIGO, after all).</p>
<h2>Code</h2>
<p>Enough talk, I'm sure you just want to pick apart my code and play with nonsense words at this point.  Download link is below.  I'm providing the code under the Simplified BSD License so you're allowed to do nearly anything with it, I just ask that you credit me for it in some way if you reuse or redistribute it.</p>
<p><a href="http://www.taricorp.net/wp-content/uploads/2010/07/markov.py">Download markov.py</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.taricorp.net/2010/07/markov-py/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Wednesday link dump</title>
		<link>http://www.taricorp.net/2010/06/wednesday-link-dump/</link>
		<comments>http://www.taricorp.net/2010/06/wednesday-link-dump/#comments</comments>
		<pubDate>Wed, 23 Jun 2010 23:36:19 +0000</pubDate>
		<dc:creator>tari</dc:creator>
				<category><![CDATA[life]]></category>
		<category><![CDATA[eff]]></category>
		<category><![CDATA[internet]]></category>
		<category><![CDATA[link dump]]></category>
		<category><![CDATA[oss]]></category>
		<category><![CDATA[science!]]></category>

		<guid isPermaLink="false">http://www.taricorp.net/?p=147</guid>
		<description><![CDATA[Because I have nothing better to do right now, it's a good time to dump the interesting links that I've been accumulating. While radioactive hunks of matter are often portrayed as glowing with a green tinge, we all know that's not actually true.. unless there's Cherenkov Radiation involved, as in many nuclear reactors- that's not [...]]]></description>
			<content:encoded><![CDATA[<p>Because I have nothing better to do right now, it's a good time to dump the interesting links that I've been accumulating.</p>
<div id="attachment_155" class="wp-caption alignright" style="width: 238px"><a href="http://en.wikipedia.org/wiki/File:Advanced_Test_Reactor.jpg"><img class="size-medium wp-image-155" title="Advanced_Test_Reactor" src="http://www.taricorp.net/wp-content/uploads/2010/06/Advanced_Test_Reactor-228x300.jpg" alt="Glowy.  Also radioactive." width="228" height="300" /></a><p class="wp-caption-text">Cherenkov glow in the  Advanced Test Reactor</p></div>
<ul>
<li>While radioactive hunks of matter are often portrayed as glowing with a green tinge, we all know that's not actually true.. unless there's <a href="http://en.wikipedia.org/wiki/Cherenkov_radiation">Cherenkov Radiation</a> involved, as in many nuclear reactors- that's not green, though.</li>
<li>Google have (for now) <a href="http://youtube-global.blogspot.com/2010/06/youtube-wins-case-against-viacom.html">won the suit</a> against them by Viacom regarding<a href="http://arstechnica.com/business/news/2007/03/viacom-sues-youtube-for-copyright-infringement.ars"> copyrighted content being uploaded</a> to YouTube, which is good news for everyone except maybe Viacom.  It's still fun to read <a href="http://arstechnica.com/tech-policy/news/2010/05/f----those-mother-f---ers-youtubeviacom-lawsuit-gets-dirty.ars">choice excerpts of correspondence</a> involving all sorts of mudslinging in the case (warning: lots of curses).</li>
<li><a href="http://www.openstreetmap.org/">OpenStreetMap</a> is a neat project to create free maps, similar to Google Maps, Bing Maps, etc.  Cool stuff, and all the map data is Creative Commons, meaning it could be used for any number of shiny projects.</li>
<li>There<a href="http://www.newscientist.com/article/dn19005-hints-of-life-found-on-saturn-moon.html"> might be life</a> on Saturn's moon, Titan, observations courtesy of the NASA/ESA/ASI Cassini mission, which has been bouncing around the Saturnian system since mid-2004 after launch way back in 1997.  It's far from a sure thing, but it's really exciting that predictions of how life might work on Titan have been supported by observation.</li>
<li><a href="http://www.eecs.umich.edu/techreports/cse/2010/CSE-TR-564-10.pdf">This   study</a> (PDF) of internet routing to previously unused blocks is   quite interesting, especially the numerous <a href="http://en.wikipedia.org/wiki/Session_Initiation_Protocol">SIP</a> streams pointed at 1.1.1.1 (section 5.1).</li>
<li>The EFF (kind of like the ACLU of internet, if you're not  familiar   with them) recently put out the <a href="https://www.eff.org/https-everywhere">HTTPS Everywhere</a> extension for Firefox.  When it's this easy to lock down your web    traffic, there's no reason not to.  What's your excuse?</li>
<li>Huge things are cool.  Want to feel tiny?  Go ask Wikipedia about the  <a href="http://en.wikipedia.org/wiki/Virgo_Supercluster">local   supercluster</a>, then consider how tiny everything humanity knows is,   relative to that.  When you're done scrabbling about in your own Total   Perspective Vortex, consider <a href="http://en.wikipedia.org/wiki/1E19_s">epic timescales</a> for extra kicks.  Yeah..   cosmology is awesome.</li>
</ul>
<p><a href="http://en.wikipedia.org/wiki/File:Universe_Reference_Map_%28Location%29_001.jpeg"><img title="Universe_Reference_Map" src="http://www.taricorp.net/wp-content/uploads/2010/06/Universe_Reference_Map_Location_001-1024x256.jpg" alt="HUGE THINGS" width="717" height="179" /></a></p>
<ul>
<li>Exasecond timescales are impressive, but then there's the depressing concept of the <a href="http://en.wikipedia.org/wiki/Heat_death_of_the_universe">universe's heat death</a>.  <a href="http://www.multivax.com/last_question.html">What if</a> there were a way to <a href="http://www.multivax.com/">reverse entropy</a>?</li>
<li>How did I not know <a href="http://en.wikipedia.org/wiki/Burning_Empires">this album</a> exists?  There are some really good mixes on it..</li>
</ul>
<p>..and that's several weeks of accumulated cool-things.  Enjoy.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.taricorp.net/2010/06/wednesday-link-dump/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PuTTYJL</title>
		<link>http://www.taricorp.net/2010/05/puttyjl/</link>
		<comments>http://www.taricorp.net/2010/05/puttyjl/#comments</comments>
		<pubDate>Mon, 31 May 2010 01:39:59 +0000</pubDate>
		<dc:creator>tari</dc:creator>
				<category><![CDATA[programming]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[computing]]></category>
		<category><![CDATA[putty]]></category>
		<category><![CDATA[ssh]]></category>

		<guid isPermaLink="false">http://www.taricorp.net/?p=93</guid>
		<description><![CDATA[After putting up with the lack of support for Windows 7's jump lists in PuTTY for a while, I finally got tired enough of it to do something.  Nothing as cool as patching PuTTY to do them itself, but I wrote a wrapper which indexes the saved sessions, allowing the user to select which ones [...]]]></description>
			<content:encoded><![CDATA[<p>After putting up with the lack of support for Windows 7's <a href="http://windows.microsoft.com/en-us/windows7/products/features/jump-lists" target="_blank">jump lists</a> in PuTTY for a while, I finally got tired enough of it to do something.  Nothing as cool as patching PuTTY to do them itself, but I wrote a wrapper which indexes the saved sessions, allowing the user to select which ones should be included in the list.</p>
<p>From the <a href="/projects/puttyjl/">project page</a>:</p>
<blockquote><p>PuTTYJL is a wrapper and patch for <a href="http://www.chiark.greenend.org.uk/%7Esgtatham/putty/" target="_blank">PuTTY</a> written in C# for .NET 3.5 and Windows 7,  adding support for the new <a href="http://windows.microsoft.com/en-us/windows7/products/features/jump-lists" target="_blank">Jump Lists</a>, allowing you to create jump list  entries for saved sessions in the registry and optionally just launch  the wrapper to start a default session in PuTTY.</p></blockquote>
<p>Get it <a href="/projects/puttyjl/">here</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.taricorp.net/2010/05/puttyjl/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Hacking life</title>
		<link>http://www.taricorp.net/2010/05/hacking-life/</link>
		<comments>http://www.taricorp.net/2010/05/hacking-life/#comments</comments>
		<pubDate>Fri, 21 May 2010 02:23:05 +0000</pubDate>
		<dc:creator>tari</dc:creator>
				<category><![CDATA[life]]></category>
		<category><![CDATA[hardware]]></category>
		<category><![CDATA[science!]]></category>

		<guid isPermaLink="false">http://www.taricorp.net/?p=110</guid>
		<description><![CDATA[Today (er, yesterday) was a big day for science.  In the May 20th issue of Science, there was an interesting paper detailing how researchers at the J. Craig Venter Institute (yup, name means nothing to me there) successfully created a life-form containing entirely artificial DNA [abstract,PDF].  This is really exciting stuff. As the authors of [...]]]></description>
			<content:encoded><![CDATA[<p>Today (er, yesterday) was a big day for science.  In the May 20th issue of <em>Science</em>, there was an interesting paper detailing how researchers at the J. Craig Venter Institute (yup, name means nothing to me there) successfully created a life-form containing entirely artificial DNA [<a href="http://www.sciencemag.org/cgi/content/abstract/science.1190719" target="_blank">abstract</a>,<a href="http://www.sciencemag.org/cgi/rapidpdf/science.1190719v1.pdf" target="_blank">PDF</a>].  This is really exciting stuff.</p>
<p>As the authors of the paper note, sequencing genomes is nothing new, but there's a gigantic leap between just knowing how something is made and being able to make it yourself.  Although this modified strain of yeast has mostly stock genes from other yeast and just over a million base pairs, <a href="http://www.wired.com/wiredscience/2010/05/scientists-create-first-self-replicating-synthetic-life/" target="_blank">Wired Science</a> notes that our ability to manufacture chunks of DNA has grown by around 100x in the last five years.  Following such a linear pattern, we would be able to build a human genome from scratch (~3 billion base pairs) within ten years.  From here, where can we go?  <strong>Anywhere</strong>.</p>
<p>Consider what living things do in nature.  Now take some of that variety and modify it a little to do something more useful.  Say, design an enzyme allowing yeast to break down oil from spills and removing any other metabolic pathways.  You suddenly have a bacterium which eats oil spills, then the colony dies when the oil goes away.</p>
<p>Sure, something like that is a ways off; we don't have anywhere the necessary knowledge of the biochemistry involved in such a thing (or do we..?  I could be entirely wrong).  Proteins are amazingly complex molecules, and their assembly/folding is rather poorly understood at best.  However, give it a while, and we could begin to do radical things within the framework of living things.  Say, custom-designed viruses to patch our genomes.  Literally, life hacking.</p>
<p>This is simply incredible stuff, and it's the first step toward the singularity, IMHO.  More thoughts on that in the coming days.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.taricorp.net/2010/05/hacking-life/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ubunchu?</title>
		<link>http://www.taricorp.net/2010/05/ubunchu/</link>
		<comments>http://www.taricorp.net/2010/05/ubunchu/#comments</comments>
		<pubDate>Fri, 14 May 2010 03:55:53 +0000</pubDate>
		<dc:creator>tari</dc:creator>
				<category><![CDATA[software]]></category>
		<category><![CDATA[anime]]></category>
		<category><![CDATA[manga]]></category>
		<category><![CDATA[mediation]]></category>
		<category><![CDATA[operating systems]]></category>

		<guid isPermaLink="false">http://www.taricorp.net/?p=99</guid>
		<description><![CDATA[Go read.  You can come back in a bit and be mildly confused. ..or don't (if you did, good). Ubunchu is.. interesting.  I've lately taken to ignoring most things that so much as mention UbunchuUbuntu (as my StumbleUpon history will attest to), but it's good to know that there's still plenty of sense, if you [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://divajutta.com/doctormo/ubunchu/c.html" target="_blank">Go read</a>.  You can come back in a bit and be mildly confused.</p>
<div id="attachment_100" class="wp-caption aligncenter" style="width: 655px"><a href="http://chrislnew.deviantart.com/art/CLI-tan-136062057"><img class="size-large wp-image-100  " title="CLI-tan" src="http://www.taricorp.net/wp-content/uploads/2010/05/CLI_tan_by_chrislnew-1024x639.png" alt="CLI-tan" width="645" height="402" /></a><p class="wp-caption-text">Look, it&#39;s CLI-tan.</p></div>
<p>..or don't (if you did, good).</p>
<p>Ubunchu is.. interesting.  I've lately taken to ignoring most things that so much as mention <span style="text-decoration: line-through;">Ubunchu</span>Ubuntu (as my StumbleUpon history will attest to), but it's good to know that there's still plenty of sense, if you know where to look.  Not everyone is <a href="http://ubuntard.com/2009/03/blind-leading-the-blind/" target="_blank">spewing nonsense</a> from <a href="http://ubuntard.com/2009/12/command-line-idiocy/" target="_blank">their nostrils</a>, evidently.</p>
<h2>The truth is over there</h2>
<p>There's a pretty impressive amount of truth lurking in Ubunchu under the silliness and not-quite-<a href="http://ostan-collections.net/wiki/List_of_OS-tans" target="_blank">OS-tan</a> levels of <em>moe</em>.  Basically every opinion voiced in the manga is accurate, IMHO.  In my mind, there's a place for each OS- each has is strengths, and certain weaknesses- what you get from any system is a combination of what it can offer well and what you put in.</p>
<p><a href="http://www.ubuntu.com/" target="_blank">Ubuntu</a>, for example, is a very newbie-friendly Linux distro, and it's very good at being free and (generally) easy to use.  Try to control it too much, and it might break on you- that's just how the game works.</p>
<p><a href="http://www.archlinux.org/" target="_blank">Arch</a>, my Linux distro of choice, is quite different- it's one that expects you, the user, to go poking around and configure things yourself.  Arch is great at being configured to exactly fit your needs, provided you're willing to take the time to learn things for yourself (do eeeet, I say).</p>
<p>Windows is good at being itself- not free, but generally worth the price for those who know what they're doing.  I'll freely admit that Windows tends to be overkill and even something of a liability (what with malware and all) for uninformed users, but I feel that power users can get a lot out of Windows with excellent dev tools like Visual Studio, a huge multitude of games, and the multiple ways to do just about anything.  Say what you want about Microsoft, but their developer support is  superb.</p>
<p>OSX?  Well, it's good at being simple to use and not free.  I won't say much on that since I generally make a point of ignoring Apple products, but I hear such systems are well-liked in the creative community.  My main complaint is that it generally only gives you one way to do whatever it is you might want to do, which is rather painful for someone like me, who likes to poke around in things.</p>
<h2>Bottom line</h2>
<p>Operating systems bring a variety of benefits to the table, and it's up to you, the user, to decide which one(s) fit your computer usage style best.  Now if you'll excuse me, I'm off to SSH into my server to check on my CLI IRC client.<span style="color: #000000;"> ( ^‐^)_</span></p>
<p><span style="color: #000000;">Oh, and I want a sysadmin's club.<br />
</span></p>
]]></content:encoded>
			<wfw:commentRss>http://www.taricorp.net/2010/05/ubunchu/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>CPU Comparison Shopping</title>
		<link>http://www.taricorp.net/2010/05/cpu-comparison-shopping/</link>
		<comments>http://www.taricorp.net/2010/05/cpu-comparison-shopping/#comments</comments>
		<pubDate>Mon, 03 May 2010 22:18:08 +0000</pubDate>
		<dc:creator>tari</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[computing]]></category>
		<category><![CDATA[cpu]]></category>
		<category><![CDATA[hardware]]></category>
		<category><![CDATA[pc]]></category>
		<category><![CDATA[science!]]></category>

		<guid isPermaLink="false">http://www.taricorp.net/?p=74</guid>
		<description><![CDATA[I've been slowly working towards putting together a new PC build to replace my current one, a Core 2 Duo- based system I built about three years ago, which is starting to show its age.  In the interest of comparison shopping, I put together a spreadsheet and some charts looking at the newer Intel (i5/i7) [...]]]></description>
			<content:encoded><![CDATA[<p>I've been slowly working towards putting together a new PC build to replace my current one, a Core 2 Duo- based system I built about three years ago, which is starting to show its age.  In the interest of comparison shopping, I put together a spreadsheet and some charts looking at the newer Intel (i5/i7) and AMD (Phenom X4/X6) processors.  Turns out that Intel's Core i5-750 seems to be the best deal in processors for what I'm looking for in a system at the moment.</p>
<h2>Raw Data</h2>
<p>Clock speeds are in MHz, TDP in Watts, and cost is price in USD at <a href="http://newegg.com/">newegg</a> as of 5/3/2010.  Processors with SMT (hyperthreading) are noted in the Cores column.</p>
<table>
<tbody>
<tr>
<td>Manufacturer</td>
<td>Model</td>
<td>Cores</td>
<td>Clock</td>
<td>TDP</td>
<td>Cost</td>
</tr>
<tr>
<td>AMD</td>
<td>Phenom II X4 955 BE</td>
<td>4</td>
<td>3200</td>
<td>125</td>
<td>159.99</td>
</tr>
<tr>
<td>AMD</td>
<td>Phenom II X4 940 BE</td>
<td>4</td>
<td>3000</td>
<td>125</td>
<td>161.99</td>
</tr>
<tr>
<td>AMD</td>
<td>Phenom II X4 965 BE</td>
<td>4</td>
<td>3400</td>
<td>125</td>
<td>180.99</td>
</tr>
<tr>
<td>AMD</td>
<td>Phenom II X6 1090T</td>
<td>6</td>
<td>3200</td>
<td>125</td>
<td>309.99</td>
</tr>
<tr>
<td>Intel</td>
<td>Core i5-650</td>
<td>2</td>
<td>3200</td>
<td>73</td>
<td>184.99</td>
</tr>
<tr>
<td>Intel</td>
<td>Core i5-661</td>
<td>2</td>
<td>3330</td>
<td>87</td>
<td>199.99</td>
</tr>
<tr>
<td>Intel</td>
<td>Core i7-920</td>
<td>4 (SMT)</td>
<td>2660</td>
<td>130</td>
<td>279.99</td>
</tr>
<tr>
<td>Intel</td>
<td>Core i7-930</td>
<td>4 (SMT)</td>
<td>2800</td>
<td>130</td>
<td>294.99</td>
</tr>
<tr>
<td>Intel</td>
<td>Core i5-750</td>
<td>4</td>
<td>2660</td>
<td>95</td>
<td>199.99</td>
</tr>
<tr>
<td>Intel</td>
<td>Core i7-860</td>
<td>4 (SMT)</td>
<td>2800</td>
<td>95</td>
<td>279.99</td>
</tr>
</tbody>
</table>
<p><span id="more-74"></span></p>
<h2>Performance Charts</h2>
<p>I started by charting the benchmark scores for each processor in the table in Cinebench R10 and Crysis, using benchmark results from <a href="http://www.bit-tech.net/">bit-tech</a>.  The Crysis results are very limited since Bit-Tech's benchmark settings varied.  I used 1680x1050, all settings on High, no AA or AF.</p>
<pre>[Note: images are no longer on the server.  If anyone really wants them back up, I'll regenerate them, but otherwise I won't bother.  <a href="http://www.taricorp.net/contact/">Let me know</a> if you want them.]
</pre>
<h2><a href="http://www.taricorp.net/wp/wp-content/uploads/2010/05/cinebench.png"><img class="aligncenter size-full wp-image-77" title="cinebench" src="http://www.taricorp.net/wp-content/uploads/2010/05/cinebench.png" alt="Cinebench score" width="480" height="288" /></a><a href="http://www.taricorp.net/wp-content/uploads/2010/05/crysis.png"><img class="aligncenter size-full wp-image-79" title="crysis" src="http://www.taricorp.net/wp-content/uploads/2010/05/crysis.png" alt="Crysis score" width="480" height="288" /></a>Cost Comparison</h2>
<p>Finally, I compared the benchmark results and cost, charting how each processor scored when the cost was divided by benchmark scores.</p>
<h2><a href="http://www.taricorp.net/wp-content/uploads/2010/05/cinebench-cost.png"><img class="aligncenter size-full wp-image-78" title="cinebench-cost" src="http://www.taricorp.net/wp-content/uploads/2010/05/cinebench-cost.png" alt="Cost / Cinebench score" width="480" height="288" /></a><a href="http://www.taricorp.net/wp-content/uploads/2010/05/crysis-cost.png"><img class="aligncenter size-full wp-image-80" title="crysis-cost" src="http://www.taricorp.net/wp-content/uploads/2010/05/crysis-cost.png" alt="Cost / Crysis score" width="480" height="288" /></a>Analysis</h2>
<p>AMD's processors generally offer better price-to-performance ratios, but Intel wins out in terms of raw performance (I didn't include Intel's 6-core processor here, so the 1090T still tops the charts, though).</p>
<p>Intel's newer i5 and i7 cores performed noticeably better in Crysis, and perform better per-core in general.  Given the low cost-performance ratio and good raw performance numbers, the Core i5-750 seems to be the best choice for processors in my price range at the moment.  Even better, the TDP of the i5-750 is a full 30 Watts below that of the comparable AMD processors, all of which weigh in at 125 W.</p>
<p>The one factor that remains to be seen in this cost analysis is motherboards, but I think it's pretty safe to assume that costs for AM3 and LGA1156 boards are similar.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.taricorp.net/2010/05/cpu-comparison-shopping/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Gurren Lagann Redux</title>
		<link>http://www.taricorp.net/2010/04/gurren-lagann-redux/</link>
		<comments>http://www.taricorp.net/2010/04/gurren-lagann-redux/#comments</comments>
		<pubDate>Sun, 25 Apr 2010 18:54:16 +0000</pubDate>
		<dc:creator>tari</dc:creator>
				<category><![CDATA[reviews]]></category>
		<category><![CDATA[anime]]></category>
		<category><![CDATA[gainax]]></category>
		<category><![CDATA[gurren lagann]]></category>

		<guid isPermaLink="false">http://www.taricorp.net/?p=69</guid>
		<description><![CDATA[I totally just got this joke, after seeing it a while ago and just now seeing Gurren Lagann.  It's funny if you've done so, I promise.]]></description>
			<content:encoded><![CDATA[<p>I totally just got this joke, after seeing it a while ago and just now seeing Gurren Lagann.  It's funny if you've done so, I promise.<a href="http://www.taricorp.net/wp-content/uploads/2010/04/vgcsuper_ttgl.png"><img class="aligncenter size-full wp-image-70" title="vgcsuper_ttgl" src="http://www.taricorp.net/wp-content/uploads/2010/04/vgcsuper_ttgl.png" alt="GIGA DRILL BREAKER" width="530" height="627" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.taricorp.net/2010/04/gurren-lagann-redux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Tengen Toppa Gurren Lagann</title>
		<link>http://www.taricorp.net/2010/04/gurren-lagann/</link>
		<comments>http://www.taricorp.net/2010/04/gurren-lagann/#comments</comments>
		<pubDate>Tue, 20 Apr 2010 17:46:09 +0000</pubDate>
		<dc:creator>tari</dc:creator>
				<category><![CDATA[reviews]]></category>
		<category><![CDATA[anime]]></category>
		<category><![CDATA[gainax]]></category>
		<category><![CDATA[gurren lagann]]></category>

		<guid isPermaLink="false">http://www.taricorp.net/?p=60</guid>
		<description><![CDATA[Having just recently finished watching Tengen Toppa Gurren Lagann, I figured I'd share the fun with whoever happens to stumble across this.  Perhaps this is the beginning of a pattern, in which I'll be posting mini-reviews of media I consume.  Who knows.  Anyway, let's get into it. Generally Gurren Lagann is the product of Gainax, [...]]]></description>
			<content:encoded><![CDATA[<p>Having just recently finished watching <a href="http://en.wikipedia.org/wiki/Gurren_Lagann" target="_blank">Tengen Toppa Gurren  Lagann</a>, I figured I'd share the fun with whoever happens to stumble  across this.  Perhaps this is the beginning of a pattern, in which I'll  be posting mini-reviews of media I consume.  Who knows.  Anyway, let's  get into it.</p>
<h2>Generally</h2>
<p>Gurren Lagann is the product of Gainax, the same studio (notably) behind  Neon Genesis Evangelion, but that doesn't really mean anything- the two  are completely different, even in animation style, which took a bit of  getting used to.  It's a mecha, so you've got plenty of robots stomping  around, explosions, and post-modern themes.  Most importantly, however,  Gurren Lagann is loaded with silliness.  To get a feel for exactly how  silly, let's just say that at times there are multiple levels of  mecha-piloting-mecha recursion.</p>
<div id="attachment_61" class="wp-caption aligncenter" style="width: 682px"><a href="http://www.taricorp.net/wp-content/uploads/2010/04/vlcsnap-2010-04-20-12h40m57s237.png"><img class="size-full wp-image-61" title="TTGL-cast" src="http://www.taricorp.net/wp-content/uploads/2010/04/vlcsnap-2010-04-20-12h40m57s237.png" alt="The Cast of Gurren Lagann" width="672" height="378" /></a><p class="wp-caption-text">Partial cast.</p></div>
<h2>"Your drill will pierce the heavens"</h2>
<p>See what I did there?  That's basically the point of the entire thing, and it's the source of most of the silliness.  There's a very good reason for it all, but whenever something happens that makes no sense, it can be justified because "drills are magic".</p>
<h3>The setting</h3>
<p>It's some undisclosed alternate reality or future, where it seems all of humanity lives underground in small villages, and it's been that way long enough that it seems like the way things have always been.  Simon the Digger lives in one such village, working to expand the village, but it's not really why he digs.  He digs to find treasure.  In addition to Simon, we have Kamina, a bit of a troublemaker, who wishes to escape the conservative village elder and escape to the surface, dragging Simon along, piercing the heavens to freedom.  It's a pattern that gets repeated multiple times throughout the 27-episode run: fighting for freedom.</p>
<h2>Bottom Line</h2>
<p>Gurren Lagann is silly, fun, filled with explosions, and totally worth watching.</p>
<p style="text-align: left;">Oh, and how's this for a tidbit?  <em>40%</em> of the animation budget for the entire series was spent on the last 5 episodes.  The sheer insanity is.. mind-blasting.</p>
<div id="attachment_64" class="wp-caption aligncenter" style="width: 682px"><a href="http://www.taricorp.net/wp-content/uploads/2010/04/vlcsnap-2010-04-20-13h42m35s2.png"><img class="size-full wp-image-64 " title="yarly-simon" src="http://www.taricorp.net/wp-content/uploads/2010/04/vlcsnap-2010-04-20-13h42m35s2.png" alt="Really messed up" width="672" height="378" /></a><p class="wp-caption-text">I agree.</p></div>
]]></content:encoded>
			<wfw:commentRss>http://www.taricorp.net/2010/04/gurren-lagann/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Now in production</title>
		<link>http://www.taricorp.net/2010/04/now-in-production/</link>
		<comments>http://www.taricorp.net/2010/04/now-in-production/#comments</comments>
		<pubDate>Tue, 20 Apr 2010 16:37:07 +0000</pubDate>
		<dc:creator>tari</dc:creator>
				<category><![CDATA[site]]></category>

		<guid isPermaLink="false">http://www.taricorp.net/?p=58</guid>
		<description><![CDATA[For everyone who didn't know about my tests with WordPress, you're probably very surprised by the sudden change in the page, but this is the new taricorp.net, as I've moved (well, redirected) the site root to WordPress now. Comments, questions, suggestions are all welcome, and enjoy the new setup.]]></description>
			<content:encoded><![CDATA[<p>For everyone who didn't know about my tests with WordPress, you're probably very surprised by the sudden change in the page, but this is the new taricorp.net, as I've moved (well, redirected) the site root to WordPress now.</p>
<p>Comments, questions, suggestions are all welcome, and enjoy the new setup.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.taricorp.net/2010/04/now-in-production/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Additional slow growth</title>
		<link>http://www.taricorp.net/2010/04/additional-slow-growth/</link>
		<comments>http://www.taricorp.net/2010/04/additional-slow-growth/#comments</comments>
		<pubDate>Wed, 14 Apr 2010 19:30:46 +0000</pubDate>
		<dc:creator>tari</dc:creator>
				<category><![CDATA[site]]></category>
		<category><![CDATA[boring]]></category>

		<guid isPermaLink="false">http://www.taricorp.net/wp/?p=55</guid>
		<description><![CDATA[The site continues to grow slowly, as I've just finished the first project page, for fb-hitler. All's quiet on the Western front, it's a balmy 70º in Houghton for some reason.]]></description>
			<content:encoded><![CDATA[<p>The site continues to grow slowly, as I've just finished the first project page, for fb-hitler.</p>
<p>All's quiet on the Western front, it's a balmy 70º in Houghton for some reason.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.taricorp.net/2010/04/additional-slow-growth/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
