<?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>A day in the life... &#187; Uncategorized</title>
	<atom:link href="http://pieter.barrezeele.be/category/uncategorized/feed/" rel="self" type="application/rss+xml" />
	<link>http://pieter.barrezeele.be</link>
	<description>Pieter Barrezeele's homepage</description>
	<lastBuildDate>Mon, 14 Sep 2020 08:31:11 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Puppet oddities</title>
		<link>http://pieter.barrezeele.be/2014/01/28/puppet-oddities/</link>
		<comments>http://pieter.barrezeele.be/2014/01/28/puppet-oddities/#comments</comments>
		<pubDate>Tue, 28 Jan 2014 15:42:32 +0000</pubDate>
		<dc:creator>Pieter Barrezeele</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://pieter.barrezeele.be/?p=270</guid>
		<description><![CDATA[I just noticed some strange Puppet behaviour. Take a look at this:

class monitoring {
  define nrpe_command (
    $ensure               = present,
    $command,
    $target          [...]]]></description>
			<content:encoded><![CDATA[<p>I just noticed some strange Puppet behaviour. Take a look at this:</p>
<pre>
class monitoring {
  define nrpe_command (
    $ensure               = present,
    $command,
    $target               = "/etc/nagios/nrpe.d/$title.cfg"
  ) {
    file { $target :
      ensure            => file,
      owner             => root,
      group             => root,
      mode              => 0755,
      content           => "command[$title]=$command\n",
    }
  }
}
class puppet {
  monitoring::nrpe_command {"restart_puppet":
    command => "/etc/init.d/puppet restart"
  }
}
</pre>
<p>This is the resulting I&#8217;ve got:</p>
<pre>
testhost:/etc/nagios/nrpe.d# ls
puppet.cfg
testhost:/etc/nagios/nrpe.d# cat puppet.cfg
command[restart_puppet]=/usr/local/bin/restart_puppet_safely.sh
testhost:/etc/nagios/nrpe.d#
</pre>
<p>Somehow, puppet eats everything until the last underscore in the $title variable when using it in the file title, but not when using the variable as content for that file.</p>
<p>Any ideas?</p>
]]></content:encoded>
			<wfw:commentRss>http://pieter.barrezeele.be/2014/01/28/puppet-oddities/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Corosync authkeys</title>
		<link>http://pieter.barrezeele.be/2013/03/28/corosync-authkeys/</link>
		<comments>http://pieter.barrezeele.be/2013/03/28/corosync-authkeys/#comments</comments>
		<pubDate>Thu, 28 Mar 2013 09:35:47 +0000</pubDate>
		<dc:creator>Pieter Barrezeele</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://pieter.barrezeele.be/?p=267</guid>
		<description><![CDATA[When setting up Pacemaker clusters I tend to reuse my Pacemaker Puppet module in which I distribute a cluster-specific authkey file.
My workflow has always been:

Log on to a host that has corosync installed, but not part of a cluster
Run corosync-keygen
Transfer the generated /etc/corosync/authkey to my Puppet GIT repo on my local machine

You don&#8217;t want to [...]]]></description>
			<content:encoded><![CDATA[<p>When setting up Pacemaker clusters I tend to reuse my Pacemaker Puppet module in which I distribute a cluster-specific authkey file.</p>
<p>My workflow has always been:</p>
<ol>
<li>Log on to a host that has corosync installed, but not part of a cluster</li>
<li>Run corosync-keygen</li>
<li>Transfer the generated /etc/corosync/authkey to my Puppet GIT repo on my local machine</li>
</ol>
<p>You don&#8217;t want to run corosync-keygen on an existing cluster as it will overwrite /etc/corosync/authkey.</p>
<p>As it seemed quite a hassle to compile corosync on my Mac just to be able to run corosync-keygen and so delved a bit deeper, finding this post on the openais mailing list: http://lists.linuxfoundation.org/pipermail/openais/2010-February/013845.html</p>
<p>My workflow has thus simplified to:</p>
<p><code>dd if=/dev/random of=files/authkey bs=1 count=128</code></p>
<p>Sweet!</p>
]]></content:encoded>
			<wfw:commentRss>http://pieter.barrezeele.be/2013/03/28/corosync-authkeys/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>What a timesaver: reptyr!</title>
		<link>http://pieter.barrezeele.be/2012/01/03/what-a-timesaver-reptyr/</link>
		<comments>http://pieter.barrezeele.be/2012/01/03/what-a-timesaver-reptyr/#comments</comments>
		<pubDate>Tue, 03 Jan 2012 08:46:45 +0000</pubDate>
		<dc:creator>Pieter Barrezeele</dc:creator>
				<category><![CDATA[Computers and stuff]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Work]]></category>

		<guid isPermaLink="false">http://pieter.barrezeele.be/?p=262</guid>
		<description><![CDATA[Ever smacked yourself on the head because you didn&#8217;t launch that long-running command inside a screen?
Well, reptyr saves the day. It&#8217;s a nifty little tool that reallocates the PTY to any of your running processes.
Have a look at the github page: https://github.com/nelhage/reptyr
Got a long-running process? Simply run
reptyr 
and reptyr will change the PTY of the [...]]]></description>
			<content:encoded><![CDATA[<p>Ever smacked yourself on the head because you didn&#8217;t launch that long-running command inside a screen?<br />
Well, reptyr saves the day. It&#8217;s a nifty little tool that reallocates the PTY to any of your running processes.</p>
<p>Have a look at the github page: https://github.com/nelhage/reptyr</p>
<p>Got a long-running process? Simply run</p>
<p><code>reptyr <PID-of-the-process></code></p>
<p>and reptyr will change the PTY of the process, suddenly taking input for it from the screen terminal and writing output to the screen terminal.</p>
<p>Awesome!<br />
Thanks <a href="http://www.codematters.be/">Bram</a></p>
]]></content:encoded>
			<wfw:commentRss>http://pieter.barrezeele.be/2012/01/03/what-a-timesaver-reptyr/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Bar-peeing in Holland</title>
		<link>http://pieter.barrezeele.be/2009/06/03/bar-peeing-in-holland/</link>
		<comments>http://pieter.barrezeele.be/2009/06/03/bar-peeing-in-holland/#comments</comments>
		<pubDate>Wed, 03 Jun 2009 19:37:33 +0000</pubDate>
		<dc:creator>macbar</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://pieter.barrezeele.be/?p=252</guid>
		<description><![CDATA[This news item struck me today: Bar-peeing is a new fenomenon in Holland (in Dutch)
Quote:
&#8220;In a busy, dirty pub with beer all over, I don&#8217;t mind. What you pee is mostly beer anyway&#8221;, says an anonymous Rotterdammer.
Must be Heineken, methinks&#8230;
]]></description>
			<content:encoded><![CDATA[<p>This news item struck me today: <a href="http://www.deredactie.be/cm/vrtnieuws/ookdatnog/090603Barplassen">Bar-peeing is a new fenomenon in Holland</a> (in Dutch)</p>
<p>Quote:</p>
<blockquote><p>&#8220;In a busy, dirty pub with beer all over, I don&#8217;t mind. What you pee is mostly beer anyway&#8221;, says an anonymous Rotterdammer.</p></blockquote>
<p>Must be Heineken, methinks&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://pieter.barrezeele.be/2009/06/03/bar-peeing-in-holland/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Shopping horror</title>
		<link>http://pieter.barrezeele.be/2009/02/23/shopping-horror/</link>
		<comments>http://pieter.barrezeele.be/2009/02/23/shopping-horror/#comments</comments>
		<pubDate>Mon, 23 Feb 2009 10:45:56 +0000</pubDate>
		<dc:creator>macbar</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://pieter.barrezeele.be/?p=209</guid>
		<description><![CDATA[Shopping on the Dell online shop is absolute horror. Tons of choices without any explanation, like this one:

How am I supposed to know what this is?
What about this one:

Most stupid option, when selecting a LED backlit display, I get this error:

That&#8217;s right! I should have chosen the &#8220;No camera with microphone for LED backlit display&#8221;. [...]]]></description>
			<content:encoded><![CDATA[<p>Shopping on the Dell online shop is absolute horror. Tons of choices without any explanation, like this one:</p>
<p style="text-align: center;"><a href="http://pieter.barrezeele.be/wordpress/wp-content/uploads/2009/02/cool-slice1.png" rel="lightbox[209]"><img class="aligncenter" title="Cool slice" src="http://pieter.barrezeele.be/wordpress/wp-content/uploads/2009/02/cool-slice1.png" alt="" /></a></p>
<p>How am I supposed to know what this is?</p>
<p>What about this one:</p>
<p style="text-align: center;"><a href="http://pieter.barrezeele.be/wordpress/wp-content/uploads/2009/02/power-supply.png" rel="lightbox[209]"><img class="aligncenter" title="Power Supply" src="http://pieter.barrezeele.be/wordpress/wp-content/uploads/2009/02/power-supply.png" alt=""  /></a></p>
<p style="text-align: left;">Most stupid option, when selecting a LED backlit display, I get this error:</p>
<p style="text-align: center;"><a href="http://pieter.barrezeele.be/wordpress/wp-content/uploads/2009/02/camera.png" rel="lightbox[209]"><img class="aligncenter" title="camera" src="http://pieter.barrezeele.be/wordpress/wp-content/uploads/2009/02/camera.png" alt="" /></a></p>
<p style="text-align: left;">That&#8217;s right! I should have chosen the &#8220;No camera with microphone for LED backlit display&#8221;. Reminds me of the joke about a man that asks for a ham and cheese sandwich without butter to with the clerk responds they only have ham and cheese sandwiches without margarine&#8230;</p>
<p style="text-align: left;"> </p>
<p style="text-align: left;"> </p>
]]></content:encoded>
			<wfw:commentRss>http://pieter.barrezeele.be/2009/02/23/shopping-horror/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Classic&#8230;</title>
		<link>http://pieter.barrezeele.be/2008/09/20/classic/</link>
		<comments>http://pieter.barrezeele.be/2008/09/20/classic/#comments</comments>
		<pubDate>Sat, 20 Sep 2008 10:51:06 +0000</pubDate>
		<dc:creator>macbar</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://pieter.barrezeele.be/?p=173</guid>
		<description><![CDATA[See here&#8230;
]]></description>
			<content:encoded><![CDATA[<p>See <a href="http://www.roughlydrafted.com/2008/09/19/microsofts-im-a-pc-ads-created-on-macs/">here</a>&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://pieter.barrezeele.be/2008/09/20/classic/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Identifying external FC disks</title>
		<link>http://pieter.barrezeele.be/2008/05/14/identifying-external-fc-disks/</link>
		<comments>http://pieter.barrezeele.be/2008/05/14/identifying-external-fc-disks/#comments</comments>
		<pubDate>Wed, 14 May 2008 15:41:25 +0000</pubDate>
		<dc:creator>macbar</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://pieter.barrezeele.be/?p=161</guid>
		<description><![CDATA[So, you got a server linked to a SAN box. You define some LUNs on that SAN box. You link the LUNs to the server and you want to start using the LUNs on the server.
Let&#8217;s see:

xen02:/dev# ls -l sd*
brw-rw---- 1 root floppy  8,   0 2008-04-15 16:51 sda
brw-rw---- 1 root floppy  [...]]]></description>
			<content:encoded><![CDATA[<p>So, you got a server linked to a SAN box. You define some LUNs on that SAN box. You link the LUNs to the server and you want to start using the LUNs on the server.</p>
<p>Let&#8217;s see:</p>
<pre lang="bash">
xen02:/dev# ls -l sd*
brw-rw---- 1 root floppy  8,   0 2008-04-15 16:51 sda
brw-rw---- 1 root floppy  8,   1 2008-04-15 16:51 sda1
brw-rw---- 1 root disk    8,  16 2008-04-15 16:51 sdb
brw-rw---- 1 root disk    8,  32 2008-04-15 16:51 sdc
brw-rw---- 1 root disk    8,  48 2008-04-15 16:51 sdd
brw-rw---- 1 root disk    8,  64 2008-04-15 16:51 sde
brw-rw---- 1 root disk    8,  80 2008-04-15 16:51 sdf
brw-rw---- 1 root disk    8,  96 2008-05-09 13:35 sdg
brw-rw---- 1 root disk    8, 112 2008-05-09 13:35 sdh
brw-rw---- 1 root disk    8, 128 2008-05-09 13:35 sdi
brw-rw---- 1 root disk    8, 144 2008-05-09 13:35 sdj
brw-rw---- 1 root disk    8, 160 2008-05-09 13:35 sdk
brw-rw---- 1 root disk    8, 176 2008-05-09 13:35 sdl
brw-rw---- 1 root disk    8, 192 2008-05-09 13:35 sdm
brw-rw---- 1 root disk    8, 208 2008-05-09 13:35 sdn
brw-rw---- 1 root disk    8, 224 2008-05-09 13:52 sdo
brw-rw---- 1 root disk    8, 240 2008-05-09 13:52 sdp
brw-rw---- 1 root disk   65,   0 2008-05-09 13:54 sdq
</pre>
<p>Phew, how to identify which drive corresponds to which LUN, especially if you have some equal-sized LUNs.<br />
Fortunately, we have this:</p>
<pre lang="bash">
xen02:/dev/disk/by-id# ls -l
total 0
lrwxrwxrwx 1 root root  9 2008-05-14 16:11 scsi-1 &gt; ../../sdl
lrwxrwxrwx 1 root root  9 2008-04-15 16:51 scsi-3600a0b8000320d200000038e47e1430a &gt; ../../sdb
lrwxrwxrwx 1 root root  9 2008-04-15 16:51 scsi-3600a0b8000320d200000039047e3f21f &gt; ../../sdd
lrwxrwxrwx 1 root root  9 2008-04-15 16:51 scsi-3600a0b8000320d200000039447f4f916 &gt; ../../sdf
lrwxrwxrwx 1 root root  9 2008-05-09 13:35 scsi-3600a0b8000320d200000041f48073120 &gt; ../../sdh
lrwxrwxrwx 1 root root  9 2008-05-09 13:35 scsi-3600a0b8000320d200000042348076e8c &gt; ../../sdj
lrwxrwxrwx 1 root root  9 2008-05-09 13:35 scsi-3600a0b8000320d200000043748206a2e &gt; ../../sdn
lrwxrwxrwx 1 root root  9 2008-05-09 13:52 scsi-3600a0b8000320d200000043a48244540 &gt; ../../sdp
lrwxrwxrwx 1 root root  9 2008-04-15 16:51 scsi-3600a0b8000322cba0000067c47e3f289 &gt; ../../sdc
lrwxrwxrwx 1 root root  9 2008-04-15 16:51 scsi-3600a0b8000322cba0000067e47e3f2cc &gt; ../../sde
lrwxrwxrwx 1 root root  9 2008-05-09 13:35 scsi-3600a0b8000322cba000007ca48076f1b &gt; ../../sdi
lrwxrwxrwx 1 root root  9 2008-05-09 13:35 scsi-3600a0b8000322cba000007da480dc9cd &gt; ../../sdk
lrwxrwxrwx 1 root root  9 2008-05-09 13:35 scsi-3600a0b8000322cba000007de480f5683 &gt; ../../sdm
lrwxrwxrwx 1 root root  9 2008-05-09 13:54 scsi-3600a0b8000322cba000007e0482445e4 &gt; ../../sdq
lrwxrwxrwx 1 root root  9 2008-05-09 13:52 scsi-3600a0b8000322cba000007e248244632 &gt; ../../sdo
lrwxrwxrwx 1 root root  9 2008-05-14 16:11 scsi-3600a0b8000322cba00000890482afe68 &gt; ../../sdg     &lt;---
lrwxrwxrwx 1 root root  9 2008-04-15 16:51 usb-M-Sys_uDiskOnChip_0F801A713040492E &gt; ../../sda
lrwxrwxrwx 1 root root 10 2008-04-15 16:51 usb-M-Sys_uDiskOnChip_0F801A713040492E-part1 &gt; ../../sda1
</pre>
<p>Exactly, by using the /dev/disk/by-id virtual directory, you can see which disk id corresponds to which LUN, as you can see in the next (partial) screenshot:</p>
<p><a href="http://pieter.barrezeele.be/wordpress/wp-content/uploads/2008/05/fc_lun_id.png" rel="lightbox[161]"><img class="aligncenter size-full wp-image-163" title="FC Drive identification" src="http://pieter.barrezeele.be/wordpress/wp-content/uploads/2008/05/fc_lun_id.png" alt="FC SAN Drive/LUN identification" width="500" height="263" /></a></p>
<p>That&#8217;s nice! Now we know that our LUN called dpmgmt-root corresponds to 60:0a:0b:80:00:32:2c:ba:00:00:08:90:48:2a:fe:68 which, according to our second listing, corresponds to /dev/sdg.</p>
<p>Using such long device paths isn&#8217;t really convenient though, so let&#8217;s take this a little further.</p>
<p>Format the device using your preferred filesystem and label your filesystem:</p>
<pre lang="bash">
xen02:/dev/disk/by-id# mkfs.ext3 -L dpmgt-root scsi-3600a0b8000322cba00000890482afe68
mke2fs 1.40-WIP (14-Nov-2006)
scsi-3600a0b8000322cba00000890482afe68 is entire device, not just one partition!
Proceed anyway? (y,n) y
Filesystem label=dpmgt-root
OS type: Linux
Block size=4096 (log=2)
Fragment size=4096 (log=2)
...
</pre>
<p>Reboot your system and check this out:</p>
<pre lang="bash">
xen02:/dev/disk/by-label# ls -l
total 0

lrwxrwxrwx 1 root root  9 2008-05-14 17:28 dpmgmt-root &gt; ../../sdg
lrwxrwxrwx 1 root root 10 2008-04-15 16:51 root &gt; ../../sda1
lrwxrwxrwx 1 root root  9 2008-05-09 13:35 semail-root &gt; ../../sdn
lrwxrwxrwx 1 root root  9 2008-04-15 16:51 tempvm-root &gt; ../../sdf
</pre>
<p>So now, we can address our device as /dev/disk/by-label/dpmgmt-root on every machine that has access to that LUN, now matter what the actual real device path is on that machine.</p>
<p>What&#8217;s even better, is that you even don&#8217;t even have to reboot to update /dev/disk/by-label/<br />
Just trigger udev to reload the system information on /dev/sdg:</p>
<pre lang="bash">
xen06:/dev/disk/by-label# echo add &gt; /sys/block/sdg/uevent
xen06:/dev/disk/by-label# ls
dpmgmt-root root semail-root tempvm-root
</pre>
<p>Et voilà!</p>
]]></content:encoded>
			<wfw:commentRss>http://pieter.barrezeele.be/2008/05/14/identifying-external-fc-disks/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SSH storm &#8211; updated</title>
		<link>http://pieter.barrezeele.be/2008/05/13/ssh-storm/</link>
		<comments>http://pieter.barrezeele.be/2008/05/13/ssh-storm/#comments</comments>
		<pubDate>Tue, 13 May 2008 13:59:25 +0000</pubDate>
		<dc:creator>macbar</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://pieter.barrezeele.be/?p=160</guid>
		<description><![CDATA[The last couple of days, it seems there&#8217;s some kind of ssh botnet trying to spread out. Since I installed DenyHosts some weeks ago, I usually got 5-10 notifications of blocked IP addresses. Last weekend however, I got more than 200 notifications. 
Although I feel rather safe having installed DenyHosts (which I urge you to install [...]]]></description>
			<content:encoded><![CDATA[<p>The last couple of days, it seems there&#8217;s some kind of ssh botnet trying to spread out. Since I installed DenyHosts some weeks ago, I usually got 5-10 notifications of blocked IP addresses. Last weekend however, I got more than 200 notifications. </p>
<p>Although I feel rather safe having installed DenyHosts (which I urge you to install on every SSH accessible server), as a lot of hosts out there aren&#8217;t protected, I fear a new botnet is in the making.</p>
<p>Clearly, someone thinks I need to get more junk in my mailbox. Let me tell you though, 1400 spam mails a day is enough already&#8230;</p>
<p>That&#8217;s why I wrote a very rudimentary script that hooks into DenyHosts and queries a whois server for an abuse email and sends it an email when found.</p>
<p>Update:<br />
I didn&#8217;t notice the difference between the PLUGIN_DENY setting and the mail behaviour of DenyHosts.<br />
By default, DenyHost will send you an email everytime it adds a new host to /etc/hosts.deny, whereas the PLUGIN_DENY script will be invoked every time it adds or <strong>readds</strong> a host to /etc/hosts.deny. That&#8217;s why I now first grep a file with hosts whose hostmaster I already notified of the abuse</p>
<p>The script is ridiculously easy:</p>
<pre lang="bash">
#!/bin/bash

# Get parameter
IP=$1

# Check whether we've already seen this host.
if `grep $IP /var/lib/denyhosts/notified_abuse &gt; /dev/null` ;
then
        echo host already seen
        exit
else
        echo new host, added to logfile
        echo "`date` $IP" &gt;&gt; /var/lib/denyhosts/notified_abuse
fi

# Try to lookup the abuse mailbox
abuse=`whois $IP|grep ^abuse-mailbox:| tail -n 1 |sed -e "s/abuse-mailbox: //"`

# if found an abuse mailbox, send a mail.
if [ "x$abuse" != "x" ];
then
cat &lt;&lt; EOF | mail -a "From: Pieter Barrezeele &lt;xxxxxx@xxxxxxxxxx.be&gt;" -s "SSH brute force attack from $IP" $abuse

Dear Sir/Madam,

Today we experienced an SSH brute force attack originating
from $IP, a host under your responsibility. This probably means
the host in question is compromised.
Please take action to stop this host from attacking us again.

Thanks in advance,
Pieter Barrezeele

PS: this is an automated mail, any errors in this mail are caused by parsing errors.
EOF
fi
</pre>
<p> <br />
I&#8217;d advise you to send the mails to yourself for a few days until you see only new hosts are added. Alternatively, you could copy the contents of /etc/hosts.deny into /var/lib/denyhosts/notified_abuse as well.</p>
]]></content:encoded>
			<wfw:commentRss>http://pieter.barrezeele.be/2008/05/13/ssh-storm/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Ozark Henry @ Irisfeesten</title>
		<link>http://pieter.barrezeele.be/2008/05/13/ozark-henry-irisfeesten/</link>
		<comments>http://pieter.barrezeele.be/2008/05/13/ozark-henry-irisfeesten/#comments</comments>
		<pubDate>Tue, 13 May 2008 08:23:33 +0000</pubDate>
		<dc:creator>macbar</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://pieter.barrezeele.be/?p=157</guid>
		<description><![CDATA[Last weekend the Iris festivities took place in Brussels. One of the headliner acts were performances by Daan and Ozark Henry. Of course I couldn&#8217;t miss out on that last one. We arrived just in time to enjoy Housewife, one of Daan&#8217;s latest and greatest songs after which it was Piet Goddaer&#8217;s turn to entertain [...]]]></description>
			<content:encoded><![CDATA[<p>Last weekend the Iris festivities took place in Brussels. One of the headliner acts were performances by Daan and Ozark Henry. Of course I couldn&#8217;t miss out on that last one. We arrived just in time to enjoy Housewife, one of Daan&#8217;s latest and greatest songs after which it was Piet Goddaer&#8217;s turn to entertain the masses arrived at the Paleizenplein just in front of the royal palace.</p>
<p>As usual, this concert was a nice mix of his recent work as well some of his older hits, including &#8220;Sweet Instigator&#8221;, &#8220;Word up&#8221;, &#8220;Rescue&#8221; and even &#8220;Inhaling&#8221;.</p>
<p>To conclude, I&#8217;d like to say: &#8220;Merci, Piet!&#8221; <img src='http://pieter.barrezeele.be/wordpress/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
<p><a href="http://pieter.barrezeele.be/wordpress/wp-content/uploads/2008/05/ozark_henry_iris.jpg" rel="lightbox"><br />
<img class="aligncenter size-medium wp-image-158" title="Ozark Henry @ Irisfeesten" src="http://pieter.barrezeele.be/wordpress/wp-content/uploads/2008/05/ozark_henry_iris-480x360.jpg" alt="Ozark Henry @ Irisfeesten" width="480" height="360" /></a></p>
<p><a href="http://pieter.barrezeele.be/wordpress/wp-content/uploads/2008/05/ozark-henry-irisfeesten-encore.jpg" rel="lightbox"><img class="aligncenter size-medium wp-image-159" title="Ozark Henry Irisfeesten encore" src="http://pieter.barrezeele.be/wordpress/wp-content/uploads/2008/05/ozark-henry-irisfeesten-encore-480x359.jpg" alt="Ozark Henry @ Irisfeesten encore" width="480" height="359" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://pieter.barrezeele.be/2008/05/13/ozark-henry-irisfeesten/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Just got back from the mobileschool.org streetsleep event</title>
		<link>http://pieter.barrezeele.be/2008/04/19/just-got-back-from-the-mobileschoolorg-streetsleep-event/</link>
		<comments>http://pieter.barrezeele.be/2008/04/19/just-got-back-from-the-mobileschoolorg-streetsleep-event/#comments</comments>
		<pubDate>Sat, 19 Apr 2008 20:49:59 +0000</pubDate>
		<dc:creator>macbar</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://pieter.barrezeele.be/2008/04/19/just-got-back-from-the-mobileschoolorg-streetsleep-event/</guid>
		<description><![CDATA[And it was good. Well, it&#8217;s actually not over yet. A lot of enthousiasts chose to sleep over at the Martelarenplein in front of Leuven&#8217;s railway station, to show solidarity with streetchildren in third world countries. Hopefully, this event will reach its goal by gathering enough attention to its cause.
A lot of workshops ranging from [...]]]></description>
			<content:encoded><![CDATA[<p>And it was good. Well, it&#8217;s actually not over yet. A lot of enthousiasts chose to sleep over at the Martelarenplein in front of Leuven&#8217;s railway station, to show solidarity with streetchildren in third world countries. Hopefully, this event will reach its goal by gathering enough attention to its cause.<br />
A lot of workshops ranging from street cooking to street dancing, short sets by street artists for this occasion: Milow, Klaas from Yevgueni and Anton Walgrave, an election of the &#8220;nicest&#8221; street shelter made from rubbish.<br />
I&#8217;m really impressed by the courage these people show by sleeping outside on this cold, rainy night. Hats off!</p>
<p>A small impression:</p>
<p align="center"><a href="http://www.mobileschool.org/"><img id="image22" src="http://pieter.barrezeele.be/wordpress/wp-content/uploads/2008/04/IMG_0198.JPG" alt="Milow@StreetSleep event" width="500" /></a></p>
<p> </p>
]]></content:encoded>
			<wfw:commentRss>http://pieter.barrezeele.be/2008/04/19/just-got-back-from-the-mobileschoolorg-streetsleep-event/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
