<?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>Realvelour</title>
	<atom:link href="http://www.realvelour.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.realvelour.com</link>
	<description>Leela... it&#039;s real velour.</description>
	<lastBuildDate>Tue, 24 Aug 2010 02:23:11 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>+1 hobbies</title>
		<link>http://www.realvelour.com/2010/08/23/1-hobbies/</link>
		<comments>http://www.realvelour.com/2010/08/23/1-hobbies/#comments</comments>
		<pubDate>Tue, 24 Aug 2010 02:23:10 +0000</pubDate>
		<dc:creator>Daniel Sisco</dc:creator>
				<category><![CDATA[realvelour]]></category>
		<category><![CDATA[FINally]]></category>
		<category><![CDATA[video games]]></category>

		<guid isPermaLink="false">http://www.realvelour.com/?p=504</guid>
		<description><![CDATA[<br/>With my new job underway I have some free time that I am plugging with two old hobbies: writing a finance app in Python and playing video games. More on the former later; more on the latter now.]]></description>
			<content:encoded><![CDATA[<br/><p>With my new job underway I have some free time that I am plugging with two old hobbies: the equestrian team and pottery class. No, that&#8217;s right&#8230; ah, writing a finance app in Python and playing video games. More on the former later; more on the latter now.</p>

<a href="http://www.realvelour.com/wp-content/gallery/misc/arkhamasylumlogo.jpg" title="" class="shutterset_singlepic66" >
	<img class="ngg-singlepic ngg-center" src="http://www.realvelour.com/wp-content/gallery/cache/66__320x240_arkhamasylumlogo.jpg" alt="arkhamasylumlogo" title="arkhamasylumlogo" />
</a>

<p>I beat Arkham Asylum with a completion score of 90%. I solved 100% of the Riddler Challenges, including the unlisted final Amadeus Arkham riddle. The attention to irrelevant Gotham City villans was impressive &#8211; they even plumbed the depths of the Alice in Wonderland themed characters by showcasing the ridiculous <a href="http://en.wikipedia.org/wiki/Mad_Hatter_(comics)">Jervis Tetch</a>, <a href="http://en.wikipedia.org/wiki/Tweedledum_and_Tweedledee_(comics)">Dumfree and Deever Tweed</a>, and <a href="http://en.wikipedia.org/wiki/Humpty_Dumpty_(comics)">Humphry Dumpler</a>. I guess if you didn&#8217;t really care about the Bat-a-verse the game would still be pretty good, but if you&#8217;re a comic book fanatic, it&#8217;s *really* good. Finally in Batman news, GameInformer just ran a cover story on <a href="http://www.batmanarkhamcity.com/">Batman: Arkham City</a>, which sounds like it will be even better (&#8220;&#8230;and it sounds even BETTER than when I&#8217;m singing out!&#8221;).</p>
<p>After Batman I participated in a two-for-two trade with one my friends. I sent Bayonetta and Batman out into the world and received Heavy Rain and Demon&#8217;s Souls in return. Demon&#8217;s Souls is famously difficult and my wife thinks it would make her punch through walls and flip the apartment over, but I&#8217;m giving it a go. I don&#8217;t have an incredible amount of time and my typical playing style (bull rush. attack. everything.) is leaving me bloodied and annoyed. SO &#8211; I&#8217;m taking it upon myself to show that I&#8217;m a learner and trying to play a calmer and gentler game of Demon&#8217;s Souls. Also, I&#8217;m the thief &#8211; so I can&#8217;t even wield the big weapons anyway. But that&#8217;s ok, it&#8217;s fun.</p>
<p>Ok, on to the former. v1.0.0 of FINally is about to be released (to my wife and I)! I&#8217;ve made pretty good progress implementing some under-the-hood features like a new SQLite backend using Elixir and a new grid-based GUI front-end using wxPython. The first version of this tool focuses on getting the basics (creating, reading, updating, and deleting) to work in an extensible and clean way. What does this mean? It means the tool looks like complete ass and will probably not approve in appearance until all of the guts are there. Skinning the tool will probably be a task all it&#8217;s own down the road because I know myself well enough to know that I could spend nearly infinite time tweaking the appearance.</p>
<p>Pretty much all of the FINally code has been re-written, although it might look familiar to those who have browsed it before because the underlying wxPython setup didn&#8217;t change. The biggest improvements were made to the database, the Python class/module layout, and general user friendliness.</p>
<p>The backend was written using <a href="http://elixir.ematia.de/trac/wiki">Elixir</a>, which is a Python module that basically sits on top of <a href="http://www.sqlalchemy.org/">SQLAlchemy</a> and prevents you from having to do any real work. Elixir&#8217;s worth lies in the fact that it allows you to create and access SQLite databases of moderate complexity with truly minimal code (not to mention a minimal understanding of Object Relational Mappers). I haven&#8217;t hit this speed bump yet, but I think the balance for this is the fact that if you ever *do* need to get into the nuts and bolts you basically have to learn SQLAlchemy, which you could have learned in the first place. I had to pick one of the two to go with and Demon&#8217;s Souls convinced me to go with Elixir.</p>
<p>On the Python class point, I did some research into classes to try and determine why I was occasionally doing this:</p>
<blockquote>
<pre>class foo(bar):</pre>
<pre>    var = 1234</pre>
<pre>    def __init__(self):</pre>
<pre>        # code here</pre>
</blockquote>
<p>..and why I was occasionally doing this:</p>
<blockquote>
<pre>class foo(bar):</pre>
<pre>    def __init__(self):</pre>
<pre>        self.var = 1234</pre>
<pre>        # more code here</pre>
</blockquote>
<p>The reason (class variables vs. instance variables) was interesting and clarifying. (Side note: yeah, so I&#8217;ve never really professionally written anything other than embedded C (not even C++) for automotive applications, and Perl for an occasional <a href="http://en.wikipedia.org/wiki/List_of_comic_book_drugs#Venom">Venom</a>-laden makefile. I think I&#8217;m a bit behind on my OOP. Also, I skipped Java entirely.) IN ANY CASE it was very interesting and it helped with the tool.</p>
<p>Finally, I tried to simplify the UI so that the average operator could sit down after a long night at the bar and tally up the receipts with no problem. As mentioned above, the skin I&#8217;ve chosen is &#8220;Butt Ugly&#8221;, but that will change in time. The basic use is: open tool, enter/edit data, close tool. The tool handles the rest. Hoorah!</p>
<p>Here&#8217;s a screenshot of the main screen:</p>
<p>﻿
<a href="http://www.realvelour.com/wp-content/gallery/finally/fa_homescreen.png" title="" class="shutterset_singlepic65" >
	<img class="ngg-singlepic ngg-center" src="http://www.realvelour.com/wp-content/gallery/cache/65__600x600_fa_homescreen.png" alt="fa_homescreen" title="fa_homescreen" />
</a>
</p>
<p>The hideous green will be replaced by buttons, a menubar will appears, and I might even add some row-by-row icons to special expenses. Many things to come.</p>
<p>Ok, my wife has now gone to bed and this post has gone on long enough. I&#8217;ll write again later to talk about how you can contribute if you&#8217;re interested and also to shed some light on my love affair with Mercurial.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.realvelour.com/2010/08/23/1-hobbies/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Gaming &#8211; Stack Exchange</title>
		<link>http://www.realvelour.com/2010/07/20/gaming-stack-exchange/</link>
		<comments>http://www.realvelour.com/2010/07/20/gaming-stack-exchange/#comments</comments>
		<pubDate>Wed, 21 Jul 2010 02:02:33 +0000</pubDate>
		<dc:creator>Daniel Sisco</dc:creator>
				<category><![CDATA[realvelour]]></category>

		<guid isPermaLink="false">http://www.realvelour.com/?p=499</guid>
		<description><![CDATA[<a href="http://www.realvelour.com/2010/07/20/gaming-stack-exchange/"><img align="left" hspace="5" src="http://www.realvelour.com/wp-content/gallery/cache/64__150x150_gaming_se.jpg" alt="gaming_se" title="misc" class="wp-post-image ngg-image-64 alignleft tfe" /></a><br/>This just in (sort of) - there's a new StackOverflow site for gaming: Gaming - Stack Exchange!]]></description>
			<content:encoded><![CDATA[<br/><p>This just in (sort of) &#8211; there&#8217;s a new <a href="http://stackoverflow.com/">StackOverflow </a>site for gaming:</p>
<p><a href="http://gaming.stackexchange.com/">http://gaming.stackexchange.com</a>/</p>
<p>You can import your profile from StackOverflow, and you get one-hundo S.O. points for joining the site! There aren&#8217;t too many questions yet (~900), but it appears to be getting some decent traffic and if StackOverflow is any indication the community that will form around the site will be pretty useful for all kinds of gaming inqueries.</p>
<p>So far I&#8217;ve seen a lot of gaming hardware, older game ports, open ended (RPG, MMORPG), and strategy game questions &#8211; it&#8217;s been a good distraction from my usual obsessive Reddit and S.O. checking.</p>
<p>On another gaming note, I finished Fallout 3 last night and to say I was disappointed by the ending doesn&#8217;t even begin to capture my true feelings, which are must closer to rage. RAGE! First of all, the game ended so abruptly it was kind of shocking. I was walking around, thinking about how awesome my Plasma Rifle is and plotting my next adventure, and BAMN! Game over. Then, in an oft documented game design failure, it doesn&#8217;t let you continue exploring once you&#8217;ve ended (without installing a patch anyway).</p>
<p>My wife got my Batman: Arkham Asylum for my birthday, so I think I&#8217;m going to visit each unexplored location on the map and then call it a day. I have several suits of Enclave Tesla Power Armor, every weapon in the game, and a tonne of ammo, so I&#8217;m pretty much indestructible anyway. Pfff&#8230;</p>
<p>No, but seriously, it was a great game up until the ending. I recommend it to anyone interesting in open ended gunplay.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.realvelour.com/2010/07/20/gaming-stack-exchange/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>this just in&#8230;</title>
		<link>http://www.realvelour.com/2010/07/18/this-just-in/</link>
		<comments>http://www.realvelour.com/2010/07/18/this-just-in/#comments</comments>
		<pubDate>Sun, 18 Jul 2010 21:26:37 +0000</pubDate>
		<dc:creator>Daniel Sisco</dc:creator>
				<category><![CDATA[realvelour]]></category>
		<category><![CDATA[Fin-ally]]></category>
		<category><![CDATA[movies]]></category>
		<category><![CDATA[piano]]></category>
		<category><![CDATA[projects]]></category>

		<guid isPermaLink="false">http://www.realvelour.com/?p=483</guid>
		<description><![CDATA[<br/>During this trip we had the misfortune of having some free-time align perfectly with the showtime for Sex &#038; The City 2, which we saw, and which everyone in the group hated. The two-plus hour run time allowed for plenty of private thoughts such as: Is Kim Cattrall intentionally tanking her lines? Could this movie be any more offensive to Muslim peoples? Is Paul  falling asleep or having an aneurysm? Why am I not watching Predators, Splice, Avatar: The Last Airbender, etc... any of those must be better than this drivel!]]></description>
			<content:encoded><![CDATA[<br/><p>&#8230;<em>Sex &amp; The City 2</em> suuuucked.</p>
<p>About a month ago, my wife and I flew out to Boston to visit some good friends and see the city for the first time. Specifically, we visited my college roomate from Freshman, Junior, and Senior years and his charming and massively fun new fiancée. We haven&#8217;t been on such a pleasant trip in a long time and the city was wonderful &#8211; we&#8217;ll definitely be back. You can find some images at my wife&#8217;s site, <a title="Boston via Shadow&amp;SoulPhoto" href="http://shadowandsoulphoto.com/blog/?p=1871" target="_blank">Shadow&amp;Soul Photo</a>.</p>
<p>During this trip we had the misfortune of having some free-time align perfectly with the showtime for <em>Sex &amp; The City 2</em>, which we saw, and which everyone in the group hated. The two-plus hour run time allowed for plenty of private thoughts such as: I<em>s Kim Cattrall intentionally tanking her lines? Could this movie be any more offensive to Muslim peoples? Is Paul  falling asleep or having an aneurysm? Why am I not watching Predators, Splice, Avatar: The Last Airbender,</em> <em>etc&#8230; any of those must be better than this drivel!</em></p>
<p>(note: apparently karma caught up with Avatar: The Last Airbender and forced it to repay some cosmic debt <a href="http://www.racebending.com/v3/press/the-last-airbender-timeline/#speakout">for not casting any Asian actors</a> by totally sucking. The opening weekend take was just over 40 million, and since Paramount sunk a total of <a href="http://www.slashfilm.com/2010/06/25/paramount-has-spent-280-million-on-the-last-airbender/#disqus_thread">280 million</a> into producing and marketing the film, I would call that &#8220;a loss&#8221;.)</p>
<p>I guess the point is I haven&#8217;t seen a great  movie in the theater in a long long time. I liked <em>Iron Man II</em>, but it wasn&#8217;t great. I liked <em>Clash of the Titans</em> in a campy monster-pr0n kind of way, but it *definitely* wasn&#8217;t great 
<a href="http://www.realvelour.com/wp-content/gallery/misc/rampage_lizzie.png" title="" class="shutterset_singlepic63" >
	<img class="ngg-singlepic ngg-right" src="http://www.realvelour.com/wp-content/gallery/cache/63__320x240_rampage_lizzie.png" alt="rampage_lizzie" title="rampage_lizzie" />
</a>
 (Also, the guy behind me shouting &#8220;Release the Kraken!&#8221; every 5 minutes didn&#8217;t help. Listen up, nimrod: there&#8217;s only one Kraken and he doesn&#8217;t get released right away because nobody would be able to stop him and he would destroy the city like Lizzie from <a href="http://en.wikipedia.org/wiki/Rampage_(arcade_game)">Rampage</a> and that wouldn&#8217;t be a very good start to Perseus&#8217; journey now would it?). I remember thinking the <em>Lord of the Rings</em> movies were something special in the theater, and because I&#8217;m a comic book kinda guy I was equally impressed with <em>V for Vendetta</em>. Even <em>300</em> was pretty amazing the first time through. Lately though, no dice&#8230;. I&#8217;ll report back if I manage to buck this trend.</p>
<p>In other news I got a new job about a month ago and it has afforded me some much needed after work free time. In order to plug this free time leak I&#8217;ve spun up several projects &#8211; old and new:</p>
<p>1. Re-learning my once epic piano repertoire. My wife has mandated that I start with <a href="http://en.wikipedia.org/wiki/Nocturnes_Op._9_(Chopin)">Chopin&#8217;s Nocturne in E-flat Major Opus 9, Number 2</a>. We&#8217;re probably going to have a dinner party and I&#8217;ll play it for some guests to give me some performance-like event to shoot for. I&#8217;m excited about this because it&#8217;s been a very long time since I&#8217;ve legitimately played any piano. I have a complete set of the International Library of Music piano compositions, and I have a whole binder full of things I performed when I was taking lessons&#8230;. so I&#8217;m good on  the music front.</p>
<p>2. I&#8217;ve dusted off my <a href="https://code.google.com/p/fin-ally/">Fin-ally</a> project and I&#8217;m going to try and get that rolling again. I have a few goals here: get better at Python, be less dumb about relational database schema, get even more familiar with Mercurial, and finally make something my wife and I can use to track our ridiculous video game/clothing/makeup/comic book habits. By the way, not all of those items apply to both members of the Sisco household. For example, Rachel doesn&#8217;t read comic books.</p>
<p>My friend Tim has been kind enough to point out all the things I&#8217;m doing wrong/poorly with my current database schema, so I&#8217;m going to start with that.  The Fin-ally Google Code page is active again, too &#8211; with a brand spanking new Mercurial repo and some updated tooling documentation.</p>
<p>By the way &#8211; <a href="http://code.google.com/p/support/wiki/ConvertingSvnToHg">conversion with complete history</a> from Subversion to Mercurial was much simpler than originally anticipated but the online buzz and commentary about this process was fairly complicated for some reason. At the end of the day, all you have to do is enable the Mercurial &#8220;convert&#8221; command in your .hgrc file and then execute the convert command as such:</p>
<blockquote>
<pre>hg convert &lt;SVN repo path&gt; &lt;local directory&gt;</pre>
</blockquote>
<p>3. I have contracted my wife to create a new Realvelour.com banner image/colorscheme because I don&#8217;t really like the default one any more. That should be done sometime in mid to late August &#8211; so look out for that update!</p>
<p>Fin!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.realvelour.com/2010/07/18/this-just-in/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Mastodon Traffic?</title>
		<link>http://www.realvelour.com/2010/04/20/mastodon-traffic/</link>
		<comments>http://www.realvelour.com/2010/04/20/mastodon-traffic/#comments</comments>
		<pubDate>Wed, 21 Apr 2010 02:33:35 +0000</pubDate>
		<dc:creator>Daniel Sisco</dc:creator>
				<category><![CDATA[realvelour]]></category>
		<category><![CDATA[mastodon]]></category>
		<category><![CDATA[metal]]></category>

		<guid isPermaLink="false">http://www.realvelour.com/?p=464</guid>
		<description><![CDATA[<br/>What the hell is Mastodon ftw! doing with 109 views in 14 days? Given that I am not a Mastodon fan-site and most of my friends and acquaintances don&#8217;t really care for Mastodon&#8217;s brand of prog-metal, this makes virtually no sense. It would make sense if I wrote a post called &#8220;Smushed-face cats and hand-drawn [...]]]></description>
			<content:encoded><![CDATA[<br/><p>What the hell is <a href="http://wp.me/pQhim-c">Mastodon ftw!</a> doing with 109 views in 14 days? Given that I am not a Mastodon fan-site and most of my friends and acquaintances don&#8217;t really care for Mastodon&#8217;s brand of prog-metal, this makes virtually no sense. It would make sense if I wrote a post called &#8220;Smushed-face cats and hand-drawn tools&#8221; and got a billion hits in one day, but this is crazy.</p>
<p>Thankfully Wordpress has a killer plugin called <a href="http://wordpress.org/extend/plugins/stats/">Wordpress.com Stats</a>, which gives me data to turn into this:</p>

<a href="http://www.realvelour.com/wp-content/gallery/misc/mastodon_chart.jpg" title="" class="shutterset_singlepic60" >
	<img class="ngg-singlepic ngg-center" src="http://www.realvelour.com/wp-content/gallery/cache/60__600x600_mastodon_chart.jpg" alt="mastodon_chart" title="mastodon_chart" />
</a>

<p>As you can see, there was an unexplained spike in Mastodon post views in Mid-April. Because I&#8217;m kind of a data nerd, I find this interesting and kind of irritating in its inexplicableness (YEAH, IT&#8217;S A WORD). Maybe if I was a slick web developer I would be all like &#8220;oh yeah, that&#8217;s just your mid-April prog-metal traffic spike&#8230; GUH.&#8221; Unfortunately, I&#8217;m just a simple caveman embedded software engineer so all I can say is &#8220;it&#8217;s odd&#8221;.</p>
<p>I did some web traffic archeology and discovered that the search terms most used to find Realvelour were &#8220;mastodon&#8221;, &#8220;borat&#8221;, and &#8220;mastodon images&#8221;. This is congruent with the traffic, but doesn&#8217;t make the situation less weird because it implies that people are specifically searching for Mastodon and coming across my site. Like they go to Google, type in &#8220;mastodon images&#8221;, and Google says &#8220;OH, y0u sh0uld t0t3s ch3ck out Re@lv3lour.c0m&#8230; th3y h@v3 this *one* @rticl3 you would lik3&#8243;. I think not. I&#8217;m pretty sure Google talks like that, though.</p>
<p>Long story short, I found something that makes this all very sensible: a Spanish language metal discussion board linking to the image of Mastodon and Borat I posted. Realvelour.com is linked in a post, followed by a bunch of Spanish commentary. I&#8217;m sure it&#8217;s NSFW so don&#8217;t go trying to Google translate it at work or anything. It turns out somebody from Costa Rica found this image, posted it to a chat board, and started driving all sorts of Spanish metal traffic my way. Win? I&#8217;m not sure. All traffic is good traffic, but I&#8217;m pretty sure the Venn diagram for metal fans and kitten/tool drawing fans looks like this:</p>

<a href="http://www.realvelour.com/wp-content/gallery/misc/metal_kittens_venn.jpg" title="" class="shutterset_singlepic61" >
	<img class="ngg-singlepic ngg-center" src="http://www.realvelour.com/wp-content/gallery/cache/61__320x240_metal_kittens_venn.jpg" alt="metal_kittens_venn" title="metal_kittens_venn" />
</a>

<p><span id="more-464"></span></p>
<p>Otherwise known as what? That&#8217;s correct&#8230; the null set.</p>
<p>hoot. 
<a href="http://www.realvelour.com/wp-content/gallery/misc/hoot.jpg" title="" class="shutterset_singlepic62" >
	<img class="ngg-singlepic" src="http://www.realvelour.com/wp-content/gallery/cache/62__60x60_hoot.jpg" alt="hoot" title="hoot" />
</a>
</p>
]]></content:encoded>
			<wfw:commentRss>http://www.realvelour.com/2010/04/20/mastodon-traffic/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>[DT#16] general decline in jank</title>
		<link>http://www.realvelour.com/2010/04/18/dt16-general-decline-in-jank/</link>
		<comments>http://www.realvelour.com/2010/04/18/dt16-general-decline-in-jank/#comments</comments>
		<pubDate>Sun, 18 Apr 2010 22:34:32 +0000</pubDate>
		<dc:creator>Daniel Sisco</dc:creator>
				<category><![CDATA[realvelour]]></category>
		<category><![CDATA[tool of the day]]></category>

		<guid isPermaLink="false">http://www.realvelour.com/?p=416</guid>
		<description><![CDATA[<a href="http://www.realvelour.com/2010/04/18/dt16-general-decline-in-jank/"><img align="left" hspace="5" src="http://www.realvelour.com/wp-content/gallery/cache/57__150x150_drill_thumb.jpg" alt="drill_thumb" title="drill" class="wp-post-image ngg-image-57 alignleft tfe" /></a><br/>haHA! You thought I had fallen off the wagon and started ignoring my Daily Tool responsibilities when I was, in fact, just busy playing Bayonetta and Assassins's Creed 2 and slowly drawing this beast...]]></description>
			<content:encoded><![CDATA[<br/><p>haHA! You thought I had fallen off the wagon and started ignoring my Daily Tool responsibilities when I was, in fact, just busy playing Bayonetta and Assassins&#8217;s Creed 2 and slowly drawing this beast:</p>

<a href="http://www.realvelour.com/wp-content/gallery/tools/drill_0.jpg" title="" class="shutterset_singlepic54" >
	<img class="ngg-singlepic ngg-center" src="http://www.realvelour.com/wp-content/gallery/cache/54__600x600_drill_0.jpg" alt="drill_0" title="drill_0" />
</a>

<p>The <a title="work lamp" href="http://wp.me/pQhim-5f" target="_self">halogen work lamp</a> I drew a few tools back was from the same cordless tool set as this drill, which means they share an 18V battery pack.  So, in an attempt to be clever I copied the battery pack from the older drawing and used it as a base for this one. Unfortunately, because the work lamp drawing was horribly disproportionate, using it as my scaling base left me with some sort of floppy clown drill &#8211; a tool that totally sucks.</p>
<p>Out came the ruler and 30 minutes later I had a proportional grid from which to draw. Much better. To give you an idea of just how wrong the work lamp battery was, here it is side-by side with the proportionate battery:</p>

<a href="http://www.realvelour.com/wp-content/gallery/tools/pack_compare.jpg" title="" class="shutterset_singlepic53" >
	<img class="ngg-singlepic ngg-center" src="http://www.realvelour.com/wp-content/gallery/cache/53__510x510_pack_compare.jpg" alt="pack_compare" title="pack_compare" />
</a>
<span id="more-416"></span></p>
<p>In addition to corrected proportions, some serious shading upgrades were made between the first drawing and now. I shaded the drill by laying down a solid color with no depth, then selecting a slightly darker color and adding concentric bands of darklights. This ended up being pretty &#8220;patchy&#8221;, so I used the blur filter and a low-opacity eraser to clean it up. I&#8217;ll probably use this technique for the rest of the drawings.<span class="pullquote">I&#8217;m proud to say that you can see increases in line quality and shading quality between these two pieces, as well as a general decline in jank.</span></p>
<p>Here are some bonus images in the form of the drill&#8217;s flesh and bones. &#8220;Bones&#8221; would be the outline and &#8220;Flesh&#8221; would be the shading with no outline at all. The flesh image looks like an impressionist piece of some sort, which is neat.</p>
<p>
<a href="http://www.realvelour.com/wp-content/gallery/drill/drill_bones.jpg" title="" class="shutterset_singlepic55" >
	<img class="ngg-singlepic ngg-left" src="http://www.realvelour.com/wp-content/gallery/cache/55__260x260_drill_bones.jpg" alt="drill_bones" title="drill_bones" />
</a>


<a href="http://www.realvelour.com/wp-content/gallery/drill/drill_flesh.jpg" title="" class="shutterset_singlepic56" >
	<img class="ngg-singlepic ngg-right" src="http://www.realvelour.com/wp-content/gallery/cache/56__260x260_drill_flesh.jpg" alt="drill_flesh" title="drill_flesh" />
</a>

<p>Tool #30 is definitely going to be the DeWilt Reciprocating Saw, so I&#8217;ll probably go back to some simpler tools this week.</p>
<p>————————————————————————————————————————————</p>
<p>And now for something completely different&#8230; my wife has asked me to build her a light box for photography stuff and I have agreed to do it with LEDs and then use it to take pictures of my Legos and other assorted games and toys. This project is wife-sanctioned and involves LEDs and construction. I am excited about this. I will try to spend less than $100.00.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.realvelour.com/2010/04/18/dt16-general-decline-in-jank/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>&#8220;It&#8217;s a big blue watery road&#8221;</title>
		<link>http://www.realvelour.com/2010/04/13/its-a-big-blue-watery-road/</link>
		<comments>http://www.realvelour.com/2010/04/13/its-a-big-blue-watery-road/#comments</comments>
		<pubDate>Wed, 14 Apr 2010 02:33:48 +0000</pubDate>
		<dc:creator>Daniel Sisco</dc:creator>
				<category><![CDATA[realvelour]]></category>
		<category><![CDATA[law school]]></category>

		<guid isPermaLink="false">http://www.realvelour.com/?p=375</guid>
		<description><![CDATA[<a href="http://www.realvelour.com/2010/04/13/its-a-big-blue-watery-road/"><img align="left" hspace="5" src="http://www.realvelour.com/wp-content/gallery/cache/49__150x150_ovation_aerial_large.jpg" alt="ovation_aerial_large" title="misc" class="wp-post-image ngg-image-49 alignleft tfe" /></a><br/>"We drinking Santana champ 'cause it's so crisp... I got my swim trunks, and my flippie-floppies... I'm flipping burgers, you at Kinko's Straight flipping copies."]]></description>
			<content:encoded><![CDATA[<br/><p>My wife&#8217;s school gala was last weekend&#8230; on a boat! A yacht to be precise. This yacht:<br />

<a href="http://www.realvelour.com/wp-content/gallery/misc/ovation_aerial_large.jpg" title="" class="shutterset_singlepic49" >
	<img class="ngg-singlepic ngg-center" src="http://www.realvelour.com/wp-content/gallery/cache/49__600x600_ovation_aerial_large.jpg" alt="ovation_aerial_large" title="ovation_aerial_large" />
</a>
</p>
<p>The WSU Law School Gala was on the <a href="http://www.infinityandovation.com/site/index.php">Ovation </a>in the Detroit River this year. My wife&#8217;s friend&#8217;s parents were kind enough to take us to Detroit so we could avoid having to drive home, which allowed me to sample several gin gimlets in glasses of various sizes, which allows me to recall that this was the route we sailed:<br />

<a href="http://www.realvelour.com/wp-content/gallery/misc/boat_path_0.jpg" title="" class="shutterset_singlepic51" >
	<img class="ngg-singlepic ngg-center" src="http://www.realvelour.com/wp-content/gallery/cache/51__600x600_boat_path_0.jpg" alt="boat_path_0" title="boat_path_0" />
</a>
</p>
<p>It got really weird when we were sailing up the Edsel Ford (at least I think it was the Edsel Ford), but all in all the gala was excellent and we had a grand time. Here&#8217;s a picture of my wife looking radical and my goatee looking like it&#8217;s trying to escape from my face.<br />

<a href="http://www.realvelour.com/wp-content/gallery/siscos/gala_pair_house.jpg" title="" class="shutterset_singlepic52" >
	<img class="ngg-singlepic ngg-center" src="http://www.realvelour.com/wp-content/gallery/cache/52__600x600_gala_pair_house.jpg" alt="gala_pair_house" title="gala_pair_house" />
</a>
</p>
<p>Also, in an act of what can only be described as un-ironic irony, they played &#8220;<a href="http://www.youtube.com/watch?v=28jBDhqwXhE">I&#8217;m on a Boat</a>&#8221; not once, but twice, while we were on. the. boat.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.realvelour.com/2010/04/13/its-a-big-blue-watery-road/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>[DT#16] second wind whynot?</title>
		<link>http://www.realvelour.com/2010/04/09/dt16-second-wind-whynot/</link>
		<comments>http://www.realvelour.com/2010/04/09/dt16-second-wind-whynot/#comments</comments>
		<pubDate>Fri, 09 Apr 2010 04:19:46 +0000</pubDate>
		<dc:creator>Daniel Sisco</dc:creator>
				<category><![CDATA[realvelour]]></category>
		<category><![CDATA[tool of the day]]></category>

		<guid isPermaLink="false">http://www.realvelour.com/?p=366</guid>
		<description><![CDATA[<a href="http://www.realvelour.com/2010/04/09/dt16-second-wind-whynot/"><img align="left" hspace="5" src="http://www.realvelour.com/wp-content/gallery/cache/58__150x150_clip_thumb.jpg" alt="clip_thumb" title="tools" class="wp-post-image ngg-image-58 alignleft tfe" /></a><br/>I have been slacking off lately, taking a break to do things like "read books" and "go shopping for 6 hours," but now I'm back. I am going to redouble my efforts to do a tool drawing every one to two days - depending on the tool complexity. I used the facetious quotes above because I'm so fond of them - but I actually am reading a new book, and I also actually spent six hours at Sommerset in Troy last Saturday looking for THE PERFECT DRESS. FOR MY WIFE. NOT FOR ME. SRSLY.]]></description>
			<content:encoded><![CDATA[<br/><p>I have been slacking off lately, taking a break to do things like &#8220;read books&#8221; and &#8220;go shopping for 6 hours,&#8221; but now I&#8217;m back. I am going to redouble my efforts to do a tool drawing every one to two days &#8211; depending on the tool complexity. I used the facetious quotes above because I&#8217;m so fond of them &#8211; but I actually am reading a new book, and I also actually spent six hours at Sommerset in Troy last Saturday looking for THE PERFECT DRESS. FOR MY WIFE. NOT FOR ME. SRSLY.</p>
<p>(segue)</p>
<p>This is a drawing of some sort of a ratcheting strap clamp that might be used to anchor item A to item B. For example, you could use this to anchor a canoe to a car roof. Or a car to a canoe &#8211; depending on the size of the canoe.</p>

<a href="http://www.realvelour.com/wp-content/gallery/tools/clip.jpg" title="" class="shutterset_singlepic48" >
	<img class="ngg-singlepic ngg-center" src="http://www.realvelour.com/wp-content/gallery/cache/48__600x600_clip.jpg" alt="clip" title="clip" />
</a>

<p>OR &#8211; you could strap a mattress to a car roof! (9:00 minutes in&#8230;)</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="480" height="385" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/A7yVSj5ViKA&amp;hl=en_US&amp;fs=1&amp;rel=0&amp;color1=0x2b405b&amp;color2=0x6b8ab6" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="480" height="385" src="http://www.youtube.com/v/A7yVSj5ViKA&amp;hl=en_US&amp;fs=1&amp;rel=0&amp;color1=0x2b405b&amp;color2=0x6b8ab6" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p>Finally, I am fond that this Seinfeld clip is sub-titled in Portuguese. HA.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.realvelour.com/2010/04/09/dt16-second-wind-whynot/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>[DT#15] Half-way there</title>
		<link>http://www.realvelour.com/2010/04/04/dt15-half-way-there/</link>
		<comments>http://www.realvelour.com/2010/04/04/dt15-half-way-there/#comments</comments>
		<pubDate>Mon, 05 Apr 2010 02:05:57 +0000</pubDate>
		<dc:creator>Daniel Sisco</dc:creator>
				<category><![CDATA[realvelour]]></category>
		<category><![CDATA[tool of the day]]></category>

		<guid isPermaLink="false">http://www.realvelour.com/?p=352</guid>
		<description><![CDATA[<a href="http://www.realvelour.com/2010/04/04/dt15-half-way-there/"><img align="left" hspace="5" src="http://www.realvelour.com/wp-content/gallery/cache/46__150x150_pound_zone_0.jpg" alt="pound_zone_0" title="tools" class="wp-post-image ngg-image-46 alignleft tfe" /></a><br/>This drawing will be the fifteenth in my technically cartooned tools series - which means I am exactly one-half of the way done with my original 30-tool goal. To try and be a little more active reading other people's blogs I've been wandering the blogosphere and I've noticed that more and more people I know are working on a daily/weekly/monthly creation project. My wife and several of my Facebook friends are participating in weekly self-portraits on Flickr and Facebook. I'm a proponent of these challenges because they help us be a little more structured with our creative endeavors. Trying to meet a quota can be a strong motivational force, and if you're lucky enough to have people observing your art it becomes even stronger.]]></description>
			<content:encoded><![CDATA[<br/><p>This drawing will be the fifteenth in my <em>technically cartooned tools</em> series &#8211; which means I am exactly one-half of the way done with my original 30-tool goal. To try and be a little more active reading other people&#8217;s blogs I&#8217;ve been wandering the blogosphere and I&#8217;ve noticed that more and more people I know are working on a daily/weekly/monthly creation project. My wife and several of my Facebook friends are participating in weekly self-portraits on Flickr and Facebook. I&#8217;m a proponent of these challenges because they help us be a little more structured with our creative endeavors. Trying to meet a quota can be a strong motivational force, and if you&#8217;re lucky enough to have people observing your art it becomes even stronger.</p>
<p>Finally, because I think this is awesome, <a href="http://kingpanpan.com/" target="_blank">King Panpan</a> (whom I don&#8217;t know) who is compiling a 365 of the most radically Vectored bears you&#8217;ve ever seen.</p>
<p>Anyways, fifteen tools in I&#8217;m learning I don&#8217;t own as many awesome tools as I thought. Therefore you can expect to see more &#8220;creative&#8221; entries&#8230; like this one!</p>

<a href="http://www.realvelour.com/wp-content/gallery/tools/tape_pounder.jpg" title="" class="shutterset_singlepic47" >
	<img class="ngg-singlepic ngg-center" src="http://www.realvelour.com/wp-content/gallery/cache/47__320x600_tape_pounder.jpg" alt="tape_pounder" title="tape_pounder" />
</a>

<p>This is obviously a <em>long handled tape pounder</em>. You can use it to affix tape to things with <strong>great force</strong>. For example:</p>
<ol>
<li>windows</li>
<li>moving boxes (with/without vases)</li>
<li>thin drywall</li>
<li>Saran wrap (&#8230;it never sticks by itself&#8230;)</li>
<li>fruits.</li>
</ol>
<p>My wife wanted me to dedicate a tool to her and she suggested something &#8220;destructive&#8221; because that&#8217;s how she rolls.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.realvelour.com/2010/04/04/dt15-half-way-there/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>[DT#14] Again, but with texture</title>
		<link>http://www.realvelour.com/2010/04/02/dt14-again-but-with-texture/</link>
		<comments>http://www.realvelour.com/2010/04/02/dt14-again-but-with-texture/#comments</comments>
		<pubDate>Fri, 02 Apr 2010 04:17:20 +0000</pubDate>
		<dc:creator>Daniel Sisco</dc:creator>
				<category><![CDATA[realvelour]]></category>
		<category><![CDATA[tool of the day]]></category>

		<guid isPermaLink="false">http://www.realvelour.com/?p=343</guid>
		<description><![CDATA[<br/>I was talking to a co-worker about a game we both recently played - Dragon Age: Origins - and he mentioned a character specialization called a Reaver, which I had no idea existed. Apparently Reavers are Lich King/Revenant/Nazgul types, which puts them right up my video game alley. I'm so irked to have missed this specialization that I'm considering playing the whole 80+ hour game again just to get in a few hours as a Reaver. In any case, the discussion reminded me of how much I like customizing weapons in video games; and it inspired this creation...]]></description>
			<content:encoded><![CDATA[<br/><p>I was talking to a co-worker about a game we both recently played &#8211; Dragon Age: Origins &#8211; and he mentioned a character specialization called a <a href="http://dragonage.wikia.com/wiki/Reaver">Reaver</a>, which I had no idea existed. Apparently Reavers are Lich King/Revenant/Nazgul types, which puts them right up my video game alley. I&#8217;m so irked to have missed this specialization that I&#8217;m considering playing the whole 80+ hour game again just to get in a few hours as a Reaver. In any case, the discussion reminded me of how much I like customizing weapons in video games; and it inspired this creation:</p>

<a href="http://www.realvelour.com/wp-content/gallery/tools/knife.jpg" title="" class="shutterset_singlepic43" >
	<img class="ngg-singlepic ngg-center" src="http://www.realvelour.com/wp-content/gallery/cache/43__600x240_knife.jpg" alt="knife" title="knife" />
</a>

<p>As you can see, this piece of rare equipment gives you two <strong>impressive </strong>bonuses. Especially if you have ropes to cut and like citrus fruits. They should pay me to design video game weapons&#8230; I would be good at that.</p>
<p>In other news, I beat GOWIII and it was one, if not the, best game I&#8217;ve ever played. I think I&#8217;ll rank my favorite games in the next post.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.realvelour.com/2010/04/02/dt14-again-but-with-texture/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>n3w c0mpu73r</title>
		<link>http://www.realvelour.com/2010/03/31/n3w-c0mpu73r/</link>
		<comments>http://www.realvelour.com/2010/03/31/n3w-c0mpu73r/#comments</comments>
		<pubDate>Thu, 01 Apr 2010 01:46:49 +0000</pubDate>
		<dc:creator>Daniel Sisco</dc:creator>
				<category><![CDATA[realvelour]]></category>
		<category><![CDATA[cats]]></category>
		<category><![CDATA[computers]]></category>

		<guid isPermaLink="false">http://www.realvelour.com/?p=331</guid>
		<description><![CDATA[<a href="http://www.realvelour.com/2010/03/31/n3w-c0mpu73r/"><img align="left" hspace="5" src="http://www.realvelour.com/wp-content/gallery/cache/42__150x150_nala_fabala.jpg" alt="nala &amp; blue fan" title="fabala" class="wp-post-image ngg-image-42 alignleft tfe" /></a><br/>I apologize for the ultra l337 post title. I'm a giant nerd.

Here's the deal with my wife's old computer: it's actually a Shuttle I built three years ago when I lived in Iowa. I wanted it to play Vampire Bloodlines: Masquerade and it was basically underpowered as soon as I built it. The smallish power supply and MicroATX motherboard that the case mandated were not good choices.]]></description>
			<content:encoded><![CDATA[<br/><p>I apologize for the ultra l337 post title. I&#8217;m a giant nerd.</p>
<p>Here&#8217;s the deal with my wife&#8217;s old computer: it&#8217;s actually a Shuttle I built three years ago when I lived in Iowa. I wanted it to play <strong>Vampire Bloodlines: Masquerade </strong>and<strong> </strong>it was basically underpowered as soon as I built it. The smallish power supply and MicroATX motherboard that the case mandated were not good choices.</p>
<p>Unfortunately it recently picked up a habit in which it refused to shut down and claimed that every running program needed to be forcefully terminated. I&#8217;m no computer engineer (or am I? yes. yes I am.) but I&#8217;m pretty sure this is bad and we decided to upgrade.</p>
<p>We ventured out to Micro Center to get parts to build a new machine because I like being subjected to the odor of humanity in tiny, dirty spaces and I&#8217;m really wild about semi-competent sales help. Thankfully we found a guy who actually knew what he was talking about and ended up with&#8230;. this!</p>

<div class="ngg-imagebrowser" id="ngg-imagebrowser-8-331">

	<h3>awesome blue fan</h3>

	<div class="pic">
<a href="http://www.realvelour.com/wp-content/gallery/fabala/dsc_0183.jpg" title="" class="shutterset_fabala">
	<img alt="awesome blue fan" src="http://www.realvelour.com/wp-content/gallery/fabala/dsc_0183.jpg"/>
</a>
</div>
	<div class="ngg-imagebrowser-nav"> 
		<div class="back">
			<a class="ngg-browser-prev" id="ngg-prev-42" href="http://www.realvelour.com/2010/03/31/n3w-c0mpu73r/?pid=42">&#9668; Back</a>
		</div>
		<div class="next">
			<a class="ngg-browser-next" id="ngg-next-40" href="http://www.realvelour.com/2010/03/31/n3w-c0mpu73r/?pid=40">Next &#9658;</a>
		</div>
		<div class="counter">Picture 1 of 4</div>
		<div class="ngg-imagebrowser-desc"><p></p></div>
	</div>	

</div>	


<p>TECH SPECS!</p>
<ul>
<li>AMD Phenom II X3 720 (2.8GHz)</li>
<li>ASUS mobo</li>
<li>1GB NVidia GeForce GT 220 (nothing radical, but enough to let me play Diablo III)</li>
<li>4GB DDR2 RAMZ</li>
<li>500GB hard drive (unfortunately no solid state drives and not into the Terrabytes)</li>
<li>2 state of the art blue LED lit case fans</li>
</ul>
<p><strong>Oddity #1</strong>: there are actually a total of four  DIMMs for RAM expansion, but as I recently learned, 32-bit Windows7 will only recognize 3.5 GB, and of that 3.5 GB only 3.25 will be available for application use. If we ever upgrade to Windows7 64 we&#8217;ll do another upgrade here. The sales guy was confident that I could run two 2GB chips and 21GB chips with no problem as long as I seated them in the correct DIMM.</p>
<p><strong>Oddity #2</strong>: the motherboard had HDMI and DVI outputs and &#8211; I learned this after purchasing &#8211; it has an integrated ATI graphics chipset. Thankfully the integrated chipset is less powerful than the NVIDIA I bought, so I feel ok about this.</p>
<p>Welcome to the family, new computer. I hope the cats don&#8217;t knock you over.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.realvelour.com/2010/03/31/n3w-c0mpu73r/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
	</channel>
</rss>
