<?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>Abandoned Factory Blog</title>
	<atom:link href="http://blog.abandonedfactory.net/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.abandonedfactory.net</link>
	<description>Wanchan&#039;s Blog from Glie</description>
	<lastBuildDate>Wed, 03 Aug 2011 16:41:09 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
		<item>
		<title>Humans are neat</title>
		<link>http://blog.abandonedfactory.net/2011/03/10/humans-are-neat/</link>
		<comments>http://blog.abandonedfactory.net/2011/03/10/humans-are-neat/#comments</comments>
		<pubDate>Thu, 10 Mar 2011 21:23:02 +0000</pubDate>
		<dc:creator>wanchan</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blog.abandonedfactory.net/?p=91</guid>
		<description><![CDATA[Alt title: stereo vision is neat! There are obviously design flaws involved with having two eyes set apart being rigged to generate a single field of view &#8211; most notably when an object is close enough to my head that the scene is drastically different between the two lenses. And it does render strange visual [...]]]></description>
				<content:encoded><![CDATA[<p>Alt title: stereo vision is neat! There are obviously design flaws involved with having two eyes set apart being rigged to generate a single field of view &#8211; most notably when an object is close enough to my head that the scene is drastically different between the two lenses. And it does render strange visual artifacts, like being able to see my computer screen apparently *through* my hand, when it is held up in front of only one eye. </p>
<p>What really struck me, though, is that my brain is sufficiently well programmed that, while the strange things do render, and I consciously recognize them as strange, it doesn&#8217;t actually screw with my mind. Offhand, I&#8217;d expect that do generate more of a &#8220;holy crap wtf!&#8221; response in my brain, but it takes these things in perfect stride. No doubt because it happens many times daily, but still &#8211; humans are neat.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.abandonedfactory.net/2011/03/10/humans-are-neat/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CakePHP doesn&#8217;t like models named &#8220;List&#8221;</title>
		<link>http://blog.abandonedfactory.net/2011/01/17/cakephp-doesnt-like-models-named-list/</link>
		<comments>http://blog.abandonedfactory.net/2011/01/17/cakephp-doesnt-like-models-named-list/#comments</comments>
		<pubDate>Mon, 17 Jan 2011 21:21:13 +0000</pubDate>
		<dc:creator>wanchan</dc:creator>
				<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://blog.abandonedfactory.net/?p=81</guid>
		<description><![CDATA[CakePHP doesn't like models named List. Use a different name, like WantList. I'm guessing CakePHP (or maybe PHP itself?) has an internal List class already defined that this is stomping on.]]></description>
				<content:encoded><![CDATA[<p>Creating a gift want-list management app (mostly to learn how to use CakePHP). Naturally, this includes Lists of things a User wants. So, naturally, I called the DB table lists, implying a model named List. Seems fine, right?</p>
<p>When using the &#8216;cake bake all&#8217; tool, I got a bunch of parse errors to the effect of &#8216;unexpected token T_LIST, expected T_STRING&#8217; or something close. I forgot to copy/paste that error code before I fixed it &gt;&lt;; I&#8217;ll have to go reproduce that later so this will be a useful hit on Google later for the error message.</p>
<p>TL;DR: I tried to use names that were already used by either PHP itself or CakePHP</p>
<p>UPDATE: using <code>php -l</code> to do a compile check on <code>app/models/list.php</code>,  I get the same eror:</p>
<p><code> php -l models/list.php</code></p>
<p><code> </code></p>
<p><code>Parse error: syntax error, unexpected T_LIST, expecting T_STRING in models/list.php on line 2<br />
Errors parsing models/list.php<br />
</code></p>
<p>Anyway, after changing the DB table to want_lists (and having to change all of the foreign key reference column names from list_id to want_list_id), I deleted all of the model, controller, view and test files, then reran the &#8216;cake bake all&#8217; commands for each model it detected, the error seems to have disappeared. Testing still required, of course, both to confirm that this is where the error stemmed from, and that my fix did in fact fix it.</p>
<p><strong>TL;DR: CakePHP doesn&#8217;t like models named List. Use a different name, like WantList.</strong></p>
<p>UPDATE:  I&#8217;ve recreated the error. I&#8217;ve done the bake for the User model already; here&#8217;s the dump from trying to bake the List model:</p>
<p><code>Welcome to CakePHP v1.3.6 Console<br />
---------------------------------------------------------------<br />
App : app<br />
Path: /home/wanchan/abandonedfactory.net/gifter_test/app<br />
---------------------------------------------------------------<br />
---------------------------------------------------------------<br />
Bake All<br />
---------------------------------------------------------------<br />
Use Database Config: (default/test)<br />
[default] &gt;<br />
Possible Models based on your current database:<br />
1. Family<br />
2. FamiliesUser<br />
3. FamiliesWantList<br />
4. Item<br />
5. List<br />
6. User<br />
Enter a number from the list above,<br />
type in the name of another model, or 'q' to exit<br />
[q] &gt; 5</code></p>
<p><code>Baking model class for List...</code></p>
<p><code> </code></p>
<p><code>Creating file /home/wanchan/abandonedfactory.net/gifter_test/app/models/list.php<br />
Wrote `/home/wanchan/abandonedfactory.net/gifter_test/app/models/list.php`<br />
List Model was baked.<br />
SimpleTest is not installed. Do you want to bake unit test files anyway? (y/n)<br />
[y] &gt;</code></p>
<p><code> </code></p>
<p><code>You can download SimpleTest from http://simpletest.org</code></p>
<p><code>Baking test fixture for List...</code></p>
<p><code>Creating file /home/wanchan/abandonedfactory.net/gifter_test/app/tests/fixtures/list_fixture.php<br />
Wrote `/home/wanchan/abandonedfactory.net/gifter_test/app/tests/fixtures/list_fixture.php`</code></p>
<p><code> </code></p>
<p><code>Parse error: syntax error, unexpected T_LIST, expecting T_STRING in /home/wanchan/abandonedfactory.net/gifter_test/app/models/list.php on line 2<br />
</code></p>
<p>You&#8217;ll subsequently get similar errors when baking any other models that interact with Lists. Again, renaming the model to something else (I used WantList) seems to correct this, so I&#8217;m guessing CakePHP has an internal List class that this conflicts with.</p>
<p>I&#8217;d propose that the &#8216;cake bake&#8217; command should be updated to at least warn the user about potential name conflicts. Or, alternatively, a separate &#8216;cake bake_check&#8217; or something. Even just a simple published list of &#8220;names to avoid in PHP/CakePHP/whatever&#8221; would be pretty useful. Maybe I&#8217;ll start figuring out how to do all that after lunch&#8230;</p>
<p>Update 2: Looks to me like the conflict was probably with the PHP builtin function <a href="http://php.net/manual/en/function.list.php">list()</a>. Hmm&#8230; I wonder if it&#8217;s even possible to have a program generate a list of all names that it <em>can&#8217;t</em> use. I&#8217;m guessing that the best I&#8217;d be able to do is add/modify a bake command to check if any of the classes you&#8217;re ordering it to operate on are illegal. Not sure how to do that offhand&#8230; maybe have it write some temp code snippet files, then see if any of them generate parser errors like I just encountered?</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.abandonedfactory.net/2011/01/17/cakephp-doesnt-like-models-named-list/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Apparently battle.net is exclusively for WoW these days</title>
		<link>http://blog.abandonedfactory.net/2010/10/13/apparently-battle-net-is-exclusively-for-wow-these-days/</link>
		<comments>http://blog.abandonedfactory.net/2010/10/13/apparently-battle-net-is-exclusively-for-wow-these-days/#comments</comments>
		<pubDate>Wed, 13 Oct 2010 20:00:36 +0000</pubDate>
		<dc:creator>wanchan</dc:creator>
				<category><![CDATA[Video Gaming]]></category>

		<guid isPermaLink="false">http://blog.abandonedfactory.net/?p=79</guid>
		<description><![CDATA[I was perusing the Starcraft II web pages up on battle.net the other day, reading their descriptions of the various units. It&#8217;s pretty slick, and nicely informative. I found a couple of broken images on one page, so I used their support contact form to try to tell them. &#8230;They replied to tell me that [...]]]></description>
				<content:encoded><![CDATA[<p>I was perusing the Starcraft II web pages up on battle.net the other day, reading their descriptions of the various units. It&#8217;s pretty slick, and nicely informative. I found a couple of broken images on <a title="Warp Prism" href="http://us.battle.net/sc2/en/game/unit/warp-prism" target="_blank">one page</a>, so I used their support contact form to try to tell them.</p>
<p>&#8230;They replied to tell me that the preferred method for reporting WoW problems was to contact a GM in game.</p>
<p>what.</p>
<p>Seriously, SCII is still pretty new, and I think it&#8217;s pretty popular. We may not have quite the number of players as WoW, but apparently we Starcrafters are literally not even worth acknowledging the existance of as users of battle.net.</p>
<p>I didn&#8217;t really care what happened to this bug report &#8211; I was just trying to be helpful &#8211; but this is a bit insulting. Mostly I think it rubs me the wrong way because I&#8217;m still pretty upset that I *have* to connect to battle.net to play SCII. If SCII *requires* a battle.net account, why wouldn&#8217;t your support peons not be obliged to know about it?</p>
<p>Ah, ranting~ it&#8217;s what an unread blog is here for.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.abandonedfactory.net/2010/10/13/apparently-battle-net-is-exclusively-for-wow-these-days/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Written Emoticons</title>
		<link>http://blog.abandonedfactory.net/2010/10/08/written-emoticons/</link>
		<comments>http://blog.abandonedfactory.net/2010/10/08/written-emoticons/#comments</comments>
		<pubDate>Fri, 08 Oct 2010 17:18:12 +0000</pubDate>
		<dc:creator>wanchan</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blog.abandonedfactory.net/?p=77</guid>
		<description><![CDATA[Crap, I&#8217;m now far enough over the edge that I write emoticons. I just wrote &#8220;no change -.-&#8221; into my notes I keep at work.]]></description>
				<content:encoded><![CDATA[<p>Crap, I&#8217;m now far enough over the edge that I write emoticons. I just wrote &#8220;no change -.-&#8221; into my notes I keep at work.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.abandonedfactory.net/2010/10/08/written-emoticons/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fortran Tutorial: Recursion</title>
		<link>http://blog.abandonedfactory.net/2010/10/06/fortran-tutorial-recursion/</link>
		<comments>http://blog.abandonedfactory.net/2010/10/06/fortran-tutorial-recursion/#comments</comments>
		<pubDate>Wed, 06 Oct 2010 18:00:59 +0000</pubDate>
		<dc:creator>wanchan</dc:creator>
				<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://blog.abandonedfactory.net/?p=74</guid>
		<description><![CDATA[So here I am, pondering learning FORTRAN just for the hell of it. I start with the GNU Fortran compiler page, of course, and sure enough, they have a page on their wiki with some info on learning Fortran (or learning the newer versions of it, depending on previous experience). At the bottom of the [...]]]></description>
				<content:encoded><![CDATA[<p>So here I am, pondering learning FORTRAN just for the hell of it. I start with the GNU Fortran compiler page, of course, and sure enough, they have a page on their wiki with some info on learning Fortran (or learning the newer versions of it, depending on previous experience). At the bottom of the short list of links is some simple, practical advice: &#8220;Google on &#8216;fortran 95 tutorial&#8217;&#8221;. Here&#8217;s where it gets fun.</p>
<p>The first hit returned when asking Google about that phrase? That GNU Fortran wiki page which advises you to search Google. Maybe Google&#8217;s search engine gave the page extra points for telling people to visit Google?</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.abandonedfactory.net/2010/10/06/fortran-tutorial-recursion/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Wings of Liberty Complete</title>
		<link>http://blog.abandonedfactory.net/2010/10/04/wings-of-liberty-complete/</link>
		<comments>http://blog.abandonedfactory.net/2010/10/04/wings-of-liberty-complete/#comments</comments>
		<pubDate>Mon, 04 Oct 2010 20:32:23 +0000</pubDate>
		<dc:creator>wanchan</dc:creator>
				<category><![CDATA[Video Gaming]]></category>

		<guid isPermaLink="false">http://blog.abandonedfactory.net/?p=68</guid>
		<description><![CDATA[I finished my first pass through the Starcraft II: Wings of Liberty campaign over the weekend. The acting (such as it is) in the cutscenes was quite good, and the plot itself excellent, in my opinion. I was quite pleased at the difficulty. On &#8220;normal&#8221; I had minimal troubles in the first handful of missions, [...]]]></description>
				<content:encoded><![CDATA[<p>I finished my first pass through the Starcraft II: Wings of Liberty campaign over the weekend. The acting (such as it is) in the cutscenes was quite good, and the plot itself excellent, in my opinion.</p>
<p>I was quite pleased at the difficulty. On &#8220;normal&#8221; I had minimal troubles in the first handful of missions, and with the exception of the last couple of missions, the only times I had to reload from saves was when I was trying to complete the optional objectives. It made for a pretty smooth playthrough. My only gripe, I guess, is that I&#8217;m going to need to start over in order to play out all of the missions, as the story has a couple of (minor) forks &#8211; I need to replay so that I can make the other decision at each fork.</p>
<p>I must say, however, that having a totally different set of units available to me in the campaign battles as compared to standard multiplayer matches was a bit confusing. I <em>like </em>my medics, and they behave so much better than in the original Starcraft. I miss them so during my skirmish battles :/  (the Vultures are neat, but I hardly used them anyway).</p>
<p>The ability to research upgrades in the lab and armory to permanently modify my army for future missions, and the way each campaign battle unlocked a particular unit on completion also sat very well with me. It felt like the usual natural progression of increasing tech level mission-by-mission, complete with the expected brief tutorial about the unit&#8217;s capabilities, except that I gained some control over the order in which I added each particular unit to my arsenal. So I could do things like expedite the addition of the glorious Siege Tanks, since I knew I&#8217;d be making extensive use of those.</p>
<p>The Laboratory research upgrades were considerably more engaging than I expected, mostly because you are made to choose between two different upgrades at each level. The problem? Pretty much all of the research options are zomg awesome. I&#8217;m happy with my choices, but suspect I&#8217;d do just as well with the alternatives.</p>
<p>The Mercenary units are amusing, and useful, but overall pretty &#8220;meh&#8221; in my opinion. Admittedly, that&#8217;s probably because I often forget to summon them, other than the Pirate Battlecruiser. I make pretty heavy use of battlecruisers whenever possible (at least in campaign missions). And his &#8220;I&#8217;m being attacked&#8221; dialogue amuses the heck out of me: &#8220;it&#8217;s a trap!&#8221;</p>
<p>I&#8217;m still not sure I care for Blizzard&#8217;s decision to split SCII into 3 full-on games, but this one, at the least, was worth my time and money. If they charge full price for the Protoss and Zerg campaigns, I&#8217;m gonna expect one hell of a performance, since this one has the multiplayer engine already.</p>
<p>Speaking of multiplayer, I have a smallish complaint. Why must &#8220;offline&#8221; skirmish battles (where I&#8217;m the *only* human player) be treated exactly the same as an online multiplayer? Pausing is limited, and I once paused a game and went to bed, only to find the game had ejected me for holding the pause too long. Who was I inconveniencing? Did it really bother the AI that I made it wait before finishing the match? For that matter, if I&#8217;m playing coop or head-to-head with friends, why shouldn&#8217;t we be able to table a long match for completion after we, say, come home from work? On the other hand, maybe the save/load function can fill that niche? I have no idea if a multiplayer game can be resumed with the same humans as before, or if AIs get automatically assigned to those slots. Or are mutiplayer matches even saveable? I don&#8217;t generally play with humans, because, as a rule, People Suck. I don&#8217;t see why I should expect the SCII community to be any different. I need to send a copy to Mark and make him play with me, I guess ^^;</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.abandonedfactory.net/2010/10/04/wings-of-liberty-complete/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Basic Skills</title>
		<link>http://blog.abandonedfactory.net/2010/09/23/62/</link>
		<comments>http://blog.abandonedfactory.net/2010/09/23/62/#comments</comments>
		<pubDate>Thu, 23 Sep 2010 19:32:01 +0000</pubDate>
		<dc:creator>wanchan</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blog.abandonedfactory.net/?p=62</guid>
		<description><![CDATA[In terms of skills learned pre-college that I actually use day-to-day, it occurs to me that &#8220;touch-typing&#8221; is probably a lot higher than one would think. It&#8217;s probably something like Reading/writing Arithmetic Typing (for me, anyway). Obviously this is because I discovered a love for computers and programming them, but that didn&#8217;t take off until [...]]]></description>
				<content:encoded><![CDATA[<p>In terms of skills learned pre-college that I actually use day-to-day, it occurs to me that &#8220;touch-typing&#8221; is probably a lot higher than one would think. It&#8217;s probably something like</p>
<ol>
<li>Reading/writing</li>
<li>Arithmetic</li>
<li>Typing</li>
</ol>
<p>(for me, anyway).</p>
<p>Obviously this is because I discovered a love for computers and programming them, but that didn&#8217;t take off until college. Thanks, Middle School, for adding &#8220;decent touch typist&#8221; in there next to &#8220;literate&#8221; at the base of my skillset.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.abandonedfactory.net/2010/09/23/62/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>No hike today</title>
		<link>http://blog.abandonedfactory.net/2010/08/31/no-hike-today/</link>
		<comments>http://blog.abandonedfactory.net/2010/08/31/no-hike-today/#comments</comments>
		<pubDate>Tue, 31 Aug 2010 15:28:36 +0000</pubDate>
		<dc:creator>wanchan</dc:creator>
				<category><![CDATA[Hiking]]></category>

		<guid isPermaLink="false">http://blog.abandonedfactory.net/?p=55</guid>
		<description><![CDATA[Well, got Michi picked up a bit later than expected, so we decided to go straight home for some Abyssea XP with FI folks instead of hiking. Worked pretty well, I ran boxes on my RNG to go 64 -&#62; 66, and Michi got her WHM up to 80 plus cap buffer. Michi is planning [...]]]></description>
				<content:encoded><![CDATA[<p>Well, got Michi picked up a bit later than expected, so we decided to go straight home for some Abyssea XP with FI folks instead of hiking. Worked pretty well, I ran boxes on my RNG to go 64 -&gt; 66, and Michi got her WHM up to 80 plus cap buffer.</p>
<p>Michi is planning to take Friday off, so we&#8217;re thinking to do a longer day of hiking along Rattlesnake Ridge then.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.abandonedfactory.net/2010/08/31/no-hike-today/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>First visit to Tiger Mountain</title>
		<link>http://blog.abandonedfactory.net/2010/08/29/first-visit-to-tiger-mountain/</link>
		<comments>http://blog.abandonedfactory.net/2010/08/29/first-visit-to-tiger-mountain/#comments</comments>
		<pubDate>Sun, 29 Aug 2010 21:39:11 +0000</pubDate>
		<dc:creator>wanchan</dc:creator>
				<category><![CDATA[Hiking]]></category>

		<guid isPermaLink="false">http://blog.abandonedfactory.net/?p=27</guid>
		<description><![CDATA[So Michi and I finally decided to get off our backsides, and get in some hiking while the weather was still good. On recommendation from some of her coworkers, we decided to try Tiger Mountain State Forest. I expect we&#8217;ll be hitting it a lot, as in low traffic it takes ~20 minutes to get [...]]]></description>
				<content:encoded><![CDATA[<p>So Michi and I finally decided to get off our backsides, and get in some hiking while the weather was still good. On recommendation from some of her coworkers, we decided to try Tiger Mountain State Forest. I expect we&#8217;ll be hitting it a lot, as in low traffic it takes ~20 minutes to get to the trailhead from our apartment.</p>
<p>On Saturday we hit the trail a bit after 8am, and started straight up West Tiger No. 3 Trail. That ended up being a poor decision on my party &#8211; I underestimated how badly out of shape I am. After 30 minutes of moderately steep climbing, I was pretty badly beaten. On my request, we turned back, and spent another 45 minutes or enjoying the fairly flat Around the Lake Trail, which, strangely, skirts around Tradition Lake. It&#8217;s a pretty pleasant trail, with the majority being better described as a narrow gravel road than a forest trail.</p>
<p>This morning we slept in a bit longer, and didn&#8217;t hit the trail until more like 10am. This time we <em>started</em> with the Around the Lake Trail for a warmup, but forked off at Nook Trail just before returning to the trailhead. We too Nook south for a while in a much nicer climb up a bit of West Tiger Mountain, then used Talus Rock Trail to cut back over to West Tiger No. 3 for the descent back to the trailhead.  We loaded back into the truck at about 11:30. We came home with weary legs, but happy for our morning&#8217;s exercise :D</p>
<p>Since our Sky shell has cancelled events this week, we&#8217;re going to try to hike something from that trailhead again tomorrow after Michi gets off work. Traffic&#8217;s gonna be inevitably much worse, but there&#8217;s only one way to find out how feasible it is to hit those trails after work ^.^b</p>
<div id="attachment_57" class="wp-caption alignnone" style="width: 310px"><a href="http://blog.abandonedfactory.net/wp-content/uploads/2010/08/IMG_0524.jpg"><img class="size-medium wp-image-57" title="Michi at Tradition Lake" src="http://blog.abandonedfactory.net/wp-content/uploads/2010/08/IMG_0524-300x225.jpg" alt="Michi at Tradition Lake" width="300" height="225" /></a><p class="wp-caption-text">Michi at a scenic viewpoint at Tradition Lake</p></div>
]]></content:encoded>
			<wfw:commentRss>http://blog.abandonedfactory.net/2010/08/29/first-visit-to-tiger-mountain/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Follow up on the New Knife</title>
		<link>http://blog.abandonedfactory.net/2008/02/11/follow-up-on-the-new-knife/</link>
		<comments>http://blog.abandonedfactory.net/2008/02/11/follow-up-on-the-new-knife/#comments</comments>
		<pubDate>Tue, 12 Feb 2008 07:08:16 +0000</pubDate>
		<dc:creator>wanchan</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blog.abandonedfactory.net/2008/02/11/follow-up-on-the-new-knife/</guid>
		<description><![CDATA[Wow, I guess it&#8217;s been a while since I&#8217;ve posted here&#8230; Anyway, I&#8217;ve had a fair amount of time to get used to my new Calphalon knife now. In terms of overall quality, it&#8217;s definitely on par with my good Wustof. The Calphalon does indeed seem to lose it&#8217;s fine edge faster, but I figure [...]]]></description>
				<content:encoded><![CDATA[<p>Wow, I guess it&#8217;s been a while since I&#8217;ve posted here&#8230;</p>
<p>Anyway, I&#8217;ve had a fair amount of time to get used to my new Calphalon knife now. In terms of overall quality, it&#8217;s definitely on par with my good Wustof. The Calphalon does indeed seem to lose it&#8217;s fine edge faster, but I figure that shouldn&#8217;t be too much of a problem with some regular honing.</p>
<p>The Calphalon has a couple of advantages, though&#8230;</p>
<p>First, the blade is much thicker, so there&#8217;s less risk of accidentally flexing the blade laterally when cutting through stiff material (like steaks or frozen stuff).</p>
<p>Second, the back of the blade is much more comfortable for my thumb.</p>
<p>The end result is that I kinda like my Calphalon a bit more, but still really like both. As such, I&#8217;ve decided to sharpen them differently. The Wustof I&#8217;ve got holding an extra-fine, polished edge for smooth slicing. The Calphalon has a somewhat rougher edge, which works great for cutting stuff like meat, and also for catching the smooth surface of soft fruits like tomatoes.</p>
<p>I got me a new set of Arkansas stones last month, too. Yay! :D</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.abandonedfactory.net/2008/02/11/follow-up-on-the-new-knife/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Dynamic Page Served (once) in 0.754 seconds -->
