<?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>OMG WTF BBQ</title>
	<atom:link href="http://omgwtfbbq.nl/feed/" rel="self" type="application/rss+xml" />
	<link>http://omgwtfbbq.nl</link>
	<description>Minimum awesome rants</description>
	<lastBuildDate>Wed, 25 Aug 2010 08:53:02 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Futurama theme song</title>
		<link>http://omgwtfbbq.nl/2010/08/06/futurama-theme-song/</link>
		<comments>http://omgwtfbbq.nl/2010/08/06/futurama-theme-song/#comments</comments>
		<pubDate>Fri, 06 Aug 2010 16:10:11 +0000</pubDate>
		<dc:creator>Kevin Pors</dc:creator>
				<category><![CDATA[Fun stuff]]></category>

		<guid isPermaLink="false">http://omgwtfbbq.nl/?p=109</guid>
		<description><![CDATA[Couldn&#8217;t find the Futurama theme song anywhere (a proper one, without the sound of the spaceship and the crash-noise etc.), so I extracted it from the ending from a random episode. 
Get it here!
]]></description>
			<content:encoded><![CDATA[<p>Couldn&#8217;t find the Futurama theme song anywhere (a proper one, without the sound of the spaceship and the crash-noise etc.), so I extracted it from the ending from a random episode. </p>
<p>Get it <a href='http://omgwtfbbq.nl/wp-content/uploads/2010/08/Futurama-theme.ogg'>here</a>!</p>
]]></content:encoded>
			<wfw:commentRss>http://omgwtfbbq.nl/2010/08/06/futurama-theme-song/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="http://omgwtfbbq.nl/wp-content/uploads/2010/08/Futurama-theme.ogg" length="1503544" type="audio/ogg" />
		</item>
		<item>
		<title>Convert media files for use with minidlna</title>
		<link>http://omgwtfbbq.nl/2010/08/02/convert-media-files-for-use-with-minidlna/</link>
		<comments>http://omgwtfbbq.nl/2010/08/02/convert-media-files-for-use-with-minidlna/#comments</comments>
		<pubDate>Mon, 02 Aug 2010 11:03:40 +0000</pubDate>
		<dc:creator>Kevin Pors</dc:creator>
				<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://omgwtfbbq.nl/?p=105</guid>
		<description><![CDATA[I use minidlna as a media server for my PS3. It&#8217;s quite useful in its current state, except that it doesn&#8217;t do transcoding on the fly. Therefore I need to convert my video files to some format the PS3 can read. Finally found the proper command line for ffmpeg to convert any video file to [...]]]></description>
			<content:encoded><![CDATA[<p>I use <a title="Minidlna (opens up in new window)" href="http://minidlna.sf.net" target="_blank">minidlna</a> as a media server for my PS3. It&#8217;s quite useful in its current state, except that it doesn&#8217;t do transcoding on the fly. Therefore I need to convert my video files to some format the PS3 can read. Finally found the proper command line for <a href="http://ffmpeg.org" target="_blank">ffmpeg</a> to convert any video file to mp4 with aac encoding. But first, make sure you got the proper codecs installed. For Ubuntu, I did this:</p>
<pre class="brush:bash"> sudo apt-get purge ffmpeg
sudo apt-get update
sudo apt-get install libavcodec-unstripped-51 libavdevice-unstripped-52 libavformat-unstripped-52 libavutil-unstripped-49 libpostproc-unstripped-51 libswscale-unstripped-0 ffmpeg
#sudo apt-get autoremove # this one is not really necessary though.
</pre>
<p>then I use this small script to find all files in the current directory, and encode them in a new directory <code>encoded</code>.</p>
<pre class="brush:bash">#!/bin/bash
mkdir ./encoded/

for file in *
do
    if [ -f "$file" ]; then
        filenoext="${file%.*}"
        echo "File name: $filenoext"
        ffmpeg -y -i "${file}" -acodec libfaac -ac 2 -ab 128k -vcodec mpeg4 -r 24 -b 800k -mbd 2 -aic 2 "./encoded/$filenoext.mp4"
    fi
done
</pre>
]]></content:encoded>
			<wfw:commentRss>http://omgwtfbbq.nl/2010/08/02/convert-media-files-for-use-with-minidlna/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Memorable Digg comments</title>
		<link>http://omgwtfbbq.nl/2010/05/12/memorable-digg-comments/</link>
		<comments>http://omgwtfbbq.nl/2010/05/12/memorable-digg-comments/#comments</comments>
		<pubDate>Wed, 12 May 2010 09:43:40 +0000</pubDate>
		<dc:creator>Kevin Pors</dc:creator>
				<category><![CDATA[Fun stuff]]></category>
		<category><![CDATA[digg]]></category>
		<category><![CDATA[stuff]]></category>

		<guid isPermaLink="false">http://omgwtfbbq.nl/?p=94</guid>
		<description><![CDATA[I usually wander around on Digg to find some funny stories or pictures and other newsworthy things. Occasionally, I come by some very funny comments which I never seem to remember. Therefore, I decided to make a list of all my favorite comments (Digg should have a favorite comments section or something&#8230;). For starters:

keganflemming (link): [...]]]></description>
			<content:encoded><![CDATA[<p>I usually wander around on <a title="digg.com front page" href="http://digg.com" target="_blank">Digg </a>to find some funny stories or pictures and other newsworthy things. Occasionally, I come by some very funny comments which I never seem to remember. Therefore, I decided to make a list of all my favorite comments (Digg should have a favorite comments section or something&#8230;). For starters:</p>
<ul>
<li><strong>keganflemming</strong> (<a title="Link to keganflemming's comment" href="http://digg.com/celebrity/Learn_From_Lindsay_Lohan_Just_Say_No_Pic#c-authc32674724" target="_blank">link</a>): &#8220;My favorite drink is a &#8216;Lindsay Lohan&#8217;. Just mix a red headed slut with a little bit of coke.&#8221;</li>
<li><strong>doobiebrother </strong>(<a title="doobiebrother's comment" href="http://digg.com/odd_stuff/First_I_was_like_Vroommmm_then_I_was_like_Oh_Fuck#c-authc32391195">link</a>)<strong>: </strong>&#8220;This area usually lacks vegetation, so they added the face plant.&#8221;, in regard to <a href="http://omgwtfbbq.nl/wp-content/uploads/2010/05/faceplant.jpg">this image</a>.</li>
<li><strong>salinungatha </strong>(<a href="http://digg.com/comedy/WTF_Gif#c-replies-c32761652">link</a>): &#8220;Reminds me of BP&#8217;s efforts to stop the Gulf spill&#8221;, in regard to <a title="LOL!" href="http://hewreck.com/wp-content/uploads/2010/04/101095482.gif" target="_blank">this image</a>.</li>
<li><strong>badqat</strong><strong> </strong>(<a title="Lulz" href="http://digg.com/space/New_Solar_System_Discovered_3?t=34474401#c34478601" target="_blank">link</a>): &#8220;There are only 8 planets in our solar system now.  Poor Pluto.&#8221;; <strong>caramba421</strong><strong>:</strong> &#8220;Well, whatever&#8230;if every cold lifeless ball of rock and ice gets to be a planet, my ex&#8217;s heart also qualifies.&#8221;</li>
</ul>
<p>More to come <img src='http://omgwtfbbq.nl/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://omgwtfbbq.nl/2010/05/12/memorable-digg-comments/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Default constants in any gcc compiler</title>
		<link>http://omgwtfbbq.nl/2010/03/31/default-constants-in-any-gcc-compiler/</link>
		<comments>http://omgwtfbbq.nl/2010/03/31/default-constants-in-any-gcc-compiler/#comments</comments>
		<pubDate>Wed, 31 Mar 2010 10:05:43 +0000</pubDate>
		<dc:creator>Kevin Pors</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[C++]]></category>
		<category><![CDATA[MinGW]]></category>
		<category><![CDATA[MSYS]]></category>

		<guid isPermaLink="false">http://omgwtfbbq.nl/?p=81</guid>
		<description><![CDATA[I&#8217;ve always wondered what default constants (#ifdefs) are used in the gcc compiler, without having to look on the internet for it. A quick command to show this is:
echo "" &#124; gcc -E -dM -c - &#124; less -S
This will output a listing as follows:
#define __DBL_MIN_EXP__ (-1021)
#define __FLT_MIN__ 1.17549435e-38F
#define _WIN32 1
#define __CHAR_BIT__ 8
#define __WCHAR_MAX__ 65535U
#define [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve always wondered what default constants (<code>#ifdefs</code>) are used in the gcc compiler, without having to look on the internet for it. A quick command to show this is:</p>
<pre>echo "" | gcc -E -dM -c - | less -S</pre>
<p>This will output a listing as follows:</p>
<pre>#define __DBL_MIN_EXP__ (-1021)
#define __FLT_MIN__ 1.17549435e-38F
#define _WIN32 1
#define __CHAR_BIT__ 8
#define __WCHAR_MAX__ 65535U
#define __DBL_DENORM_MIN__ 4.9406564584124654e-324
#define __FLT_EVAL_METHOD__ 2
#define __DBL_MIN_10_EXP__ (-307)
#define __FINITE_MATH_ONLY__ 0
#define __GNUC_PATCHLEVEL__ 0
#define _stdcall __attribute__((__stdcall__))</pre>
<p>&#8230; and lots more. This command was executed under MinGW/MSYS. I had to look for the correct <code>#ifdef</code> to check whether I am compiling some C++ source code under Windows, or Linux.</p>
]]></content:encoded>
			<wfw:commentRss>http://omgwtfbbq.nl/2010/03/31/default-constants-in-any-gcc-compiler/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Welcome</title>
		<link>http://omgwtfbbq.nl/2010/03/19/welcome/</link>
		<comments>http://omgwtfbbq.nl/2010/03/19/welcome/#comments</comments>
		<pubDate>Fri, 19 Mar 2010 22:56:53 +0000</pubDate>
		<dc:creator>Kevin Pors</dc:creator>
				<category><![CDATA[Notices]]></category>
		<category><![CDATA[notice]]></category>

		<guid isPermaLink="false">http://omgwtfbbq.nl/?p=55</guid>
		<description><![CDATA[So, I started reading an old Linux Format magazine some time ago. This particular edition mentioned something about CMS Awards, where WordPress came out as winner. This got me interested in testing out this CMS, so there you have it; you&#8217;re watching its implementation at this point. Anyway, welcome. Don&#8217;t expect much from this blog, [...]]]></description>
			<content:encoded><![CDATA[<p>So, I started reading an old Linux Format magazine some time ago. This particular edition mentioned something about CMS Awards, where WordPress came out as winner. This got me interested in testing out this CMS, so there you have it; you&#8217;re watching its implementation at this point. Anyway, welcome. Don&#8217;t expect much from this blog, it&#8217;s more of a sort of personal log, picture page, and (in the future) filled with howto&#8217;s or other personal, technical notes regarding information technology.</p>
]]></content:encoded>
			<wfw:commentRss>http://omgwtfbbq.nl/2010/03/19/welcome/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
