<?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>jernstrom.org &#187; Free Stuff</title>
	<atom:link href="http://jernstrom.org/site/category/free-stuff/feed/" rel="self" type="application/rss+xml" />
	<link>http://jernstrom.org/site</link>
	<description>Random stuff</description>
	<lastBuildDate>Wed, 03 Feb 2010 00:15:21 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>When I fell in love with a Tomato</title>
		<link>http://jernstrom.org/site/2009/01/when-i-fell-in-love-with-a-tomato/</link>
		<comments>http://jernstrom.org/site/2009/01/when-i-fell-in-love-with-a-tomato/#comments</comments>
		<pubDate>Fri, 23 Jan 2009 14:11:54 +0000</pubDate>
		<dc:creator>Kimmo</dc:creator>
				<category><![CDATA[Free Stuff]]></category>
		<category><![CDATA[Life]]></category>

		<guid isPermaLink="false">http://jernstrom.org/site/2009/01/when-i-fell-in-love-with-a-tomato/</guid>
		<description><![CDATA[At home I’m still using my age-old Linksys WRT54GS router, it’s such a fantastic piece of hardware! Back when I bought the the router I tested various alternative firmware&#8217;s, but settled for OpenWrt/X-Wrt.    Well, a few days ago when I felt  it was that upgrade time again I thought to have another try at [...]]]></description>
			<content:encoded><![CDATA[<p>At home I’m still using my age-old Linksys <a href="http://en.wikipedia.org/wiki/WRT54GS#WRT54GS">WRT54GS</a> router, it’s such a fantastic piece of hardware! Back when I bought the the router I tested various alternative firmware&#8217;s, but settled for <a href="http://openwrt.org/">OpenWrt</a>/<a href="http://x-wrt.org/">X-Wrt</a>. <img style="border-bottom: 0px; border-left: 0px; margin: 0px 0px 0px 10px; display: inline; border-top: 0px; border-right: 0px" title="tomato" src="http://jernstrom.org/site/wp-content/2009/01/tomato2.jpg" border="0" alt="tomato" width="125" height="148" align="right" />  </p>
<p>Well, a few days ago when I felt  it was that upgrade time again I thought to have another try at the other firmware&#8217;s again. That’s when I instantly fell in love with (a) <a href="http://www.polarcloud.com/tomato">Tomato</a>! I mean, just the name! Who the hell would call a router Tomato?! By that definition it had to be something extra special.  And, boy it certainly was!</p>
<p><a href="http://jernstrom.org/site/wp-content/2009/01/tomato_full.png"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="tomato" src="http://jernstrom.org/site/wp-content/2009/01/tomato1.png" border="0" alt="tomato" width="244" height="143" /></a></p>
<p>Check out <a href="http://www.linksysinfo.org/forums/forumdisplay.php?f=160">linksysinfo.org</a> forums for more info, add-ons and <a href="http://www.linksysinfo.org/forums/showthread.php?t=57933">mods</a>. The picture above is from the latest <a href="http://victek.is-a-geek.com/tomato.html">Vicitec Mod</a> of Tomato that I’m currently running.</p>
]]></content:encoded>
			<wfw:commentRss>http://jernstrom.org/site/2009/01/when-i-fell-in-love-with-a-tomato/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Delete Revisions from WordPress DB</title>
		<link>http://jernstrom.org/site/2009/01/delete-revisions-from-wordpress-db/</link>
		<comments>http://jernstrom.org/site/2009/01/delete-revisions-from-wordpress-db/#comments</comments>
		<pubDate>Sun, 04 Jan 2009 22:17:03 +0000</pubDate>
		<dc:creator>Kimmo</dc:creator>
				<category><![CDATA[Free Stuff]]></category>
		<category><![CDATA[jernstrom.org]]></category>

		<guid isPermaLink="false">http://jernstrom.org/site/?p=281</guid>
		<description><![CDATA[I ran into this revisions annoyance in WordPress&#8230;It&#8217;s no problem to turn off the beast, but rather to clean out the existing revisions from the DB. Luckily others also get annoyed.  Andrei Neculau cooked up a nice sql query that took care of the leftovers DELETE a,b,c FROM wp_posts a LEFT JOIN wp_term_relationships b ON &#40;a.ID = b.object_id&#41; [...]]]></description>
			<content:encoded><![CDATA[<p>I ran into this <a title="Revision_Management" href="http://codex.wordpress.org/Revision_Management" target="_blank">revisions</a> annoyance in WordPress&#8230;It&#8217;s no problem to turn off the beast, but rather to clean out the existing revisions from the DB.</p>
<p>Luckily others also get annoyed.  <a href="http://andreineculau.com/blog/2008/07/delete-wordpress-26-revisions/" target="_blank">Andrei Neculau</a> cooked up a nice sql query that took care of the leftovers</p>
<div class="geshi no sql">
<div class="head">DELETE a,b,c</div>
<ol>
<li class="li1">
<div class="de1"><span class="kw1">FROM</span> wp_posts a</div>
</li>
<li class="li1">
<div class="de1"><span class="kw1">LEFT</span> <span class="kw1">JOIN</span> wp_term_relationships b <span class="kw1">ON</span> <span class="br0">&#40;</span>a.ID <span class="sy0">=</span> b.object_id<span class="br0">&#41;</span></div>
</li>
<li class="li1">
<div class="de1"><span class="kw1">LEFT</span> <span class="kw1">JOIN</span> wp_postmeta c <span class="kw1">ON</span> <span class="br0">&#40;</span>a.ID <span class="sy0">=</span> c.post_id<span class="br0">&#41;</span></div>
</li>
<li class="li1">
<div class="de1"><span class="kw1">WHERE</span> a.post_type <span class="sy0">=</span> <span class="st0">&#39;revision&#39;</span></div>
</li>
</ol>
</div>
]]></content:encoded>
			<wfw:commentRss>http://jernstrom.org/site/2009/01/delete-revisions-from-wordpress-db/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Moved over to WordPress</title>
		<link>http://jernstrom.org/site/2009/01/moved-over-to-wordpress/</link>
		<comments>http://jernstrom.org/site/2009/01/moved-over-to-wordpress/#comments</comments>
		<pubDate>Sun, 04 Jan 2009 15:49:59 +0000</pubDate>
		<dc:creator>Kimmo</dc:creator>
				<category><![CDATA[Free Stuff]]></category>
		<category><![CDATA[jernstrom.org]]></category>

		<guid isPermaLink="false">http://jernstrom.org/site/?p=273</guid>
		<description><![CDATA[So, I got tired of the old CMS and after having evaluated a few alternatives I decided to use WordPress. The feature set (over)matched the simple needs of this site. WordPress is simple yet powerfull. First thing that strikes is that a theme is not the usual replaceable chrome &#8211; It’s more or less the [...]]]></description>
			<content:encoded><![CDATA[<p>So, I got tired of the old CMS and after having evaluated a few alternatives I decided to use WordPress. The feature set (over)matched the simple needs of this site. WordPress is simple yet powerfull. </p>
<p>First thing that strikes is that a theme is not the usual replaceable chrome &#8211; It’s more or less the actual (presenting) engine. This quite rapidly gets extremely enerving and limiting. Sooner than quick I retardate (sic) to merely removing annoyances instead of utilizing and empowering what’s there.</p>
<p>However, given the generic other options, or even by itself, the benefits way overmatches the limitations, for me, now.</p>
<p><a href="http://jernstrom.org/site/wp-content/2009/01/j.gif"><img class="alignnone size-full wp-image-274" title="j" src="http://jernstrom.org/site/wp-content/2009/01/j.gif" alt="j" width="100" height="100" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://jernstrom.org/site/2009/01/moved-over-to-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Windows Installer Wrapper Wizard (WIWW)</title>
		<link>http://jernstrom.org/site/2008/09/windows-installer-wrapper-wizard-wiww/</link>
		<comments>http://jernstrom.org/site/2008/09/windows-installer-wrapper-wizard-wiww/#comments</comments>
		<pubDate>Fri, 12 Sep 2008 21:25:22 +0000</pubDate>
		<dc:creator>Kimmo</dc:creator>
				<category><![CDATA[Free Stuff]]></category>
		<category><![CDATA[Legacy]]></category>

		<guid isPermaLink="false">http://jernstrom.org/site/?p=215</guid>
		<description><![CDATA[Here&#8217;s the short Windows Installer Wrapper Wizard (WIWW) 0.2.0 can create Windows Installer msi wrapper files that will execute commands you specify in a wizard. Its intended use is allowing administrators to execute commands or install software using machine assigned or user published group policies&#8230;/ Article here Backup copy: windows_installer_wrapper_wizard_020]]></description>
			<content:encoded><![CDATA[<p>Here&#8217;s the short</p>
<blockquote><p>Windows Installer Wrapper Wizard (WIWW) 0.2.0 can create Windows Installer msi wrapper files that will execute commands you specify in a wizard. Its intended use is allowing administrators to execute commands or install software using machine assigned or user published group policies&#8230;/</p></blockquote>
<p>Article <a href="http://www.vinsvision.com/Articles/tabid/66/EntryID/15/Default.aspx" target="_blank">here</a><br />
Backup copy: <a href="http://jernstrom.org/site/wp-content/2008/09/windows_installer_wrapper_wizard_020.zip">windows_installer_wrapper_wizard_020</a></p>
]]></content:encoded>
			<wfw:commentRss>http://jernstrom.org/site/2008/09/windows-installer-wrapper-wizard-wiww/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Parted Magic &#8211; free alternative to Partition Magic</title>
		<link>http://jernstrom.org/site/2007/02/parted-magic-free-alternative-to-partition-magic/</link>
		<comments>http://jernstrom.org/site/2007/02/parted-magic-free-alternative-to-partition-magic/#comments</comments>
		<pubDate>Tue, 13 Feb 2007 21:52:44 +0000</pubDate>
		<dc:creator>Kimmo</dc:creator>
				<category><![CDATA[Free Stuff]]></category>
		<category><![CDATA[Legacy]]></category>

		<guid isPermaLink="false">http://jernstrom.org/site/?p=238</guid>
		<description><![CDATA[I actually used this on a HP DL360 (with a RAID set) through ILO over a WAN connection. Worked like a charm!   Parted Magic is a ~30mb LiveCD/USB with it&#8217;s only purpose being partitioning hard drives. Although GParted and Parted are the main programs, the CD/USB also offers programs like partimage, TestDisk, fdisk, sfdisk, [...]]]></description>
			<content:encoded><![CDATA[<p>I actually used this on a HP DL360 (with a RAID set) through ILO over a WAN connection. Worked like a charm!</p>
<p><img class="size-full wp-image-242 alignnone" title="parted" src="http://jernstrom.org/site/wp-content/2007/02/parted.png" alt="parted" width="507" height="252" /><br />
 </p>
<blockquote><p>Parted Magic is a ~30mb LiveCD/USB with it&#8217;s only purpose being partitioning hard drives. Although GParted and Parted are the main programs, the CD/USB also offers programs like partimage, TestDisk, fdisk, sfdisk, dd, ddrescue, etc&#8230;</p></blockquote>
<p>Read more and download <a href="http://partedmagic.com/" target="_blank">here</a></p>
<p>Backup copy (//090102) <a href="/site/wp-content/2007/02/pmagic-3.4.iso.zip">pmagic-3.4.iso.zip</a></p>
]]></content:encoded>
			<wfw:commentRss>http://jernstrom.org/site/2007/02/parted-magic-free-alternative-to-partition-magic/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>OpenFiler</title>
		<link>http://jernstrom.org/site/2006/10/openfiler/</link>
		<comments>http://jernstrom.org/site/2006/10/openfiler/#comments</comments>
		<pubDate>Sun, 15 Oct 2006 21:16:08 +0000</pubDate>
		<dc:creator>Kimmo</dc:creator>
				<category><![CDATA[Free Stuff]]></category>
		<category><![CDATA[Legacy]]></category>

		<guid isPermaLink="false">http://jernstrom.org/site/?p=212</guid>
		<description><![CDATA[Openfiler is a browser-based network storage management utility. Linux-powered, Openfiler delivers file-based Network Attached Storage (NAS) and block-based SAN in a single framework. It supports CIFS, NFS, HTTP/DAV, FTP, and iSCSI. Read more here]]></description>
			<content:encoded><![CDATA[<blockquote><p>Openfiler is a browser-based network storage management utility. Linux-powered, Openfiler delivers file-based Network Attached Storage (NAS) and block-based SAN in a single framework. It supports CIFS, NFS, HTTP/DAV, FTP, and iSCSI.</p></blockquote>
<p>Read more <a title="OpenFiler" href="http://www.openfiler.com/" target="_blank">here</a></p>
]]></content:encoded>
			<wfw:commentRss>http://jernstrom.org/site/2006/10/openfiler/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Free NAS Server</title>
		<link>http://jernstrom.org/site/2006/03/free-nas-server/</link>
		<comments>http://jernstrom.org/site/2006/03/free-nas-server/#comments</comments>
		<pubDate>Sun, 19 Mar 2006 20:42:44 +0000</pubDate>
		<dc:creator>Kimmo</dc:creator>
				<category><![CDATA[Free Stuff]]></category>
		<category><![CDATA[Legacy]]></category>

		<guid isPermaLink="false">http://jernstrom.org/site/?p=184</guid>
		<description><![CDATA[Came around this. Looks great! FreeNAS is a free NAS (Network-Attached Storage) server, supporting: CIFS (samba), FTP, NFS, RSYNC protocols, local user authentication, Software RAID (0,1,5) with a Full WEB configuration interface. FreeNAS takes less than 16MB once installed on Compact Flash, hard drive or USB key. The minimal FreeBSD distribution, Web interface, PHP scripts [...]]]></description>
			<content:encoded><![CDATA[<p>Came around this. Looks great!</p>
<p><a href="http://jernstrom.org/site/wp-content/2006/03/freenas.png"><img class="alignnone size-thumbnail wp-image-188" title="freenas" src="http://jernstrom.org/site/wp-content/2006/03/freenas-150x150.png" alt="freenas" width="150" height="150" /></a><a href="http://jernstrom.org/site/wp-content/2006/03/freenas.png"></a></p>
<blockquote><p>FreeNAS is a free NAS (Network-Attached Storage) server, supporting: CIFS (samba), FTP, NFS, RSYNC protocols, local user authentication, Software RAID (0,1,5) with a Full WEB configuration interface. FreeNAS takes less than 16MB once installed on Compact Flash, hard drive or USB key.<br />
The minimal FreeBSD distribution, Web interface, PHP scripts and documentation are based on M0n0wall.</p></blockquote>
<p>Read more and download <a title="FreeNAS" href="http://www.freenas.org/" target="_blank">here</a></p>
]]></content:encoded>
			<wfw:commentRss>http://jernstrom.org/site/2006/03/free-nas-server/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ext2 Installable File System For Windows</title>
		<link>http://jernstrom.org/site/2006/01/ext2-installable-file-system-for-windows/</link>
		<comments>http://jernstrom.org/site/2006/01/ext2-installable-file-system-for-windows/#comments</comments>
		<pubDate>Mon, 30 Jan 2006 20:10:23 +0000</pubDate>
		<dc:creator>Kimmo</dc:creator>
				<category><![CDATA[Free Stuff]]></category>
		<category><![CDATA[Legacy]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://jernstrom.org/site/?p=153</guid>
		<description><![CDATA[Allrite, so I bought this LaCie Ethernet Disk mini 300GB to have as backup unit and to store some of the kids movies and some music. The damn thing however came delivered with fat32 filesystem (max file size=4gb but just 2gb over network + other shortcoming of fat32) Now there was the option to format [...]]]></description>
			<content:encoded><![CDATA[<p>Allrite, so I bought this LaCie Ethernet Disk mini 300GB to have as backup unit and to store some of the kids movies and some music. The damn thing however came delivered with fat32 filesystem (max file size=4gb but just 2gb over network + other shortcoming of fat32)</p>
<p>Now there was the option to format the thing with EXT3 file system; however that EXT3 thing would certainly not be readable from USB cable connection from my Windows thingies. Enter Ext2 (ext3 too!) driver for Windows and all is great again</p>
<blockquote><p>Complete reading and writing access to files and directories of volumes with the Ext2 or Ext3 file system.<br />
Supports features which are specific to the I/O-system of Windows: Byte Range Locks, Directory Notfication (so the Explorer updates the view of a directory on changes within that directory), Oplocks (so SMB clients are able to cache the content of files).<br />
Allows Windows to run with paging files on Ext2 volumes.</p></blockquote>
<p>Read more and download <a title="fs-driver" href="http://www.fs-driver.org" target="_blank">here</a><br />
Backup copy <a href="/site/wp-content/2006/01/ext2ifs_1_11a.exe">here </a>(v. 1.11a //090102)</p>
]]></content:encoded>
			<wfw:commentRss>http://jernstrom.org/site/2006/01/ext2-installable-file-system-for-windows/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Group Policy ADM templates for Firefox</title>
		<link>http://jernstrom.org/site/2006/01/group-policy-adm-templates-for-firefox/</link>
		<comments>http://jernstrom.org/site/2006/01/group-policy-adm-templates-for-firefox/#comments</comments>
		<pubDate>Sat, 28 Jan 2006 20:24:24 +0000</pubDate>
		<dc:creator>Kimmo</dc:creator>
				<category><![CDATA[Free Stuff]]></category>
		<category><![CDATA[Legacy]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://jernstrom.org/site/?p=165</guid>
		<description><![CDATA[So you want to use Firefox, but you&#8217;re going ballistic when you can&#8217;t manage Firefox through GPO? Well, enter FirefoxADM&#8230; FirefoxADM is an open-source project dedicated to the goal of being able to manage large numbers of Firefox installations on a network using the Windows Active Directory Group Policy Objects (GPOs) Read more and download [...]]]></description>
			<content:encoded><![CDATA[<p>So you want to use Firefox, but you&#8217;re going ballistic when you can&#8217;t manage Firefox through GPO?<br />
Well, enter FirefoxADM&#8230;</p>
<blockquote><p>FirefoxADM is an open-source project dedicated to the goal of being able to manage large numbers of Firefox installations on a network using the Windows Active Directory Group Policy Objects (GPOs)</p></blockquote>
<p>Read more and download <a title="FirefoxAdm" href="http://firefoxadm.sourceforge.net/" target="_blank">here</a></p>
]]></content:encoded>
			<wfw:commentRss>http://jernstrom.org/site/2006/01/group-policy-adm-templates-for-firefox/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Wget for Windows</title>
		<link>http://jernstrom.org/site/2006/01/wget-for-windows/</link>
		<comments>http://jernstrom.org/site/2006/01/wget-for-windows/#comments</comments>
		<pubDate>Tue, 24 Jan 2006 20:34:22 +0000</pubDate>
		<dc:creator>Kimmo</dc:creator>
				<category><![CDATA[Free Stuff]]></category>
		<category><![CDATA[Legacy]]></category>

		<guid isPermaLink="false">http://jernstrom.org/site/?p=178</guid>
		<description><![CDATA[GNU Wget is a free utility for non-interactive download of files from the Web. It supports HTTP, HTTPS, and FTP protocols, as well as retrieval through HTTP proxies. Download an entire site wget -m -p -k robots=off http://www.somesite.foo.com This will commmand will do the stuff, and -m and -p will grab all images, CSS, etc. [...]]]></description>
			<content:encoded><![CDATA[<p>GNU Wget is a free utility for non-interactive download of files from the Web. It supports HTTP, HTTPS, and FTP protocols, as well as retrieval through HTTP proxies.</p>
<p><strong>Download an entire site<br />
</strong>wget -m -p -k robots=off http://www.somesite.foo.com</p>
<p>This will commmand will do the stuff, and -m and -p will grab all images, CSS, etc. robots=off ignores a sites robots.txt file If you add the -k flag, wget will convert all absolute links into relative links.</p>
<p><strong>Donwload a part of a site<br />
</strong>wget -m -k -np http://www.somesite.foo.com/images</p>
<p>The -np (no parent) options means that wget won&#8217;t travel &#8220;above&#8221; /images in the hierarchy</p>
<p>Check <a title="wget" href="http://xoomer.alice.it/hherold/" target="_blank">here </a>for additional versions<br />
Backup copy <a href="/site/wp-content/2006/01/wget-1102b.zip">here </a> (1.10.2 //090102)</p>
]]></content:encoded>
			<wfw:commentRss>http://jernstrom.org/site/2006/01/wget-for-windows/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
