<?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"
	>

<channel>
	<title>Geekblok</title>
	<atom:link href="http://geekblok.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://geekblok.com</link>
	<description>B10m, BOK, Joffie - old geeks on a blog</description>
	<pubDate>Wed, 13 Aug 2008 07:43:27 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6</generator>
	<language>en</language>
			<item>
		<title>Fire Eagle opens to public</title>
		<link>http://geekblok.com/2008/08/13/fire-eagle-opens-to-public/</link>
		<comments>http://geekblok.com/2008/08/13/fire-eagle-opens-to-public/#comments</comments>
		<pubDate>Wed, 13 Aug 2008 07:43:27 +0000</pubDate>
		<dc:creator>B10m</dc:creator>
		
		<category><![CDATA[mobile]]></category>

		<category><![CDATA[web2.0]]></category>

		<category><![CDATA[fireeagle]]></category>

		<category><![CDATA[geo]]></category>

		<category><![CDATA[yahoo]]></category>

		<guid isPermaLink="false">http://geekblok.com/?p=104</guid>
		<description><![CDATA[

As some of you know, I&#8217;ve been messing with Fire Eagle for some time now already (I was lucky enough to get an invitation) and yesterday I noticed the site went public. That means you, yeah you, can sign up now too.

But what is and does Fire Eagle? Not a whole lot to be frank. [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://fireeagle.yahoo.net/"><img src="http://geekblok.com/images/fireeagle_logo.png" alt="Fire Eagle Logo" title="Fire Eagle Logo"  style="float:right; margin-left: 10px;" /></a></p>

<p>As some of you know, I&#8217;ve been messing with <a href="http://fireeagle.yahoo.net/">Fire Eagle</a> for some time now already (I was lucky enough to get an invitation) and yesterday I noticed the site went public. That means you, yeah you, can sign up now too.</p>

<p>But what is and does Fire Eagle? Not a whole lot to be frank. It&#8217;s basically a broker for your geo-data. It can share your position on earth with a number of other services, like wikinear (see <a href="http://geekblok.com/2008/04/28/wikinear/">previous post</a>).</p>

<p>I do applaud the initiative of Fire Eagle though. It&#8217;s a Yahoo! application and for a change, they didn&#8217;t simply buy a company. Nope, they&#8217;ve created this themselves! I&#8217;m happy to see this and hope the other big players will do the same: be creative, invent new stuff (<a href="http://knol.google.com/">knol</a> is not innovative at all, to me).</p>

<p>Since the launch of Fire Eagle, quite a few websites have joined the effort and use the <span class="caps">API </span>provided. That includes <a href="http://dopplr.com/>Dopplr</a> and <a href="http://pownce.com/">Pownce</a>. The application gallery is growing and I&#8217;m really interested to see what other websites will join and be created, inspired by this functionality.</p>]]></content:encoded>
			<wfw:commentRss>http://geekblok.com/2008/08/13/fire-eagle-opens-to-public/feed/</wfw:commentRss>
		</item>
		<item>
		<title>rm -rf</title>
		<link>http://geekblok.com/2008/06/18/rm-rf/</link>
		<comments>http://geekblok.com/2008/06/18/rm-rf/#comments</comments>
		<pubDate>Wed, 18 Jun 2008 20:28:17 +0000</pubDate>
		<dc:creator>Joffie</dc:creator>
		
		<category><![CDATA[guides]]></category>

		<category><![CDATA[technical]]></category>

		<category><![CDATA[alias]]></category>

		<category><![CDATA[bash]]></category>

		<category><![CDATA[function]]></category>

		<category><![CDATA[rm]]></category>

		<guid isPermaLink="false">http://geekblok.com/?p=102</guid>
		<description><![CDATA[Every once in the several years I am a little too quick at the keyboard and manage to wipe a part of my home directory. I refuse to alias rm to rm -i because I always know what I am doing (Yeah right).
Yesterday it happened again. I managed to ctrl-c quickly, so I didn&#8217;t loose [...]]]></description>
			<content:encoded><![CDATA[<p>Every once in the several years I am a little too quick at the keyboard and manage to wipe a part of my home directory. I refuse to alias <tt>rm</tt> to <tt>rm -i</tt> because I always know what I am doing (Yeah right).<br />
Yesterday it happened again. I managed to <tt>ctrl-c</tt> quickly, so I didn&#8217;t loose to many important files. It only got <tt>~/bin/</tt>. Most of those files I already had on a backup machine.</p>

I thought on what I could do to stop this from happening without converting to the alias <tt>rm=rm -i</tt>. The trick that I am now using is to make <tt>rm</tt> into a function, which I put into my <tt>~/.bash_profile</tt>:<span id="more-102"></span><br />
<blockquote>function rm ()
{<br />
if [[ ${1} =~ -(rf|fr) ]] &amp;&amp; [[ ${2} =~ ${HOME} ]]; then<br />
read -p &#8220;Hold it, are you sure you want this? [y|N]&#8221; I;<br />
if [[ ${I} =~ (y|Y) ]]; then<br />
sleep 5;<br />
$(which rm) $&#8226;;<br />
fi;<br />
else<br />
sleep 1;<br />
$(which rm) $&#8226;;<br />
fi<br />
}</blockquote>
What this does is question me whenever I am trying to use the <tt>-rf</tt> or <tt>-fr</tt> options with <tt>rm</tt> and that the second argument somehow matches my homedirectory.  After I am stating that I am fine with the <tt>rm</tt>, the function gives me five more seconds to thing about what I am about to do. If still I haven&#8217;t hit <tt>ctrl-c</tt> within those five seconds, I am sure I really meant the <tt>rm</tt> in the first place.

<p>Before you start using it, make sure that the function is sourced (hint: <tt>type rm</tt>). I am not responsible if you loose data if you decide to use this function.</p>]]></content:encoded>
			<wfw:commentRss>http://geekblok.com/2008/06/18/rm-rf/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Streaming your life with Yahoo! Pipes</title>
		<link>http://geekblok.com/2008/06/13/streaming-your-life-with-yahoo-pipes/</link>
		<comments>http://geekblok.com/2008/06/13/streaming-your-life-with-yahoo-pipes/#comments</comments>
		<pubDate>Fri, 13 Jun 2008 12:50:46 +0000</pubDate>
		<dc:creator>B10m</dc:creator>
		
		<category><![CDATA[guides]]></category>

		<category><![CDATA[web2.0]]></category>

		<category><![CDATA[feed]]></category>

		<category><![CDATA[lifestream]]></category>

		<category><![CDATA[pipes]]></category>

		<category><![CDATA[rss]]></category>

		<category><![CDATA[yahoo]]></category>

		<guid isPermaLink="false">http://geekblok.com/?p=101</guid>
		<description><![CDATA[With a plethora of social websites, it&#8217;s hard to keep track of everything. And like with all itches, people will try to make money out of it and come up with sites like FriendFeed, Lifestream, etc.

But what if you want to build something similar yourself? You&#8217;d have to download all your RSS feeds, combine them [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://l.yimg.com/us.yimg.com/i/us/pps/logo_1.gif" alt="Yahoo! Pipes logo" style="float: left; margin-right: 10px;" />With a plethora of social websites, it&#8217;s hard to keep track of everything. And like with all itches, people will try to make money out of it and come up with sites like <a href="http://friendfeed.com/">FriendFeed</a>, <a href="http://lifestream.fm/">Lifestream</a>, etc.</p>

<p>But what if you want to build something similar yourself? You&#8217;d have to download all your <span class="caps">RSS </span>feeds, combine them and most likely filter and sort them. <a href="http://pipes.yahoo.com/">Yahoo! Pipes</a> comes in handy!<br />
<span id="more-101"></span><br />
Yahoo! Pipes can do all the dirty work in aggregating the feeds for you and more importantly, it&#8217;s rather fun to use. So let&#8217;s get started. Say you want to use your Twitter, Last.fm, Flickr, Del.icio.us and blog feeds. First we&#8217;ll create a new <em>pipe</em> and simply fetch the feeds we need.</p>

<div style="text-align: center; margin-top: 20px; margin-bottom: 20px;"><img src="http://geekblok.com/images/pipes_01.png" alt="Pipes screenshot 1" /></div>

<p><strong>Tada!</strong> your feeds are now all combined and working together, but wait, I also want my blog&#8217;s posts in there, but only my posts (and in this case, not the ones by Bok and Joffie!). Ok, let&#8217;s just fetch the feed of this blog and only permit entries where I am listed as author.</p>

<div style="text-align: center; margin-top: 20px; margin-bottom: 20px;"><img src="http://geekblok.com/images/pipes_02.png" alt="Pipes screenshot 2" /></div>

<p>Not too hard, right? But you probably also want to sort it by date, and limit it to, say, three days? First we&#8217;ll drop all the &#8220;old&#8221; entries (older than three days).</p>

<div style="text-align: center; margin-top: 20px; margin-bottom: 20px;"><img src="http://geekblok.com/images/pipes_03.png" alt="Pipes screenshot 3" /></div>

<p>Ok, only sort the entries by date, and we&#8217;re done!</p>

<div style="text-align: center; margin-top: 20px; margin-bottom: 20px;"><img src="http://geekblok.com/images/pipes_04.png" alt="Pipes screenshot 4" /></div>

<p>Now we have one big feed of all your information, which you can publish somewhere (and probably format nice). The feed can be downloaded in <span class="caps">RSS, JSON </span>or <span class="caps">PHP </span>(serialized) format, so you can start from there.</p>

<p>Yahoo! Pipes now downloads and parses/handles the feeds for you, so you won&#8217;t have to do that. Very cool, very cool indeed. And of course the interface is a lot of fun and pleasing to the eye.</p>]]></content:encoded>
			<wfw:commentRss>http://geekblok.com/2008/06/13/streaming-your-life-with-yahoo-pipes/feed/</wfw:commentRss>
		</item>
		<item>
		<title>NOS mobile software</title>
		<link>http://geekblok.com/2008/06/03/nos-mobile-software/</link>
		<comments>http://geekblok.com/2008/06/03/nos-mobile-software/#comments</comments>
		<pubDate>Tue, 03 Jun 2008 20:41:20 +0000</pubDate>
		<dc:creator>B10m</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<category><![CDATA[mobile]]></category>

		<category><![CDATA[n95]]></category>

		<category><![CDATA[nokia]]></category>

		<category><![CDATA[nos]]></category>

		<guid isPermaLink="false">http://geekblok.com/?p=99</guid>
		<description><![CDATA[The NOS (Dutch public broadcasting system) recently launched a mobile application for their website. This includes their TV news show, Internet news feeds as well as weather forecasts, traffic information and an interface to Teletext.

Of course I had to give it a go on my Nokia N95 8GB and I must say I&#8217;m quite impressed! [...]]]></description>
			<content:encoded><![CDATA[<p>The <a href="http://www.nos.nl/"><span class="caps">NOS</span></a> (<a href="http://en.wikipedia.org/wiki/Nederlandse_Omroep_Stichting">Dutch public broadcasting system</a>) recently launched a mobile application for their website. This includes their TV news show, Internet news feeds as well as weather forecasts, traffic information and an interface to Teletext.</p>

<p>Of course I had to give it a go on my Nokia <span class="caps">N95</span> 8GB and I must say I&#8217;m quite impressed! The application works well. The interface is slick and the videos of the news are streaming without many problems. The <span class="caps">NOS </span>claims they will also stream the Olympic Games and see no reason why the great <a href="http://www.uitzendinggemist.nl/">uitzendinggemist.nl</a> couldn&#8217;t be streamed through the application as well. Wow!</p>

<p>So far, I&#8217;m quite happy to watch the morning news in the train, see the traffic jams I skip (by using the train) and browse Teletext.</p>

<p>Some screenshots:<br />
<img src="http://geekblok.com/images/nos-frontpage.jpg" alt="NOS Frontpage" style="margin-right: 10px;" />
<img src="http://geekblok.com/images/nos-teletext.jpg" alt='NOS Teletext'  /></p>

<p><span class="caps">NOS, </span>well done!</p>]]></content:encoded>
			<wfw:commentRss>http://geekblok.com/2008/06/03/nos-mobile-software/feed/</wfw:commentRss>
		</item>
		<item>
		<title>html: colgroup and col</title>
		<link>http://geekblok.com/2008/06/03/html-colgroup-and-col/</link>
		<comments>http://geekblok.com/2008/06/03/html-colgroup-and-col/#comments</comments>
		<pubDate>Tue, 03 Jun 2008 20:35:16 +0000</pubDate>
		<dc:creator>Joffie</dc:creator>
		
		<category><![CDATA[html]]></category>

		<category><![CDATA[technical]]></category>

		<category><![CDATA[col]]></category>

		<category><![CDATA[colgroup]]></category>

		<category><![CDATA[table]]></category>

		<guid isPermaLink="false">http://geekblok.com/?p=100</guid>
		<description><![CDATA[Last week I had to design a table where I&#8217;d liked to specify the with of a table. I used to do this by giving a class to the columns of the table like:

&#60;table&#62;
&#60;tr&#62;
&#60;td class=&#8221;col1&#8243;&#62;some data&#60;/td&#62;
&#60;td class=&#8221;col2&#8243;&#62;some more data&#60;/td&#62;
&#60;/tr&#62;
&#60;/table&#62;

And then to specify the layout of the td classes col1 and col2 from a stylesheet.

This week [...]]]></description>
			<content:encoded><![CDATA[<p>Last week I had to design a table where I&#8217;d liked to specify the with of a table. I used to do this by giving a class to the columns of the table like:</p>

<blockquote>&lt;table&gt;<br />
&lt;tr&gt;<br /><br />
&lt;td class=&#8221;col1&#8243;&gt;some data&lt;/td&gt;<br /><br />
&lt;td class=&#8221;col2&#8243;&gt;some more data&lt;/td&gt;<br /><br />
&lt;/tr&gt;<br /><br />
&lt;/table&gt;</blockquote>

<p>And then to specify the layout of the td classes col1 and col2 from a stylesheet.</p>

<p>This week I discovered that there is better way to accomplish the same, using <a title="colgroup" href="http://www.w3.org/TR/html401/struct/tables.html#h-11.2.4" target="_self">colgroup</a> and <a title="col" href="http://www.w3.org/TR/html401/struct/tables.html#edef-COL" target="_self">col</a>. Never knew that there was already a way to do this the &#8220;right way&#8221;. So my next tables will look like:</p>

<blockquote>&lt;table&gt;<br />
&lt;colgroup&gt;<br /><br />
&lt;col class=&#8221;col1&#8243;&gt;<br /><br />
&lt;col class=&#8221;col2&#8243;&gt;<br /><br />
&lt;/colgroup&gt;<br /><br />
&lt;tr&gt;<br /><br />
&lt;td&gt;some data&lt;/td&gt;<br /><br />
&lt;td&gt;some more data&lt;/td&gt;<br /><br />
&lt;/tr&gt;<br /><br />
&lt;/table&gt;</blockquote>

<p>It might not look too different in this small example, but I sure I will find some use for it.</p>]]></content:encoded>
			<wfw:commentRss>http://geekblok.com/2008/06/03/html-colgroup-and-col/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Wikinear</title>
		<link>http://geekblok.com/2008/04/28/wikinear/</link>
		<comments>http://geekblok.com/2008/04/28/wikinear/#comments</comments>
		<pubDate>Mon, 28 Apr 2008 08:54:43 +0000</pubDate>
		<dc:creator>B10m</dc:creator>
		
		<category><![CDATA[mobile]]></category>

		<category><![CDATA[firebot]]></category>

		<category><![CDATA[fireeagle]]></category>

		<category><![CDATA[travel]]></category>

		<category><![CDATA[twibble]]></category>

		<category><![CDATA[wifi]]></category>

		<category><![CDATA[wikinear]]></category>

		<category><![CDATA[wireless]]></category>

		<guid isPermaLink="false">http://geekblok.com/?p=98</guid>
		<description><![CDATA[I&#8217;ve mentioned FireEagle on this blog before and after I&#8217;m glad to see the first useful applications come up!

Recently I&#8217;ve visited Switzerland and Germany and used FireEagle and in both places, I&#8217;ve used the awesome new website called wikinear. First, find yourself an open WiFi network and update your location. I use twibble and FireBot. [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve mentioned <a href="http://fireeagle.yahoo.net/">FireEagle</a> on this blog <a href="http://geekblok.com/2008/03/15/b10m-going-mobile/">before</a> and after I&#8217;m glad to see the first useful applications come up!</p>

<p>Recently I&#8217;ve visited Switzerland and Germany and used FireEagle and in both places, I&#8217;ve used the awesome new website called <a href="http://wikinear.com/">wikinear</a>. First, find yourself an open WiFi network and update your location. I use <a href="http://www.twibble.de/">twibble</a> and <a href="http://twitter.com/firebot">FireBot</a>. The latter is a twitter bot and the twibble application makes it really easy to post your <span class="caps">GPS </span>coordinates to that bot.</p>

<p>After you&#8217;ve updated your location, go to wikinear.com and click a few times to get logged in. After that, wikinear will show you a little map (Google Maps) with some pointers of &#8220;interesting things&#8221; around you. The information is taken from Wikipedia (hence the name wikinear). This is of course very useful and fun!</p>

<p>Great, simple website!</p>]]></content:encoded>
			<wfw:commentRss>http://geekblok.com/2008/04/28/wikinear/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Ethernet over power: Homeplug</title>
		<link>http://geekblok.com/2008/04/14/ethernet-over-power-homeplug/</link>
		<comments>http://geekblok.com/2008/04/14/ethernet-over-power-homeplug/#comments</comments>
		<pubDate>Mon, 14 Apr 2008 09:40:32 +0000</pubDate>
		<dc:creator>Joffie</dc:creator>
		
		<category><![CDATA[ethernet]]></category>

		<category><![CDATA[technical]]></category>

		<category><![CDATA[cpl-85]]></category>

		<category><![CDATA[ethernet over power]]></category>

		<category><![CDATA[homeplug]]></category>

		<guid isPermaLink="false">http://geekblok.com/?p=96</guid>
		<description><![CDATA[
At home, the only way to reach my server on the attic from the ground floor seemed to be wireless. At least that is what I used for about a year. The connection let me down quite often, most likely because of the crappy wireless card I have in it (a Sweex wireless LAN PC [...]]]></description>
			<content:encoded><![CDATA[<div style="float:left; margin-right: 5px; margin-bottom: 5px;"><img class="alignright size-full wp-image-95" title="cpl" src="http://geekblok.com/images/2008/04/cpl.jpg" alt="CPL-85" width="147" height="125" /></div>
At home, the only way to reach my server on the attic from the ground floor seemed to be wireless. At least that is what I used for about a year. The connection let me down quite often, most likely because of the crappy wireless card I have in it (a Sweex wireless <span class="caps">LAN</span> PC card 140 Nitro <span class="caps">XM, </span>model: <span class="caps">LW141</span>).

<p>A few weeks ago my father came with a box of hardware that he did no longer use. One of the hardware things was a D-LINE <span class="caps">CPL</span>-85 of <a title="Dinh-Telecom" href="http://www.dinh.be/" target="_self">Dinh-Telecom</a>. It was just a case of plugging in both devices in the power outlet and the connection between my server and the network was there.</p>

<p>This is of course nice, but I wanted to know a little more about the devices. <span id="more-96"></span>It is coming with windows software that offers it the ability to set things like encryption. As I personally don&#8217;t use windows  I wondered whether there was Linux software that would do the same. On <a title="Freshmeat" href="http://freshmeat.net/" target="_self">freshmeat</a> I was unable to find any and a <tt>apt-cache search</tt> did not give any relevant hits either. The problem was that I did not know what to search for! So I decided to do some more testing. I installed the windows software on my girlfriends laptop, connected it to my wired network and the software recognized one of the <span class="caps">CPL</span>-85&#8217;s right away. As it sees it via my Linksys switch, it must be &#8220;seeing&#8221; it via some kind of IP connection.</p>

I decided to connect my laptop and the windows laptop to a hub and that one to the switch and see wether I would see traffic with wireshark. It showed that the protocol was Homeplug. That made <a title="Freshmeat search: homeplug" href="http://freshmeat.net/search/?q=homeplug&amp;section=projects&amp;Go.x=0&amp;Go.y=0" target="_self">searching</a> for other software a bit easier. There is both <a title="PLC" href="http://slist.lilotux.net/linux/plc/" target="_self">plc</a> (graphical) and <a title="plconfig" href="https://neon1.net/prog/plconfig.html" target="_self">plconfig</a> (cli interface). I tried plconfig first. Building it was the easy part. Just a simple make was enough. Starting it worked (as root) and gave the following result:<br />
<blockquote><strong>$ sudo ./plconfig -r eth0</strong>

<strong></strong><br />
- Parameters and Statistics response from 00:14:5c:80:9f:20<br />
Tx <span class="caps">ACK</span> Counter:             37550<br />
Tx <span class="caps">NACK</span> Counter:            33180<br />
Tx <span class="caps">FAIL</span> Counter:            0<br />
Tx Contention Loss Counter: 10774<br />
Tx Collision Counter:       7034<br />
Tx <span class="caps">CA3</span> Latency Counter:     10841<br />
Tx <span class="caps">CA2</span> Latency Counter:     21900<br />
Tx <span class="caps">CA1</span> Latency Counter:     55379<br />
Tx <span class="caps">CA0</span> Latency Counter:     0<br />
Rx Cumul. Bytes per 40-symbol Packet Counter: 77395170</blockquote>
It might be useful information to a lot of people, but not really to me. I decided to give <tt>plc</tt> a try. Building that a bit less easy. I needed to do a <tt>qmake</tt> before the <tt>make</tt> (as explained on the plc homepage). Then the compile failed with:<br />
<blockquote>net_pcap.cpp:29:20: fel: global.h: Filen eller katalogen finns inte

make: *** [net_pcap.o] Fel 1</blockquote>
This <tt>global.h</tt> file was included by <tt>net_pcap.cpp</tt> and is not part of  <tt>plc-0.1.3.tar.gz</tt>. Luckily it is included in the <tt>plc-0.1.2.tar.gz</tt> file so copied the file from the 0.1.2 version to the 0.1.3 directory, after which the build worked. (I e-mailed the author about this missing file)

Besides the gui (which is quite similar to the one on the windows laptop) it is also giving some information about the connection to <span class="caps">STDOUT</span>:<br />
<blockquote>add_mac start, mac : &#8220;00:14:5c:80:9f:20&#8243;
add_mac end<br />
<span class="caps">MID </span>=  24 (response)<br />
plc_send_mm : Get Channel capacities for transmit<br />
dest: &#8220;ff:ff:ff:ff:ff:ff&#8221;<br />
src : &#8220;00:18:DE:4C:15:8F&#8221;<br />
From 00:14:5c:80:9f:1f : 0&#215;2<br />
Vendor Specific Parameters<br />
<span class="caps">MID </span>=  24 (response)<br />
received channel capacities response mme for TX<br />
1 TX station(s)<br />
Station 0<br />
<span class="caps">MAC</span> 00:14:5c:80:9f:20<br />
TxBytesPerBlock = 2565<br />
TxBytesRate = 7 MBytes/s<br />
TxBitRate   = 61 MBits/s</blockquote>
On feature that is not there on the windows software is that this even worked wireless. It recognized one of the two <span class="caps">CPL</span>-85&#8217;s when my laptop was not connected wireless to the linksys.

<p>As shown, the connection speed is quite good. Not the 85 MBits/s that should be possible, but 61 MBits/s is not too far below that specs either.</p>]]></content:encoded>
			<wfw:commentRss>http://geekblok.com/2008/04/14/ethernet-over-power-homeplug/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Evernote</title>
		<link>http://geekblok.com/2008/04/13/evernote/</link>
		<comments>http://geekblok.com/2008/04/13/evernote/#comments</comments>
		<pubDate>Sun, 13 Apr 2008 09:46:21 +0000</pubDate>
		<dc:creator>B10m</dc:creator>
		
		<category><![CDATA[general]]></category>

		<category><![CDATA[search]]></category>

		<category><![CDATA[web2.0]]></category>

		<category><![CDATA[email]]></category>

		<category><![CDATA[evernote]]></category>

		<category><![CDATA[notes]]></category>

		<category><![CDATA[text recognition]]></category>

		<guid isPermaLink="false">http://geekblok.com/?p=93</guid>
		<description><![CDATA[BOK surprised me with an invitation email about a website I never noticed. The small mail suggested that I should check it out and maybe write a little about it here, due to absence of BOK this weekend.

So I did check it out and had no clue what to expect. The sign up was easy [...]]]></description>
			<content:encoded><![CDATA[<p><img src='http://preview.evernote.com/images/enlogo-beta.gif' alt='Evernote Logo' style='float: left; margin-right: 10px;' /><span class="caps">BOK </span>surprised me with an invitation email about <a href="http://www.evernote.com/">a website</a> I never noticed. The small mail suggested that I should check it out and maybe write a little about it here, due to absence of <span class="caps">BOK </span>this weekend.</p>

<p>So I did check it out and had <em>no</em> clue what to expect. The sign up was easy enough and after a few seconds, I was looking at my online &#8220;notebook&#8221; hosted by <a href="http://www.evernote.com/">Evernote</a>.</p>

<p>I&#8217;ve seen such dump sites before and they never really seemed to interest me for more than a minute. I know Joffie has his own wiki at home for dumping notes, and I have <span class="caps">CVS </span>and <span class="caps">SVN </span>software installed on my home machine(s) so I don&#8217;t really need this either. But then I found out it also offers text recognition within images. Now that&#8217;s something my `grep` can&#8217;t do, so this might be nice! Time to explore the service after all.<br />
<span id="more-93"></span><br />
<a href="http://www.evernote.com/">Evernote</a> allows you to email stuff to a special email address. The contents of the email will be added to your notebook. So let&#8217;s find out how good their text recognition really is.</p>

My first test was to send this image to my notebook. It&#8217;s a picture I recently made in a local McDonalds place. It has large bold text which, I think, shouldn&#8217;t be too hard to catch for them:<br />
<div style="text-align: center;"><a href="http://www.flickr.com/photos/b10m/2403946458/" title="Bepaal zelf of je hier solliciteert (by B10m)"><img src="http://farm4.static.flickr.com/3155/2403946458_75f7b9f447_m.jpg" title="Bepaal zelf of je hier solliciteert (by B10m)" alt="Bepaal zelf of je hier solliciteert (by B10m)" /></a></div>

And sure, they are able to capture the text. Searching for &#8217;solliciteert&#8217; gives me the correct image and they even highlight it nicely as shown in this screen capture:<br />
<div style="text-align: center;"><img src="http://geekblok.com/images/evernote_solliciteert.jpg" alt="Evernote search result" /></div>

Evernote does claim they can recognize handwritten text too though, so why not test that? I scribbled a little down and took a picture with my Nokia <span class="caps">N95.</span><br />
<div style="text-align: center;"><img src="http://geekblok.com/images/evernote_test.jpg" alt="Evernote search result" /></div>

After mailing the image, I could see it in my notebook (which happens extremely fast by the way), but will I be able to search for all the words? Except for the word &#8216;Geekblok&#8217;, all the words can be found.<br />
<div style="text-align: center;"><img src="http://geekblok.com/images/evernote_bok.jpg" alt="Evernote search result" /></div>

<p>Oh well, I&#8217;m still fairly impressed with this. Too bad it&#8217;ll probably won&#8217;t beat my wiki (yeah, just like Joffie, but I barely use it) and my svn repositories. Besides the text recognition, there&#8217;s nothing that really stands out here and I&#8217;m simply too paranoid to trust all my personal notes to a company (especially if they&#8217;re US-based, like Evernote).</p>

<p>If you need an invitation, just drop me a note. I still have 10 left and I&#8217;m fairly sure <span class="caps">BOK </span>has some catching dust too <img src='http://geekblok.com/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>]]></content:encoded>
			<wfw:commentRss>http://geekblok.com/2008/04/13/evernote/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Searchme Visual Search</title>
		<link>http://geekblok.com/2008/03/20/searchme-visual-search/</link>
		<comments>http://geekblok.com/2008/03/20/searchme-visual-search/#comments</comments>
		<pubDate>Thu, 20 Mar 2008 14:17:33 +0000</pubDate>
		<dc:creator>B10m</dc:creator>
		
		<category><![CDATA[search]]></category>

		<category><![CDATA[flash]]></category>

		<category><![CDATA[searchme]]></category>

		<guid isPermaLink="false">http://geekblok.com/2008/03/20/searchme-visual-search/</guid>
		<description><![CDATA[Today I received an invitation for Searchme. While currently in REAL beta (as they call it themselves), it looks very promising. The search index is around one billion pages (and growing each day) so not everything can be found (but hey, Geekblok is in there!).

Nonetheless this looks very cool and extremely useful. Will this be [...]]]></description>
			<content:encoded><![CDATA[<p>Today I received an invitation for <a href="http://searchme.com/">Searchme</a>. While currently in <em><span class="caps">REAL </span>beta</em> (as they call it themselves), it looks very promising. The search index is around one billion pages (and growing each day) so not everything can be found (but hey, Geekblok is in there!).</p>

<p>Nonetheless this looks very cool and extremely useful. Will this be the new way to search for information? Search 3.0, or not, I&#8217;ve made a little screencast of how it works. In the example, I search for <em>&#8220;scummvm&#8221;</em>.</p>

<div style="text-align: center;">
<img src="http://geekblok.com/wp-content/plugins/flash-video-player/default_video_player.gif" /><br />
</div>]]></content:encoded>
			<wfw:commentRss>http://geekblok.com/2008/03/20/searchme-visual-search/feed/</wfw:commentRss>
		</item>
		<item>
		<title>B10m going mobile</title>
		<link>http://geekblok.com/2008/03/15/b10m-going-mobile/</link>
		<comments>http://geekblok.com/2008/03/15/b10m-going-mobile/#comments</comments>
		<pubDate>Sat, 15 Mar 2008 16:50:26 +0000</pubDate>
		<dc:creator>B10m</dc:creator>
		
		<category><![CDATA[mobile]]></category>

		<category><![CDATA[fireeagle]]></category>

		<category><![CDATA[web]]></category>

		<category><![CDATA[yahoo]]></category>

		<category><![CDATA[zonetag]]></category>

		<guid isPermaLink="false">http://geekblok.com/2008/03/15/b10m-going-mobile/</guid>
		<description><![CDATA[For too long, I have ran around with cellphones that weren&#8217;t considered hip or cool. Only once before did I have a camera on my phone, but without an USB cable or bluetooth, transferring the horrible quality pictures were a no-go area. Time to change that! And so I did. I got a nice Nokia [...]]]></description>
			<content:encoded><![CDATA[<div style="float:left; margin-right: 5px; margin-bottom: 5px;"><a href='http://geekblok.com/images/2008/03/nokia-n95-8gb.jpg' title='nokia-n95-8gb.jpg'><img src='http://geekblok.com/images/2008/03/nokia-n95-8gb.thumbnail.jpg' alt='nokia-n95-8gb.jpg' /></a></div><p>For too long, I have ran around with cellphones that weren&#8217;t considered hip or cool. Only once before did I have a camera on my phone, but without an <span class="caps">USB </span>cable or bluetooth, transferring the horrible quality pictures were a no-go area. Time to change that! And so I did. I got a nice Nokia <span class="caps">N95</span> 8GB and am loving it every day (note: I have no experience with cool phones, so anything would probably be awesome to me).</p>

<p>The thing I like best is the WiFi adapter in there. Followed by the equally aweome <span class="caps">GPS </span>receiver. A new world opened, for there are so many nice things online that mobile users could use. In the few days I have been the owner of this device, I found the following great apps:</p>

<ul>
	<li><a href="http://zonetag.research.yahoo.com/">ZoneTag</a></li>
	<li><a href="http://fireeagle.yahoo.net/">FireEagle</a></li>
	<li><a href="http://www.fring.com/">Fring</a></li>
	<li><a href="http://mobile.yahoo.com/go">Yahoo! Go.</a></li>
</ul>

<p>ZoneTag let&#8217;s you upload your photos to Flickr, while geo-tagging them staight away. Woohoo!</p>

<p>FireEagle can record and share your physical location (which can be set by the previously mentioned ZoneTag). It&#8217;s fairly new and open by invitation only (if I am not mistaken). Since it&#8217;s so new, there&#8217;s not a whole lot to see yet, but imagine the possibilities for a programmer. No doubt this will expand fast and really cool applications will be build around it.</p>

<p>Fring is a nice messenger. If you&#8217;re online, why not have the ability to chat (and/or update your twitter account)?</p>

<p>Yahoo! Go, again a Yahoo! product, is as they say <em>&#8220;everything you need, all that you love&#8221;</em>. You can browse Flickr, send emails etc. etc.</p>

<p>Of course I&#8217;m biased and appreciate Yahoo! applications, but seriously, what companies beside Yahoo! really focus on the mobile market?</p>

<p>What other mobile applications are there? While waiting for comments, I&#8217;ll go play Monkey Island again, for ScummVM also works on the Nokia <span class="caps">N95 </span> <img src='http://geekblok.com/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>]]></content:encoded>
			<wfw:commentRss>http://geekblok.com/2008/03/15/b10m-going-mobile/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
