<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Huere Lisi's</title>
	<atom:link href="http://huerlisi.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://huerlisi.wordpress.com</link>
	<description>Alpha Testing Web 2.0</description>
	<lastBuildDate>Tue, 31 May 2011 09:14:58 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='huerlisi.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Huere Lisi's</title>
		<link>http://huerlisi.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://huerlisi.wordpress.com/osd.xml" title="Huere Lisi&#039;s" />
	<atom:link rel='hub' href='http://huerlisi.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Custom Schema during Database Migration from SQLite to MySQL using Taps</title>
		<link>http://huerlisi.wordpress.com/2011/05/31/172/</link>
		<comments>http://huerlisi.wordpress.com/2011/05/31/172/#comments</comments>
		<pubDate>Tue, 31 May 2011 07:26:33 +0000</pubDate>
		<dc:creator>huerlisi</dc:creator>
				<category><![CDATA[database]]></category>
		<category><![CDATA[rails]]></category>
		<category><![CDATA[migrate]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[sqlite]]></category>
		<category><![CDATA[traps]]></category>

		<guid isPermaLink="false">http://huerlisi.wordpress.com/?p=172</guid>
		<description><![CDATA[Migrating data from one DBMS to another one can be tricky business. Here&#8217;s a nice way to migrate data from an SQLite3 file to a MySQL database using taps. Well, the nice way is actually well documented here: Taps for Easy Database Transfers. So this post is actually about working around a simple problem: SQLite [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=huerlisi.wordpress.com&amp;blog=20082&amp;post=172&amp;subd=huerlisi&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Migrating data from one DBMS to another one can be tricky business.</p>
<p>Here&#8217;s a nice way to migrate data from an SQLite3 file to a MySQL database using taps. Well, the nice way is actually well documented here: <a href="http://adam.heroku.com/past/2009/2/11/taps_for_easy_database_transfers/" title="Taps for Easy Database Transfers" target="_blank">Taps for Easy Database Transfers</a>.</p>
<p>So this post is actually about working around a simple problem: SQLite doesn&#8217;t have a scope for decimal columns, but MySQL does. When taps rebuilds the database schema in MySQL it simply assumes those decimal columns had scope 0, which makes them integer columns. The data migration will thus result in rounded values in all those columns!</p>
<p>And here&#8217;s how you can workaround this problem for Ruby On Rails projects. Replace the all-uppercase placeholders with your info.</p>
<p><code><br />
# Start the taps server on the original SQLite DB<br />
taps server sqlite://DATABASE_FILE 'TAP_USER' 'TAP_PW'</p>
<p># Create the database as per database.yml, assuming proper privileges<br />
rake db:create</p>
<p># Manually load the schema<br />
rake db:schema:load</p>
<p># Pull the data, but skip the schema and don't copy the schema_migrations table<br />
taps pull -e schema_migrations -s 'mysql://USER:PW@localhost/DATABASE' http://TAP_USER:TAP_PW@localhost:5000<br />
</code></p>
<p>Be aware that taps uses the default encoding for it&#8217;s MySQL connections, so you might have to set something like this in your ~/.my.cnf<br />
<code><br />
[client]<br />
default-character-set=utf8<br />
</code></p>
<p>Hope this helps:-)</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/huerlisi.wordpress.com/172/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/huerlisi.wordpress.com/172/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/huerlisi.wordpress.com/172/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/huerlisi.wordpress.com/172/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/huerlisi.wordpress.com/172/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/huerlisi.wordpress.com/172/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/huerlisi.wordpress.com/172/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/huerlisi.wordpress.com/172/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/huerlisi.wordpress.com/172/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/huerlisi.wordpress.com/172/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/huerlisi.wordpress.com/172/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/huerlisi.wordpress.com/172/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/huerlisi.wordpress.com/172/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/huerlisi.wordpress.com/172/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=huerlisi.wordpress.com&amp;blog=20082&amp;post=172&amp;subd=huerlisi&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://huerlisi.wordpress.com/2011/05/31/172/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/5c48ef0a4c776df5f9c3f5f51f0ea398?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">huerlisi</media:title>
		</media:content>
	</item>
		<item>
		<title>Debian unstable regains Xen Dom0 support</title>
		<link>http://huerlisi.wordpress.com/2010/03/19/debian-unstable-regains-xen-dom0-support/</link>
		<comments>http://huerlisi.wordpress.com/2010/03/19/debian-unstable-regains-xen-dom0-support/#comments</comments>
		<pubDate>Thu, 18 Mar 2010 22:57:53 +0000</pubDate>
		<dc:creator>huerlisi</dc:creator>
				<category><![CDATA[Debian]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[Xen]]></category>

		<guid isPermaLink="false">http://huerlisi.wordpress.com/?p=167</guid>
		<description><![CDATA[Good news everyone! After a long time with no &#8220;modern&#8221; Linux Kernel available in Debian or Ubuntu for usage as Xen Dom0, the &#8220;Big Bang&#8221; release has been uploaded to Debian unstable. This actually means all the hardware support etc. from Kernel 2.6.32 AND Xen a simple &#8216;apt-get install&#8217; away. Maybe we can even get [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=huerlisi.wordpress.com&amp;blog=20082&amp;post=167&amp;subd=huerlisi&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Good news everyone!</p>
<p>After a long time with no &#8220;modern&#8221; Linux Kernel available in Debian or Ubuntu for usage as Xen Dom0, the &#8220;Big Bang&#8221; release has been uploaded to Debian unstable. This actually means all the hardware support etc. from Kernel 2.6.32 AND Xen a simple &#8216;apt-get install&#8217; away. Maybe we can even get Ubuntu Karmic DomUs running&#8230;</p>
<p>There&#8217;s some other goodies in it too, see <a href="http://womble.decadent.org.uk/blog/debian-linux-packages-the-big-bang-release">Ben Hutchings Blog</a>.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/huerlisi.wordpress.com/167/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/huerlisi.wordpress.com/167/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/huerlisi.wordpress.com/167/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/huerlisi.wordpress.com/167/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/huerlisi.wordpress.com/167/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/huerlisi.wordpress.com/167/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/huerlisi.wordpress.com/167/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/huerlisi.wordpress.com/167/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/huerlisi.wordpress.com/167/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/huerlisi.wordpress.com/167/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/huerlisi.wordpress.com/167/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/huerlisi.wordpress.com/167/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/huerlisi.wordpress.com/167/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/huerlisi.wordpress.com/167/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=huerlisi.wordpress.com&amp;blog=20082&amp;post=167&amp;subd=huerlisi&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://huerlisi.wordpress.com/2010/03/19/debian-unstable-regains-xen-dom0-support/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/5c48ef0a4c776df5f9c3f5f51f0ea398?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">huerlisi</media:title>
		</media:content>
	</item>
		<item>
		<title>Voyage on ALIX Setup Notes</title>
		<link>http://huerlisi.wordpress.com/2008/08/07/voyage-on-alix-setup-notes/</link>
		<comments>http://huerlisi.wordpress.com/2008/08/07/voyage-on-alix-setup-notes/#comments</comments>
		<pubDate>Wed, 06 Aug 2008 22:38:29 +0000</pubDate>
		<dc:creator>huerlisi</dc:creator>
				<category><![CDATA[Computers & Internet]]></category>
		<category><![CDATA[opensource]]></category>
		<category><![CDATA[alix voyage linux howto]]></category>

		<guid isPermaLink="false">http://huerlisi.wordpress.com/?p=163</guid>
		<description><![CDATA[Can&#8217;t login using SSH When you can&#8217;t login using SSH after installing Voyage Linux on a CF Card, this might come from extracting the voyage-XXX.tar.bz2 not as root. This results in some /dev/ nodes not being created. Simplest solution: re-extract as root and run installation again. cpio failes to update If you&#8217;re getting the following [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=huerlisi.wordpress.com&amp;blog=20082&amp;post=163&amp;subd=huerlisi&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<h3>Can&#8217;t login using SSH</h3>
<p>When you can&#8217;t login using SSH after installing Voyage Linux on a CF Card, this might come from extracting the voyage-XXX.tar.bz2 not as root. This results in some /dev/ nodes not being created.</p>
<p>Simplest solution: re-extract as root and run installation again.</p>
<h3>cpio failes to update</h3>
<p>If you&#8217;re getting the following error after apt-get update/upgrade from Debian Etch:</p>
<blockquote><p>
Unpacking replacement cpio &#8230;<br />
Replaced by files in installed package tar &#8230;<br />
dpkg: error processing /var/cache/apt/archives/cpio_2.6-18.1+etch1_i386.deb (&#8211;unpack):<br />
 unable to create `./usr/share/locale/da/LC_MESSAGES/cpio.mo&#8217;: No such file or directory<br />
dpkg-deb: subprocess paste killed by signal (Broken pipe)
</p></blockquote>
<p>Then run these commands:</p>
<blockquote><p>
mkdir -p /usr/share/locale/da/LC_MESSAGES<br />
mkdir -p /usr/share/locale/gl/LC_MESSAGES<br />
mkdir -p /usr/share/locale/ko/LC_MESSAGES<br />
mkdir -p /usr/share/locale/nl/LC_MESSAGES<br />
mkdir -p /usr/share/locale/ru/LC_MESSAGES<br />
mkdir -p /usr/share/locale/sv/LC_MESSAGES<br />
mkdir -p /usr/share/locale/tr/LC_MESSAGES<br />
mkdir -p /usr/share/locale/zh_CN/LC_MESSAGES
</p></blockquote>
<p>Now you the update should work&#8230;</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/huerlisi.wordpress.com/163/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/huerlisi.wordpress.com/163/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/huerlisi.wordpress.com/163/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/huerlisi.wordpress.com/163/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/huerlisi.wordpress.com/163/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/huerlisi.wordpress.com/163/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/huerlisi.wordpress.com/163/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/huerlisi.wordpress.com/163/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/huerlisi.wordpress.com/163/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/huerlisi.wordpress.com/163/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/huerlisi.wordpress.com/163/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/huerlisi.wordpress.com/163/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/huerlisi.wordpress.com/163/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/huerlisi.wordpress.com/163/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/huerlisi.wordpress.com/163/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/huerlisi.wordpress.com/163/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=huerlisi.wordpress.com&amp;blog=20082&amp;post=163&amp;subd=huerlisi&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://huerlisi.wordpress.com/2008/08/07/voyage-on-alix-setup-notes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/5c48ef0a4c776df5f9c3f5f51f0ea398?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">huerlisi</media:title>
		</media:content>
	</item>
		<item>
		<title>How to fix broken NX user authentication after OpenSSL fix</title>
		<link>http://huerlisi.wordpress.com/2008/05/16/how-to-fix-broken-nx-user-authentication-after-openssl-fix/</link>
		<comments>http://huerlisi.wordpress.com/2008/05/16/how-to-fix-broken-nx-user-authentication-after-openssl-fix/#comments</comments>
		<pubDate>Fri, 16 May 2008 17:19:43 +0000</pubDate>
		<dc:creator>huerlisi</dc:creator>
				<category><![CDATA[Computers & Internet]]></category>
		<category><![CDATA[Debian]]></category>
		<category><![CDATA[opensource]]></category>
		<category><![CDATA[System Administration]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[freenx]]></category>
		<category><![CDATA[nx]]></category>
		<category><![CDATA[openssl]]></category>
		<category><![CDATA[security]]></category>
		<category><![CDATA[ssh]]></category>

		<guid isPermaLink="false">http://huerlisi.wordpress.com/?p=160</guid>
		<description><![CDATA[It looks like OpenSSH Keys generated on Debian derived distros (Ubuntu/Voyage etc.) are REALLY bad. I&#8217;m currently rolling out OpenSSL key updates as adviced on http://wiki.debian.org/SSLkeys. One casualty of this update was my NX server using freenx. It just tells me that I can&#8217;t be authenticated. In the log /var/log/freenx.log it shows the following: &#8211; [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=huerlisi.wordpress.com&amp;blog=20082&amp;post=160&amp;subd=huerlisi&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>It looks like OpenSSH Keys generated on Debian derived distros (Ubuntu/Voyage etc.) are REALLY bad. I&#8217;m currently rolling out OpenSSL key updates as adviced on http://wiki.debian.org/SSLkeys.</p>
<p>One casualty of this update was my NX server using freenx. It just tells me that I can&#8217;t be authenticated. In the log /var/log/freenx.log it shows the following:</p>
<blockquote><p>&#8211; NX SERVER START: -c /usr/lib/nx/nxserver &#8211; ORIG_COMMAND=<br />
HELLO NXSERVER &#8211; Version 2.1.0-71 OS (GPL)<br />
NX&gt; 105 hello NXCLIENT &#8211; Version 2.1.0<br />
NX&gt; 134 Accepted protocol: 2.1.0<br />
NX&gt; 105 SET SHELL_MODE SHELL<br />
NX&gt; 105 SET AUTH_MODE PASSWORD<br />
NX&gt; 105 login<br />
NX&gt; 101 User: shuerlimann<br />
NX&gt; 102 Password:<br />
NX&gt; 404 ERROR: wrong password or login<br />
NX&gt; 999 Bye
</p></blockquote>
<p>This post talks about the NoMachine NX Server, but gave me the necessary clues: <a href="http://lists.kde.org/?l=freenx-knx&amp;m=116542288527396&amp;w=2">http://lists.kde.org/?l=freenx-knx&amp;m=116542288527396&amp;w=2</a></p>
<p>The magic command for freenx from <a href="http://datakeylive.com">http://datakeylive.com</a><br />
 on Ubuntu is</p>
<blockquote><p>sudo rm /var/lib/nxserver/home/.ssh/known_hosts
</p></blockquote>
<p>This is necessary, as the SSH host key has been updated&#8230; Well, a more informative error message would&#8217;ve been nice, but I&#8217;m thankfull to the guys who produce freenx, anyway;-)</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/huerlisi.wordpress.com/160/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/huerlisi.wordpress.com/160/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/huerlisi.wordpress.com/160/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/huerlisi.wordpress.com/160/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/huerlisi.wordpress.com/160/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/huerlisi.wordpress.com/160/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/huerlisi.wordpress.com/160/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/huerlisi.wordpress.com/160/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/huerlisi.wordpress.com/160/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/huerlisi.wordpress.com/160/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/huerlisi.wordpress.com/160/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/huerlisi.wordpress.com/160/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/huerlisi.wordpress.com/160/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/huerlisi.wordpress.com/160/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/huerlisi.wordpress.com/160/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/huerlisi.wordpress.com/160/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=huerlisi.wordpress.com&amp;blog=20082&amp;post=160&amp;subd=huerlisi&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://huerlisi.wordpress.com/2008/05/16/how-to-fix-broken-nx-user-authentication-after-openssl-fix/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/5c48ef0a4c776df5f9c3f5f51f0ea398?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">huerlisi</media:title>
		</media:content>
	</item>
		<item>
		<title>Latest plan: Release 2 Kubuntu 8.04 CD&#8217;s: KDE 3.5 and KDE 4.0</title>
		<link>http://huerlisi.wordpress.com/2007/12/23/latest-plan-release-2-kubuntu-804-cds-kde-35-and-kde-40/</link>
		<comments>http://huerlisi.wordpress.com/2007/12/23/latest-plan-release-2-kubuntu-804-cds-kde-35-and-kde-40/#comments</comments>
		<pubDate>Sun, 23 Dec 2007 00:02:01 +0000</pubDate>
		<dc:creator>huerlisi</dc:creator>
				<category><![CDATA[KDE4]]></category>
		<category><![CDATA[kubuntu]]></category>
		<category><![CDATA[KDE]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://huerlisi.wordpress.com/2007/12/23/latest-plan-release-2-kubuntu-804-cds-kde-35-and-kde-40/</guid>
		<description><![CDATA[According to this comment by Jucato Kubuntu 8.04 will be released in two variants: one with KDE 3.5 as default, the other with 4.0. the plan is to release 2 Kubuntu 8.04 CD´s: one with KDE 3.5.8 (or .9) as default, and one with KDE 4 as default (but of course with some KDE 3 [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=huerlisi.wordpress.com&amp;blog=20082&amp;post=156&amp;subd=huerlisi&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>According to <a href="http://wadejolson.wordpress.com/2007/12/22/quick-hits-3/#comment-2192">this comment</a> by <a href="http://jucato.org">Jucato</a> Kubuntu 8.04 will be released in two variants: one with KDE 3.5 as default, the other with 4.0.</p>
<blockquote><p>
the plan is to release 2 Kubuntu 8.04 CD´s: one with KDE 3.5.8 (or .9) as default, and one with KDE 4 as default (but of course with some KDE 3 apps)
</p></blockquote>
<p>.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/huerlisi.wordpress.com/156/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/huerlisi.wordpress.com/156/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/huerlisi.wordpress.com/156/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/huerlisi.wordpress.com/156/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/huerlisi.wordpress.com/156/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/huerlisi.wordpress.com/156/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/huerlisi.wordpress.com/156/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/huerlisi.wordpress.com/156/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/huerlisi.wordpress.com/156/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/huerlisi.wordpress.com/156/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/huerlisi.wordpress.com/156/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/huerlisi.wordpress.com/156/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/huerlisi.wordpress.com/156/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/huerlisi.wordpress.com/156/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/huerlisi.wordpress.com/156/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/huerlisi.wordpress.com/156/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=huerlisi.wordpress.com&amp;blog=20082&amp;post=156&amp;subd=huerlisi&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://huerlisi.wordpress.com/2007/12/23/latest-plan-release-2-kubuntu-804-cds-kde-35-and-kde-40/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/5c48ef0a4c776df5f9c3f5f51f0ea398?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">huerlisi</media:title>
		</media:content>
	</item>
		<item>
		<title>Working with plain ugly HTML</title>
		<link>http://huerlisi.wordpress.com/2007/12/06/working-with-plain-ugly-html/</link>
		<comments>http://huerlisi.wordpress.com/2007/12/06/working-with-plain-ugly-html/#comments</comments>
		<pubDate>Wed, 05 Dec 2007 23:43:57 +0000</pubDate>
		<dc:creator>huerlisi</dc:creator>
				<category><![CDATA[Agrabah]]></category>
		<category><![CDATA[alfakher]]></category>
		<category><![CDATA[oriental]]></category>
		<category><![CDATA[ruby on rails]]></category>
		<category><![CDATA[shisha]]></category>
		<category><![CDATA[swiss]]></category>
		<category><![CDATA[swissgeneraltrading]]></category>
		<category><![CDATA[tobacco]]></category>
		<category><![CDATA[website]]></category>

		<guid isPermaLink="false">http://huerlisi.wordpress.com/2007/12/06/working-with-plain-ugly-html/</guid>
		<description><![CDATA[I&#8217;m currently doing some webdesign for the Shisha distributor we get our Al Fakher Shisha Tobacco for Agrabah. It started as a clone of the Al Fakher homepage. It&#8217;s just plain ugly HTML!!! I realy hate this copy&#8217;n'paste code after doing a good while of Ruby On Rails work&#8230; Even PHP is nicer&#8230;<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=huerlisi.wordpress.com&amp;blog=20082&amp;post=155&amp;subd=huerlisi&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m currently doing some webdesign for the <a href="http://www.swissgeneraltrading.ch">Shisha distributor</a> we get our <a href="http://shop.agrabah.ch/index.php/cPath/25_27">Al Fakher Shisha Tobacco</a> for <a href="http://www.agrabah.ch">Agrabah</a>. It started as a clone of the <a href="http://www.alfakher.com">Al Fakher homepage</a>.  It&#8217;s just plain ugly HTML!!! I realy hate this copy&#8217;n'paste code after doing a good while of <a href="http://www.rubyonrails.com">Ruby On Rails</a> work&#8230; Even <a href="http://www.php.net">PHP</a> is nicer&#8230;</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/huerlisi.wordpress.com/155/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/huerlisi.wordpress.com/155/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/huerlisi.wordpress.com/155/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/huerlisi.wordpress.com/155/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/huerlisi.wordpress.com/155/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/huerlisi.wordpress.com/155/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/huerlisi.wordpress.com/155/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/huerlisi.wordpress.com/155/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/huerlisi.wordpress.com/155/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/huerlisi.wordpress.com/155/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/huerlisi.wordpress.com/155/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/huerlisi.wordpress.com/155/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/huerlisi.wordpress.com/155/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/huerlisi.wordpress.com/155/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/huerlisi.wordpress.com/155/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/huerlisi.wordpress.com/155/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=huerlisi.wordpress.com&amp;blog=20082&amp;post=155&amp;subd=huerlisi&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://huerlisi.wordpress.com/2007/12/06/working-with-plain-ugly-html/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/5c48ef0a4c776df5f9c3f5f51f0ea398?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">huerlisi</media:title>
		</media:content>
	</item>
		<item>
		<title>Take part of the KDE relicensing effort</title>
		<link>http://huerlisi.wordpress.com/2007/11/26/take-part-of-the-kde-relicensing-effort/</link>
		<comments>http://huerlisi.wordpress.com/2007/11/26/take-part-of-the-kde-relicensing-effort/#comments</comments>
		<pubDate>Sun, 25 Nov 2007 22:47:50 +0000</pubDate>
		<dc:creator>huerlisi</dc:creator>
				<category><![CDATA[gpl]]></category>
		<category><![CDATA[gpl3]]></category>
		<category><![CDATA[KDE]]></category>
		<category><![CDATA[KDE4]]></category>
		<category><![CDATA[license]]></category>
		<category><![CDATA[opensource]]></category>
		<category><![CDATA[relicense]]></category>

		<guid isPermaLink="false">http://huerlisi.wordpress.com/2007/11/26/take-part-of-the-kde-relicensing-effort/</guid>
		<description><![CDATA[KDE needs a relicensing! While I&#8217;m not happy that the release of the GPL3 made such an effort necessary&#8230; But now it&#8217;s important to handle it fast and correct. Please give your feedback to techbase or use SVN: svn co svn+ssh://$user@svn.kde.org/home/kde/trunk/KDE/kdesdk/scripts vi scripts/relicensecheck.pl &#38; add your name to all the four lists (that is if [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=huerlisi.wordpress.com&amp;blog=20082&amp;post=154&amp;subd=huerlisi&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.kde.org">KDE</a> needs a relicensing! While I&#8217;m not happy that the release of the GPL3 made such an effort necessary&#8230; But now it&#8217;s important to handle it fast and correct. Please give your feedback to <a href="http://techbase.kde.org/Projects/KDE_Relicensing">techbase</a> or use SVN:</p>
<blockquote><p>
svn co svn+ssh://$user@svn.kde.org/home/kde/trunk/KDE/kdesdk/scripts<br />
vi scripts/relicensecheck.pl &amp; add your name to all the four lists (that is if you agree to all four options)<br />
svn ci scripts -m &#8220;I agree to a relicense&#8221;
</p></blockquote>
<p>As <a href="http://www.omat.nl/drupal/taxonomy/term/2/0">Tom Albers</a> <a href="http://www.omat.nl/drupal/relicense-we-need-your-help-part-ii">says</a>:<br />
&#8220;Really, it&#8217;s not more than a minute of work for you.&#8221;</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/huerlisi.wordpress.com/154/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/huerlisi.wordpress.com/154/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/huerlisi.wordpress.com/154/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/huerlisi.wordpress.com/154/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/huerlisi.wordpress.com/154/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/huerlisi.wordpress.com/154/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/huerlisi.wordpress.com/154/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/huerlisi.wordpress.com/154/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/huerlisi.wordpress.com/154/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/huerlisi.wordpress.com/154/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/huerlisi.wordpress.com/154/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/huerlisi.wordpress.com/154/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/huerlisi.wordpress.com/154/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/huerlisi.wordpress.com/154/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/huerlisi.wordpress.com/154/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/huerlisi.wordpress.com/154/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=huerlisi.wordpress.com&amp;blog=20082&amp;post=154&amp;subd=huerlisi&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://huerlisi.wordpress.com/2007/11/26/take-part-of-the-kde-relicensing-effort/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/5c48ef0a4c776df5f9c3f5f51f0ea398?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">huerlisi</media:title>
		</media:content>
	</item>
		<item>
		<title>Using KDE4 daily</title>
		<link>http://huerlisi.wordpress.com/2007/11/24/using-kde4-daily/</link>
		<comments>http://huerlisi.wordpress.com/2007/11/24/using-kde4-daily/#comments</comments>
		<pubDate>Sat, 24 Nov 2007 18:47:46 +0000</pubDate>
		<dc:creator>huerlisi</dc:creator>
				<category><![CDATA[KDE]]></category>
		<category><![CDATA[KDE4]]></category>
		<category><![CDATA[kde4daily]]></category>
		<category><![CDATA[kubuntu]]></category>
		<category><![CDATA[live cd]]></category>
		<category><![CDATA[opensource]]></category>
		<category><![CDATA[opensuse]]></category>
		<category><![CDATA[untuntu]]></category>

		<guid isPermaLink="false">http://huerlisi.wordpress.com/2007/11/24/using-kde4-daily/</guid>
		<description><![CDATA[I&#8217;m running KDE4 RC1 as my main desktop for 2 days now. Only few crashes, so productivity is good. But there are many small bugs. And it&#8217;s not very fast/responsive. But this is at least partially to blame on all the debug code. Quite happy so far! It&#8217;s shaping up! Please test!!! Packages from Kubuntu: [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=huerlisi.wordpress.com&amp;blog=20082&amp;post=153&amp;subd=huerlisi&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m running KDE4 RC1 as my main desktop for 2 days now. Only few crashes, so productivity is good. But there are many small bugs. And it&#8217;s not very fast/responsive. But this is at least partially to blame on all the debug code.</p>
<p>Quite happy so far! It&#8217;s shaping up! Please test!!!</p>
<p>Packages from Kubuntu: <a href="http://kubuntu.org/announcements/kde4-rc1.php">HOWTO</a><br />
KDE Four Live: openSUSE based <a href="http://home.kde.org/~binner/kde-four-live/">Live CD</a><br />
<a href="http://dot.kde.org/1195829316/">KDE4Daily</a>: full virtual machine image with efficient update mechanism to SVN head</p>
<p>Please report any possibilities to try out KDE4 the easy way in the comments section:-)</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/huerlisi.wordpress.com/153/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/huerlisi.wordpress.com/153/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/huerlisi.wordpress.com/153/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/huerlisi.wordpress.com/153/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/huerlisi.wordpress.com/153/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/huerlisi.wordpress.com/153/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/huerlisi.wordpress.com/153/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/huerlisi.wordpress.com/153/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/huerlisi.wordpress.com/153/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/huerlisi.wordpress.com/153/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/huerlisi.wordpress.com/153/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/huerlisi.wordpress.com/153/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/huerlisi.wordpress.com/153/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/huerlisi.wordpress.com/153/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/huerlisi.wordpress.com/153/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/huerlisi.wordpress.com/153/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=huerlisi.wordpress.com&amp;blog=20082&amp;post=153&amp;subd=huerlisi&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://huerlisi.wordpress.com/2007/11/24/using-kde4-daily/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/5c48ef0a4c776df5f9c3f5f51f0ea398?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">huerlisi</media:title>
		</media:content>
	</item>
		<item>
		<title>The promised HL7 update</title>
		<link>http://huerlisi.wordpress.com/2007/11/24/the-promised-hl7-update/</link>
		<comments>http://huerlisi.wordpress.com/2007/11/24/the-promised-hl7-update/#comments</comments>
		<pubDate>Sat, 24 Nov 2007 15:15:00 +0000</pubDate>
		<dc:creator>huerlisi</dc:creator>
				<category><![CDATA[Agrabah]]></category>
		<category><![CDATA[elexis]]></category>
		<category><![CDATA[hl7]]></category>
		<category><![CDATA[opensource]]></category>
		<category><![CDATA[oscommerce]]></category>
		<category><![CDATA[ruby]]></category>

		<guid isPermaLink="false">http://huerlisi.wordpress.com/2007/11/24/the-promised-hl7-update/</guid>
		<description><![CDATA[Well, I&#8217;m multitasking heavily between project. I told you about my HL7 explorations. That project is on hold for a few weeks (due to my oscommerce setup for Agrabah and other projects). But here&#8217;s the link to some interesting opensource medical software: Elexis. It contains some HL7 importers and helps me a lot to see [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=huerlisi.wordpress.com&amp;blog=20082&amp;post=152&amp;subd=huerlisi&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Well, I&#8217;m multitasking heavily between project. I <a href="http://huerlisi.wordpress.com/2007/11/10/agrabah-ist-schuld/">told you</a> about my HL7 explorations. That project is on hold for a few weeks (due to my <a href="http://shop.agrabah.ch">oscommerce setup</a> for <a href="http://www.agrabah.ch">Agrabah</a> and other projects). But <a href="http://www.elexis.ch">here&#8217;s the link</a> to some interesting opensource medical software: <a href="http://www.elexis.ch">Elexis</a>. It contains some HL7 importers and helps me a lot to see an actual implementation.  Another helpfull source is the <a href="http://trac.hasno.info/ruby-hl7">ruby-hl7</a> library. More later&#8230;</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/huerlisi.wordpress.com/152/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/huerlisi.wordpress.com/152/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/huerlisi.wordpress.com/152/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/huerlisi.wordpress.com/152/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/huerlisi.wordpress.com/152/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/huerlisi.wordpress.com/152/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/huerlisi.wordpress.com/152/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/huerlisi.wordpress.com/152/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/huerlisi.wordpress.com/152/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/huerlisi.wordpress.com/152/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/huerlisi.wordpress.com/152/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/huerlisi.wordpress.com/152/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/huerlisi.wordpress.com/152/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/huerlisi.wordpress.com/152/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/huerlisi.wordpress.com/152/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/huerlisi.wordpress.com/152/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=huerlisi.wordpress.com&amp;blog=20082&amp;post=152&amp;subd=huerlisi&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://huerlisi.wordpress.com/2007/11/24/the-promised-hl7-update/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/5c48ef0a4c776df5f9c3f5f51f0ea398?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">huerlisi</media:title>
		</media:content>
	</item>
		<item>
		<title>Get those mysterious osCommerce tools!</title>
		<link>http://huerlisi.wordpress.com/2007/11/24/get-those-mysterious-oscommerce-tools/</link>
		<comments>http://huerlisi.wordpress.com/2007/11/24/get-those-mysterious-oscommerce-tools/#comments</comments>
		<pubDate>Sat, 24 Nov 2007 15:01:32 +0000</pubDate>
		<dc:creator>huerlisi</dc:creator>
				<category><![CDATA[Debian]]></category>
		<category><![CDATA[opensource]]></category>
		<category><![CDATA[oscommerce]]></category>
		<category><![CDATA[script]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://huerlisi.wordpress.com/2007/11/24/get-those-mysterious-oscommerce-tools/</guid>
		<description><![CDATA[It&#8217;s simple! Install darcs (apt-get install darcs on Debian, Ubuntu etc.) and get the scripts: darcs get http://code.cyt.ch/darcs/osc-tools/ This will create a osc-tools directory wherein there&#8217;s some smallish bash scripts. Documentation will follow&#8230;<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=huerlisi.wordpress.com&amp;blog=20082&amp;post=151&amp;subd=huerlisi&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s simple! Install darcs (<code>apt-get install darcs</code> on Debian, Ubuntu etc.) and get the scripts:</p>
<blockquote><p>
darcs get http://code.cyt.ch/darcs/osc-tools/
</p></blockquote>
<p>This will create a <code>osc-tools</code> directory wherein there&#8217;s <a href="http://code.cyt.ch/cgi-bin/darcsweb.cgi?r=osc-tools;a=summary">some smallish bash scripts</a>. Documentation will follow&#8230;</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/huerlisi.wordpress.com/151/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/huerlisi.wordpress.com/151/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/huerlisi.wordpress.com/151/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/huerlisi.wordpress.com/151/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/huerlisi.wordpress.com/151/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/huerlisi.wordpress.com/151/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/huerlisi.wordpress.com/151/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/huerlisi.wordpress.com/151/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/huerlisi.wordpress.com/151/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/huerlisi.wordpress.com/151/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/huerlisi.wordpress.com/151/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/huerlisi.wordpress.com/151/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/huerlisi.wordpress.com/151/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/huerlisi.wordpress.com/151/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/huerlisi.wordpress.com/151/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/huerlisi.wordpress.com/151/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=huerlisi.wordpress.com&amp;blog=20082&amp;post=151&amp;subd=huerlisi&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://huerlisi.wordpress.com/2007/11/24/get-those-mysterious-oscommerce-tools/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/5c48ef0a4c776df5f9c3f5f51f0ea398?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">huerlisi</media:title>
		</media:content>
	</item>
	</channel>
</rss>
