<?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>Qball's Weblog</title>
	<atom:link href="http://blog.sarine.nl/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.sarine.nl</link>
	<description>Beati pauperes spiritu</description>
	<lastBuildDate>Sun, 06 May 2012 19:09:30 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>Ubuntu 12.04</title>
		<link>http://blog.sarine.nl/2012/05/06/ubuntu-12-04/</link>
		<comments>http://blog.sarine.nl/2012/05/06/ubuntu-12-04/#comments</comments>
		<pubDate>Sun, 06 May 2012 19:09:24 +0000</pubDate>
		<dc:creator>Qball</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Grind My Gears]]></category>

		<guid isPermaLink="false">http://blog.sarine.nl/?p=1185</guid>
		<description><![CDATA[This is a &#8216;beg&#8217; to the ubuntu people. Please fix this: https://bugs.launchpad.net/ubuntu/+source/openbox/+bug/938379 bug. How can something that will close X and drop you back to the login manager be &#8216;medium&#8217;  priority.. I KNOW ubuntu is about unity now, but I like to get work done.. Both GNOME (gnome-shell eats up 100% and stays unresponsive for <a href="http://blog.sarine.nl/2012/05/06/ubuntu-12-04/"> read more <span class="meta-nav">&#187;</span></a>]]></description>
			<content:encoded><![CDATA[<p>This is a &#8216;beg&#8217; to the ubuntu people.</p>
<p>Please fix this: <a href="https://bugs.launchpad.net/ubuntu/+source/openbox/+bug/938379">https://bugs.launchpad.net/ubuntu/+source/openbox/+bug/938379</a> bug.</p>
<p>How can something that will close X and drop you back to the login manager be &#8216;medium&#8217;  priority..</p>
<p>I KNOW ubuntu is about unity now, but I like to get work done.. Both GNOME (gnome-shell eats up 100% and stays unresponsive for me on several 12.04 machine) and OPENBOX are now completely unusable for me. They cause data lost.</p>
<p>I am currently stuck with XFCE, but this is just pain and torture..</p>
<p>&nbsp;</p>
<p>TWxfbtmHnFey</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.sarine.nl/2012/05/06/ubuntu-12-04/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>YouLess: Get grips on your energy usage.</title>
		<link>http://blog.sarine.nl/2012/04/29/youless_grips/</link>
		<comments>http://blog.sarine.nl/2012/04/29/youless_grips/#comments</comments>
		<pubDate>Sun, 29 Apr 2012 18:18:34 +0000</pubDate>
		<dc:creator>Qball</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[YouLess]]></category>

		<guid isPermaLink="false">http://blog.sarine.nl/?p=1178</guid>
		<description><![CDATA[What is YouLess &#160; YouLess is a cheap and small energy meter you attach to your the energy-meter you get from your electricity company. It is a small device that you can attach (using Ethernet cable) to your network. For more information see the youless.nl website. The device has a few downsides;  a) it has <a href="http://blog.sarine.nl/2012/04/29/youless_grips/"> read more <span class="meta-nav">&#187;</span></a>]]></description>
			<content:encoded><![CDATA[<h1>What is YouLess</h1>
<div class="wp-caption alignleft" style="width: 170px"><img src="http://youless.nl/system/html/LS110-32c97910.jpg" alt="" width="160" height="160" /><p class="wp-caption-text">Image from youless.nl</p></div>
<div class="wp-caption alignright" style="width: 210px"><img src="http://youless.nl/system/html/meterkast-a6b33364.jpg" alt="" width="200" height="200" /><p class="wp-caption-text">Image from youless.nl</p></div>
<p>&nbsp;</p>
<p>YouLess is a cheap and small energy meter you attach to your the energy-meter you get from your electricity company. It is a small device that you can attach (using Ethernet cable) to your network. For more information see the <a href="youless.nl">youless.nl</a> website.</p>
<p>The device has a few downsides;  a) it has limited storage space, b) it has little visualization, c) you cannot do any analysis.</p>
<p>a,b,c can be solved by automatically uploading the data to <a href="http://www.bidgely.com/">bidgely</a>, but personally this is something I do not want.</p>
<p>So, as usual, I wrote I small tool that can get you some more insight in the energy usage.</p>
<p>&nbsp;</p>
<h1></h1>
<h1></h1>
<h1>EnergyPoint: A small tool to get insight</h1>
<p>&nbsp;</p>
<h2>Getting the data</h2>
<p>Because of the limited storage, it can only store 1 minute resolution data for the last hour, we need to store the data in a local db.</p>
<p>To get the data from the YouLess i use a cronjob that downloads data the past 30minutes every half hour. You can get the data in json format.<br />
I use:</p>
<pre>wget "http://192.150.0.40/V?f=j&amp;h=1" -O `date +%Y-%m-%d-%H%M-1.json`
wget "http://192.150.0.40/V?f=j&amp;h=2" -O `date +%Y-%m-%d-%H%M-2.json`</pre>
<p>This downloads data from the past hour every 20 minutes,  this makes sure I do not loose data points if the cronjob is late or missed.</p>
<p>EnergyPoint imports this data into a custom sqlite database and will make sure no duplicate data is stored.</p>
<p>Importing data is as simple as:</p>
<pre>ep import data/*.json</pre>
<p>&nbsp;</p>
<h2>Analyzing the data</h2>
<p>The following analyze are possible (I am looking to build more, ideas are welcome):</p>
<ul>
<li>    day:               Shows the average power consumption for each hour of the day.</li>
<li>    weekdays:   Shows the average power consumption for each day of the week.</li>
<li>    weeks:          Shows the energy consumption for each week of the year.</li>
<li>    months:       Shows the energy consumption for each month of the year.</li>
<li>    days:             Shows the energy consumption for each days of the year.</li>
<li>   pattern &lt;low&gt; &lt;high&gt;:  Show the intervals (in the form of a histogram) where spikes between low-high occurs.</li>
</ul>
<p>You can limit the the range these work on by specifying a range on the command-line:</p>
<ul>
<li>range &lt;start date&gt; &lt;stop date&gt;</li>
</ul>
<p>&nbsp;</p>
<p>So if you want to see the energy consumed on average per weekday over the past 2 weeks you can do: (numbers are dummy numbers)</p>
<pre>$ ep statistics weekdays range  4/16/2012 4/30/2012
Range:            16/04/2012 - 00:00 --&gt; 30/04/2012 - 00:00
Average power:      470.30 W
Energy consumed:    158.02 kWh
========== Week days ==========
Day:    Average:    Total:
 1      857.49 W     10.58 kWh
 2      766.46 W      8.40 kWh
 3      665.26 W     10.97 kWh
 4      779.53 W     11.71 kWh
 5      898.13 W     11.56 kWh
 6     1037.53 W     14.90 kWh
 7      870.62 W     10.89 kWh
===============================
Total:               79.10 kWh</pre>
<h2>Visualizing the data</h2>
<p>Beside printing data out, it can also plot graphs:</p>
<ul>
<li>points:         Plot all the data points. (use in combination with range, or it will be slow)</li>
<li>dayhours:    Shows the average power consumption for each hour of the day.</li>
<li>weekdays:    Shows the average power consumption for each day of the week.</li>
<li>weeks:           Shows the energy consumption for each week of the year.</li>
<li>days:              Shows the energy consumption for each day of the year.</li>
<li>months:        Shows the energy consumption for each month of the year.</li>
</ul>
<p>And extra options for each command:</p>
<ul>
<li>    range &lt;start date&gt; &lt;end date&gt;   Limit the evaluated data to a certain range.</li>
<li>    svg &lt;filename&gt;                  Outputs the graph to an SVG file.</li>
<li>    average                         Plot an average line.</li>
<li>    width &lt;width in px&gt;             The width of the output.</li>
<li>    height &lt;height in px&gt;           The height of the output.</li>
<li>    remove-avg:                     Tries to remove the &#8216;base&#8217; usage and show just the &#8216;spikes&#8217;. Only works for points plot.</li>
<li>    filter low high                    Only shows points that are between low and high. Only works with remove-avg in points plot.</li>
</ul>
<p>&nbsp;</p>
<p>So if you want a plot over the past day:</p>
<pre>./ep  plot points range 4/27/2012 4/28/2012 average svg plot1.svg</pre>
<div id="attachment_1182" class="wp-caption alignnone" style="width: 310px"><a href="http://blog.sarine.nl/wp-content/uploads/2012/04/plot1.png"><img class="size-medium wp-image-1182 " title="plot1" src="http://blog.sarine.nl/wp-content/uploads/2012/04/plot1-300x225.png" alt="" width="300" height="225" /></a><p class="wp-caption-text">Plot of 1 day.</p></div>
<h2></h2>
<h2>Todo</h2>
<p>There is still many things left todo in the tool, like cleanups, fix tooltips, etc. Help is (again) welcome.</p>
<p>It was written mostly on the train traveling from/to work. So do not be scared.</p>
<p>The code is written in: Vala, GTK 3, cairo, json-glib.</p>
<p>&nbsp;</p>
<h2>Download</h2>
<p>You can get it from github: <a href="https://github.com/DaveDavenport/YouLessEP">here</a></p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.sarine.nl/2012/04/29/youless_grips/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Squishybox: Squeezebox replacement</title>
		<link>http://blog.sarine.nl/2012/04/22/squishybox-squeezebox-replacement/</link>
		<comments>http://blog.sarine.nl/2012/04/22/squishybox-squeezebox-replacement/#comments</comments>
		<pubDate>Sun, 22 Apr 2012 16:57:32 +0000</pubDate>
		<dc:creator>Qball</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://blog.sarine.nl/?p=1176</guid>
		<description><![CDATA[My sd card broke down, my cross-build vm gone, so I had to re-do things. pre: configure the network in logitech gui. Do a first step on: https://github.com/DaveDavenport/squishybox/wiki/SqueezeBox-Touch (disable watchdog) &#160; Format an empty SD card. (I used ext3, because I am shutting down, rebooting etc alot.. normally use ext2 for better lifetime of the <a href="http://blog.sarine.nl/2012/04/22/squishybox-squeezebox-replacement/"> read more <span class="meta-nav">&#187;</span></a>]]></description>
			<content:encoded><![CDATA[<p>My sd card broke down, my cross-build vm gone, so I had to re-do things.</p>
<p>pre:<br />
configure the network in logitech gui.<br />
Do a first step on: <a href="https://github.com/DaveDavenport/squishybox/wiki/SqueezeBox-Touch">https://github.com/DaveDavenport/squishybox/wiki/SqueezeBox-Touch</a> (disable watchdog)</p>
<p>&nbsp;</p>
<ol>
<li>Format an empty SD card. (I used ext3, because I am shutting down, rebooting etc alot.. normally use ext2 for better lifetime of the card)</li>
<li>Extract the attached <a href="http://download.sarine.nl/squishybox-22-04-2012.tar.xz">file</a> to the SD card.  Edit squeezeos-boot.sh, to mount the music directory from the right location. (or disable that line if not used).</li>
<li>Pop it in the squeezebox and start it</li>
</ol>
<p>&nbsp;</p>
<p>This should give you a working MPD and simple GUI. Remote control will work.</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.sarine.nl/2012/04/22/squishybox-squeezebox-replacement/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>libmpdclient bitbake file.</title>
		<link>http://blog.sarine.nl/2012/04/22/libmpdclient-bitbake-file/</link>
		<comments>http://blog.sarine.nl/2012/04/22/libmpdclient-bitbake-file/#comments</comments>
		<pubDate>Sun, 22 Apr 2012 09:47:14 +0000</pubDate>
		<dc:creator>Qball</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://blog.sarine.nl/?p=1172</guid>
		<description><![CDATA[I love it is this simple: ?View Code BASH1 2 3 4 5 6 7 8 9 DESCRIPTION = &#34;Music Player Daemon (mpd) library&#34; HOMEPAGE = &#34;http://www.musicpd.org&#34; SECTION = &#34;console/multimedia&#34; LICENSE = &#34;GPLv2&#34; PR = &#34;r0&#34; &#160; SRC_URI = &#34;${SOURCEFORGE_MIRROR}/musicpd/libmpdclient-${PV}.tar.bz2&#34; &#160; inherit autotools binconfig]]></description>
			<content:encoded><![CDATA[<p>I love it is this simple:</p>

<div class="wp_codebox_msgheader"><span class="right"><sup><a href="http://www.ericbess.com/ericblog/2008/03/03/wp-codebox/#examples" target="_blank" title="WP-CodeBox HowTo?"><span style="color: #99cc00">?</span></a></sup></span><span class="left"><a href="javascript:;" onclick="javascript:showCodeTxt('p1172code2'); return false;">View Code</a> BASH</span><div class="codebox_clear"></div></div><div class="wp_codebox"><table><tr id="p11722"><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
</pre></td><td class="code" id="p1172code2"><pre class="bash" style="font-family:monospace;"> DESCRIPTION = <span style="color: #ff0000;">&quot;Music Player Daemon (mpd) library&quot;</span>
 HOMEPAGE = <span style="color: #ff0000;">&quot;http://www.musicpd.org&quot;</span>
 SECTION = <span style="color: #ff0000;">&quot;console/multimedia&quot;</span>
 LICENSE = <span style="color: #ff0000;">&quot;GPLv2&quot;</span>
 PR = <span style="color: #ff0000;">&quot;r0&quot;</span>
&nbsp;
 SRC_URI = <span style="color: #ff0000;">&quot;<span style="color: #007800;">${SOURCEFORGE_MIRROR}</span>/musicpd/libmpdclient-<span style="color: #007800;">${PV}</span>.tar.bz2&quot;</span>
&nbsp;
 inherit autotools binconfig</pre></td></tr></table></div>

]]></content:encoded>
			<wfw:commentRss>http://blog.sarine.nl/2012/04/22/libmpdclient-bitbake-file/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Compile a cross-compiler for microblaze xilinx</title>
		<link>http://blog.sarine.nl/2012/04/18/compile-a-cross-compiler-for-microblaze-xilinx/</link>
		<comments>http://blog.sarine.nl/2012/04/18/compile-a-cross-compiler-for-microblaze-xilinx/#comments</comments>
		<pubDate>Wed, 18 Apr 2012 09:46:32 +0000</pubDate>
		<dc:creator>Qball</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://blog.sarine.nl/?p=1169</guid>
		<description><![CDATA[The following script builds a cross-compiler for microblaze-xilinx. Took some time to get it &#8216;right&#8217;. Subtle things like gcc refusing (with very strange errors) to build inside it own source directory, made it take a while. Hope somebody can use it. https://github.com/DaveDavenport/CrossCompilerGCCScript/blob/master/gcc_cross_compiler.sh ?View Code BASH1 2 3 4 5 6 7 8 9 10 11 <a href="http://blog.sarine.nl/2012/04/18/compile-a-cross-compiler-for-microblaze-xilinx/"> read more <span class="meta-nav">&#187;</span></a>]]></description>
			<content:encoded><![CDATA[<p>The following script builds a cross-compiler for microblaze-xilinx. Took some time to get it &#8216;right&#8217;. Subtle things like gcc refusing (with very strange errors) to build inside it own source directory, made it take a while.</p>
<p>Hope somebody can use it.</p>
<p><a href="https://github.com/DaveDavenport/CrossCompilerGCCScript/blob/master/gcc_cross_compiler.sh">https://github.com/DaveDavenport/CrossCompilerGCCScript/blob/master/gcc_cross_compiler.sh</a></p>

<div class="wp_codebox_msgheader"><span class="right"><sup><a href="http://www.ericbess.com/ericblog/2008/03/03/wp-codebox/#examples" target="_blank" title="WP-CodeBox HowTo?"><span style="color: #99cc00">?</span></a></sup></span><span class="left"><a href="javascript:;" onclick="javascript:showCodeTxt('p1169code4'); return false;">View Code</a> BASH</span><div class="codebox_clear"></div></div><div class="wp_codebox"><table><tr id="p11694"><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
</pre></td><td class="code" id="p1169code4"><pre class="bash" style="font-family:monospace;"><span style="color: #666666; font-style: italic;">#!/bin/bash</span>
&nbsp;
<span style="color: #666666; font-style: italic;">##</span>
<span style="color: #666666; font-style: italic;"># Script to build GCC for microblaze.</span>
<span style="color: #666666; font-style: italic;"># Written by Martijn Koedam (m.l.p.j.koedam@tue.nl)</span>
<span style="color: #666666; font-style: italic;">#</span>
<span style="color: #666666; font-style: italic;"># Current version is testing on ubuntu 11.04, 11.10 and 12.04</span>
<span style="color: #666666; font-style: italic;">##</span>
&nbsp;
<span style="color: #007800;">TARGET</span>=microblaze-xilinx-elf
<span style="color: #007800;">PROGRAM_PREFIX</span>=mb-
&nbsp;
<span style="color: #007800;">BUILD_DIR</span>=build
<span style="color: #007800;">INSTALL_DIR</span>=<span style="color: #007800;">$PWD</span><span style="color: #000000; font-weight: bold;">/</span><span style="color: #c20cb9; font-weight: bold;">install</span>
&nbsp;
<span style="color: #007800;">CORES</span>=<span style="color: #000000;">8</span>
&nbsp;
<span style="color: #007800;">GCC_URL</span>=<span style="color: #c20cb9; font-weight: bold;">ftp</span>:<span style="color: #000000; font-weight: bold;">//</span>ftp.nluug.nl<span style="color: #000000; font-weight: bold;">/</span>mirror<span style="color: #000000; font-weight: bold;">/</span>languages<span style="color: #000000; font-weight: bold;">/</span>gcc<span style="color: #000000; font-weight: bold;">/</span>releases<span style="color: #000000; font-weight: bold;">/</span>gcc-4.7.0<span style="color: #000000; font-weight: bold;">/</span>gcc-4.7.0.tar.bz2
<span style="color: #007800;">NEWLIB_URL</span>=<span style="color: #c20cb9; font-weight: bold;">ftp</span>:<span style="color: #000000; font-weight: bold;">//</span>sources.redhat.com<span style="color: #000000; font-weight: bold;">/</span>pub<span style="color: #000000; font-weight: bold;">/</span>newlib<span style="color: #000000; font-weight: bold;">/</span>newlib-1.20.0.tar.gz
<span style="color: #007800;">BINUTILS_URL</span>=http:<span style="color: #000000; font-weight: bold;">//</span>ftp.gnu.org<span style="color: #000000; font-weight: bold;">/</span>gnu<span style="color: #000000; font-weight: bold;">/</span>binutils<span style="color: #000000; font-weight: bold;">/</span>binutils-<span style="color: #000000;">2.22</span>.tar.bz2
&nbsp;
<span style="color: #007800;">GCC_FILE</span>=$<span style="color: #7a0874; font-weight: bold;">&#40;</span><span style="color: #c20cb9; font-weight: bold;">basename</span> <span style="color: #007800;">$GCC_URL</span><span style="color: #7a0874; font-weight: bold;">&#41;</span>
<span style="color: #007800;">NEWLIB_FILE</span>=$<span style="color: #7a0874; font-weight: bold;">&#40;</span><span style="color: #c20cb9; font-weight: bold;">basename</span> <span style="color: #007800;">$NEWLIB_URL</span><span style="color: #7a0874; font-weight: bold;">&#41;</span>
<span style="color: #007800;">BINUTILS_FILE</span>=$<span style="color: #7a0874; font-weight: bold;">&#40;</span><span style="color: #c20cb9; font-weight: bold;">basename</span> <span style="color: #007800;">$BINUTILS_URL</span><span style="color: #7a0874; font-weight: bold;">&#41;</span>
&nbsp;
<span style="color: #007800;">GCC</span>=<span style="color: #800000;">${GCC_FILE%.tar.*}</span>
<span style="color: #007800;">BINUTILS</span>=<span style="color: #800000;">${BINUTILS_FILE%.tar.*}</span>
<span style="color: #007800;">NEWLIB</span>=<span style="color: #800000;">${NEWLIB_FILE%.tar.*}</span>
&nbsp;
&nbsp;
&nbsp;
<span style="color: #666666; font-style: italic;"># target</span>
<span style="color: #666666; font-style: italic;"># needed for newlib, because of non-standard PROGRAM_PREFIX.</span>
<span style="color: #7a0874; font-weight: bold;">export</span> <span style="color: #007800;">CC_FOR_TARGET</span>=<span style="color: #ff0000;">&quot;<span style="color: #007800;">$PROGRAM_PREFIX</span>&quot;</span><span style="color: #c20cb9; font-weight: bold;">gcc</span>
<span style="color: #7a0874; font-weight: bold;">export</span> <span style="color: #007800;">CXX_FOR_TARGET</span>=<span style="color: #ff0000;">&quot;<span style="color: #007800;">$PROGRAM_PREFIX</span>&quot;</span><span style="color: #c20cb9; font-weight: bold;">g++</span>
<span style="color: #7a0874; font-weight: bold;">export</span> <span style="color: #007800;">GCC_FOR_TARGET</span>=<span style="color: #ff0000;">&quot;<span style="color: #007800;">$PROGRAM_PREFIX</span>&quot;</span><span style="color: #c20cb9; font-weight: bold;">gcc</span>
<span style="color: #7a0874; font-weight: bold;">export</span> <span style="color: #007800;">AR_FOR_TARGET</span>=<span style="color: #ff0000;">&quot;<span style="color: #007800;">$PROGRAM_PREFIX</span>&quot;</span><span style="color: #c20cb9; font-weight: bold;">ar</span>
<span style="color: #7a0874; font-weight: bold;">export</span> <span style="color: #007800;">AS_FOR_TARGET</span>=<span style="color: #ff0000;">&quot;<span style="color: #007800;">$PROGRAM_PREFIX</span>&quot;</span><span style="color: #c20cb9; font-weight: bold;">as</span>
<span style="color: #7a0874; font-weight: bold;">export</span> <span style="color: #007800;">LD_FOR_TARGET</span>=<span style="color: #ff0000;">&quot;<span style="color: #007800;">$PROGRAM_PREFIX</span>&quot;</span><span style="color: #c20cb9; font-weight: bold;">ld</span>
<span style="color: #7a0874; font-weight: bold;">export</span> <span style="color: #007800;">NM_FOR_TARGET</span>=<span style="color: #ff0000;">&quot;<span style="color: #007800;">$PROGRAM_PREFIX</span>&quot;</span><span style="color: #c20cb9; font-weight: bold;">nm</span>
<span style="color: #7a0874; font-weight: bold;">export</span> <span style="color: #007800;">RANLIB_FOR_TARGET</span>=<span style="color: #ff0000;">&quot;<span style="color: #007800;">$PROGRAM_PREFIX</span>&quot;</span>ranlib
<span style="color: #7a0874; font-weight: bold;">export</span> <span style="color: #007800;">STRIP_FOR_TARGET</span>=<span style="color: #ff0000;">&quot;<span style="color: #007800;">$PROGRAM_PREFIX</span>&quot;</span><span style="color: #c20cb9; font-weight: bold;">strip</span>
&nbsp;
&nbsp;
<span style="color: #000000; font-weight: bold;">function</span> download<span style="color: #7a0874; font-weight: bold;">&#40;</span><span style="color: #7a0874; font-weight: bold;">&#41;</span>
<span style="color: #7a0874; font-weight: bold;">&#123;</span>
<span style="color: #000000; font-weight: bold;">if</span> <span style="color: #7a0874; font-weight: bold;">&#91;</span> <span style="color: #000000; font-weight: bold;">!</span> <span style="color: #660033;">-f</span> <span style="color: #007800;">$1</span> <span style="color: #7a0874; font-weight: bold;">&#93;</span>
<span style="color: #000000; font-weight: bold;">then</span>
<span style="color: #c20cb9; font-weight: bold;">wget</span> <span style="color: #660033;">-O</span> <span style="color: #007800;">$1</span> <span style="color: #007800;">$2</span>
<span style="color: #000000; font-weight: bold;">else</span>
<span style="color: #7a0874; font-weight: bold;">echo</span> <span style="color: #ff0000;">&quot;$1 exists&quot;</span>
<span style="color: #000000; font-weight: bold;">fi</span>
<span style="color: #7a0874; font-weight: bold;">&#125;</span>
&nbsp;
<span style="color: #000000; font-weight: bold;">function</span> extract<span style="color: #7a0874; font-weight: bold;">&#40;</span><span style="color: #7a0874; font-weight: bold;">&#41;</span>
<span style="color: #7a0874; font-weight: bold;">&#123;</span>
<span style="color: #000000; font-weight: bold;">if</span> <span style="color: #7a0874; font-weight: bold;">&#91;</span> <span style="color: #000000; font-weight: bold;">!</span> <span style="color: #660033;">-d</span> <span style="color: #ff0000;">&quot;<span style="color: #007800;">$BUILD_DIR</span>/$2&quot;</span> <span style="color: #7a0874; font-weight: bold;">&#93;</span>
<span style="color: #000000; font-weight: bold;">then</span>
<span style="color: #c20cb9; font-weight: bold;">tar</span> xf <span style="color: #007800;">$1</span> <span style="color: #660033;">-C</span> <span style="color: #007800;">$BUILD_DIR</span>
<span style="color: #000000; font-weight: bold;">fi</span>
&nbsp;
<span style="color: #000000; font-weight: bold;">if</span> <span style="color: #7a0874; font-weight: bold;">&#91;</span> <span style="color: #000000; font-weight: bold;">!</span> <span style="color: #660033;">-d</span> <span style="color: #ff0000;">&quot;<span style="color: #007800;">$BUILD_DIR</span>/$2&quot;</span> <span style="color: #7a0874; font-weight: bold;">&#93;</span>
<span style="color: #000000; font-weight: bold;">then</span>
<span style="color: #7a0874; font-weight: bold;">echo</span> <span style="color: #ff0000;">&quot;Failed to extract $2 to $1&quot;</span>
<span style="color: #7a0874; font-weight: bold;">exit</span> <span style="color: #000000;">1</span>
<span style="color: #000000; font-weight: bold;">fi</span>
<span style="color: #7a0874; font-weight: bold;">&#125;</span>
&nbsp;
<span style="color: #000000; font-weight: bold;">function</span> build<span style="color: #7a0874; font-weight: bold;">&#40;</span><span style="color: #7a0874; font-weight: bold;">&#41;</span>
<span style="color: #7a0874; font-weight: bold;">&#123;</span>
<span style="color: #7a0874; font-weight: bold;">pushd</span> <span style="color: #007800;">$BUILD_DIR</span>
<span style="color: #7a0874; font-weight: bold;">pushd</span> <span style="color: #007800;">$1</span>
&nbsp;
<span style="color: #000000; font-weight: bold;">if</span> <span style="color: #7a0874; font-weight: bold;">&#91;</span> <span style="color: #000000; font-weight: bold;">!</span> <span style="color: #660033;">-d</span> <span style="color: #ff0000;">&quot;build&quot;</span> <span style="color: #7a0874; font-weight: bold;">&#93;</span>
<span style="color: #000000; font-weight: bold;">then</span>
<span style="color: #c20cb9; font-weight: bold;">mkdir</span> <span style="color: #ff0000;">&quot;build&quot;</span>
<span style="color: #7a0874; font-weight: bold;">pushd</span> <span style="color: #ff0000;">&quot;build&quot;</span>
<span style="color: #000000; font-weight: bold;">else</span>
<span style="color: #7a0874; font-weight: bold;">pushd</span> <span style="color: #ff0000;">&quot;build&quot;</span>
<span style="color: #c20cb9; font-weight: bold;">make</span> distclean
<span style="color: #000000; font-weight: bold;">fi</span>
&nbsp;
..<span style="color: #000000; font-weight: bold;">/</span>configure <span style="color: #660033;">--target</span>=<span style="color: #007800;">$TARGET</span> <span style="color: #660033;">--prefix</span>=<span style="color: #000000; font-weight: bold;">/</span>opt<span style="color: #000000; font-weight: bold;">/</span>mb-gcc<span style="color: #000000; font-weight: bold;">/</span> <span style="color: #660033;">--program-prefix</span>=<span style="color: #007800;">$PROGRAM_PREFIX</span> <span style="color: #660033;">--prefix</span>=<span style="color: #007800;">$INSTALL_DIR</span> <span style="color: #007800;">$2</span>
<span style="color: #000000; font-weight: bold;">if</span> <span style="color: #7a0874; font-weight: bold;">&#91;</span> <span style="color: #007800;">$?</span> <span style="color: #000000; font-weight: bold;">!</span>= <span style="color: #000000;">0</span> <span style="color: #7a0874; font-weight: bold;">&#93;</span>
<span style="color: #000000; font-weight: bold;">then</span>
<span style="color: #7a0874; font-weight: bold;">echo</span> <span style="color: #ff0000;">&quot;Failed to configure&quot;</span>
<span style="color: #7a0874; font-weight: bold;">exit</span> <span style="color: #000000;">1</span>;
<span style="color: #000000; font-weight: bold;">fi</span>
<span style="color: #c20cb9; font-weight: bold;">env</span>
<span style="color: #c20cb9; font-weight: bold;">make</span> <span style="color: #660033;">-j</span><span style="color: #ff0000;">&quot;<span style="color: #007800;">$CORES</span>&quot;</span> all<span style="color: #007800;">$3</span>
<span style="color: #000000; font-weight: bold;">if</span> <span style="color: #7a0874; font-weight: bold;">&#91;</span> <span style="color: #007800;">$?</span> <span style="color: #000000; font-weight: bold;">!</span>= <span style="color: #000000;">0</span> <span style="color: #7a0874; font-weight: bold;">&#93;</span>
<span style="color: #000000; font-weight: bold;">then</span>
<span style="color: #7a0874; font-weight: bold;">echo</span> <span style="color: #ff0000;">&quot;Failed to build&quot;</span>
<span style="color: #7a0874; font-weight: bold;">exit</span> <span style="color: #000000;">1</span>;
<span style="color: #000000; font-weight: bold;">fi</span>
<span style="color: #c20cb9; font-weight: bold;">make</span> <span style="color: #c20cb9; font-weight: bold;">install</span><span style="color: #007800;">$3</span>
<span style="color: #000000; font-weight: bold;">if</span> <span style="color: #7a0874; font-weight: bold;">&#91;</span> <span style="color: #007800;">$?</span> <span style="color: #000000; font-weight: bold;">!</span>= <span style="color: #000000;">0</span> <span style="color: #7a0874; font-weight: bold;">&#93;</span>
<span style="color: #000000; font-weight: bold;">then</span>
<span style="color: #7a0874; font-weight: bold;">echo</span> <span style="color: #ff0000;">&quot;Failed to install&quot;</span>
<span style="color: #7a0874; font-weight: bold;">exit</span> <span style="color: #000000;">1</span>;
<span style="color: #000000; font-weight: bold;">fi</span>
&nbsp;
<span style="color: #7a0874; font-weight: bold;">popd</span>
<span style="color: #7a0874; font-weight: bold;">popd</span>
<span style="color: #7a0874; font-weight: bold;">popd</span>
<span style="color: #7a0874; font-weight: bold;">&#125;</span>
&nbsp;
<span style="color: #000000; font-weight: bold;">function</span> gcc_dependencies<span style="color: #7a0874; font-weight: bold;">&#40;</span><span style="color: #7a0874; font-weight: bold;">&#41;</span>
<span style="color: #7a0874; font-weight: bold;">&#123;</span>
&nbsp;
<span style="color: #7a0874; font-weight: bold;">pushd</span> <span style="color: #007800;">$BUILD_DIR</span>
<span style="color: #7a0874; font-weight: bold;">pushd</span> <span style="color: #007800;">$1</span>
.<span style="color: #000000; font-weight: bold;">/</span>contrib<span style="color: #000000; font-weight: bold;">/</span>download_prerequisites
<span style="color: #7a0874; font-weight: bold;">popd</span>
<span style="color: #7a0874; font-weight: bold;">popd</span>
<span style="color: #7a0874; font-weight: bold;">&#125;</span>
&nbsp;
<span style="color: #000000; font-weight: bold;">if</span> <span style="color: #7a0874; font-weight: bold;">&#91;</span> <span style="color: #000000; font-weight: bold;">!</span> <span style="color: #660033;">-d</span> <span style="color: #007800;">$BUILD_DIR</span> <span style="color: #7a0874; font-weight: bold;">&#93;</span>
<span style="color: #000000; font-weight: bold;">then</span>
<span style="color: #c20cb9; font-weight: bold;">mkdir</span> <span style="color: #007800;">$BUILD_DIR</span>
<span style="color: #000000; font-weight: bold;">fi</span>
&nbsp;
<span style="color: #000000; font-weight: bold;">if</span> <span style="color: #7a0874; font-weight: bold;">&#91;</span> <span style="color: #000000; font-weight: bold;">!</span> <span style="color: #660033;">-d</span> <span style="color: #007800;">$INSTALL_DIR</span> <span style="color: #7a0874; font-weight: bold;">&#93;</span>
<span style="color: #000000; font-weight: bold;">then</span>
<span style="color: #c20cb9; font-weight: bold;">mkdir</span> <span style="color: #007800;">$INSTALL_DIR</span>
<span style="color: #000000; font-weight: bold;">fi</span>
&nbsp;
&nbsp;
<span style="color: #666666; font-style: italic;">#download files.</span>
<span style="color: #7a0874; font-weight: bold;">echo</span> <span style="color: #ff0000;">&quot;Downloading&quot;</span>
download <span style="color: #ff0000;">&quot;<span style="color: #007800;">$GCC_FILE</span>&quot;</span> <span style="color: #ff0000;">&quot;<span style="color: #007800;">$GCC_URL</span>&quot;</span>
download <span style="color: #ff0000;">&quot;<span style="color: #007800;">$NEWLIB_FILE</span>&quot;</span> <span style="color: #ff0000;">&quot;<span style="color: #007800;">$NEWLIB_URL</span>&quot;</span>
download <span style="color: #ff0000;">&quot;<span style="color: #007800;">$BINUTILS_FILE</span>&quot;</span> <span style="color: #ff0000;">&quot;<span style="color: #007800;">$BINUTILS_URL</span>&quot;</span>
&nbsp;
<span style="color: #7a0874; font-weight: bold;">echo</span> <span style="color: #ff0000;">&quot;Building binutils&quot;</span>
extract <span style="color: #ff0000;">&quot;<span style="color: #007800;">$BINUTILS_FILE</span>&quot;</span> <span style="color: #ff0000;">&quot;<span style="color: #007800;">$BINUTILS</span>&quot;</span>
build <span style="color: #007800;">$BINUTILS</span> <span style="color: #ff0000;">&quot;&quot;</span> <span style="color: #ff0000;">&quot;&quot;</span>
&nbsp;
<span style="color: #666666; font-style: italic;"># put results into PATH.</span>
<span style="color: #7a0874; font-weight: bold;">export</span> <span style="color: #007800;">PATH</span>=<span style="color: #007800;">$PATH</span>:<span style="color: #007800;">$INSTALL_DIR</span><span style="color: #000000; font-weight: bold;">/</span>bin<span style="color: #000000; font-weight: bold;">/</span>
&nbsp;
<span style="color: #7a0874; font-weight: bold;">echo</span> <span style="color: #ff0000;">&quot;Building gcc-stage1&quot;</span>
extract <span style="color: #ff0000;">&quot;<span style="color: #007800;">$GCC_FILE</span>&quot;</span> <span style="color: #ff0000;">&quot;<span style="color: #007800;">$GCC</span>&quot;</span>
gcc_dependencies <span style="color: #ff0000;">&quot;<span style="color: #007800;">$GCC</span>&quot;</span>
build <span style="color: #007800;">$GCC</span> <span style="color: #ff0000;">&quot;--enable-languages=c --disable-nls --without-headers --disable-multilib --disable-libssp --with-newlib&quot;</span> <span style="color: #ff0000;">&quot;-host&quot;</span>
&nbsp;
<span style="color: #7a0874; font-weight: bold;">echo</span> <span style="color: #ff0000;">&quot;Building newlib&quot;</span>
extract <span style="color: #ff0000;">&quot;<span style="color: #007800;">$NEWLIB_FILE</span>&quot;</span> <span style="color: #ff0000;">&quot;<span style="color: #007800;">$NEWLIB</span>&quot;</span>
build <span style="color: #007800;">$NEWLIB</span> <span style="color: #ff0000;">&quot;&quot;</span> <span style="color: #ff0000;">&quot;&quot;</span>
&nbsp;
&nbsp;
<span style="color: #7a0874; font-weight: bold;">echo</span> <span style="color: #ff0000;">&quot;Building gcc,g++ stage2&quot;</span>
extract <span style="color: #ff0000;">&quot;<span style="color: #007800;">$GCC_FILE</span>&quot;</span> <span style="color: #ff0000;">&quot;<span style="color: #007800;">$GCC</span>&quot;</span>
build <span style="color: #007800;">$GCC</span> <span style="color: #ff0000;">&quot;--enable-languages=c,c++ --disable-nls --without-headers --disable-multilib --disable-libssp --with-newlib&quot;</span> <span style="color: #ff0000;">&quot;&quot;</span></pre></td></tr></table></div>

<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.sarine.nl/2012/04/18/compile-a-cross-compiler-for-microblaze-xilinx/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>EnergyPoint</title>
		<link>http://blog.sarine.nl/2012/04/09/energypoint/</link>
		<comments>http://blog.sarine.nl/2012/04/09/energypoint/#comments</comments>
		<pubDate>Mon, 09 Apr 2012 14:25:03 +0000</pubDate>
		<dc:creator>Qball</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://blog.sarine.nl/?p=1165</guid>
		<description><![CDATA[Energy Point This is a small tool to parse and display statistics from a youless. See: http://youless.nl/ Download data Download json file from youless. Do this atleast every 30 minutes. Overlap is no problem, EnergyPoint will check for this. wget http://youless/a?f=j -o output.json Import data Import download json files: ep import output.json This will import <a href="http://blog.sarine.nl/2012/04/09/energypoint/"> read more <span class="meta-nav">&#187;</span></a>]]></description>
			<content:encoded><![CDATA[<h1>Energy Point</h1>
<p>This is a small tool to parse and display statistics from a youless.<br />
See: <a href="http://youless.nl/">http://youless.nl/</a></p>
<h2>Download data</h2>
<p>Download json file from youless. Do this atleast every 30 minutes.<br />
Overlap is no problem, EnergyPoint will check for this.</p>
<p>wget http://youless/a?f=j -o output.json</p>
<h2>Import data</h2>
<p>Import download json files:</p>
<p>ep import output.json</p>
<p>This will import the data into ep.sqlite3 database.</p>
<h2>Show data</h2>
<p>Show graph</p>
<p>ep graph</p>
<p>Add average line and hour bar graph:</p>
<p>ep graph average bars</p>
<p>Print statistics<br />
ep statistics day week</p>
<h2></h2>
<h2>Screenshots:</h2>
<p>&nbsp;</p>
<p><a href="http://images.sarine.nl/power-test.png"><img class="alignnone" src="http://images.sarine.nl/power-test.png" alt="" width="691" height="379" /></a><a href="http://blog.sarine.nl/wp-content/uploads/2012/04/power-consumption2.png"><img class="alignnone size-medium wp-image-1166" title="power-consumption2" src="http://blog.sarine.nl/wp-content/uploads/2012/04/power-consumption2-300x233.png" alt="" width="300" height="233" /></a></p>
<p>&nbsp;</p>
<p>Code can be found <a href="https://github.com/DaveDavenport/YouLessEP">here</a></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.sarine.nl/2012/04/09/energypoint/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>setting up HTPC with linaro</title>
		<link>http://blog.sarine.nl/2012/04/08/setting-up-htpc-with-linaro/</link>
		<comments>http://blog.sarine.nl/2012/04/08/setting-up-htpc-with-linaro/#comments</comments>
		<pubDate>Sun, 08 Apr 2012 12:06:13 +0000</pubDate>
		<dc:creator>Qball</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://blog.sarine.nl/?p=1160</guid>
		<description><![CDATA[Mostly for my archive: (might be userfull for others) Fix a small &#8216;hick-up&#8217; every 10 seconds for i2c polling of monitor:  (/etc/rc.local) echo 0 &#62; /sys/module/drm_kms_helper/parameters/poll Turn off leds: (/etc/rc.local) echo 0 &#62; /sys/devices/platform/leds-gpio/leds/pandaboard\:\:status1/brightness echo 0 &#62; /sys/devices/platform/leds-gpio/leds/pandaboard\:\:status2/brightness &#160; Fix screenblanking: (thx to comment in here) Create /usr/share/X11/xorg.conf.d/30-monitor.conf and add this Section "Monitor" Identifier "Monitor0" <a href="http://blog.sarine.nl/2012/04/08/setting-up-htpc-with-linaro/"> read more <span class="meta-nav">&#187;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Mostly for my archive: (might be userfull for others)</p>
<p>Fix a small &#8216;hick-up&#8217; every 10 seconds for i2c polling of monitor:  (/etc/rc.local)</p>
<pre>echo 0 &gt; /sys/module/drm_kms_helper/parameters/poll</pre>
<p>Turn off leds: (/etc/rc.local)</p>
<pre>echo 0 &gt; /sys/devices/platform/leds-gpio/leds/pandaboard\:\:status1/brightness
echo 0 &gt; /sys/devices/platform/leds-gpio/leds/pandaboard\:\:status2/brightness</pre>
<p>&nbsp;</p>
<p title="here">Fix screenblanking: (thx to comment in <a title="here" href="http://rsalveti.wordpress.com/2012/01/06/hw-video-decode-and-xbmc-ubuntu-linaro/">here</a>)</p>
<div>
<div id="commentbody-1158">
<p>Create /usr/share/X11/xorg.conf.d/30-monitor.conf and add this</p>
<pre>Section "Monitor"
 Identifier "Monitor0"
 Option "DPMS"
EndSection</pre>
<pre>Section "ServerLayout"
 Identifier "NoBlankScreen"
 Option "BlankTime" "0"
 Option "StandbyTime" "0"
 Option "SuspendTime" "0"
 Option "OffTime" "0"
EndSection</pre>
</div>
</div>
<p>Then</p>
<pre>"</pre>
]]></content:encoded>
			<wfw:commentRss>http://blog.sarine.nl/2012/04/08/setting-up-htpc-with-linaro/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Gnome3 weirdness</title>
		<link>http://blog.sarine.nl/2012/04/03/gnome3-weirdness/</link>
		<comments>http://blog.sarine.nl/2012/04/03/gnome3-weirdness/#comments</comments>
		<pubDate>Tue, 03 Apr 2012 12:37:33 +0000</pubDate>
		<dc:creator>Qball</dc:creator>
				<category><![CDATA[Grind My Gears]]></category>

		<guid isPermaLink="false">http://blog.sarine.nl/?p=1158</guid>
		<description><![CDATA[I just had (this  happend before, crappy intel drivers) had X go strange.. I rebooted my PC (normal reboot)  now gnome-shell uses 100% cpu and hangs,  empathy uses 100% cpu and hangs.. So just &#8216;randomly&#8217; my desktop became completely un-usable. So back to the good old openbox+tint2.]]></description>
			<content:encoded><![CDATA[<p>I just had (this  happend before, crappy intel drivers) had X go strange..</p>
<p>I rebooted my PC (normal reboot)  now gnome-shell uses 100% cpu and hangs,  empathy uses 100% cpu and hangs.. So just &#8216;randomly&#8217; my desktop became completely un-usable.</p>
<p>So back to the good old openbox+tint2.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.sarine.nl/2012/04/03/gnome3-weirdness/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Uploading old code to github</title>
		<link>http://blog.sarine.nl/2012/04/01/uploading-old-code-to-github/</link>
		<comments>http://blog.sarine.nl/2012/04/01/uploading-old-code-to-github/#comments</comments>
		<pubDate>Sun, 01 Apr 2012 19:36:51 +0000</pubDate>
		<dc:creator>Qball</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://blog.sarine.nl/?p=1156</guid>
		<description><![CDATA[Gnome Wireless PC Lock is a Gnome applet that locks your desktop when you walk away from your desk. A small gnome program that locks your desktop when you walk away from your desk. It is tested with a Sitecom cn-129 Wireless PC Lock. Requirements: GTK+ version 2.10.x libusb You can find it here: https://github.com/DaveDavenport/GWSL. <a href="http://blog.sarine.nl/2012/04/01/uploading-old-code-to-github/"> read more <span class="meta-nav">&#187;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Gnome Wireless PC Lock is a Gnome applet that locks your desktop when you walk away from your desk.</p>
<p>A small gnome program that locks your desktop when you walk away from your desk. It is tested with a Sitecom cn-129 Wireless PC Lock.</p>
<p>Requirements:</p>
<div id="main-container">
<ul>
<li>GTK+ version 2.10.x</li>
<li>libusb</li>
</ul>
<p>You can find it here: <a href="https://github.com/DaveDavenport/GWSL">https://github.com/DaveDavenport/GWSL</a>. I tested it and it still works.</p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://blog.sarine.nl/2012/04/01/uploading-old-code-to-github/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>GMPC, Stuffkeeper, GPX-Viewer, etc why did the development slow down?</title>
		<link>http://blog.sarine.nl/2012/03/31/gmpc-stuffkeeper-gpx-viewer-etc-why-did-the-development-slow-down/</link>
		<comments>http://blog.sarine.nl/2012/03/31/gmpc-stuffkeeper-gpx-viewer-etc-why-did-the-development-slow-down/#comments</comments>
		<pubDate>Sat, 31 Mar 2012 10:15:11 +0000</pubDate>
		<dc:creator>Qball</dc:creator>
				<category><![CDATA[gmpc]]></category>
		<category><![CDATA[gpxviewer]]></category>
		<category><![CDATA[Squishybox]]></category>
		<category><![CDATA[SSHConf]]></category>
		<category><![CDATA[StuffKeeper]]></category>

		<guid isPermaLink="false">http://blog.sarine.nl/?p=1153</guid>
		<description><![CDATA[Very simple, I am no longer a student (haven&#8217;t been for a while now) and I have a very interesting Job at the university.  This however limits the amount of time I have for the different tools. C&#8217;est la vie. So what am I working on? well this website (http://compsoc.eu/ ) explains it a bit.]]></description>
			<content:encoded><![CDATA[<p>Very simple, I am no longer a student (haven&#8217;t been for a while now) and I have a very interesting Job at the university.  This however limits the amount of time I have for the different tools. C&#8217;est la vie.</p>
<p>So what am I working on? well this <a href="http://compsoc.eu">website</a> (http://compsoc.eu/ ) explains it a bit.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.sarine.nl/2012/03/31/gmpc-stuffkeeper-gpx-viewer-etc-why-did-the-development-slow-down/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

