<?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>Dillfrog Blog</title>
	<atom:link href="http://blog.dillfrog.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.dillfrog.com</link>
	<description>Nonsensical writings of music and geekery</description>
	<lastBuildDate>Thu, 29 Dec 2011 06:18:55 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
		<item>
		<title>How to invert a PDF using ImageMagick</title>
		<link>http://blog.dillfrog.com/how-to-invert-a-pdf-using-imagemagick/</link>
		<comments>http://blog.dillfrog.com/how-to-invert-a-pdf-using-imagemagick/#comments</comments>
		<pubDate>Thu, 29 Dec 2011 05:52:46 +0000</pubDate>
		<dc:creator>Plat</dc:creator>
				<category><![CDATA[Geekery]]></category>

		<guid isPermaLink="false">http://blog.dillfrog.com/?p=60</guid>
		<description><![CDATA[The problem: I wanted to print the extremely-twisted and NSFW Cards Against Humanity deck (available as a free PDF). The last 5 pages have white text on a black background, which kills my toner and looks awful (e.g. uneven toner placement, smudging, etc). I wanted to print these as black-on-white instead, but couldn&#8217;t find a [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://blog.dillfrog.com/?p=60"><img src="http://blog.dillfrog.com/wp-content/uploads/2011/12/cah-inversion-before-after-150x150.png" alt="" title="Cards Against Humanity PDF inversion (before and after)" width="150" height="150" class="size-thumbnail wp-image-64" align="left" /></a></p>
<p><b>The problem</b>:</p>
<p>I wanted to print the extremely-twisted and NSFW <a href="http://cardsagainsthumanity.com/" title="An extremely twisted and not-safe-for-work card game">Cards Against Humanity</a> deck (available as a <a href="http://cardsagainsthumanity.com/images/CardsAgainstHumanity.pdf">free PDF</a>). The last 5 pages have white text on a black background, which kills my toner and looks awful (e.g. uneven toner placement, smudging, etc). I wanted to print these as black-on-white instead, but couldn&#8217;t find a black-on-white version of the PDF. Furthermore, I couldn&#8217;t figure out how to do it at print time (my laser printer doesn&#8217;t seem to have an &#8220;invert&#8221; option).</p>
<p><span id="more-60"></span></p>
<p><b>My solution:</b></p>
<p>I used <a href="http://www.imagemagick.org/script/index.php" title="The way ninjas slice images">ImageMagick&#8217;s</a> command line &#8220;convert&#8221; tool to make an inverted version of the last 5 pages of the PDF. Assuming the original PDF is at &#8220;in.pdf&#8221;, we want to process pages 25-29, and spew the output into &#8220;out.pdf&#8221; the syntax is:</p>
<p><code>convert -density 300 -negate "in.pdf[24-28]" out.pdf</code></p>
<p>Here&#8217;s what it does:</p>
<dl>
<dt><code><a href="http://www.imagemagick.org/script/command-line-options.php#density" title="Description of 'density' command line option">-density</a> 300</code></dt>
<dd>This tells &#8220;convert&#8221; to use a 300 DPI resolution when rendering the PDF as a raster image (i.e. reading the image). If the density is low, the output will look really blocky. 300 DPI looked good enough for my purposes. Yes, this means we&#8217;re converting a vector format to raster, and we should avoid lossy techniques. Again, this was good enough for me.</dd>
<dt><code><a href="http://www.imagemagick.org/script/command-line-options.php#negate" title="Description of the 'negate' command line option">-negate</a></code></dt>
<dd>This tells &#8220;convert&#8221; to flip the color of the image (i.e., black becomes white and vice versa)</dd>
<dt><code><a href="http://www.imagemagick.org/Usage/files/#read_mods" title="ImageMagick Read modifiers">"in.pdf[24-28]"</a></code></dt>
<dd>This tells &#8220;convert&#8221; which file to read as input (in.pdf), and specifically which frames to read (24-28). In this case, a frame correlates to a PDF page number. Frames are 0-based (i.e. the first frame is &#8220;0&#8243;), so this really means to read pages 25-29.</dd>
<dt><code>out.pdf</code></dt>
<dd>This tells &#8220;convert&#8221; to write the output to a file called &#8220;out.pdf&#8221;.</dd>
</dl>
</dl>
<p>And how it looks:</p>
<p><img src="http://blog.dillfrog.com/wp-content/uploads/2011/12/cah-inversion-before-after.png" alt="" title="Cards Against Humanity PDF inversion (before and after)" width="331" height="415" class="size-full wp-image-64" /></p>
<p>As you can see, I&#8217;m still left with a black blob on the last page of the PDF (which was previously white), but I&#8217;ll be tossing that anyway, so there&#8217;s no fear of smudging.</p>
<p>Would you have addressed the issue in a smoother way? Drop me a comment!</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.dillfrog.com/how-to-invert-a-pdf-using-imagemagick/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Lessons from FAWM 2009</title>
		<link>http://blog.dillfrog.com/lessons-from-fawm-2009/</link>
		<comments>http://blog.dillfrog.com/lessons-from-fawm-2009/#comments</comments>
		<pubDate>Sat, 14 Mar 2009 01:03:53 +0000</pubDate>
		<dc:creator>Plat</dc:creator>
				<category><![CDATA[Music]]></category>
		<category><![CDATA[The Cow Exchange]]></category>

		<guid isPermaLink="false">http://blog.dillfrog.com/?p=50</guid>
		<description><![CDATA[It&#8217;s March! Another FAWM is over. Here&#8217;s what I learned. Not that I&#8217;ll listen to myself later. Cheerleaders beget games : FAWM is full of smart, talented artists. A number of them left positive, cheerleader-style comments (vs harsh criticism) on my songs. Don&#8217;t get me wrong, honest critiques are still helpful and have their place. [...]]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s March! Another FAWM is over. Here&#8217;s what I learned. Not that I&#8217;ll listen to myself later.<br />
<span id="more-50"></span></p>
<p><strong>Cheerleaders beget games </strong>: FAWM is full of smart, talented artists. A number of them left positive, cheerleader-style comments (vs harsh criticism) on my songs. Don&#8217;t get me wrong, honest critiques are still helpful and have their place. But for FAWM I&#8217;m sure this encouraged more song output, and of songs that I like. <strong>I need to become a better cheerleader.</strong></p>
<p><strong>Write for yourself</strong>: Above all. <strong>Worry about the audience second.</strong></p>
<p><strong>Large collaborations can work</strong>: 6 FAWMers (myself included) completed <a href="http://noise.dillfrog.com/songs/350">a pretty decent song</a> within 2 days. To me, the collaboration was amazing. No walking on eggshells, no ego trips, no shirking of responsibility. Easy-going, fun, talented, trusting group. My favorite collaborative product since <a href="http://noise.dillfrog.com/songs/266">Rocko</a>. <strong>I usually shy away from these endeavors; maybe that needs to change.</strong></p>
<p><strong>When all else fails, there&#8217;s Yahoo! Answers</strong>: A while back, I had to delete tons of old e-mail. I wrote down the subjects I liked, and planned to FAWM with them as titles. When it was time to FAWM, lyrics didn&#8217;t arrive. (<a href="http://noise.dillfrog.com/songs/333">This song </a>was supposed to be &#8220;Can you access this directory?&#8221;).  So I went back to the Answerman schtick, and started cranking out tunes. <strong>Standbys are old, but beautiful.</strong></p>
<p><strong>Record it, even the homeless</strong>: About 7 months ago, I started a Google Docs document with scraps of song notes (titles, phrases, words I liked, etc). I added a bookmark link to my browser&#8217;s toolbar, so I could load it up quickly. When a tiny thought popped in my head, I added it to the Doc. And as a result of recognizing/capturing those thoughts, more ideas came. It was like my brain said, <i>&#8220;oh, you think these stupid thoughts are important, do you? Well, have more then.&#8221;</i> I haven&#8217;t been able to mine it hardcore, but I <i>did</i> get to <a href="http://noise.dillfrog.com/songs/328">use the puppet line</a> in a FAWM song. <strong>It was comforting that I had a bucket of fillers if I needed them&#8230; and they cheered me up by themselves.</strong></p>
<p><strong>Instant gratification is important</strong>: &#8216;Far as I can recall, each of my FAWM songs were written, recorded, and posted in one studio session (generally within 4 hours). The only exceptions to the rule were Pure Cane Lover (a 2-day, 6-person collab), and some Mindless Instrumentals. That is to say, only <em>one</em> song got <i>finished</i>, which took more than one sitting. If I want it finished, I have to keep going. <strong>Once I hit 4+ hours for a draft, it may be time to give up and move on.</strong></p>
<p><strong>Make sure you like your vocals</strong>: &#8230;because you probably will never bother retaking them again. This is a corollary to the &#8220;instant gratification&#8221; comment.</p>
<p><strong>Don&#8217;t expect people to immediately grasp art pieces</strong>: I created <a href="http://noise.dillfrog.com/songs/341">a gimmicky song</a> that took some effort to appreciate. Not surprisingly, I suppose, people were slow on the uptake. I had to explain it. Some art pieces are destined to be a joke between me and myself, Andy Kaufman-style. <strong>Maybe no explanation is necessary at all.</strong></p>
<p><strong>Webcams are creepy</strong>: I threw up a UStream feed once in a while during FAWM. I think others enjoyed it, but it was pretty creepy for me. Probably would be more exciting if it were more than a 1-way experience. I <em>really </em>enjoyed <em>watching </em>Charlie Cheney, Debs, and Errol when they were improvising songs on UStream late one night. So they&#8217;re creepy <strong>&#8230; when I&#8217;m not the creep.</strong></p>
<p><strong>The Singing Answerman can be helpful</strong>: It doesn&#8217;t happen often, but I sang <a href="http://noise.dillfrog.com/songs/353">a truly helpful response</a> to someone&#8217;s PHP question. Pretty low on the snarkometer. And it worked. Down to the line number. <strong>Helpful replies swimming in <em>goofy </em>are a nice balance.</strong></p>
<p><strong>Get lost</strong>: I&#8217;m writing a bad song when I &#8220;follow the beaten path&#8221; of composition. It&#8217;s very easy to accidentally reuse similar progressions, styles and instrumentation as my earlier work, especially since I&#8217;ve written a lot of songs. But I&#8217;ve been trying to throw myself off that path by trying new stuff. Particularly, for FAWM 2009: learning other genre styles (via video/Web sites), framing the song around instruments I don&#8217;t know how to play (so I&#8217;m more likely to play strange chords), and singing melodies before fingering them on instruments. I also went heavier into my string/brass samples, as predicted by <a href="http://noise.dillfrog.com/albums/19">last year&#8217;s FAWM song sprinkling</a>. <strong>I need to use the foreign stuff to get myself lost, and use the stuff I&#8217;ve mastered to justify the trip.</strong> This was most apparent in <a href="http://noise.dillfrog.com/songs/334">Mindless Instrumental #2</a>.</p>
<p><strong>Tools are great</strong>: I spent a little time fixing up <a href="http://muse.dillfrog.com/sound/search">Dillfrog Muse</a> pre-FAWM, and it came in really handy. It&#8217;s still got some odd bugs ever since I ported it from Perl to PHP and used a new dictionary source; I need to clean it up. But as imperfect as it is, I&#8217;m glad I had it. <strong>It really improved the &#8220;flow&#8221; of my lyricizing. </strong>I wrote a special program to find phrases patterned after <a href="http://noise.dillfrog.com/songs/339">&#8220;how much wood would a woodchuck chuck if a woodchuck could chuck wood?&#8221;</a> Then I manually filtered through <a href="http://noise.dillfrog.com/audio/fawm2009/howmuchwood_autogen_rev2.txt ">the results</a> to find my favorites.</p>
<p><strong>I love writing raps</strong>: Nothing new here. I <em>was not </em>the sole author of the <a href="http://noise.dillfrog.com/songs/350">Pure Cane Lover </a><em>rap </em>lyrics, but I did help glue them together. And I love a good rap lyric. My process seems to be pretty straightforward: rhyme a bunch of weird words, talk about how awesome you are, and say something suggestive or vulgar. Done.  (Sidenote: being an Answerman helped me here, too; one of the questions I read but didn&#8217;t answer was something like, &#8220;What does it mean when a guy says he &#8216;melted&#8217;?&#8221;).  <a href="http://noise.dillfrog.com/songs/282">Astronaut</a> amused me, as well as the studio/live versions of <a href="http://noise.dillfrog.com/songs/118">Brioche</a>. <strong>More, please!</strong></p>
<p><strong>Don&#8217;t talk, sing</strong>: An old technique, but it continues to pay off. I struggled with this on <a href="http://noise.dillfrog.com/songs/335">Bugs</a>. There are still talking parts, but there used to be more. <strong>It&#8217;s either rap, or singing, or both. </strong> None of this <em>talking </em>nonsense. Hyperbolically speaking.</p>
<p><strong>Studio monitors awe</strong>: I <em>upgraded </em>from a ~$100 colored 2.1 speaker system to an ~$80 pair of <a href="http://sync.dillfrog.com/images/justwrong.jpg">passive Event 20/20 monitors</a> (including shipping costs! THANK YOU, eBay!). They&#8217;ve made music come alive again, and my mixes feel a lot cleaner now that the coloring has gone away. <em>And </em>I don&#8217;t use headphones as much, so the earache has passed. <strong>So very much worth it.</strong></p>
<p>Okay, that&#8217;s all I&#8217;ve got. Now I need to compare these thoughts against <a href="http://blog.dillfrog.com/?p=33">2007&#8242;s notes</a>, and see what&#8217;s changed.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.dillfrog.com/lessons-from-fawm-2009/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>You mean, like, a band with boys in it?</title>
		<link>http://blog.dillfrog.com/you-mean-like-a-band-with-boys-in-it/</link>
		<comments>http://blog.dillfrog.com/you-mean-like-a-band-with-boys-in-it/#comments</comments>
		<pubDate>Wed, 25 Feb 2009 02:15:58 +0000</pubDate>
		<dc:creator>Plat</dc:creator>
				<category><![CDATA[The Cow Exchange]]></category>

		<guid isPermaLink="false">http://blog.dillfrog.com/?p=49</guid>
		<description><![CDATA[So, last Friday, I found myself in a FAWM boy-band (later named &#8220;SugarKrew&#8221; based on our song lyric), to represent against a FAWM girl-band (&#8220;The High-Fructose Corn Syrup Girls&#8221;). As for the boy/girl-band controversy, hat&#8217;s a story in and of itself, which I&#8217;ll let Deborah tell. Anyway, between Friday night and Sunday night, we built [...]]]></description>
			<content:encoded><![CDATA[<p>So, last Friday, I found myself in a <a href="http://www.fawm.org/">FAWM</a> boy-band (later named &#8220;SugarKrew&#8221; based on our song lyric), to represent against a FAWM girl-band (&#8220;The High-Fructose Corn Syrup Girls&#8221;). As for the boy/girl-band controversy, hat&#8217;s a <a href="http://deborahlinden.com/?p=67">story in and of itself</a>, which I&#8217;ll let Deborah tell.</p>
<p>Anyway, between Friday night and Sunday night, we built this song, exercising numerous tubes of the Interweb in the process. It&#8217;s been a blur, but here&#8217;s a roundup of the tools we used and some of the events that tied into it:</p>
<p><span id="more-49"></span></p>
<p><strong>Friday</strong></p>
<p><strong>FAWM chat</strong>: P.J., J-Cro, and Errol were trying to rally a team in FAWM chat. That&#8217;s how I found out about, and joined, the cause.</p>
<p><strong>UStream</strong>: I started a UStream video broadcast in my &#8220;studio&#8221; room, while Pigfarmer Jr (hereafter, P.J.) and John Crossman (hereafter, J-Cro) were typing lyrics. I slowly tried to find some adequate drum+synth sounds, and a way to start shaping the verse music/melody. I was a bit slow, but by the end of the night we had a verse and a bridge. Other chatters offered contributions to the lyrical flow. I believe Stephen Cope suggested finishing &#8220;Splenda is bitter, Equal is dry&#8221; with &#8220;get off the sh*tter and zip up your fly&#8221;. Sad to say, we didn&#8217;t use that couplet.</p>
<p><strong>Google Docs</strong>: At some point, I took my collection of chatroom lyrics and notes and threw&#8217;em in a Google Doc to share with the team. They could edit and share doc with anyone else, which made it really smooth to pull other members in. Lyric editing became breezy; throughout the project, I&#8217;d look at my Google Docs window to find someone added lyrical gems, polished others, or offered alternatives. I didn&#8217;t even have to refresh my window or worry about having two windows open. It <i>just worked</i>. Slick.</p>
<p><strong>Saturday</strong></p>
<p><strong>FTP</strong>: Okay, I got old-school. Verse and other team ideas in hand, I recorded a demo of the song structure, and FTP&#8217;d 2 MP3s to my Web site. One MP3 had the demo with heavily-autotuned vocals (to reference the melody), and the other without vocals. I linked the MP3s from the Google Doc and sent an e-mail update (via Google Docs) to the team. Google Docs knows the e-mail address of each collaborator, so I didn&#8217;t have to keep a special mailing list, or worry about including everybody. So easy.</p>
<p><strong>Stickam, Google Talk + Video</strong>: We didn&#8217;t have a chorus yet, and I was ready to give up (writer&#8217;s block). Errol saved the day by writing lyrics in no time, but I still wasn&#8217;t sure on the melody or chords. We knew we wanted to use the &#8220;reverse <a href="http://www.boston.com/ae/music/articles/2008/12/31/striking_a_chord/">sensitive female chord progression</a>&#8221; somehow. We ended up on Stickam w/J-Cro. It worked okay for group video chat. I had some mixer issues such that Errol had the honor of hearing not only <em>my</em> voice, but <em>my echo of his</em> voice. Once J-Cro had to go (yes, that rhymes), we landed on the Gmail-based Google Talk + Video. The biggest benefit: less latency than Stickam. It was easier to go back and forth with chorus ideas and iron something out. And a chorus we had! &#8220;Huzzah!&#8221;</p>
<p>Fun fact: if you use the &#8220;pop out into a separate window&#8221; feature, and close your main GMail window, you lose the pop-out window too.</p>
<p><strong>Sunday</strong></p>
<p>Anyway&#8230; we had a plan. By then, as if by magic, PJ had added another verse to the Google Docs. Fantastic. I updated the demo with the new structure and vocals, FTP&#8217;d the new demos, updated the Google Doc&#8217;s MP3 link section (poorly at first &#8212; I changed the text but not the link &#8212; oops), and re-emailed the team.</p>
<p>We recruited more peeps for vocals, and asked everyone to mark the section of the song they&#8217;d be sending parts for. I&#8217;ve encountered some difficulties/FAQs on past collaborations, so I added the following checklist to the lyric docs:</p>
<ol>
<li>Everybody gets a lead part. Stake your claim below ASAP so nobody else takes it <img src='http://blog.dillfrog.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> . There&#8217;s room for everyone. [Plat] will take what&#8217;s left, or cover if someone doesn&#8217;t submit.</li>
<li>Record your vocal tracks. Don&#8217;t forget to include:
<ul>
<li>Your lead part  (feel free to vary from the demo&#8217;s melody &#8212; this is your spot!)</li>
<li>Your chorus take (please stick to the melody so our harmonies don&#8217;t clobber as much)</li>
<li>Your &#8220;final chorus&#8221; take (it&#8217;s all transposed a semitone higher, and ends on a different note too), or else I&#8217;m processing your other take <img src='http://blog.dillfrog.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> .</li>
<li>Anything else (feel free to improvise on the other stuff too (e.g. harmonies or whatever)). I can edit them in/out as appropriate <img src='http://blog.dillfrog.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> .</li>
</ul>
</li>
<li>Export and e-mail them to <i>[my e-mail address redacted]</i>.
<ul>
<li>160kbps MP3 or better is great; will also take WAVs or anything else.</li>
<li>If you want to overlay vocals, please send them as separate tracks so I have a better chance at processing them (e.g. autotune, compression, eq).</li>
<li>Please use as few tracks as possible (e.g. if you have several takes that don&#8217;t clobber each other, send&#8217;em as a single track)</li>
</li>
</ol>
<p>Honey, does this list look anal on me?</p>
<p><b>G-Mail</b>: Maybe our team just rocks. But it worked; the &#8220;YOURNAMEHERE&#8221;s turned into team members&#8217; names, and song parts started rolling in via e-mail. That might not seem like a big deal anymore, but it wasn&#8217;t too long ago that Web-mail sites had low mailbox size limits, and even lower e-mail attachment limits. I rounded up the new tracks (including unsolicited surprises) and added them to the project. So much fun.</p>
<p>While waiting for the final puzzle piece from J-Cro, I FTP&#8217;d up a 3rd demo mix that included the latest parts. I&#8217;m glad I did; J-Cro now had a full view of the existing chorus harmonies and was able to fill in the gaps with precision; he hits the high note at the end of the chorus, which made a huge difference in the dynamics. Keep in mind, everyone else submitted their chorus takes blindly. They heard the original melody, and submitted something based on only that. It worked out <em>far </em> better than I had expected. These are talented folks.</p>
<p>I really appreciated how quickly broadband and audio compression let us shove sounds around the globe.</p>
<p><b>FAWM</b>: By about 12:15AM Sunday night, the first mix was finished. We uploaded that sucka&#8217; to the FAWM Web site, about an hour <em>after </em> the prolific High Fructose Corn Syrup Girls had uploaded <a href="http://fawm.org/songs/4590/">their second track</a> to taunt the previously-non-existent boy band!</p>
<p>Of course, this wouldn&#8217;t have happened without FAWM. It was FAWM that spawned the girl/boy-band controversy, and its unofficial chatroom that pulled me in (thanks, Mal!). But FAWM also completed the cycle of magic. So, <a href="http://fawm.org/songs/4608/">we posted the song</a>, right? Well, somehow on a late Sunday night, a number of gracious FAWM visitors heard the song and commented on it shortly after. <em>Nearly-instant feedback and gratification, from artisans whose work I know and deeply admire</em>. Can&#8217;t beat that.</p>
<p><b>Outro</b>:  That&#8217;s the end of my technology round-up. I could rant on so much more, like the unreal team effort, <a href="http://www.blogtalkradio.com/radio-fawm">Ben&#8217;s</a> being attacked by our reprise, <a href="http://www.blogtalkradio.com/charliecheney">Charlie&#8217;s</a> taunting radio intro, <a href="http://fawm.org/fawmers/whambi/">the emergence of Whambi</a>, or the magic disappearing rap track, but I have to draw the line somewhere. <img src='http://blog.dillfrog.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' />  A 6-member team cranked through a song in about 2 days start-to-finish, which sets a new record in my &#8220;collaboration recordbook&#8221;. (Don&#8217;t think I have one? Remember I drew up that task list!)</p>
<p>The track wasn&#8217;t perfect, but it was great fun, and a FAWM crowd-pleaser. Now I just stay up at nights, chewing my nails, waiting for The High Fructose Corn Syrup Girls&#8217; next move. And I don&#8217;t even need technology for that.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.dillfrog.com/you-mean-like-a-band-with-boys-in-it/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>My favorite &#8220;deal&#8221; sites</title>
		<link>http://blog.dillfrog.com/my-favorite-deal-sites/</link>
		<comments>http://blog.dillfrog.com/my-favorite-deal-sites/#comments</comments>
		<pubDate>Mon, 15 Dec 2008 04:29:38 +0000</pubDate>
		<dc:creator>Plat</dc:creator>
				<category><![CDATA[Deals]]></category>

		<guid isPermaLink="false">http://blog.dillfrog.com/?p=48</guid>
		<description><![CDATA[By request, here&#8217;s a list of my favorite &#8220;deal&#8221; sites. Before You Dive In: Please keep in mind that these are only tools. You&#8217;ll still need to exercise some common sense. Some deals are scams. Some &#8220;sales&#8221; are at no discount. Some coupons expire early. Some coupons were photoshopped. Some items arrive differently than described. [...]]]></description>
			<content:encoded><![CDATA[<p>By request, here&#8217;s a list of my favorite &#8220;deal&#8221; sites.</p>
<p><strong>Before You Dive In:</strong>  Please keep in mind that these are only tools. You&#8217;ll still need to exercise some common sense. Some deals are scams. Some &#8220;sales&#8221; are at no discount. Some coupons expire early. Some coupons were photoshopped. Some items arrive differently than described. You may &#8220;go broke saving money.&#8221; Comparison shopping is key.</p>
<p>Okay, here are the sites that served me well.</p>
<p><b><a href="http://forums.slickdeals.net/">Slickdeals Forums</a></b>: This site helped me on so many deals, it deserves its own entry. Users post deals in an open forum, and the threads can be rated (the more thumbs, the better). They&#8217;ve got a <a href="http://forums.slickdeals.net/forumdisplay.php?sduid=79127&#038;f=9">Hot Deals</a> section for specific deals, and a subforum for <a href="http://forums.slickdeals.net/forumdisplay.php?sduid=79127&#038;f=10">coupons</a> too. I use <a href="http://forums.slickdeals.net/dealalerts.php?do=viewdealalerts">Deal Alerts</a> to automatically e-mail me new deals that match my interests (example: keywords of &#8220;amazon | wii | gamecube&#8221; and 3.5 thumbs or higher). You&#8217;re going to encounter whole new abbreviations, though (example: &#8220;$10 off + F/S at TRU (YMMV)&#8221;). When that happens, <a href="http://forums.slickdeals.net/showpost.php?p=323994&#038;postcount=3">look&#8217;em up here first</a>. In case you&#8217;re wondering how Slickdeals gets their money, I have a feeling it has to do with getting referral $$ when you buy stuff through their links.</p>
<p><b>Coupon sites</b>: <a href="http://www.retailmenot.com/">Retailmenot</a> doles out online coupon codes; I got a great hotel rate this way, but a lot of the codes are stale. You may have to try a few of them before finding one that works. <a href="http://forums.slickdeals.net/forumdisplay.php?sduid=79127&#038;f=10">Slickdeals&#8217; Coupon forums</a> are a great source of online codes and printable coupons for retail stores. <a href="http://dealnews.com/coupons/">Dealcoupon</a> used to be a favorite of mine, but I don&#8217;t use it so much anymore.</p>
<p><b>Deal Aggregation</b>: <a href="http://www.clipfire.com/">Clipfire</a> aggregates a number of deal sites. If you&#8217;re looking for something specific, try searching for it here. It might be on sale&#8230; and if it&#8217;s not, at least you know what price it might come down to again later. Just keep in mind that some of the sites they aggregate might post non-deals, to boost their referral revenues. So use common sense.  Looking for DVDs? Start with <a href="http://www.dvdpricesearch.com/">DVDPriceSearch</a>. It&#8217;s tons faster than searching Amazon/Best Buy/etc individually, plus they track some of the coupon codes for you too.</p>
<p><b>Video Games</b>: <a href="http://www.cheapassgamer.com/">Cheapassgamer </a>can spot a video game deal like nobody&#8217;s business. Some deals are <a href="http://www.cheapassgamer.com/">on their homepage</a>, but the real meat is <a href="http://www.cheapassgamer.com/forums/forumdisplay.php?f=11">in their forums</a>. You have to register to see those deals, but it&#8217;s non-intrusive and well worth it.  If you&#8217;re looking to trade games, don&#8217;t mind sending them through the mail, and you&#8217;re interested in titles that are 1+ years old, <a href="http://www.goozex.com/">Goozex</a> is the best place to go.</p>
<p><b>Amazon</b>: Amazon.com is great, but their prices fluctuate a lot. Probably even moreso now that they&#8217;ve eliminated their price protection policy. So I use tools like <a href="http://www.apnoti.com/">Apnoti</a> to e-mail me when a certain item&#8217;s price drops. Or you can view how Amazon&#8217;s price for an item has changed over time. I use <a href="http://www.frozenwarrior.com/~pricewatch/">Frozenwarrior&#8217;s bookmark</a> to check history on the fly.</p>
<p>Hope that helps!</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.dillfrog.com/my-favorite-deal-sites/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Ninjam Drum Sessions</title>
		<link>http://blog.dillfrog.com/ninjam-drum-sessions/</link>
		<comments>http://blog.dillfrog.com/ninjam-drum-sessions/#comments</comments>
		<pubDate>Wed, 26 Nov 2008 07:21:22 +0000</pubDate>
		<dc:creator>Plat</dc:creator>
				<category><![CDATA[Music]]></category>

		<guid isPermaLink="false">http://blog.dillfrog.com/?p=47</guid>
		<description><![CDATA[Lately, I&#8217;ve been practicing my keyboard-drumming skills using the Battery 3 VST in the public Ninjam studios. The jams range from a few minutes to 20+ minutes. They&#8217;re great practice, and a lot more fun to play in than to listen to. But here are a few highlights from this week: Salsa Excerpt Plat (Drums), [...]]]></description>
			<content:encoded><![CDATA[<p>Lately, I&#8217;ve been practicing my keyboard-drumming skills using the <a href="http://www.native-instruments.com/index.php?id=battery3">Battery 3 VST</a> in the public <a href="http://www.ninjam.com/">Ninjam</a> studios.</p>
<p>The jams range from a few minutes to 20+ minutes. They&#8217;re great practice, and a lot more fun to play in than to listen to. But here are a few highlights from this week:</p>
<p><a href="http://noise.dillfrog.com/audio/ninjam_sessions/ninjam_salsa.mp3">Salsa Excerpt</a><br />
Plat (Drums), HoraciosAllen (Piano), Mono (Guitar), BBAndTheMC (Bass)</p>
<p><a href="http://noise.dillfrog.com/audio/ninjam_sessions/ninjam_jazz.mp3">Jazz Excerpt</a><br />
Plat (Drums), HoraciosAllen (Keys), Mono (Guitar), BBAndTheMC (Bass)</p>
<p><a href="http://noise.dillfrog.com/audio/ninjam_sessions/ninjam_rock.mp3">Rock Excerpt</a><br />
Plat (Drums), Slyos (Rhythm Guitar), Zden (Guitar Solos), Not NT (Rhythm Guitar), Fin (Bass)</p>
<p>These excerpts are covered under the <a href="http://creativecommons.org/licenses/by-nc-sa/2.5/">Creative Commons&#8217; Attribution-NonCommercial-ShareAlike 2.5 License</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.dillfrog.com/ninjam-drum-sessions/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
<enclosure url="http://noise.dillfrog.com/audio/ninjam_sessions/ninjam_salsa.mp3" length="1121698" type="audio/mpeg" />
<enclosure url="http://noise.dillfrog.com/audio/ninjam_sessions/ninjam_jazz.mp3" length="801436" type="audio/mpeg" />
<enclosure url="http://noise.dillfrog.com/audio/ninjam_sessions/ninjam_rock.mp3" length="405942" type="audio/mpeg" />
		</item>
		<item>
		<title>Remains of the Crashed Plane (or: &#8220;What happened to R2?&#8221;)</title>
		<link>http://blog.dillfrog.com/remains-of-the-crashed-plane-or-what-happened-to-r2/</link>
		<comments>http://blog.dillfrog.com/remains-of-the-crashed-plane-or-what-happened-to-r2/#comments</comments>
		<pubDate>Tue, 19 Aug 2008 03:21:00 +0000</pubDate>
		<dc:creator>Plat</dc:creator>
				<category><![CDATA[Miscellaneous]]></category>

		<guid isPermaLink="false">http://blog.dillfrog.com/?p=46</guid>
		<description><![CDATA[If the title makes no sense to you, the rest probably won&#8217;t either. Now, for the rest of you who might be looking for Rock 2: Crashed Plane stuff, here&#8217;s what&#8217;s left. Q: Where can I play Rock 2? A: Dillfrog.com no longer hosts the game, but other generous fellows seem to still host the [...]]]></description>
			<content:encoded><![CDATA[<p>If the title makes no sense to you, the rest probably won&#8217;t either.</p>
<p>Now, for the rest of you who might be looking for Rock 2: Crashed Plane stuff, here&#8217;s what&#8217;s left.</p>
<p>Q: Where can I play Rock 2?<br />
A: Dillfrog.com no longer hosts the game, but other generous fellows seem to still host the game. If you&#8217;re feeling lucky, try Mindreader&#8217;s server (telnet host: rock2mimic.tzo.com, port: 4000)</p>
<p>Q: How can I get the Rock 2 source code?<br />
A: It&#8217;s pretty ugly; I never wrote it expecting it to be released. But it&#8217;s released on SourceForge as &#8220;RockServ 2&#8243;. Instructions are on the <a href="http://rockserv.sourceforge.net/wiki/index.php/Main_Page">RockServ Wiki</a></p>
<p>Q: How can I get the Rock 1 source code?<br />
A: It is not released yet, and may not be ever. It&#8217;s that bad. But if it were released, it&#8217;d be on SourceForge&#8217;s <a href="http://rockserv.sourceforge.net/wiki/index.php/Main_Page">RockServ wiki</a> as well.</p>
<p>Not finding what you wanted? Leave a message in the comments and I&#8217;ll update the FAQ.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.dillfrog.com/remains-of-the-crashed-plane-or-what-happened-to-r2/feed/</wfw:commentRss>
		<slash:comments>15</slash:comments>
		</item>
		<item>
		<title>Words That Survive Snonversion</title>
		<link>http://blog.dillfrog.com/words-that-survive-snonversion/</link>
		<comments>http://blog.dillfrog.com/words-that-survive-snonversion/#comments</comments>
		<pubDate>Wed, 09 Jul 2008 03:32:51 +0000</pubDate>
		<dc:creator>Plat</dc:creator>
				<category><![CDATA[Muse]]></category>

		<guid isPermaLink="false">http://blog.dillfrog.com/?p=45</guid>
		<description><![CDATA[You might be familiar with the art of &#8220;snonverting&#8221; words. For the uninitiated, the rules are very simple: If the word begins with a &#8220;sn&#8221; sound (e.g. &#8220;snore&#8221;), convert it to a hard &#8220;k&#8221; sound (e.g. &#8220;core&#8221;). Conversely, if the word begins with a hard &#8220;k&#8221; sound, convert it to a &#8220;sn&#8221; sound. If neither [...]]]></description>
			<content:encoded><![CDATA[<p>You might be familiar with the art of &#8220;snonverting&#8221; words. For the uninitiated, the rules are very simple:</p>
<ol type="a">
<li>If the word begins with a &#8220;sn&#8221; sound (e.g. &#8220;snore&#8221;), convert it to a hard &#8220;k&#8221; sound (e.g. &#8220;core&#8221;).</li>
<li>Conversely, if the word begins with a hard &#8220;k&#8221; sound, convert it to a &#8220;sn&#8221; sound.</li>
<li>If neither of these conditions apply, leave the word alone.</li>
</ol>
<p>I know this sounds strange, but you&#8217;ll never appreciate snonversion until you&#8217;ve snooked up snoffee in the snitchen.</p>
<p>Anyway, I got &#8220;snurious&#8221; which words would survive the snonversion (existing before and afterward). So I coded up <a href="http://muse.dillfrog.com/lists/in_snommon.php">a fairly snomprehensive list</a>! It&#8217;s pretty safe to say this is a Dillfrog exclusive! <img src='http://blog.dillfrog.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>Thanks Snelly. Snatch you later, y&#8217;all.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.dillfrog.com/words-that-survive-snonversion/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Another Stupid Patent: Emerson SmartSet (R)</title>
		<link>http://blog.dillfrog.com/another-stupid-patent-emerson-smartset-r/</link>
		<comments>http://blog.dillfrog.com/another-stupid-patent-emerson-smartset-r/#comments</comments>
		<pubDate>Fri, 30 May 2008 02:34:50 +0000</pubDate>
		<dc:creator>Plat</dc:creator>
				<category><![CDATA[Soapbox]]></category>

		<guid isPermaLink="false">http://blog.dillfrog.com/?p=44</guid>
		<description><![CDATA[[Editor's note: this was originally posted to the Dillfrog Forums by Plat a few years back; re-posted here by request] Wow, unless I&#8217;m missing something, this seems like a pretty lame &#8220;invention&#8221; to come out of &#8220;Emerson Research&#8221;. I recently bought a SmartSet clock radio, thinking it would use the radio waves to calibrate the [...]]]></description>
			<content:encoded><![CDATA[<p><em>[Editor's note: this was originally posted to the Dillfrog Forums by Plat a few years back; re-posted here by request]<br />
</em></p>
<p>Wow, unless I&#8217;m missing something, this seems like a pretty lame &#8220;invention&#8221; to come out of &#8220;Emerson Research&#8221;.</p>
<p>I recently bought a SmartSet clock radio, thinking it would use the radio waves to calibrate the clock (so if the power went out and the battery went out, the clock would automatically set itself properly). The clock set itself just dandily after plugging it in, but then I became curious about how to force it to re-calibrate the time.</p>
<p>I couldn&#8217;t find anything in the manual on how to do this (if the battery dies, the manual instructs you to manually set the clock&#8217;s time)! So I googled around without much luck, then I visited their (&#8220;Under Construction&#8221;) Web site at www.emersonradio.com with no leads.</p>
<p>So I figured, since they were bragging about the SmartSet (R) technology (&#8220;&#8230;Someday all clocks and clock radios may be this smart. But today the technology is only available from Emerson Research.&#8221;), I could look up the patent number (6,567,344) to see exactly what it was about.</p>
<p><span id="more-44"></span></p>
<p>Remembering that Google is my hero, I searched for &#8220;patent 6567344&#8243; and Google lead me directly to:</p>
<p><a href="http://patft.uspto.gov/netacgi/nph-Parser?TERM1=6567344&#038;u=/netahtml/srchnum.htm&#038;Sect1=PTO1&#038;Sect2=HITOFF&#038;p=1&#038;r=0&#038;l=50&#038;f=S&#038;d=PALL">http://patft.uspto.gov/netacgi/nph-Parser?TERM1=6567344(&#8230;)</a></p>
<p>After a light read of this patent, it seems to me that they are patenting the process of setting a clock&#8217;s time prior to finally selling it to the customer, sometimes setting the time specific to the target market&#8217;s region.</p>
<p>In case you&#8217;re too lazy to read the link, here&#8217;s their commentary on Related Art:</p>
<p>&#8220;Clocks, and in particular clocks that have date and time displays, are known. Specifically, clock radios which, after being started by a buyer, set themselves automatically to the actual time are known. In some cases, such clocks set themselves to display the actual date. However, automatic time setting, as well as automatic date setting only occurs when a time data signal transmitted by radio (e.g., the DCF77 time mark signal transmitted in Germany) at the location of the clock can be received by the clock with a sufficient level of quality. The receipt of such a time mark signal is not always guaranteed.&#8221;</p>
<p>&#8220;It is therefore apparent that there is a need for a clock that sets its time independently from the reception of a time data signal that is transmitted via radio waves.&#8221;</p>
<p>What the heck? Sure, the patent also talks about how the clock stores calendar information (so it recognizes Feb 29th on leap years, as well as daylight saving time), but aren&#8217;t most popular operating systems prior art for that?</p>
<p>Aren&#8217;t some computer systems preconfigured to have the proper time out of the box?</p>
<p>This doesn&#8217;t seem like any special technology worthy of a registered trademark, much less a patent.</p>
<p>What do you think? Am I missing something? Sounds like I&#8217;m taking this beast back to Wal-Mart.</p>
<p><i>[Editor's note: Q &amp; A section follows]</i></p>
<hr />
<p><strong>Branflake</strong>: So let me get this straight, you open the box and the clock is set? They are trying to get an exclusive patent on that? I thought that the so called &#8220;radioactive&#8221; or &#8220;atomic&#8221; clocks (that are based from a signal in Colorado where there is an atomic clock) also recieve the time setting data via radio waves? WTF.</p>
<p>One thing I really dont get is how when my laptop&#8217;s batteries die, the clock is always right when i boot it back up. Hell, my other laptop was DEAD broken for a year and when i booted it back up after getting it all plugged in and proper ram in it&#8230;. the time and dates were correct. That is one smart computer if you ask me.</p>
<p>I say take the clock back Plat. I highly recommend Bridgestone clocks though, they are kickin&#8217;.</p>
<hr />
<p><b>Plat</b>: Bran, my guess is that there&#8217;s another (smaller) battery in your laptop, like what you might find on a computer&#8217;s motherboard, which stores your clock and other basic setup information. But yeah.. you&#8217;re right.. I don&#8217;t get what&#8217;s so special about this.</p>
<hr />
<p><b>Rhorn</b>: That&#8217;s actually exactly right and it&#8217;s on the motherboard. I know this because on one of my own computers, it died on me, and I was confused to no end as to why the time was always incorrect every time it was cold-booted. The battery should, theoretically, be recharged whenever the computer is on.</p>
<hr />
<p><b>Lquiwn</b>: Pretty worthless patent&#8230; But what about other clocks? Is there a clock that recieves a radio signal with the time like you initially thought?</p>
<hr />
<p><b>Plat</b>: Lquiwn, I&#8217;m not sure anymore. There has to be something out there, since the patent lists these clocks as prior art. There weren&#8217;t any obvious choices at Wal-Mart, so I guess I&#8217;ll have to look a little better. I&#8217;d be happy with something that had an Ethernet jack on the back and synched with NTP, but I&#8217;m guessing that wouldn&#8217;t come cheap.</p>
<p>Oh, and just as an update, here&#8217;s nearly the end of my story.</p>
<p>Since the original post, I set the clock time way off, unplugged it, and went to sleep. Yesterday morning, I plugged the clock in again, and it automagically reset itself (you should see it! It rolls through numbers like a slot machine &#8211; too bad the emperor has no clothes). Ooh, ahh.</p>
<p>Then later, I unplugged it, took the backup battery out, let it sit a while, and plugged it back in.</p>
<p>Finally.. the clock had no idea what time it was, so I&#8217;m guessing it&#8217;s solely relying on this battery to determine the new time for me (as suspected). I&#8217;m not a huge fan of clock drift, moreso a fan of revenge, so I&#8217;ll be taking this improperly-calibrated clock back to Wal-Mart shortly.</p>
<p>One more fun fact: this SmartSet clock doesn&#8217;t offer any options to those who live in states that do not recognize Daylight Saving Time.. so when those people use this clock, they actually have to adjust the time on these dates (whereas before they could have just left the clock alone).</p>
<p>Now that&#8217;s smart!</p>
<hr />
<p><b>Enstrim</b>: Sounds like the clock sucks. When I read the little clip from the patent you had above, it sounded a lot to me like they were saying the following: &#8220;There are a lot of clocks that can set themselves against atomic clocks. But what if you can&#8217;t get a good signal from one of the atomic clocks? Then this clock is for you! We have programmed an initial time into the clock that is maintained by a batter! This initial time MIGHT EVEN BE CORRECT!&#8221;</p>
<p>Though, as has been already noted, you&#8217;re screwed without the battery.</p>
<hr />
<p><b>Ovid</b>: What you almost should do is get one of those VIA C3&#8242;s (the tiny ones) and set up some kind of LED on there with ntp and just set your own cool little clock from a central time server (e.g. time.nist.gov), especially since most modern BIOSes have an option to restart after a power outage&#8230;but maybe that&#8217;s a little spendy for an alarm clock&#8230;plus you know the alarm wouldn&#8217;t go off in the case of a power outage&#8230;maybe it&#8217;s not a good idea</p>
<hr />
<p><b>Plat</b>: Yeah, I don&#8217;t know.. it sounds like fun, but I&#8217;m a little too lazy to build my own. Still haven&#8217;t found one that does what I want, not that I&#8217;ve looked much. I *did* find another clock radio (by RCA? I forget) which was preset like the SmartSet &#8482; radio, but they actually admitted how it worked upfront, AND let you enable/disable daylight savings time. Ooh, ahh. Wonder if they&#8217;ll get sued .</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.dillfrog.com/another-stupid-patent-emerson-smartset-r/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Reverse Engineering Cranberry Trail Mix</title>
		<link>http://blog.dillfrog.com/reverse-engineering-cranberry-trail-mix/</link>
		<comments>http://blog.dillfrog.com/reverse-engineering-cranberry-trail-mix/#comments</comments>
		<pubDate>Mon, 07 Apr 2008 07:34:56 +0000</pubDate>
		<dc:creator>Plat</dc:creator>
				<category><![CDATA[Miscellaneous]]></category>

		<guid isPermaLink="false">http://blog.dillfrog.com/?p=39</guid>
		<description><![CDATA[While you were worrying about being able to decompile Java bytecode or .NET IL, I&#8217;ve been trying to figure out the recipe to Walgreen&#8217;s delicious Cranberry Trail Mix. But it&#8217;s mostly pseudo-science; we used a small sample. Tawny and I opened three single-serving bags from the same 7-pack, and separated the ingredients. Then I measured [...]]]></description>
			<content:encoded><![CDATA[<p>While you were worrying about being able to decompile Java bytecode or .NET IL, I&#8217;ve been trying to figure out the recipe to Walgreen&#8217;s delicious Cranberry Trail Mix.</p>
<p>But it&#8217;s mostly pseudo-science; we used a small sample. Tawny and I opened three single-serving bags from the same 7-pack, and separated the ingredients.</p>
<p>Then I measured the weight of each on my USB scale (meant for estimating postage costs).</p>
<p>Here&#8217;s what we found, sorted by weight. I&#8217;ve placed the Nutrition Facts ingredient-list rank in parentheses where it varies from our findings:</p>
<ol>
<li>(#1) 28g peanuts (unsalted)</li>
<li>(#5) 21g black raisins</li>
<li>(#3) 21g golden raisins</li>
<li>(#2) 18g dried cranberries (lightly sweetened; not as puny as Craisins)</li>
<li>(#6) 14g pepitas (a.k.a., pumpkin seeds)</li>
<li>(#4) 10g sunflower kernels</li>
<li>(#8) 9g almonds (unsalted)</li>
<li>(#7) 8g cashews (unsalted)</li>
</ol>
<p>As you can see, there&#8217;s a bit of disparity between the ingredient list and what we actually counted. I&#8217;m sure some of the error can be chalked up to misclassifying cranberries vs. black raisins, or even rounding error on the scale. But I think it&#8217;s &#8220;close enough&#8221; for my use.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.dillfrog.com/reverse-engineering-cranberry-trail-mix/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Legacy.dillfrog.com to disappear</title>
		<link>http://blog.dillfrog.com/legacydillfrogcom-to-disappear/</link>
		<comments>http://blog.dillfrog.com/legacydillfrogcom-to-disappear/#comments</comments>
		<pubDate>Sat, 05 Apr 2008 06:48:46 +0000</pubDate>
		<dc:creator>Plat</dc:creator>
				<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://blog.dillfrog.com/?p=43</guid>
		<description><![CDATA[The legacy is coming to a close. Dilly (the legacy.dillfrog.com server) is dying, his Internet service will be in flux, and it&#8217;s probably time for a fresh start. (Or a stale end). Sometime mid-May, the stuff hosted on legacy.dillfrog.com will be temporarily or permanently unavailable. So if there&#8217;s any content you want to download/archive/etc, please [...]]]></description>
			<content:encoded><![CDATA[<p>The legacy is coming to a close. Dilly (the legacy.dillfrog.com server) is dying, his Internet service will be in flux, and it&#8217;s probably time for a fresh start. (Or a stale end).</p>
<p>Sometime mid-May, the stuff hosted on <a href="http://legacy.dillfrog.com/">legacy.dillfrog.com</a> will be temporarily or permanently unavailable. So if there&#8217;s any content you want to download/archive/etc, please slurp it within the next month.</p>
<p><b>Sites unaffected</b>: all non-legacy.dillfrog.com stuff. Includes Sourceforge sites (e.g. salp wars, rockserv, frogjam projects), noise.dillfrog.com, blog.dillfrog.com, wurdles.com, funputer.com, etc.</p>
<p><b>Stuff that will <i>probably</i> live on</b> (though with a multi-month blackout period): encoding tools, guitar chorder, rhymer, songfight explorer, hop to it, album tracker.</p>
<p><b>Stuff that probably won&#8217;t live on</b>: everything else. Includes account system (your login ID, profiles, pictures, etc), forums, tetrinet server, rock 1/2/3, rejoinder, frogjam server, hang,  and most of the other experiments.</p>
<p>If there&#8217;s something you really don&#8217;t want me to kill off, or if you&#8217;re looking for source code, please respond in the comments of this post. (But please be specific). I already have a pretty good idea which pages get the most traffic. If you&#8217;re a reader of this blog, you probably aren&#8217;t using those pages. <img src='http://blog.dillfrog.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Sorry for the inconvenience. </p>
<p><b>UPDATE June 2 2008</b>: Want to be notified when the Rhymer tool is available again? Then I reckon you join the <a href="http://muse.dillfrog.com/contact/announcement-list/">FrogMuse Announcement mailing list</a>. The snarky-quiet mailing list with a stuffy name.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.dillfrog.com/legacydillfrogcom-to-disappear/feed/</wfw:commentRss>
		<slash:comments>39</slash:comments>
		</item>
	</channel>
</rss>

