<?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>Marius van Witzenburg &#187; Music</title>
	<atom:link href="http://mariusvw.com/category/music/feed/" rel="self" type="application/rss+xml" />
	<link>http://mariusvw.com</link>
	<description>&#34;Learned my lesson in life, now setting my action to stay in life.&#34;</description>
	<lastBuildDate>Mon, 26 Jul 2010 10:54:36 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>How to batch rename files and use the file its own name content with Bash</title>
		<link>http://mariusvw.com/2010/07/07/how-to-batch-rename-files-and-use-the-file-its-own-name-content-with-bash/</link>
		<comments>http://mariusvw.com/2010/07/07/how-to-batch-rename-files-and-use-the-file-its-own-name-content-with-bash/#comments</comments>
		<pubDate>Wed, 07 Jul 2010 09:31:42 +0000</pubDate>
		<dc:creator>mariusvw</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[FreeBSD]]></category>
		<category><![CDATA[Music]]></category>
		<category><![CDATA[Bash]]></category>
		<category><![CDATA[Batch]]></category>
		<category><![CDATA[Content]]></category>
		<category><![CDATA[Filename]]></category>
		<category><![CDATA[MP3]]></category>
		<category><![CDATA[Name]]></category>
		<category><![CDATA[Position]]></category>
		<category><![CDATA[Rename]]></category>

		<guid isPermaLink="false">http://mariusvw.com/?p=3135</guid>
		<description><![CDATA[In my example the files had the right content in their name only the position was wrong. The original files their name were: The file title - vendor_1.mp3 The file title - vendor_4.mp3 The file title - vendor_22.mp3 The file title - vendor_39.mp3 But afterwards I found this is a difficult way of searching on [...]]]></description>
			<content:encoded><![CDATA[<p>In my example the files had the right content in their name only the position was wrong.</p>
<p>The original files their name were:</p>
<blockquote><p>
The file title - vendor_1.mp3<br />
The file title - vendor_4.mp3<br />
The file title - vendor_22.mp3<br />
The file title - vendor_39.mp3
</p></blockquote>
<p>But afterwards I found this is a difficult way of searching on a vender. Which I do the most.<br />
So, I decided to make a simple rename script to move the vendor to the beginning of the file name and the title to the end of the filename.</p>
<p>This would give the following filenames as result:</p>
<blockquote><p>
vendor_1 - The file title.mp3<br />
vendor_4 - The file title.mp3<br />
vendor_22 - The file title.mp3<br />
vendor_39 - The file title.mp3
</p></blockquote>
<p>I hope you find this useful or that you can modify it for your own use. You can see the tiny script I used below.</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #666666; font-style: italic;">#!/usr/local/bin/bash</span>
&nbsp;
<span style="color: #007800;">root</span>=<span style="color: #ff0000;">&quot;/my/files/location&quot;</span>
&nbsp;
<span style="color: #c20cb9; font-weight: bold;">find</span> <span style="color: #007800;">$root</span> <span style="color: #660033;">-type</span> f <span style="color: #000000; font-weight: bold;">|</span> <span style="color: #000000; font-weight: bold;">while</span> <span style="color: #c20cb9; font-weight: bold;">read</span> <span style="color: #c20cb9; font-weight: bold;">file</span>
<span style="color: #000000; font-weight: bold;">do</span>
    <span style="color: #007800;">filename</span>=<span style="color: #800000;">${file##*/}</span>
    <span style="color: #007800;">piece1</span>=<span style="color: #800000;">${filename%% - *}</span>
    <span style="color: #007800;">piece2</span>=<span style="color: #800000;">${filename##* - }</span>
    <span style="color: #007800;">extension</span>=<span style="color: #800000;">${filename##*.}</span>
    <span style="color: #007800;">newfile</span>=<span style="color: #ff0000;">&quot;<span style="color: #007800;">${piece2%%.$extension}</span> - <span style="color: #007800;">${piece1}</span>.<span style="color: #007800;">$extension</span>&quot;</span>
    <span style="color: #c20cb9; font-weight: bold;">mv</span> <span style="color: #ff0000;">&quot;<span style="color: #007800;">${file}</span>&quot;</span> <span style="color: #ff0000;">&quot;<span style="color: #007800;">${root}</span>/<span style="color: #007800;">${newfile}</span>&quot;</span>
<span style="color: #000000; font-weight: bold;">done</span></pre></div></div>

<!-- PHP 5.x -->]]></content:encoded>
			<wfw:commentRss>http://mariusvw.com/2010/07/07/how-to-batch-rename-files-and-use-the-file-its-own-name-content-with-bash/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>project: www.worldofomnia.com (terminated)</title>
		<link>http://mariusvw.com/2010/06/17/project-www-worldofomnia-com-terminated/</link>
		<comments>http://mariusvw.com/2010/06/17/project-www-worldofomnia-com-terminated/#comments</comments>
		<pubDate>Thu, 17 Jun 2010 20:22:25 +0000</pubDate>
		<dc:creator>mariusvw</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Music]]></category>
		<category><![CDATA[CMS]]></category>
		<category><![CDATA[Developer]]></category>
		<category><![CDATA[OMNIA]]></category>
		<category><![CDATA[Pagan]]></category>
		<category><![CDATA[Pim]]></category>
		<category><![CDATA[Project]]></category>
		<category><![CDATA[Website]]></category>

		<guid isPermaLink="false">http://mariusvw.com/?p=1777</guid>
		<description><![CDATA[After a long period of time working on this project there is an end in the working together. The site owner's opinion is that the building goes too slow, since I don't have much time next to my work to finish the last pieces we came at this point to pull the plug. Too bad [...]]]></description>
			<content:encoded><![CDATA[<p>After a long period of time working on this project there is an end in the working together.</p>
<p>The site owner's opinion is that the building goes too slow, since I don't have much time next to my work to finish the last pieces we came at this point to pull the plug. Too bad but still it was a nice project to work for.</p>
<p>The future makes place for a new person to take the project, I wish the new webdeveloper good luck with building the new website for <a href='http://www.worldofomnia.com/' rel='external ' title=''>OMNIA</a>, hope you have more time than I had <img src='http://mariusvw.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' title="project: www.worldofomnia.com (terminated) photo" /> </p>
<p>Ps. I will finish the project on my own time, got some people who really wanted to see how the CMS system works. For more information about this CMS goto the page of <a href="http://www.persc.nl/content.php?mod=content&#038;c=pim">Pim</a>.</p>
<!-- PHP 5.x -->]]></content:encoded>
			<wfw:commentRss>http://mariusvw.com/2010/06/17/project-www-worldofomnia-com-terminated/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Easy rating in iTunes with &#8216;I Love Stars&#8217; in your extra menu</title>
		<link>http://mariusvw.com/2010/04/03/easy-rating-in-itunes-with-i-love-stars-in-your-extra-menu/</link>
		<comments>http://mariusvw.com/2010/04/03/easy-rating-in-itunes-with-i-love-stars-in-your-extra-menu/#comments</comments>
		<pubDate>Sat, 03 Apr 2010 16:26:26 +0000</pubDate>
		<dc:creator>mariusvw</dc:creator>
				<category><![CDATA[Mac OS X]]></category>
		<category><![CDATA[Music]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[Extramenu]]></category>
		<category><![CDATA[iTunes]]></category>
		<category><![CDATA[Ranking]]></category>
		<category><![CDATA[Rating]]></category>
		<category><![CDATA[Stars]]></category>

		<guid isPermaLink="false">http://mariusvw.com/?p=1460</guid>
		<description><![CDATA[You ever wanted to have your iTunes song rating to be a bit more accessable ? Well, use this plugin! You get a nice tool at your extramenu where you can easy rank your songs how you like without having to click 3 times to get the job done You can download it at: See [...]]]></description>
			<content:encoded><![CDATA[<p>You ever wanted to have your iTunes song rating to be a bit more accessable ?</p>
<p>Well, use this plugin! You get a nice tool at your extramenu where you can easy rank your songs how you like without having to click 3 times to get the job done <img src='http://mariusvw.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' title="Easy rating in iTunes with I Love Stars in your extra menu photo" /> </p>
<p>You can download it at:<br />
<a href="http://www.apple.com/downloads/macosx/ipod_itunes/ilovestars.html"></p>
<p>See a preview here:<br />
<img src="http://mariusvw.com/wp-content/uploads/2010/04/ilovestars_20080516102551.jpg" alt="ilovestars 20080516102551 Easy rating in iTunes with I Love Stars in your extra menu" title="ilovestars" width="300" height="141" class="aligncenter size-full wp-image-1557" /></a></p>
<!-- PHP 5.x -->]]></content:encoded>
			<wfw:commentRss>http://mariusvw.com/2010/04/03/easy-rating-in-itunes-with-i-love-stars-in-your-extra-menu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Did you ever heard the band Cannibal Corpse? Well, I did, but not like this!</title>
		<link>http://mariusvw.com/2010/03/27/did-you-ever-heard-the-band-cannibal-corpse-well-i-did-but-not-like-this/</link>
		<comments>http://mariusvw.com/2010/03/27/did-you-ever-heard-the-band-cannibal-corpse-well-i-did-but-not-like-this/#comments</comments>
		<pubDate>Sat, 27 Mar 2010 11:50:24 +0000</pubDate>
		<dc:creator>mariusvw</dc:creator>
				<category><![CDATA[Music]]></category>
		<category><![CDATA[Cannibal Corpse]]></category>
		<category><![CDATA[Hammer]]></category>
		<category><![CDATA[Metal]]></category>
		<category><![CDATA[Remix]]></category>

		<guid isPermaLink="false">http://mariusvw.com/?p=1482</guid>
		<description><![CDATA[Original: Cannibal Corpse - Hammer Smashed Face Remake: Cannibal Corpse - Hammer Smashed Face(Radio Disney Version)]]></description>
			<content:encoded><![CDATA[<p>Original: <strong>Cannibal Corpse - Hammer Smashed Face</strong><br />
<object type="application/x-shockwave-flash" data="http://www.youtube.com/v/fTpQOZcNASw&#038;fs=1" width="425" height="344"><param name="movie" value="http://www.youtube.com/v/fTpQOZcNASw&#038;fs=1" /><param name="FlashVars" value="playerMode=embedded"/><param name="wmode" value="transparent"/></object></p>
<p>Remake: <strong>Cannibal Corpse - Hammer Smashed Face(Radio Disney Version)</strong><br />
<object type="application/x-shockwave-flash" data="http://www.youtube.com/v/C-eYIeUPD0s&#038;fs=1" width="425" height="344"><param name="movie" value="http://www.youtube.com/v/C-eYIeUPD0s&#038;fs=1" /><param name="FlashVars" value="playerMode=embedded"/><param name="wmode" value="transparent"/></object></p>
<!-- PHP 5.x -->]]></content:encoded>
			<wfw:commentRss>http://mariusvw.com/2010/03/27/did-you-ever-heard-the-band-cannibal-corpse-well-i-did-but-not-like-this/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Metallica &#8211; Enter Sandman&#8230; Do you know the song like this?</title>
		<link>http://mariusvw.com/2010/03/24/metallica-enter-sandman-do-you-know-the-song-like-this/</link>
		<comments>http://mariusvw.com/2010/03/24/metallica-enter-sandman-do-you-know-the-song-like-this/#comments</comments>
		<pubDate>Wed, 24 Mar 2010 14:01:50 +0000</pubDate>
		<dc:creator>mariusvw</dc:creator>
				<category><![CDATA[Music]]></category>
		<category><![CDATA[Enter]]></category>
		<category><![CDATA[Jazz]]></category>
		<category><![CDATA[Metal]]></category>
		<category><![CDATA[Metallica]]></category>
		<category><![CDATA[Remix]]></category>
		<category><![CDATA[Sandman]]></category>

		<guid isPermaLink="false">http://mariusvw.com/?p=1457</guid>
		<description><![CDATA[Original: Metallica - Enter Sandman Remake: Metallica - Enter Sandman (Smooth Jazz Version)]]></description>
			<content:encoded><![CDATA[<p>Original: <strong>Metallica - Enter Sandman</strong><br />
<object type="application/x-shockwave-flash" data="http://www.youtube.com/v/uY3LAFJbKyY&#038;fs=1" width="425" height="344"><param name="movie" value="http://www.youtube.com/v/uY3LAFJbKyY&#038;fs=1" /><param name="FlashVars" value="playerMode=embedded"/><param name="wmode" value="transparent"/></object></p>
<p>Remake: <strong>Metallica - Enter Sandman (Smooth Jazz Version)</strong><br />
<object type="application/x-shockwave-flash" data="http://www.youtube.com/v/OBmM79YadYM&#038;fs=1" width="425" height="344"><param name="movie" value="http://www.youtube.com/v/OBmM79YadYM&#038;fs=1" /><param name="FlashVars" value="playerMode=embedded"/><param name="wmode" value="transparent"/></object></p>
<!-- PHP 5.x -->]]></content:encoded>
			<wfw:commentRss>http://mariusvw.com/2010/03/24/metallica-enter-sandman-do-you-know-the-song-like-this/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>OMNIA Sleeveless Hoody pictures</title>
		<link>http://mariusvw.com/2010/02/27/omnia-sleeveless-hoody-pictures/</link>
		<comments>http://mariusvw.com/2010/02/27/omnia-sleeveless-hoody-pictures/#comments</comments>
		<pubDate>Sat, 27 Feb 2010 17:08:44 +0000</pubDate>
		<dc:creator>mariusvw</dc:creator>
				<category><![CDATA[Clothing]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Music]]></category>
		<category><![CDATA[Clothes]]></category>
		<category><![CDATA[Folk]]></category>
		<category><![CDATA[Hoodies]]></category>
		<category><![CDATA[Hoody]]></category>
		<category><![CDATA[OMNIA]]></category>
		<category><![CDATA[Pagan]]></category>
		<category><![CDATA[Sleeveless]]></category>
		<category><![CDATA[Webshop]]></category>

		<guid isPermaLink="false">http://mariusvw.com/?p=1288</guid>
		<description><![CDATA[One of the limited Sleeveless Hoodies from the OMNIA webshop. Some of you might know the hoody with the sleeves... They were dropped off while transporting]]></description>
			<content:encoded><![CDATA[<p>One of the limited Sleeveless Hoodies from the <a href='http://www.worldofomnia.com/' rel='external ' title=''>OMNIA</a> webshop.</p>
<p>Some of you might know the hoody with the sleeves...<br />
They were dropped off while transporting <img src='http://mariusvw.com/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' title="OMNIA Sleeveless Hoody pictures photo" /> </p>

<a href='http://mariusvw.com/2010/02/27/omnia-sleeveless-hoody-pictures/imga0004/' title='OMNIA Sleeveless Hoody - back'><img width="150" height="150" src="http://mariusvw.com/wp-content/uploads/2010/02/IMGA0004-150x150.jpg" class="attachment-thumbnail" alt="OMNIA Sleeveless Hoody - back" title="OMNIA Sleeveless Hoody - back" /></a>
<a href='http://mariusvw.com/2010/02/27/omnia-sleeveless-hoody-pictures/imga0002-5/' title='OMNIA Sleeveless Hoody - front'><img width="150" height="150" src="http://mariusvw.com/wp-content/uploads/2010/02/IMGA0002-150x150.jpg" class="attachment-thumbnail" alt="OMNIA Sleeveless Hoody - front" title="OMNIA Sleeveless Hoody - front" /></a>

<!-- PHP 5.x -->]]></content:encoded>
			<wfw:commentRss>http://mariusvw.com/2010/02/27/omnia-sleeveless-hoody-pictures/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Always fun to get a order with clothes in a fancy box from OMNIA ;-)</title>
		<link>http://mariusvw.com/2010/02/27/always-fun-to-get-a-order-with-clothes-in-a-fancy-box-from-omnia/</link>
		<comments>http://mariusvw.com/2010/02/27/always-fun-to-get-a-order-with-clothes-in-a-fancy-box-from-omnia/#comments</comments>
		<pubDate>Sat, 27 Feb 2010 13:53:19 +0000</pubDate>
		<dc:creator>mariusvw</dc:creator>
				<category><![CDATA[Living]]></category>
		<category><![CDATA[Music]]></category>
		<category><![CDATA[Shops]]></category>
		<category><![CDATA[Box]]></category>
		<category><![CDATA[Clothes]]></category>
		<category><![CDATA[Folk]]></category>
		<category><![CDATA[Hoody]]></category>
		<category><![CDATA[OMNIA]]></category>
		<category><![CDATA[Pagan]]></category>
		<category><![CDATA[Shipment]]></category>
		<category><![CDATA[Webshop]]></category>

		<guid isPermaLink="false">http://mariusvw.com/?p=1279</guid>
		<description><![CDATA[We received our order last week from the OMNIA webshop. Thanks Chloe and Monique]]></description>
			<content:encoded><![CDATA[<p><a href="http://mariusvw.com/wp-content/uploads/2010/02/IMGA0001.jpg" rel="lightbox[1279]" title="OMINA shipment box"><img src="http://mariusvw.com/wp-content/uploads/2010/02/IMGA0001-511x341.jpg" alt="IMGA0001 511x341 Always fun to get a order with clothes in a fancy box from OMNIA ; )" title="OMINA shipment box" width="511" height="341" class="alignnone size-medium wp-image-1278" /></a></p>
<p>We received our order last week from the <a href='http://www.worldofomnia.com/' rel='external ' title=''>OMNIA</a> webshop.</p>
<p>Thanks Chloe and Monique <img src='http://mariusvw.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':-D' class='wp-smiley' title="Always fun to get a order with clothes in a fancy box from OMNIA ; ) photo" /> </p>
<!-- PHP 5.x -->]]></content:encoded>
			<wfw:commentRss>http://mariusvw.com/2010/02/27/always-fun-to-get-a-order-with-clothes-in-a-fancy-box-from-omnia/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Some funny movies using camera stop-motion. Which I like a lot :-)</title>
		<link>http://mariusvw.com/2010/02/19/some-funny-movies-using-camera-stop-motion-which-i-like-a-lot/</link>
		<comments>http://mariusvw.com/2010/02/19/some-funny-movies-using-camera-stop-motion-which-i-like-a-lot/#comments</comments>
		<pubDate>Fri, 19 Feb 2010 20:10:31 +0000</pubDate>
		<dc:creator>mariusvw</dc:creator>
				<category><![CDATA[Funnies]]></category>
		<category><![CDATA[Music]]></category>
		<category><![CDATA[Clips]]></category>
		<category><![CDATA[Guitar]]></category>
		<category><![CDATA[Lady]]></category>
		<category><![CDATA[Movie]]></category>
		<category><![CDATA[piano]]></category>
		<category><![CDATA[T-Shirt]]></category>
		<category><![CDATA[War]]></category>

		<guid isPermaLink="false">http://mariusvw.com/?p=1273</guid>
		<description><![CDATA[T-Shirt War!! (stop-motion music video): Guitar: Impossible (stop motion music short by MysteryGuitarMan): I hope you'll like them too... I especially like the second movie with the guitar. Since I play guitar my self The last one is a impressive movie clip of a lady playing the piano with the song 'Chop Suey': http://www.dumpert.nl/mediabase/836441/ed9a8fce/dumpert_muziek.html]]></description>
			<content:encoded><![CDATA[<p>T-Shirt War!! (stop-motion music video):</p>
<p><object type="application/x-shockwave-flash" data="http://www.youtube.com/v/DKWdSCt4jGE&#038;fs=1" width="425" height="344"><param name="movie" value="http://www.youtube.com/v/DKWdSCt4jGE&#038;fs=1" /><param name="FlashVars" value="playerMode=embedded"/><param name="wmode" value="transparent"/></object></p>
<p>Guitar: Impossible (stop motion music short by MysteryGuitarMan):</p>
<p><object type="application/x-shockwave-flash" data="http://www.youtube.com/v/MuU00Q3RhDg&#038;fs=1" width="425" height="344"><param name="movie" value="http://www.youtube.com/v/MuU00Q3RhDg&#038;fs=1" /><param name="FlashVars" value="playerMode=embedded"/><param name="wmode" value="transparent"/></object></p>
<p>I hope you'll like them too...<br />
I especially like the second movie with the guitar. Since I play guitar my self <img src='http://mariusvw.com/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' title="Some funny movies using camera stop motion. Which I like a lot : ) photo" /> </p>
<p>The last one is a impressive movie clip of a lady playing the piano with the song 'Chop Suey':</p>
<p>http://www.dumpert.nl/mediabase/836441/ed9a8fce/dumpert_muziek.html</p>
<!-- PHP 5.x -->]]></content:encoded>
			<wfw:commentRss>http://mariusvw.com/2010/02/19/some-funny-movies-using-camera-stop-motion-which-i-like-a-lot/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>With a lot of hard work of us all we present: Raven Times edition 8</title>
		<link>http://mariusvw.com/2010/02/07/with-a-lot-of-hard-work-of-us-all-we-present-raven-times-edition-8/</link>
		<comments>http://mariusvw.com/2010/02/07/with-a-lot-of-hard-work-of-us-all-we-present-raven-times-edition-8/#comments</comments>
		<pubDate>Sun, 07 Feb 2010 10:24:54 +0000</pubDate>
		<dc:creator>mariusvw</dc:creator>
				<category><![CDATA[Events]]></category>
		<category><![CDATA[Music]]></category>
		<category><![CDATA[Acoustic]]></category>
		<category><![CDATA[Celtic]]></category>
		<category><![CDATA[Event]]></category>
		<category><![CDATA[Fairyball]]></category>
		<category><![CDATA[Folk]]></category>
		<category><![CDATA[Fun]]></category>
		<category><![CDATA[Irish]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[OMNIA]]></category>
		<category><![CDATA[Pagan]]></category>
		<category><![CDATA[Pagan Folk]]></category>
		<category><![CDATA[Raven Times]]></category>
		<category><![CDATA[RavenTimes]]></category>
		<category><![CDATA[Sexy]]></category>

		<guid isPermaLink="false">http://mariusvw.com/?p=1248</guid>
		<description><![CDATA[The past months we all worked hard to release the new Raven Times edition, today its finally the moment. As usual it will be released in four different languages: English / Dutch / German / French. Please visit the website of OMNIA to view it on the fanpages. You can find their website here. For [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://mariusvw.com/wp-content/uploads/2010/02/RavenTimes.png" alt="RavenTimes With a lot of hard work of us all we present: Raven Times edition 8" title="RavenTimes" width="600" height="245" class="alignnone size-full wp-image-1257" /></p>
<p>The past months we all worked hard to release the new Raven Times edition, today its finally the moment.</p>
<p>As usual it will be released in four different languages: English / Dutch / German / French.</p>
<p>Please visit the website of <a href='http://www.worldofomnia.com/' rel='external ' title=''>OMNIA</a> to view it on the fanpages.<br />
You can find their website <a href="http://www.worldofomnia.com">here</a>.</p>
<p>For all you guys and girls out there... Have fun reading...</p>
<p>Hope to see you soon on the <a href='http://www.fairyball.nl' rel='external ' title=''>Fairy Ball</a> <img src='http://mariusvw.com/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' title="With a lot of hard work of us all we present: Raven Times edition 8 photo" /> </p>
<p>~~<br />
Editors: Femke, Steve Sic en Jenny<br />
German translation: Bienchen (Maja)<br />
French translation: Célie<br />
Dutch translation: Femke<br />
Lay-out en computer stuff: Marius von Witzenbürg (me <img src='http://mariusvw.com/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' title="With a lot of hard work of us all we present: Raven Times edition 8 photo" /> )<br />
Drawings: Miez, Steve Sic and Alan Lee<br />
Photos: Marcel Bakker (plus many un named others)<br />
All copyrights on artwork text and photos © 2010 <a href='http://www.worldofomnia.com/' rel='external ' title=''>OMNIA</a>/<a href='http://www.paganscum.com' rel='external ' title=''>PaganScum</a> records</p>
<!-- PHP 5.x -->]]></content:encoded>
			<wfw:commentRss>http://mariusvw.com/2010/02/07/with-a-lot-of-hard-work-of-us-all-we-present-raven-times-edition-8/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>14-02-2010, Fairy Ball III: Extra Sexy Valentine&#8217;s Day Special, Bibelot, Dordrecht, NL (new flyer)</title>
		<link>http://mariusvw.com/2010/02/02/14-02-2010-fairy-ball-iii-extra-sexy-valentines-day-special-bibelot-dordrecht-nl-new-flyer/</link>
		<comments>http://mariusvw.com/2010/02/02/14-02-2010-fairy-ball-iii-extra-sexy-valentines-day-special-bibelot-dordrecht-nl-new-flyer/#comments</comments>
		<pubDate>Tue, 02 Feb 2010 19:04:48 +0000</pubDate>
		<dc:creator>mariusvw</dc:creator>
				<category><![CDATA[Events]]></category>
		<category><![CDATA[Music]]></category>
		<category><![CDATA[Celtic]]></category>
		<category><![CDATA[Event]]></category>
		<category><![CDATA[Fairy]]></category>
		<category><![CDATA[Fairyball]]></category>
		<category><![CDATA[Fantasy]]></category>
		<category><![CDATA[Folk]]></category>
		<category><![CDATA[Irish]]></category>
		<category><![CDATA[Live]]></category>
		<category><![CDATA[OMNIA]]></category>
		<category><![CDATA[Pagan]]></category>
		<category><![CDATA[Pagan Folk]]></category>
		<category><![CDATA[Sexy]]></category>
		<category><![CDATA[Show]]></category>

		<guid isPermaLink="false">http://mariusvw.com/?p=1243</guid>
		<description><![CDATA[OMNIA will give a fantastic show with a lot of friends on stage. Kelvin Kalvus, Las Fuegas, Aisha, Kaat, Kelten Zonder Grenzen (including Balfolk Instruction) and more friends... Dresscode: Sexy or lovable fairy/fantasy style or all in black/Omnia shirt (for the visitors as well as on stage!). Especially for us the bar will sell mead! [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://mariusvw.com/wp-content/uploads/2010/02/2.3.jpg" rel="lightbox[1243]" title="<a href='http://www.worldofomnia.com/' rel='external ' title=''>OMNIA</a> <a href='http://www.fairyball.nl/' rel='external ' title=''>Fairyball</a> III, 14-02-2010"><img src="http://mariusvw.com/wp-content/uploads/2010/02/2.3-512x370.jpg" alt="2.3 512x370 14 02 2010, Fairy Ball III: Extra Sexy Valentines Day Special, Bibelot, Dordrecht, NL (new flyer)" title="<a href='http://www.worldofomnia.com/' rel='external ' title='' />OMNIA</a> <a href='http://www.fairyball.nl/' rel='external ' title=''>Fairyball</a> III, 14-02-2010" width="512" height="370" class="alignnone size-medium wp-image-1244" /></a></p>
<p><a href='http://www.worldofomnia.com/' rel='external ' title=''>OMNIA</a> will give a fantastic show with a lot of friends on stage. Kelvin Kalvus, Las Fuegas, Aisha, Kaat, Kelten Zonder Grenzen (including Balfolk Instruction) and more friends...<br />
Dresscode: Sexy or lovable fairy/fantasy style or all in black/Omnia shirt (for the visitors as well as on stage!). Especially for us the bar will sell mead! Tickets €21,-....</p>
<p>More info, click <a href="http://www.bibelot.net/ProgrammaDetail.aspx?id=917">here</a>.</p>
<p>And not to forget, the route is <a href="http://www.bibelot.net/content.aspx?id=179">here</a>.</p>
<p><object width="400" height="300"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="movie" value="http://vimeo.com/moogaloop.swf?clip_id=7863677&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=00ADEF&amp;fullscreen=1" /><embed src="http://vimeo.com/moogaloop.swf?clip_id=7863677&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=00ADEF&amp;fullscreen=1" type="application/x-shockwave-flash" allowfullscreen="true" allowscriptaccess="always" width="400" height="300"></embed></object><br /></p>
<p>Do we see you there?<br />
Hope we will! <img src='http://mariusvw.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' title="14 02 2010, Fairy Ball III: Extra Sexy Valentines Day Special, Bibelot, Dordrecht, NL (new flyer) photo" /> </p>
<!-- PHP 5.x -->]]></content:encoded>
			<wfw:commentRss>http://mariusvw.com/2010/02/02/14-02-2010-fairy-ball-iii-extra-sexy-valentines-day-special-bibelot-dordrecht-nl-new-flyer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
