<?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>Views on Life &#187; Planet</title>
	<atom:link href="http://blog.cone.be/category/planet/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.cone.be</link>
	<description>No Regrets.</description>
	<lastBuildDate>Wed, 01 Sep 2010 18:18:08 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Creating Dutch dictionary for android</title>
		<link>http://blog.cone.be/2010/08/20/creating-dutch-dictionary-for-android/</link>
		<comments>http://blog.cone.be/2010/08/20/creating-dutch-dictionary-for-android/#comments</comments>
		<pubDate>Fri, 20 Aug 2010 19:52:24 +0000</pubDate>
		<dc:creator>Gert</dc:creator>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[Planet]]></category>

		<guid isPermaLink="false">http://blog.cone.be/?p=4352</guid>
		<description><![CDATA[As a follow up to yesterdays post, a howto for creating the LatinIME dictionary (in this case raw-nl/main.dict) files!
All info necessary to do so is readily available on http://code.google.com/p/softkeyboard/wiki/BinaryDictionaries
As a base, you need a wad of decent text, the more the better! The quality of the dictionary will improve as more data is fed into [...]]]></description>
			<content:encoded><![CDATA[<p>As a follow up to yesterdays post, a howto for creating the LatinIME dictionary (in this case raw-nl/main.dict) files!</p>
<p>All info necessary to do so is readily available on <a href="http://code.google.com/p/softkeyboard/wiki/BinaryDictionaries">http://code.google.com/p/softkeyboard/wiki/BinaryDictionaries</a></p>
<p>As a base, you need a wad of decent text, the more the better! The quality of the dictionary will improve as more data is fed into the file. The example on SoftKeyboard uses the Wikipedia for bulk text!</p>
<p>The dutch dump is available on <a href="http://download.wikimedia.org/nlwiki/20100813/">http://download.wikimedia.org/nlwiki/20100813/</a> Considering the different dumps, I chose the one containing the Articles, templates, image descriptions, and primary meta-pages, but not the revision or user data..</p>
<blockquote><p>2010-08-13 16:17:13 done Articles, templates, image descriptions, and primary meta-pages.<br />
2010-08-13 16:17:13: nlwiki 1003105 pages (382.643/sec), 1003105 revs (382.643/sec), 92.5% prefetched, ETA 2010-08-13 16:59:24 [max 1971556]<br />
This contains current versions of article content, and is the archive most mirror sites will probably want.<br />
pages-articles.xml.bz2 549.0 MB</p></blockquote>
<p>The SoftPedia explenation offers the following bash script to analyse the wad of text into a weighed word list.</p>
<blockquote><p>
My blog screws up code, check <a href="http://www.gertschepens.be/android-dictionary-files">gertschepens.be</a> or the original page for the commands<br />
Code from <a href="http://code.google.com/p/softkeyboard/wiki/BinaryDictionaries">Softkeyboard</a>, contributed by Jacob Nordfalk</p></blockquote>
<p>This creates a weighed and sorted list of the words in the file. The more data, the more reliable this set will be. (The database dump of a dutch forum would be a nice addition to get more of the common language in there, as a counterweight to the dictionary wording.)<br />
The weighed values are between 194 and 8671269 (this is the # of times a word is found in the text) in case of this specific export. The <a href="http://android.git.kernel.org/?p=platform/packages/inputmethods/LatinIME.git;a=blob;f=dictionaries/sample.xml;h=85233b63a8b8a1043fceae592b567b93ee275504;hb=HEAD">sample.xml</a> however speaks of a frequency value from 0 to 255.</p>
<p>So I created a perl script to fix the numbering; the script needs a sorted list, frequent words first, infrequent ones later. It cycles trough and replaces the initial numbering (in the correctly formatted xml) by the weighed alternative.</p>
<p>The source is not available here for formatting reasons; click <a href="http://www.gertschepens.be/android-dictionary-files">the Perl script</a> link!</p>
<p>Once we have a decent .xml, all we need to do is convert it to the necessary .dict format, which is described in the Softpedia text; and the necessary software is in their repositories.</p>
<p>After this, we have a valid main.dict file, ready to be compiled into a LatinIME pack. Compiling all languages into the pack will not be possible due to very limited space on the system partition (My magic has about 1 MB free space on its /system partition), so a solution will have to be found to store the dictionary files out of the LatinIME keyboard apk. (which is preferable at any rate!) My dutch dictionary was submitted to CM but will probably not make it in until the external/internal dictionary problem is solved! (in the mean while, Im using a home-rolled version! The default CM keyboard with added raw-nl, currently available <a href="http://files.cone.be/2010/LatinIME.apk">here</a>)</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.cone.be/2010/08/20/creating-dutch-dictionary-for-android/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Where are the Keyboard Dictionaries in #Android?</title>
		<link>http://blog.cone.be/2010/08/19/android-keyboard-dictionaries/</link>
		<comments>http://blog.cone.be/2010/08/19/android-keyboard-dictionaries/#comments</comments>
		<pubDate>Thu, 19 Aug 2010 19:02:35 +0000</pubDate>
		<dc:creator>Gert</dc:creator>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[Planet]]></category>

		<guid isPermaLink="false">http://blog.cone.be/?p=4337</guid>
		<description><![CDATA[
I love the Froyo multiple languages keyboard feature! Its AWESOME, sliding a finger over the keyboard to change language .. Awesome!
If your specific dictionary is in there. Which it probably isnt, since there are only 6 dictionaries in the default keyboard. And Dutch isnt in there. Dutch is in several other keyboards, like the HTC [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://developer.android.com/sdk/android-2.2-highlights.html"><img class="alignright" title="Multiple Languages" src="http://developer.android.com/sdk/images/2.2/22keyboard.png" alt="" width="320" height="306" /></a><br />
I love the <a href="http://developer.android.com/sdk/android-2.2-highlights.html">Froyo multiple languages keyboard feature</a>! Its AWESOME, sliding a finger over the keyboard to change language .. Awesome!<br />
If your specific dictionary is in there. Which it probably isnt, since there are only 6 dictionaries in the default keyboard. And Dutch isnt in there. Dutch is in several other keyboards, like the HTC one, but sadly there is no shared space where these dictionaries live, in the contrary, they all reside in the .apk that contains the keyboard.</p>
<p>By opening <em>/system/app/LatinIME.apk</em> (as found in CyanogenMod), we find out that the dictionaries are in the .apk under the <em>res</em> directory. While we&#8217;re there, someone mentioned the availability of more dicts might be a size issue, but I dont think so since they&#8217;re all quite moderate in size:</p>
<ul>
<li>raw-de: 739K</li>
<li>raw-en: 822K</li>
<li>raw-es: 768K</li>
<li>raw-fr: 775K</li>
<li>raw-it: 688K</li>
<li>raw-sv: 911K</li>
</ul>
<p>Also, the custom words are saved in a database at <em>/data/data/com.android.inputmethod.latin/databases/auto_dict.db</em></p>
<p>Now, looking to add a dutch dictionary, I went looking in the <a href="http://source.android.com/">AOSP</a>. The LatinIME source is in <em>./packages/inputmethods/LatinIME</em> and contains a <em>./packages/inputmethods/LatinIME/dictionaries</em> directory. I expected to find the dictionary files there, but it only contains a <a href="http://android.git.kernel.org/?p=platform/packages/inputmethods/LatinIME.git;a=blob;f=dictionaries/sample.xml;h=85233b63a8b8a1043fceae592b567b93ee275504;hb=HEAD">sample.xml</a> file. So no .xml dictionaries. The aforementioned res directory is at <em>./packages/inputmethods/LatinIME/java/res/</em> but contains none of the raw-lang directories.<br />
The dictionaries do not appear to be part of the AOSP. I guess Google is not able to open source these?</p>
<p>While searching (the interwebs and IRC) I also discovered that a lot of other people (<a href="http://code.google.com/p/cyanogenmod/issues/detail?id=1827">Issue 1827: add dictionaries for other locales (or make it easier for users to do so)</a> &#8211; Im d.gen&#8230; in that thread) were looking to add their language to the code tree and that some people had solved the problem by just rolling a custom LatinIME (<a href="http://code.google.com/p/softkeyboard/">Softkeyboard</a>). I dont like that option, however since I&#8217;d rather strengthen the default tree instead of splitting from it and updating the code after each AOSP update.</p>
<p>CyanogenMod however does have the dictionaries and so I checked out the CyanogenMod tree. it took me a while to find out where they were as I was expecting them to be in the paths I mentioned before, but no such luck. Apparently (and this makes sense,) the CM specific files are in the <em>./vendor/cyanogen</em> directory, the binary dictionaries in </p>
<blockquote><p>
./vendor/cyanogen/overlay/common/packages/inputmethods/LatinIME/java/res/raw-sv/main.dict<br />
./vendor/cyanogen/overlay/common/packages/inputmethods/LatinIME/java/res/raw-de/main.dict<br />
./vendor/cyanogen/overlay/common/packages/inputmethods/LatinIME/java/res/raw-fr/main.dict<br />
./vendor/cyanogen/overlay/common/packages/inputmethods/LatinIME/java/res/raw-en/main.dict<br />
./vendor/cyanogen/overlay/common/packages/inputmethods/LatinIME/java/res/raw-it/main.dict<br />
./vendor/cyanogen/overlay/common/packages/inputmethods/LatinIME/java/res/raw-es/main.dict
</p></blockquote>
<p>So. <strong>How to add new dictionaries to Android?</strong></p>
<ul>
<li>Either in AOSP under <em>packages/inputmethods/LatinIME/dictionaries/</em> as .xml files (preferable),</li>
<li>under <em>packages/inputmethods/LatinIME/java/res/</em> as binary files</li>
<li>or if that turns out to be impossible for some reason, adding them to CM in the respective <em>vendor/cyanogen/overlay/common/packages/inputmethods/LatinIME/</em> directories (so that at least CM has the extended languages).</li>
</ul>
<p>The ideal situation however would be to split the dictionaries from the keyboards and put them somewhere where any application might use them; making it possible to install new dictionary packs (eg DutchDictionary.apk) from the market, thus solving the whole dictionary problem. Maybe by adding them in <em>/data/data/com.android.inputmethod.latin/databases/</em> although there is probably a performance reason for them not being there in the first place?<br />
Anyhow, in the mean while, we do need the dictionaries! So lets not wait for this and add the data to AOSP now <img src='http://blog.cone.be/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Im wondering though why the Softkeyboard people dont add their dictionaries to AOSP.. I do see the benefit of keeping it available in the market as a separate app, ie making it available to every android user instead of those &#8220;few&#8221; tinkerers running the latest AOSP (or mods based on it.)</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.cone.be/2010/08/19/android-keyboard-dictionaries/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>The Wonderful Telenet detailed usage view.</title>
		<link>http://blog.cone.be/2010/08/17/the-wonderful-telenet-detailed-usage-view/</link>
		<comments>http://blog.cone.be/2010/08/17/the-wonderful-telenet-detailed-usage-view/#comments</comments>
		<pubDate>Tue, 17 Aug 2010 21:15:53 +0000</pubDate>
		<dc:creator>Gert</dc:creator>
				<category><![CDATA[Interwebs]]></category>
		<category><![CDATA[Planet]]></category>

		<guid isPermaLink="false">http://blog.cone.be/?p=4334</guid>
		<description><![CDATA[I dont get it. Telenet has this Wonderful detail view. Im not on the unlimited plan and I can see my downloading habits in this great graph, How much (yeah, thats 83G this month), what type of volume, .. Its all there.

Then Why the Fuck do I have friends, paying more than I do, NOT getting that [...]]]></description>
			<content:encoded><![CDATA[<p>I dont get it. Telenet has this Wonderful detail view. Im not on the unlimited plan and I can see my downloading habits in this great graph, How much (yeah, thats 83G this month), what type of volume, .. Its all there.</p>
<p><a href="http://blog.cone.be/wp-content/uploads/2010/08/telemeter_detail.png"><img class="aligncenter size-full wp-image-4333" title="telemeter_detail" src="http://blog.cone.be/wp-content/uploads/2010/08/telemeter_detail.png" alt="" width="488" height="628" /></a></p>
<p>Then Why the Fuck do I have friends, paying more than I do, NOT getting that info?</p>
<p>The answer seems very simple.. because they dont want us to know exactly what the &#8220;Fair Use&#8221; numbers are. Keeping a foot in the door to stop anyone under the flag of data usage reasons (Your arrow points red, You only get 10Gb for the rest of the month,) whenever they like. Or can anyone point me to an official reason?</p>
<p>And oh yeah, you re paying more to have them treat you like that.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.cone.be/2010/08/17/the-wonderful-telenet-detailed-usage-view/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The internet is a creative and often cruel place!</title>
		<link>http://blog.cone.be/2010/08/17/the-internet-is-a-creative-and-often-cruel-place/</link>
		<comments>http://blog.cone.be/2010/08/17/the-internet-is-a-creative-and-often-cruel-place/#comments</comments>
		<pubDate>Tue, 17 Aug 2010 19:27:37 +0000</pubDate>
		<dc:creator>Gert</dc:creator>
				<category><![CDATA[Interwebs]]></category>
		<category><![CDATA[Planet]]></category>

		<guid isPermaLink="false">http://blog.cone.be/?p=4329</guid>
		<description><![CDATA[And documenting the most popular and often most cruel pieces of creativity is http://knowyourmeme.com/
And there are some AMAZING things on here. Do read the dedicated pages however, the base video might be worth watching, but the epic part is what happens with it afterwards. Peoples reactions, follow up videos, remixes or parody..
From the very funny
Lying [...]]]></description>
			<content:encoded><![CDATA[<p>And documenting the most popular and often most cruel pieces of creativity is <a href="http://knowyourmeme.com/">http://knowyourmeme.com/</a></p>
<p>And there are some AMAZING things on here. Do read the dedicated pages however, the base video might be worth watching, but the epic part is what happens with it afterwards. Peoples reactions, follow up videos, remixes or parody..</p>
<p>From the very funny</p>
<blockquote><p><a href="http://knowyourmeme.com/memes/lying-down-game">Lying Down Game</a> is a mass-participatory meme that involves having one’s photograph taken whilst lying rigidly face down in public space and then sharing the image via internet. Since becoming popular through <a href="http://www.facebook.com/group.php?gid=5989617014#/group.php?v=photos&amp;gid=5989617014">Facebook</a> around June 2009, the viral game has spawned thousands of photos of people lying flat in public landscapes across the world. The official Facebook Group hosts over 19,000 pictures.</p></blockquote>
<p>to the Extremely Cruel (but, forgive me, also very funny)</p>
<blockquote><p>Jessi &#8220;POP A GLOCK AND MAKE A BRAIN SLUSHY&#8221; Slaughter<br />
<object width="640" height="385"><param name="movie" value="http://www.youtube.com/v/hQKro8WEZ3I&#038;rel=0&#038;color1=0xb1b1b1&#038;color2=0xd0d0d0&#038;hl=en_US&#038;feature=player_embedded&#038;fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowScriptAccess" value="always"></param><embed src="http://www.youtube.com/v/hQKro8WEZ3I&#038;rel=0&#038;color1=0xb1b1b1&#038;color2=0xd0d0d0&#038;hl=en_US&#038;feature=player_embedded&#038;fs=1" type="application/x-shockwave-flash" allowfullscreen="true" allowScriptAccess="always" width="640" height="385"></embed></object><br />
What happened next?<br />
Check knowyourmeme.com: <a href="http://knowyourmeme.com/memes/jessi-slaughter">Jessi Slaughter</a>
</p></blockquote>
<p>Its brutal. Its what happens when a 11yo goes wild and unsupervised on YouTube. You done goofed!</p>
<p>and</p>
<blockquote><p>Antoine Dodson<br />
<object width="640" height="385"><param name="movie" value="http://www.youtube.com/v/VXPgjsB0Xm0&#038;color1=0xb1b1b1&#038;color2=0xd0d0d0&#038;hl=en_US&#038;feature=player_embedded&#038;fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowScriptAccess" value="always"></param><embed src="http://www.youtube.com/v/VXPgjsB0Xm0&#038;color1=0xb1b1b1&#038;color2=0xd0d0d0&#038;hl=en_US&#038;feature=player_embedded&#038;fs=1" type="application/x-shockwave-flash" allowfullscreen="true" allowScriptAccess="always" width="640" height="385"></embed></object><br />
What happened next?<br />
Check knowyourmeme.com: <a href="http://knowyourmeme.com/memes/antoine-dodson-bed-intruder">Antoine Dodson</a>
</p></blockquote>
<p>All n all the guy is some sort of a hero. He saved his sister and Im very glad he s taking the whole thing very well. Also the rap Rules <img src='http://blog.cone.be/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' />  Kudos to Kidstatic and the Gregory Brothers! Hide ya kids, hide ya wife and hide ya husband too! Hillarious!!!</p>
<p>And our own <a href="http://knowyourmeme.com/memes/kimberley-vlaeminck-56-stars">Kimberley Vlaeminck</a> is on there too!</p>
<p>Gotta love <a href="http://www.youtube.com/">Youtube</a>. Gotta love <a href="http://www.4chan.org/">4chan</a> <img src='http://blog.cone.be/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' />  </p>
<p>In the end, &#8220;know your meme&#8221; is a cautionary tale to people around the world. And I guess, an extra reminder to parents too.. Watch the fuck out with the internets, coz once its on there, its on there! And if its a big cockup; EVERYONE ll know about it, everyone will have an opinion about it. And you can be sure there ll be some crazy ass derivative stuffs made on top of it!</p>
<p>Its great to see the worlds population create with whatever mad technologies are thrown out there! Its like a million monkeys with a typewriter and one of them accidentally writing Shakespeare. But with the internet bringing it to our homes and the rest of the monkeys flocking towards the awesome, weeding out the crap!</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.cone.be/2010/08/17/the-internet-is-a-creative-and-often-cruel-place/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Really updating the Hero</title>
		<link>http://blog.cone.be/2010/07/22/really-updating-the-hero/</link>
		<comments>http://blog.cone.be/2010/07/22/really-updating-the-hero/#comments</comments>
		<pubDate>Thu, 22 Jul 2010 22:27:35 +0000</pubDate>
		<dc:creator>Gert</dc:creator>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[Planet]]></category>

		<guid isPermaLink="false">http://blog.cone.be/?p=4291</guid>
		<description><![CDATA[After the dissapointments and sparkle of hope I talked about in &#8220;Updating the Hero&#8221; earlier, I kept a close watch on the site with that crontab I described. (damn, what machine is that running on again? .. probably the Soekris&#8230;) The crontab yielded results several times, but it was never the update I was waiting [...]]]></description>
			<content:encoded><![CDATA[<p>After the dissapointments and sparkle of hope I talked about in &#8220;<a href="http://blog.cone.be/2010/06/24/updating-the-hero/">Updating the Hero</a>&#8221; earlier, I kept a close watch on the site with that crontab I described. (damn, what machine is that running on again? .. probably the Soekris&#8230;) The crontab yielded results several times, but it was never the update I was waiting for. Tired of waiting, I mailed the HTC guys again and got the following reply today!</p>
<blockquote><p><a href="http://www.htc.com/europe/SupportDownload.aspx?p_id=283&#038;cat=2&#038;dl_id=996">http://www.htc.com/europe/SupportDownload.aspx?p_id=283&#038;cat=2&#038;dl_id=996</a> pobeert u de bovenste link met uw serienummer dit zou moeten werken</p></blockquote>
<p>Approximate Translation: Please try the above URL, this should work for your serial number</p>
<p>So I did and the download worked! I now have the necessary files and am preparing the Hero for updating. I dont like that it requires Windows, but Virtualbox up and running solved that too.</p>
<p>After some backing up (the upgrade apparently destroys all data and you cant be too sure so I backed up the SD too.) we re ready to Go! (More breaking news as the matter evolves!)</p>
<p>I guess the whole HTC sync to Virtualbox doesnt work as easy as I hoped &#8211; Sync and the phone dont find each other as they should.. I guess Ill have to find a Windows computer <img src='http://blog.cone.be/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> </p>
<p>But at least I now have what should be a working upgrade file for my wifes Belgian HTC Hero :s</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.cone.be/2010/07/22/really-updating-the-hero/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Just another Telenet disappointment..</title>
		<link>http://blog.cone.be/2010/07/13/just-another-telenet-disappointment/</link>
		<comments>http://blog.cone.be/2010/07/13/just-another-telenet-disappointment/#comments</comments>
		<pubDate>Tue, 13 Jul 2010 18:08:15 +0000</pubDate>
		<dc:creator>Gert</dc:creator>
				<category><![CDATA[Interwebs]]></category>
		<category><![CDATA[Planet]]></category>

		<guid isPermaLink="false">http://blog.cone.be/?p=4271</guid>
		<description><![CDATA[The new Telenet usage formulas are up. (Probably for a while already but I just discovered today.) Ive got a 80Gb download limit now; others are unlimited.
Unlimited internet? Well, no.

Turbonet and up customers can enjoy &#8220;Free Downloading&#8221;. You can now choose to pay for the perception of unlimited downloading. There still is a limit but [...]]]></description>
			<content:encoded><![CDATA[<p>The new <a href="http://telenet.be/219/0/1/nl/thuis/internet.html">Telenet usage formulas</a> are up. (Probably for a while already but I just discovered today.) Ive got a 80Gb download limit now; others are unlimited.</p>
<p>Unlimited internet? Well, no.</p>
<p><a href="http://blog.cone.be/wp-content/uploads/2010/07/telemeter.png"><img src="http://blog.cone.be/wp-content/uploads/2010/07/telemeter.png" alt="" title="telemeter" width="583" height="673" class="aligncenter size-full wp-image-4272" /></a></p>
<p>Turbonet and up customers can enjoy &#8220;Free Downloading&#8221;. You can now choose to pay for the perception of unlimited downloading. There still is a limit but they promise that that limit is so far beyond what you would download as a normal person that you will never run into the limit. And they wont set the bar. They will tally the users with similar packs and see to it that you dont over-use (twice the average use) compared to those peers.</p>
<p>Thats not unlimited, they merely made the barrier variable and invisible!</p>
<blockquote><p>(1) De term “Vrij downloaden” betekent dat je een zeer grote hoeveelheid gegevens via het netwerk van Telenet kan doorsturen en ontvangen. Enkel bij buitensporig volumeverbruik waarbij het comfort van andere abonnees in het gedrang kan komen, zal Telenet je vragen je verbruik aan te passen. </p>
<p>Onder buitensporig volumeverbruik verstaan we verbruik dat minstens het dubbele bedraagt van het gemiddeld volumeverbruik van alle abonnees van je internetproduct. Telenet behoudt zich het recht voor om bij buitensporig volumeverbruik, wat dynamisch bepaald wordt en afhangt van het beschikbare lokale netwerkvolume, de downloadsnelheid te verlagen naar minimaal 512 Kbps tot wanneer de volgende aanrekeningsperiode begint. </p>
<p>“Vrij downloaden” mag enkel voor privédoeleinden gebruikt worden en in volledige overeenstemming gebeuren met de algemene voorwaarden en de gedragscode van Telenet. Dit betekent ondermeer dat de abonnee enkel legale gegevens mag verspreiden.<br />
Source: <a href="http://telenet.be/219/0/1/nl/thuis/internet.html">http://telenet.be/219/0/1/nl/thuis/internet.html</a></p></blockquote>
<p>My main problem here is the perception. This new formula is utterly misleading and frustrating. They appear to be offering unlimited data but instead they offer an invisible and variable barrier. One could say that this is necessary as to not slow down other users (in fact they say so themselves) but that&#8217;s turning things around. The consumer pays for a service, if that service-level is impossible to maintain on the current Telenet network; that network is at fault and not the users for using it. Ergo upgrading the network instead of throttling the users.</p>
<p>Now, There is nothing wrong with a more communal approach. We, the Telenet users, use this service as a group; the resources are limited and we all want decent speed. (And if memory serves me well, Telenet did start out like that..) so we ll just all be social about it and not overdo the downloading. And its even better if Telenet provides us the tools to do that..<br />
But thats not what they re selling; thats not what they re advertising!</p>
<p>On top of that, their whole concept of fair use is measured using a set of parameters that are not exactly clear. Their meter shows your behavior up till the time of the month where you check it. If the meter is red, that means that if you keep up that downloading behavior they might <a href="http://onlinesupport.telenet.be/eCustomer/iq/telenet/request.do?session={0114e410-8e6d-11df-e22d-000000000000}&#038;event=1&#038;view(4010)=c{a56b4010-8425-11df-71a8-000000000000}&#038;varset(1)=pobj:{cf80cb00-843d-11df-71a8-000000000000}&#038;varset(2)=origin:main&#038;forward=case&#038;varset(3)=usergroup:End%20Customers%20-%20Anonymous&#038;varset(4)=user:anonuser">throttle your speed</a> at some time till the end of the month. Or at the very least you will be asked to change your use. Green means you&#8217;re up to par with your fellow users. (Telenet Helpdesk Page: <a href="http://onlinesupport.telenet.be/eCustomer/iq/telenet/request.do?session={0114e410-8e6d-11df-e22d-000000000000}&#038;event=1&#038;view(4320)=c{55394320-8a7f-11df-cb0d-000000000000}&#038;varset(1)=pobj:{763842b0-ec6a-11dd-47ee-000000000000}&#038;varset(2)=origin:main&#038;forward=case&#038;varset(3)=usergroup:End%20Customers%20-%20Anonymous&#038;varset(4)=user:anonuser">Hoe interpreteer ik de nieuwe Telemeter voor abonnementen met vrij downloaden?</a>)<br />
&#8220;Buitensporig Volumegebruik&#8221; means more than twice the average your fellow users are downloading. But since the time of day still factors in, its obviously not that simple? So how is this number being computed? And where can I see the numbers and all the data that factors into it?<br />
Today? Nowhere.</p>
<p>A quick search trough the dredges of their online support quickly turns up the introduction of the &#8220;<a href="http://onlinesupport.telenet.be/eCustomer/iq/telenet/request.do?session={0114e410-8e6d-11df-e22d-000000000000}&#038;event=1&#038;view(0e00)=c{611d0e00-0f3d-11df-c968-000000000000}&#038;varset(1)=pobj:{cf80cb00-843d-11df-71a8-000000000000}&#038;varset(2)=origin:main&#038;forward=case&#038;varset(3)=usergroup:End%20Customers%20-%20Anonymous&#038;varset(4)=user:anonuser">Fair Use Policy</a>&#8221; concept. With <a href="http://onlinesupport.telenet.be/eCustomer/iq/telenet/request.do?session={0114e410-8e6d-11df-e22d-000000000000}&#038;event=1&#038;view(3540)=c{0d8b3540-8419-11df-71a8-000000000000}&#038;varset(1)=pobj:{cf80cb00-843d-11df-71a8-000000000000}&#038;varset(2)=origin:main&#038;forward=case&#038;varset(3)=usergroup:End%20Customers%20-%20Anonymous&#038;varset(4)=user:anonuser">tips on how to use the service fairly</a>. The question about what the actual limit finally is, is answered in the help: &#8220;<a href="http://onlinesupport.telenet.be/eCustomer/iq/telenet/request.do?session={0114e410-8e6d-11df-e22d-000000000000}&#038;event=1&#038;view(77d0)=c{d1e077d0-843b-11df-71a8-000000000000}&#038;varset(1)=pobj:{cf80cb00-843d-11df-71a8-000000000000}&#038;varset(2)=origin:main&#038;forward=case&#038;varset(3)=usergroup:End%20Customers%20-%20Anonymous&#038;varset(4)=user:anonuser">Dat hangt af van je internetgedrag en wanneer je vooral surft: tijdens drukke of minder drukke periodes. Aangezien niet iedereen hetzelfde internetgedrag heeft, is het niet mogelijk om er 1 cijfer op te plakken.</a>&#8221; Which is about the same as saying &#8220;we ve got some math to get there, but we d rather not tell you..&#8221; Sure sounds a lot like the Nighttime/Daytime counter renamed to regular and peak time.</p>
<p>Its a play straight out of their American colleagues book. They call it unlimited, add a vague &#8220;Fair Use&#8221; clause and sell the same product as before, but with a higher limit, less information, a different meter and a new point of view.</p>
<p>The new provider commercial buzz words all float around unlimited downloading; no caps.<br />
Yet these are invisible, variable download caps that we re getting instead.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.cone.be/2010/07/13/just-another-telenet-disappointment/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Lost files on my Android phone</title>
		<link>http://blog.cone.be/2010/06/28/lost-files-on-my-android-phone/</link>
		<comments>http://blog.cone.be/2010/06/28/lost-files-on-my-android-phone/#comments</comments>
		<pubDate>Mon, 28 Jun 2010 18:54:08 +0000</pubDate>
		<dc:creator>Gert</dc:creator>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[Open Future]]></category>

		<guid isPermaLink="false">http://blog.cone.be/?p=4231</guid>
		<description><![CDATA[I took some interesting pictures the last few days. All sorts of exciting evidence and the base for a post on coffee   When earlier today I needed to produce some of that evidence; I discovered that my SD card or whatever was having a hickup. The files (admittedly, nearly 300 pictures) weren&#8217;t in [...]]]></description>
			<content:encoded><![CDATA[<p>I took some interesting pictures the last few days. All sorts of exciting evidence and the base for a post on coffee <img src='http://blog.cone.be/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  When earlier today I needed to produce some of that evidence; I discovered that my SD card or whatever was having a hickup. The files (admittedly, nearly 300 pictures) weren&#8217;t in the directory and needless to say that didnt make me happy :/</p>
<p>I got the card out of the phone (gotta love the fact that android doesn&#8217;t mind the hot swapping) and connected it to a reader and the laptop!</p>
<p>My hope that the files were there but just not being shown when using the phone was quickly squashed; the directory only contained the small amount of files I was able to see when connected to the phone</p>
<p><strong>LOST.DIR</strong><br />
Android apparently has a LOST.DIR construct (reminiscent of EXT3s lost+found) where they attach files that are on the disk but not attached to some valid directory.</p>
<p>Which is where all my lost pictures were <img src='http://blog.cone.be/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  (needless to say I cried hot tears of joy &#8211; LOL)</p>
<p>This does of course screw up your filenames, timestamps, file extensions, whatnot.. luckily the picture meta data has all the date and in most cases even gps data you might need <img src='http://blog.cone.be/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Gotta love android &#038; teh linuxiez <img src='http://blog.cone.be/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://blog.cone.be/2010/06/28/lost-files-on-my-android-phone/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Updating the Hero</title>
		<link>http://blog.cone.be/2010/06/24/updating-the-hero/</link>
		<comments>http://blog.cone.be/2010/06/24/updating-the-hero/#comments</comments>
		<pubDate>Thu, 24 Jun 2010 17:33:55 +0000</pubDate>
		<dc:creator>Gert</dc:creator>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[Planet]]></category>

		<guid isPermaLink="false">http://blog.cone.be/?p=4223</guid>
		<description><![CDATA[Its an exciting time for HTC Hero owners! The first part of the 2.1 upgrade is live, the second part is anxiously awaited.
Not so for my wife however since she wont be getting that upgrade.
The upgrade is Over The Air for every Hero owner with ROM version 2.73.405.5. Viona however was early to the party [...]]]></description>
			<content:encoded><![CDATA[<p>Its an exciting time for HTC Hero owners! The first part of the 2.1 upgrade is live, the second part is anxiously awaited.</p>
<p><strong>Not so for my wife however since she wont be getting that upgrade.</strong></p>
<p>The upgrade is Over The Air for every Hero owner with <a href="http://www.htc.com/europe/SupportDownload.aspx?p_id=283&amp;cat=2&amp;dl_id=671">ROM version 2.73.405.5</a>. Viona however was early to the party and does Not have this version. No problem, there is an update on the site; you need windows to update but Ill even ignore that part for now. The page checks your serial number and if its found to be valid, you ll apparently be able to download the update. When I put Vionas S/N, the site answers: 	&#8220;<span style="color: #ff0000;">Sorry, this software download is not suitable for your device.</span>&#8221; Annoying; since I know of other Belgian Hero owners who did get the OTA upgrade already.</p>
<p>I was of course sad, I&#8217;m on <a href="http://www.cyanogenmod.com/">CyanogenMod</a> 5.0.8 with my Magic, so Ive been enjoying the 2.1 for a while now and I was really happy that the annoying issues that she s been experiencing would be solved. (She only sees One Google calendar, not the other ones like mine; thus really denying her most of the reason why we got it, namely being able to see each other agendas.)</p>
<p>So I sent a friendly email to the HTC people; asking what up.. And received a friendly answer within days:</p>
<blockquote><p>Dank u wel voor uw vraag over de HTC Hero. Uw probleem is inderdaad bekend bij HTC, en momenteel wordt er hard gewerkt aan een oplossing. Dit zal waarschijnlijk een ROM upgrade naar 2.73 voor Belgische toestellen betekenen, en ik raad u aan de website in de gaten te houden. Ik verwacht dat de oplossing spoedig zal verschijnen</p></blockquote>
<p>Which sums to</p>
<ul>
<li>Your problem is known within HTC</li>
<li>We are working on a solution</li>
<li>This will probably entail an upgrade to 2.73 for Belgian machines</li>
<li>I advise you to watch the site and expect the solution to appear soon</li>
</ul>
<p>&nbsp;</p>
<p>More indefinite waiting? Thats a pitty; we ve been waiting for some months now :/ I guess keeping an eye on the <a href="http://www.htc.com/europe/supportdownloadlist.aspx?p_id=283&#038;act=sd&#038;cat=2">HTC Hero Support page</a> is all I can do :/</p>
<blockquote><p><strong>crontab</strong><br />
30 17 * * * curl -s &#8216;http://www.htc.com/europe/supportdownloadlist.aspx?p_id=283&#038;act=sd&#038;cat=2&#8242; -o /home/gert/htc_moni/nu &#038;&#038; echo DIFF  $(diff /home/gert/htc_moni/oud /home/gert/htc_moni/nu) | /bin/mail -s &#8220;HTC Monitoring&#8221; &#8220;me@guesswhat&#8221; &#038;&#038; mv /home/gert/htc_moni/nu /home/gert/htc_moni/oud</p></blockquote>
<p>Lets hope this doesnt take too long <img src='http://blog.cone.be/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> </p>
<p>And Why not upgrade to <a href="http://forum.xda-developers.com/forumdisplay.php?f=512">Vilainrom or whatever</a>? Trying to keep the waranty in tact for once <img src='http://blog.cone.be/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  And certainly since the official Hero 2.1 is SO close <img src='http://blog.cone.be/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://blog.cone.be/2010/06/24/updating-the-hero/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Our 2 @TheTunnelMovie frames!</title>
		<link>http://blog.cone.be/2010/06/17/our-2-thetunnelmovie-frames/</link>
		<comments>http://blog.cone.be/2010/06/17/our-2-thetunnelmovie-frames/#comments</comments>
		<pubDate>Thu, 17 Jun 2010 19:43:39 +0000</pubDate>
		<dc:creator>Gert</dc:creator>
				<category><![CDATA[Entertainment]]></category>
		<category><![CDATA[Planet]]></category>

		<guid isPermaLink="false">http://blog.cone.be/?p=4219</guid>
		<description><![CDATA[We just bought 2 &#8220;The Tunnel&#8221; frames!
The tunnel is a &#8220;Direct to Torrent&#8221; movie. The movie will be 90 minutes, which makes 135k frames and they re selling their frames at 1$ a frame!
I care a lot about exploring new ways of paying for music. The old system is passe, we ve had it, paying [...]]]></description>
			<content:encoded><![CDATA[<p>We just bought 2 &#8220;<a href="http://www.thetunnelmovie.net/">The Tunnel</a>&#8221; frames!</p>
<p>The tunnel is a &#8220;Direct to Torrent&#8221; movie. The movie will be 90 minutes, which makes 135k frames and they re <a href="http://www.thetunnelmovie.net/Buyout.php">selling their frames at 1$ a frame</a>!</p>
<p>I care a lot about exploring new ways of paying for music. The old system is passe, we ve had it, paying 20 euro for a stupid disk that barely works; stuffed with commercials back and forth; .. And this could be the solution. Think of a movie; write a script, make a trailer with nice actors and wait for the public to tell you they want to see your movie. Then put it up on the interwebs!<br />
This could be the future! <img src='http://blog.cone.be/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /><br />
And in the same spirit.. <a href="http://vodo.net/pioneerone">Pioneer one</a>: <em>An object in the sky spreads radiation over North America. Fearing terrorism, U.S. Homeland Security agents are dispatched to investigate and contain the damage. What they discover will have implications for the entire world.</em> Pioneer one is a Direct To Torrent series. The first episode was made, want them to make the 2nd ep? Donate some dough; and when they &#8216;re able to afford it, they ll make the next one.<br />
With a model like this, <a href="http://en.wikipedia.org/wiki/Deadwood_(TV_series)">Deadwood</a> would have had its final 4th season! As would <a href="http://en.wikipedia.org/wiki/Jericho_(TV_series)">Jericho</a>. And the <a href="http://www.wired.com/entertainment/music/news/2005/06/67986">Global Frequency</a> series would &#8216;ve seen more than just a pilot!<br />
Im curious to see how this turns out!</p>
<p>And I cant wait to see our frames! <img src='http://blog.cone.be/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Edit: We own frames 113813 and 96797 <img src='http://blog.cone.be/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /><br />
Check <a href="http://www.thetunnelmovie.net/frametally.php">the tally</a> to see who s on the list and how far they &#8216;re along!</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.cone.be/2010/06/17/our-2-thetunnelmovie-frames/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>gish linux how to install</title>
		<link>http://blog.cone.be/2010/05/25/gish-linux-how-to-install/</link>
		<comments>http://blog.cone.be/2010/05/25/gish-linux-how-to-install/#comments</comments>
		<pubDate>Tue, 25 May 2010 17:58:59 +0000</pubDate>
		<dc:creator>Gert</dc:creator>
				<category><![CDATA[Games]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Open Future]]></category>
		<category><![CDATA[Planet]]></category>

		<guid isPermaLink="false">http://blog.cone.be/?p=4160</guid>
		<description><![CDATA[While checking the Google Analytics for gertschepens.be, I noticed someone ending up there with a &#8220;gish linux how to install&#8221; search. Since I don&#8217;t answer that anywhere (nor do the interwebs), I thought Id do a lil Q&#38;A   This question isn&#8217;t really answered anywhere because its very straight forward!
The linux package is called gish153-1.tar.gz or something [...]]]></description>
			<content:encoded><![CDATA[<p>While checking the Google Analytics for <a href="http://www.gertschepens.be/2010-ubuntu-lucid-lynx-games">gertschepens.be</a>, I noticed someone ending up there with a &#8220;gish linux how to install&#8221; search. Since I don&#8217;t answer that anywhere (nor do the interwebs), I thought Id do a lil Q&amp;A <img src='http://blog.cone.be/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  This question isn&#8217;t really answered anywhere because its very straight forward!</p>
<p>The linux package is called <em>gish153-1.tar.gz</em> or something alike. You will of course need this to install the Gish! <img src='http://blog.cone.be/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  Buy it at <a href="http://www.chroniclogic.com/gish.htm">http://www.chroniclogic.com/gish.htm</a> (its worth it!)</p>
<p>Installing it is pretty straight forward, as it is simply extracting the archive and putting it where you want to keep it. The <a href="http://en.wikipedia.org/wiki/Tar_(file_format)">.tar.gz</a> (or .tgz) file is an archive file; a lot like the more known .zip or .tar files and extracting them is really simple.</p>
<p>You can extract the file in several easy ways</p>
<ul>
<li>By double clicking it. This will open the file roller or whatever its linked to depending on what linux distro you have. Click extract, choose where you want to extract it and done.</li>
<li>By right clicking the file and selecting &#8220;Extract Here&#8221;; this will extract Gish in the map you have the archive in.</li>
<li>By navigating the commandline to the map where the Gish archive is and typing &#8220;tar -xvzf gish153-1.tar.gz&#8221;. If this doesnt work, check that the archive is in that map and check if the archive name in the command here is correct. This will extract the Gish archive in the map run the command in.</li>
</ul>
<p>After extracting, you ll have a map with all the Gish files in. You can simply run the &#8220;gish&#8221; file to play. You can store this map anywhere you want, but do it somewhere logical because you ll navigate there every time you want to play it.</p>
<p>And thats how its installed. Simple, no <img src='http://blog.cone.be/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>Now, you ll probably also want to launch it from your Gnome menu and simply adding the link will have the Gish start without any graphics (this is because the paths are relative and the app as such doesnt find the files it needs.) You can create a new launcher using the menu editor under System &gt; Preferences &gt; Main menu; there select the Games menu and click &#8220;New Item&#8221;. You can quickly solve this by following the guide on their forums <a href="http://www.pontifex2.com/smf/index.php?PHPSESSID=dluj6on661gibe3m34723beln2&amp;topic=987.0">Gish Launcher in Ubuntu</a> or by using the following starting link for your app menu launcher command (The command assumes you have the Gish installed in your home directory; for example &#8220;/home/yourname/gish153&#8243;. If this is not where you put it; change that <img src='http://blog.cone.be/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  Bash will probably be in /bin but if it doesnt work, do check that too.)</p>
<blockquote><p>/bin/bash -c &#8220;cd ~/gish153/ &amp;&amp; ./gish&#8221;</p></blockquote>
<p>The mechanics are that you have bash change the working directory to the right path and start the gish from there. Ill see about posting this to the forum thread too, but I honestly dont have the time right now to do the registration dance &amp; all..</p>
<p>Id never have thought of writing this, but since there was a search hit for it, I guess its something people have questions about. I hope its of use to someone!</p>
<p>Edit: As blogs are a fleeting medium, this is maintained at <a href="http://www.gertschepens.be/how-install-gish-linux">gertschepens.be</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.cone.be/2010/05/25/gish-linux-how-to-install/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
