<?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>Barbed Wire Bytecode Bacon Burger</title>
	<atom:link href="http://barbedwirebytecodebaconburger.com/blog/feed/" rel="self" type="application/rss+xml" />
	<link>http://barbedwirebytecodebaconburger.com/blog</link>
	<description>the bi-lingual ramblings of He Who Is A Huge Dork</description>
	<lastBuildDate>Sun, 22 Apr 2012 17:39:16 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.4</generator>
		<item>
		<title>Zombie apocalypse board game? Hell yes! I&#8217;m in!</title>
		<link>http://barbedwirebytecodebaconburger.com/blog/2012/04/22/zombie-apocalypse-board-game-hell-yes-im-in/</link>
		<comments>http://barbedwirebytecodebaconburger.com/blog/2012/04/22/zombie-apocalypse-board-game-hell-yes-im-in/#comments</comments>
		<pubDate>Sun, 22 Apr 2012 09:44:41 +0000</pubDate>
		<dc:creator>FighterHayabusa</dc:creator>
				<category><![CDATA[Posts in English]]></category>
		<category><![CDATA[awesome]]></category>
		<category><![CDATA[gaming]]></category>
		<category><![CDATA[kickstarter]]></category>
		<category><![CDATA[tabletop]]></category>
		<category><![CDATA[zombies]]></category>

		<guid isPermaLink="false">http://barbedwirebytecodebaconburger.com/blog/?p=653</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p style="text-align:center;"><iframe frameborder="0" height="360px" src="http://www.kickstarter.com/projects/greenbriergames/zpocalypse-an-epic-zombie-survival-board-game/widget/video.html" width="480px"></iframe></p>
]]></content:encoded>
			<wfw:commentRss>http://barbedwirebytecodebaconburger.com/blog/2012/04/22/zombie-apocalypse-board-game-hell-yes-im-in/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Basic HTTP Authentication in JBoss AS 7</title>
		<link>http://barbedwirebytecodebaconburger.com/blog/2012/02/17/basic-http-authentication-in-jboss-as-7/</link>
		<comments>http://barbedwirebytecodebaconburger.com/blog/2012/02/17/basic-http-authentication-in-jboss-as-7/#comments</comments>
		<pubDate>Fri, 17 Feb 2012 15:49:15 +0000</pubDate>
		<dc:creator>FighterHayabusa</dc:creator>
				<category><![CDATA[I write code]]></category>
		<category><![CDATA[Posts in English]]></category>
		<category><![CDATA[java]]></category>
		<category><![CDATA[jboss]]></category>
		<category><![CDATA[security]]></category>
		<category><![CDATA[webapp]]></category>

		<guid isPermaLink="false">http://barbedwirebytecodebaconburger.com/blog/?p=638</guid>
		<description><![CDATA[I&#8217;ve started playing around with the new and improved JBoss AS 7 lately. It&#8217;s really quite nice. I haven&#8217;t had a great deal of experience with the older versions but as I understand it it&#8217;s quite different from before. It&#8217;s really rich on great features and very snappy. I&#8217;d recommend anyone that does Java EE [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve started playing around with the new and improved JBoss AS 7 lately. It&#8217;s really quite nice. I haven&#8217;t had a great deal of experience with the older versions but as I understand it it&#8217;s quite different from before. It&#8217;s really rich on great features and very snappy. I&#8217;d recommend anyone that does Java EE development to check it out.</p>
<p>That it&#8217;s new and different might also explain why it was so frackin&#8217; hard to find the proper way to set up Basic HTTP Authentication for a web application in JBoss AS 7. Not even the official documentation seems entirely updated (or maybe I just didn&#8217;t have the patience to read the docs thoroughly..) so I spent a great deal of time searching the web and piecing together little bits here and there before I finally reached a solution.</p>
<p>First I had to add a security domain to the configuration-file standalone.xml like this:</p>
<pre>&lt;?xml version='1.0' encoding='UTF-8'?&gt;
&lt;server name="myserver" xmlns="urn:jboss:domain:1.0"&gt;
...
&lt;subsystem xmlns="urn:jboss:domain:security:1.0"&gt;
&lt;security-domains&gt;
&lt;security-domain name="mysecuritydomain"&gt;
&lt;authentication&gt;
&lt;login-module code="UsersRoles" flag="required"&gt;
&lt;module-option name="usersProperties"
 value="${jboss.server.config.dir}/users.properties"/&gt;
&lt;module-option name="rolesProperties"
 value="${jboss.server.config.dir}/roles.properties"/&gt;
&lt;/login-module&gt;
&lt;/authentication&gt;
&lt;/security-domain&gt;
&lt;/security-domains&gt;
&lt;/subsystem&gt;
...
&lt;/server&gt;</pre>
<p>Then I had to create the files referenced in the module-options above and place them in the appropriate directory &#8211; in my case the same directory as the standalone.xml-file. The contents of these files should look something like this:</p>
<pre>users.properties:

myuser1=mypass1
myuser2=mypass2

roles.properties:

myuser1=user,admin
myuser2=user</pre>
<p>The next step was specifying my security domain in the file jboss-web.xml and putting it in the WEB-INF-directory of my web app:</p>
<pre>&lt;?xml version="1.0" encoding="UTF-8"?&gt;
&lt;jboss-web&gt;
&lt;security-domain&gt;mysecuritydomain&lt;/security-domain&gt;
&lt;/jboss-web&gt;</pre>
<p>Finally the following was added to my web.xml (also in the WEB-INF-directory):</p>
<pre>&lt;?xml version="1.0" encoding="UTF-8"?&gt;
&lt;web-app version="3.0" xmlns="http://java.sun.com/xml/ns/javaee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd"&gt;
...
&lt;security-constraint&gt;
&lt;web-resource-collection&gt;
&lt;web-resource-name&gt;MyResourceName&lt;/web-resource-name&gt;
&lt;url-pattern&gt;/*&lt;/url-pattern&gt;
&lt;/web-resource-collection&gt;
&lt;auth-constraint&gt;
&lt;role-name&gt;qvuser&lt;/role-name&gt;
&lt;/auth-constraint&gt;
&lt;/security-constraint&gt;
&lt;login-config&gt;
&lt;auth-method&gt;BASIC&lt;/auth-method&gt;
&lt;realm-name&gt;My kinda secure web application&lt;/realm-name&gt;
&lt;/login-config&gt;
&lt;security-role&gt;
&lt;description&gt;Role for simple users&lt;/description&gt;
&lt;role-name&gt;user&lt;/role-name&gt;
&lt;/security-role&gt;
&lt;security-role&gt;
&lt;description&gt;Role for administrators&lt;/description&gt;
&lt;role-name&gt;admin&lt;/role-name&gt;
&lt;/security-role&gt;
...
&lt;/web-app&gt;</pre>
<p>Now when I access my web app I&#8217;m prompted with the very familiar type of window asking me for a username and a password. All done!</p>
]]></content:encoded>
			<wfw:commentRss>http://barbedwirebytecodebaconburger.com/blog/2012/02/17/basic-http-authentication-in-jboss-as-7/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Numbing the pain of VBScript with a generic logging-class</title>
		<link>http://barbedwirebytecodebaconburger.com/blog/2011/10/18/numbing-the-pain-of-vbscript-with-a-generic-logging-class/</link>
		<comments>http://barbedwirebytecodebaconburger.com/blog/2011/10/18/numbing-the-pain-of-vbscript-with-a-generic-logging-class/#comments</comments>
		<pubDate>Tue, 18 Oct 2011 20:51:29 +0000</pubDate>
		<dc:creator>FighterHayabusa</dc:creator>
				<category><![CDATA[I write code]]></category>
		<category><![CDATA[Posts in English]]></category>
		<category><![CDATA[debug]]></category>
		<category><![CDATA[debugger]]></category>
		<category><![CDATA[logging]]></category>
		<category><![CDATA[qlikview]]></category>
		<category><![CDATA[useless]]></category>
		<category><![CDATA[vba]]></category>
		<category><![CDATA[vbscript]]></category>

		<guid isPermaLink="false">http://barbedwirebytecodebaconburger.com/blog/?p=625</guid>
		<description><![CDATA[VBScript is a pain the ass. However when working on Windows I&#8217;ve found it useful plenty of times since it&#8217;s the only scripting language supported out of the box by most Windows-flavors (although that&#8217;s changed now with PowerShell I suppose). There&#8217;s also the whole VBA-thing which crosses over into VBScript-territory in various applications. QlikView for [...]]]></description>
			<content:encoded><![CDATA[<p>VBScript is a pain the ass. However when working on Windows I&#8217;ve found it useful plenty of times since it&#8217;s the only scripting language supported out of the box by most Windows-flavors (although that&#8217;s changed now with PowerShell I suppose). There&#8217;s also the whole VBA-thing which crosses over into VBScript-territory in various applications. QlikView for example uses VBScript as an internal scripting language for macros and exposes a VBA-esque API for that purpose.</p>
<p>Anyway, the other day at work while hacking away at a humongous VBScript/VBA-macro I got tired of how much debugging my 600+ lines of VBScript-code sucked (mainly because of <a href="http://twitpic.com/6yqqx5" target="_blank">QlikView&#8217;s useless debugger</a>) and threw together a simple generic logging-class that I thought I&#8217;d share. So here you go:</p>
<pre>Class Logger

Private mLogFile
Private EFSO
Private EFP
Private mIsEnabled

Private Sub Class_Initialize()
'Do nothing
End Sub

Private Sub Class_Terminate()
If IsObject(EFP) AND TypeName(EFP) = "TextStream" Then
EFP.Close
End If
Set EFP = Nothing
Set EFSO = Nothing
End Sub

Public Default Function Init(pLogFile)
mLogFile = pLogFile
mIsEnabled = True
Call InitFileObjects
Set Init = Me
End Function

Private Sub InitFileObjects
If IsObject(EFP) AND TypeName(EFP) = "TextStream" Then
EFP.Close
End If
Set EFSO = CreateObject("Scripting.FileSystemObject")
Set EFP = EFSO.OpenTextFile(mLogFile, 8, True)
End Sub

Public Property Get logFile
logFile = mLogFile
End Property

Public Property Let logFile(pLogFile)
mLogFile = pLogFile
Call InitFileObjects
End Property

Public Property Get IsEnabled
IsEnabled = mIsEnabled
End Property

Public Property Let IsEnabled(pIsEnabled)
mIsEnabled = pIsEnabled
End Property

Public Sub doLog(pMessage)
If (mIsEnabled = True) Then
EFP.WriteLine(pMessage)
End If
End Sub

End Class</pre>
<p>Not the hottest piece of code you&#8217;ll ever see but maybe somebody besides me will find it useful.</p>
]]></content:encoded>
			<wfw:commentRss>http://barbedwirebytecodebaconburger.com/blog/2011/10/18/numbing-the-pain-of-vbscript-with-a-generic-logging-class/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Simple iTunes &#8220;what&#8217;s playing?&#8221;-server with AppleScript and netcat</title>
		<link>http://barbedwirebytecodebaconburger.com/blog/2011/05/28/simple-itunes-whats-playing-server-with-applescript-and-netcat/</link>
		<comments>http://barbedwirebytecodebaconburger.com/blog/2011/05/28/simple-itunes-whats-playing-server-with-applescript-and-netcat/#comments</comments>
		<pubDate>Sat, 28 May 2011 19:21:20 +0000</pubDate>
		<dc:creator>FighterHayabusa</dc:creator>
				<category><![CDATA[I write code]]></category>
		<category><![CDATA[Posts in English]]></category>
		<category><![CDATA[apple]]></category>
		<category><![CDATA[applescript]]></category>
		<category><![CDATA[bash]]></category>
		<category><![CDATA[hacking]]></category>
		<category><![CDATA[itunes]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[music]]></category>
		<category><![CDATA[server]]></category>

		<guid isPermaLink="false">http://barbedwirebytecodebaconburger.com/blog/?p=615</guid>
		<description><![CDATA[I run a computer setup at home where I have a Linux-PC and a MacMini sharing a screen, keyboard, mouse and speakers through a KVM-switch. This particular switch has the neat feature that you can switch over everything except the speakers if you like. So I can be rocking the iTunes on the Mac while [...]]]></description>
			<content:encoded><![CDATA[<p>I run a computer setup at home where I have a Linux-PC and a MacMini sharing a screen, keyboard, mouse and speakers through a KVM-switch. This particular switch has the neat feature that you can switch over everything except the speakers if you like. So I can be rocking the iTunes on the Mac while I&#8217;m burning through some code in Eclipse on the Linux-PC for example. Pretty useful since I keep almost all my digital music in iTunes on the Mac and do most of my coding and hardcore geeking on the Linux-box. The only problem is that if I wanna check what&#8217;s playing currently I have to switch the screen over to the Mac to see the track playing in iTunes. Well, I made a quick hack to solve this &#8220;problem&#8221;.</p>
<p>Netcat is a really useful tool for testing various network related things and it can also be used to set up a simple client-server connection. So I thought I could use it to push information from the Mac over to the Linux-PC without too much hassle, and I was correct. Combined with some AppleScript that reads the information about the song playing from iTunes I quickly had a &#8220;server&#8221; that would answer client-requests for this information. Here&#8217;s the code:</p>
<pre>AppleScript (compiled and saved as itunescurrent.scpt):
tell application "iTunes"
try
if not (exists current track) then return
set this_artist to (get artist of current track)
set this_track to (get name of current track)
set this_album to (get album of current track)
end try
end tell
try
set track_info to this_artist &amp; " - " &amp; this_track &amp; " (" &amp; this_album &amp; ")"
return track_info
on error err
display dialog err
end try

Server-script using netcat (saved as itunescurrent-server.sh):
#!/bin/bash
SERVERPORT=4321
while [ 1 ]; do
osascript itunescurrent.scpt | nc -l $SERVERPORT
done
exit 0</pre>
<p>So I put those two files in the same directory, navigated there in a command prompt window and executed the server-script. What the server does then is simply hang in an infinite loop waiting for a client to request information from it.</p>
<p>The script running as the client is just as simple:</p>
<pre>#!/bin/bash
SERVERIP=192.168.1.108
SERVERPORT=4321
CURRENTTRACK=""
ITUNESINFO=""
while [ 1 ]; do
ITUNESINFO=`nc $SERVERIP $SERVERPORT`
if [ "$ITUNESINFO" != "$CURRENTTRACK" ] ; then
clear
CURRENTTRACK=$ITUNESINFO
echo $CURRENTTRACK
fi
sleep 5
done
exit 0</pre>
<p>I think it&#8217;s pretty self-explanatory.</p>
<p>So now I can read what&#8217;s playing on my Mac in a terminal window on my Linux-PC instead of having to waste precious seconds switching back and forth and checking iTunes. Problem solved! And anyone who wants to can grab the code from <a href="http://barbedwirebytecodebaconburger.com/blog/?page_id=520">the Downloads-page</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://barbedwirebytecodebaconburger.com/blog/2011/05/28/simple-itunes-whats-playing-server-with-applescript-and-netcat/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Vilken nytta gjorde FRA i lördags?</title>
		<link>http://barbedwirebytecodebaconburger.com/blog/2010/12/15/vilken-nytta-gjorde-fra-i-lordags/</link>
		<comments>http://barbedwirebytecodebaconburger.com/blog/2010/12/15/vilken-nytta-gjorde-fra-i-lordags/#comments</comments>
		<pubDate>Wed, 15 Dec 2010 14:14:31 +0000</pubDate>
		<dc:creator>FighterHayabusa</dc:creator>
				<category><![CDATA[Posts in Swedish]]></category>
		<category><![CDATA[bigbrother]]></category>
		<category><![CDATA[bortkastadeskattepengar]]></category>
		<category><![CDATA[fra]]></category>
		<category><![CDATA[invasionofprivacy]]></category>
		<category><![CDATA[islamofobi]]></category>
		<category><![CDATA[meningslöst]]></category>
		<category><![CDATA[övervakning]]></category>
		<category><![CDATA[racism]]></category>
		<category><![CDATA[rasism]]></category>
		<category><![CDATA[skandal]]></category>
		<category><![CDATA[stupidity]]></category>
		<category><![CDATA[surveillance]]></category>
		<category><![CDATA[terror]]></category>
		<category><![CDATA[terrorism]]></category>
		<category><![CDATA[usaägersverigesregering]]></category>
		<category><![CDATA[useless]]></category>

		<guid isPermaLink="false">http://barbedwirebytecodebaconburger.com/blog/?p=608</guid>
		<description><![CDATA[Jag tycker att det är intressant att mitt i allt detta ståhej om den klantiga bombmannen i Stockholm är det ingen som ifrågasätter varför detta dåd inte kunde förutspås och förhindras av övervakande instanser som FRA eller Säpo? Var det inte just sånt här som FRAs snokande i hela Sveriges befolknings privatliv skulle förhindra? Är [...]]]></description>
			<content:encoded><![CDATA[<p>Jag tycker att det är intressant att mitt i allt detta ståhej om den klantiga bombmannen i Stockholm är det ingen som ifrågasätter varför detta dåd inte kunde förutspås och förhindras av övervakande instanser som FRA eller Säpo? Var det inte just sånt här som FRAs snokande i hela Sveriges befolknings privatliv skulle förhindra? Är inte detta ett utmärkt tillfälle att ta upp debatten igen, utvärdera och (förhoppningsvis) tänka om? Det enda FRA verkar göra bra är att leverera privata uppgifter om oss till USA och det var väl ändå inte det som sades vara dess uppgift va?</p>
<p>Inte heller är det speciellt många som lägger ihop ett och ett och listar ut att en stor anledning till att Sverige nu är ett lockande mål för de av media kallade islamistiska extremisterna är att den svenska regeringen sitter i fickan på USA &#8211; det USA som hejdlöst krigar i åtskilliga muslimska nationer och skänker stöd i miljardklassen till Israel &#8211; och tar order från Vita Huset och amerikanska ekonomiska intressen istället för att tjäna befolkningen i landet de påstås regera i.</p>
<p>Det finns inga ursäkter eller förlåtande omständigheter för terrordåd och de begås enbart av fullständiga galningar men det är ändå hög tid att fler börjar följa sambanden och pekar ett anklagande finger på nickedockorna och förrädarna i vår regering och riksdag, för de är inte oskyldiga de heller. De är i alla fall oändligt mycket mer skyldiga än alla de fullständigt oskyldiga muslimer boendes i Sverige som av mindre vettiga personer nu kommer att betraktas som potentiella terrorister och beskyllas för både det ena och det andra.</p>
<p>Låt er inte sköljas med i den rasistiska och islamofobiska vågen som spolar igenom Sverige. Dra inte alla över en kam. Och låt inte <a href="https://secure.wikimedia.org/wikipedia/sv/wiki/Sverigedemokraterna" target="_blank">kräken som försöker montera ner demokratin inifrån</a> vinna poäng på det här.</p>
]]></content:encoded>
			<wfw:commentRss>http://barbedwirebytecodebaconburger.com/blog/2010/12/15/vilken-nytta-gjorde-fra-i-lordags/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>To all citizens of the EU, sign this now!</title>
		<link>http://barbedwirebytecodebaconburger.com/blog/2010/10/07/to-all-citizens-of-the-eu-sign-this-now/</link>
		<comments>http://barbedwirebytecodebaconburger.com/blog/2010/10/07/to-all-citizens-of-the-eu-sign-this-now/#comments</comments>
		<pubDate>Thu, 07 Oct 2010 09:36:23 +0000</pubDate>
		<dc:creator>FighterHayabusa</dc:creator>
				<category><![CDATA[Posts in English]]></category>
		<category><![CDATA[censorship]]></category>
		<category><![CDATA[eu]]></category>
		<category><![CDATA[fail]]></category>
		<category><![CDATA[stupidity]]></category>

		<guid isPermaLink="false">http://barbedwirebytecodebaconburger.com/blog/?p=605</guid>
		<description><![CDATA[Say NO to internet censorship and pointless blocking of child pornography websites and at the same time YES to striking at child pornography in a way that actually works! Deletion, not blocking! Go here now and sign the petition: http://www.deletion-not-blocking.eu/sign.html]]></description>
			<content:encoded><![CDATA[<p>Say <strong>NO</strong> to internet censorship and pointless blocking of child pornography websites and at the same time <strong>YES</strong> to striking at child pornography in a way that actually works!</p>
<p><a href="http://www.deletion-not-blocking.eu/">Deletion, not blocking!</a></p>
<p><a href="http://www.deletion-not-blocking.eu/sign.html">Go here</a> now and sign the petition: <a href="http://www.deletion-not-blocking.eu/sign.html">http://www.deletion-not-blocking.eu/sign.html</a></p>
]]></content:encoded>
			<wfw:commentRss>http://barbedwirebytecodebaconburger.com/blog/2010/10/07/to-all-citizens-of-the-eu-sign-this-now/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>It’s Bacon Day! Meal three: Dinner</title>
		<link>http://barbedwirebytecodebaconburger.com/blog/2010/09/04/it%e2%80%99s-bacon-day-meal-three-dinner/</link>
		<comments>http://barbedwirebytecodebaconburger.com/blog/2010/09/04/it%e2%80%99s-bacon-day-meal-three-dinner/#comments</comments>
		<pubDate>Sat, 04 Sep 2010 21:05:46 +0000</pubDate>
		<dc:creator>FighterHayabusa</dc:creator>
				<category><![CDATA[Posts in English]]></category>
		<category><![CDATA[awesome]]></category>
		<category><![CDATA[bacon]]></category>
		<category><![CDATA[baconburger]]></category>
		<category><![CDATA[burger]]></category>
		<category><![CDATA[cheese]]></category>
		<category><![CDATA[food]]></category>

		<guid isPermaLink="false">http://barbedwirebytecodebaconburger.com/blog/?p=602</guid>
		<description><![CDATA[For dinner I decided on a bacon burger, always a delicious choice. But for extra deliciousness I slapped on an extra meat patty, cheese and some fried red onions.]]></description>
			<content:encoded><![CDATA[<p>For dinner I decided on a bacon burger, always a delicious choice. But for extra deliciousness I slapped on an extra meat patty, cheese and some fried red onions.</p>
<div class="wp-caption aligncenter" style="width: 490px"><a href="http://barbedwirebytecodebaconburger.com/gfx/baconday2010/fullsize/img10.jpg"><img title="Once again, bacon frying" src="http://barbedwirebytecodebaconburger.com/gfx/baconday2010/thumbs/img10.jpg" alt="Once again, bacon frying" width="480" height="360" /></a><p class="wp-caption-text">Once again, bacon frying</p></div>
<div class="wp-caption aligncenter" style="width: 490px"><a href="http://barbedwirebytecodebaconburger.com/gfx/baconday2010/fullsize/img11.jpg"><img title="Frying the red onions" src="http://barbedwirebytecodebaconburger.com/gfx/baconday2010/thumbs/img11.jpg" alt="Frying the red onions" width="480" height="360" /></a><p class="wp-caption-text">Frying the red onions</p></div>
<div class="wp-caption aligncenter" style="width: 490px"><a href="http://barbedwirebytecodebaconburger.com/gfx/baconday2010/fullsize/img12.jpg"><img title="Meat! Gooood!" src="http://barbedwirebytecodebaconburger.com/gfx/baconday2010/thumbs/img12.jpg" alt="Meat! Gooood!" width="480" height="360" /></a><p class="wp-caption-text">Meat! Gooood!</p></div>
<div class="wp-caption aligncenter" style="width: 490px"><a href="http://barbedwirebytecodebaconburger.com/gfx/baconday2010/fullsize/img13.jpg"><img title="The finished bacon burger in all its glory" src="http://barbedwirebytecodebaconburger.com/gfx/baconday2010/thumbs/img13.jpg" alt="The finished bacon burger in all its glory" width="480" height="360" /></a><p class="wp-caption-text">The finished bacon burger in all its glory</p></div>
<p><object width="610" height="368"><param name="movie" value="http://www.youtube.com/v/1Q3XKf02B7U?fs=1&amp;hl=en_US"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/1Q3XKf02B7U?fs=1&amp;hl=en_US" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="610" height="368"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://barbedwirebytecodebaconburger.com/blog/2010/09/04/it%e2%80%99s-bacon-day-meal-three-dinner/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>It&#8217;s Bacon Day! Meal two: Lunch</title>
		<link>http://barbedwirebytecodebaconburger.com/blog/2010/09/04/its-bacon-day-meal-two-lunch/</link>
		<comments>http://barbedwirebytecodebaconburger.com/blog/2010/09/04/its-bacon-day-meal-two-lunch/#comments</comments>
		<pubDate>Sat, 04 Sep 2010 17:59:37 +0000</pubDate>
		<dc:creator>FighterHayabusa</dc:creator>
				<category><![CDATA[Posts in English]]></category>
		<category><![CDATA[awesome]]></category>
		<category><![CDATA[bacon]]></category>
		<category><![CDATA[food]]></category>
		<category><![CDATA[lunch]]></category>

		<guid isPermaLink="false">http://barbedwirebytecodebaconburger.com/blog/?p=596</guid>
		<description><![CDATA[The bacon feast continues. For lunch I made a nice chicken salad with cherry tomatoes, cucumber, corn, maché salad, grilled chicken, mushrooms and, of course, bacon. Praise the divine bacon! See y&#8217;all back for dinner!]]></description>
			<content:encoded><![CDATA[<p>The bacon feast continues. For lunch I made a nice chicken salad with cherry tomatoes, cucumber, corn, maché salad, grilled chicken, mushrooms and, of course, bacon.</p>
<div class="wp-caption aligncenter" style="width: 490px"><a href="http://barbedwirebytecodebaconburger.com/gfx/baconday2010/fullsize/img06.jpg"><img title="Lovely bacon frying" src="http://barbedwirebytecodebaconburger.com/gfx/baconday2010/thumbs/img06.jpg" alt="Lovely bacon frying" width="480" height="360" /></a><p class="wp-caption-text">Lovely bacon frying</p></div>
<div class="wp-caption aligncenter" style="width: 490px"><a href="http://barbedwirebytecodebaconburger.com/gfx/baconday2010/fullsize/img07.jpg"><img title="The salad before adding the bacon" src="http://barbedwirebytecodebaconburger.com/gfx/baconday2010/thumbs/img07.jpg" alt="The salad before adding the bacon" width="480" height="360" /></a><p class="wp-caption-text">The salad before adding the bacon</p></div>
<div class="wp-caption aligncenter" style="width: 490px"><a href="http://barbedwirebytecodebaconburger.com/gfx/baconday2010/fullsize/img08.jpg"><img title="Bacon added" src="http://barbedwirebytecodebaconburger.com/gfx/baconday2010/thumbs/img08.jpg" alt="Bacon added" width="480" height="360" /></a><p class="wp-caption-text">Bacon added</p></div>
<div class="wp-caption aligncenter" style="width: 370px"><a href="http://barbedwirebytecodebaconburger.com/gfx/baconday2010/fullsize/img09.jpg"><img title="Nom nom nom" src="http://barbedwirebytecodebaconburger.com/gfx/baconday2010/thumbs/img09.jpg" alt="Nom nom nom" width="360" height="480" /></a><p class="wp-caption-text">Nom nom nom</p></div>
<p>Praise the divine bacon! See y&#8217;all back for dinner!</p>
]]></content:encoded>
			<wfw:commentRss>http://barbedwirebytecodebaconburger.com/blog/2010/09/04/its-bacon-day-meal-two-lunch/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>It&#8217;s Bacon Day! Meal one: Breakfast</title>
		<link>http://barbedwirebytecodebaconburger.com/blog/2010/09/04/its-bacon-day-meal-one-breakfast/</link>
		<comments>http://barbedwirebytecodebaconburger.com/blog/2010/09/04/its-bacon-day-meal-one-breakfast/#comments</comments>
		<pubDate>Sat, 04 Sep 2010 12:23:36 +0000</pubDate>
		<dc:creator>FighterHayabusa</dc:creator>
				<category><![CDATA[Posts in English]]></category>
		<category><![CDATA[awesome]]></category>
		<category><![CDATA[bacon]]></category>
		<category><![CDATA[breakfast]]></category>
		<category><![CDATA[food]]></category>

		<guid isPermaLink="false">http://barbedwirebytecodebaconburger.com/blog/?p=591</guid>
		<description><![CDATA[To celebrate that&#8217;s it&#8217;s Bacon Day today I&#8217;ve decided to include bacon in all of my meals of the day. First out: breakfast! For breakfast my girlfriend requested pancakes, so pancakes it is but I decided to stuff mine with cheese, arugula and bacon. Check out the pictures! And yes, it was absolutely delicious! See [...]]]></description>
			<content:encoded><![CDATA[<p>To celebrate that&#8217;s <a href="https://secure.wikimedia.org/wikipedia/en/wiki/International_Bacon_Day">it&#8217;s Bacon Day today</a> I&#8217;ve decided to include bacon in all of my meals of the day. First out: breakfast!</p>
<p>For breakfast my girlfriend requested pancakes, so pancakes it is but I decided to stuff mine with cheese, arugula and bacon.</p>
<p>Check out the pictures!</p>
<div class="wp-caption aligncenter" style="width: 490px"><a href="http://barbedwirebytecodebaconburger.com/gfx/baconday2010/fullsize/img01.jpg"><img title="Making the pancakes" src="http://barbedwirebytecodebaconburger.com/gfx/baconday2010/thumbs/img01.jpg" alt="Making the pancakes" width="480" height="360" /></a><p class="wp-caption-text">Making the pancakes</p></div>
<div class="wp-caption aligncenter" style="width: 490px"><a href="http://barbedwirebytecodebaconburger.com/gfx/baconday2010/fullsize/img02.jpg"><img title="The delicious bacon" src="http://barbedwirebytecodebaconburger.com/gfx/baconday2010/thumbs/img02.jpg" alt="The delicious bacon" width="480" height="360" /></a><p class="wp-caption-text">The delicious bacon</p></div>
<div class="wp-caption aligncenter" style="width: 490px"><a href="http://barbedwirebytecodebaconburger.com/gfx/baconday2010/fullsize/img03.jpg"><img title="Soon the feast will be ready..." src="http://barbedwirebytecodebaconburger.com/gfx/baconday2010/thumbs/img03.jpg" alt="Soon the feast will be ready..." width="480" height="360" /></a><p class="wp-caption-text">Soon the feast will be ready...</p></div>
<div class="wp-caption aligncenter" style="width: 490px"><a href="http://barbedwirebytecodebaconburger.com/gfx/baconday2010/fullsize/img04.jpg"><img title="Bacon stuffed pancakes, ready to eat!" src="http://barbedwirebytecodebaconburger.com/gfx/baconday2010/thumbs/img04.jpg" alt="Bacon stuffed pancakes, ready to eat!" width="480" height="360" /></a><p class="wp-caption-text">Bacon stuffed pancakes, ready to eat!</p></div>
<div class="wp-caption aligncenter" style="width: 370px"><a href="http://barbedwirebytecodebaconburger.com/gfx/baconday2010/fullsize/img05.jpg"><img title="Eating the pancakes" src="http://barbedwirebytecodebaconburger.com/gfx/baconday2010/thumbs/img05.jpg" alt="Eating the pancakes" width="360" height="480" /></a><p class="wp-caption-text">Eating the pancakes</p></div>
<p>And yes, it was absolutely delicious! See you in a couple of hours for lunch. With bacon!</p>
]]></content:encoded>
			<wfw:commentRss>http://barbedwirebytecodebaconburger.com/blog/2010/09/04/its-bacon-day-meal-one-breakfast/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The most boring video you&#8217;ll ever see</title>
		<link>http://barbedwirebytecodebaconburger.com/blog/2010/08/02/the-most-boring-video-youll-ever-see/</link>
		<comments>http://barbedwirebytecodebaconburger.com/blog/2010/08/02/the-most-boring-video-youll-ever-see/#comments</comments>
		<pubDate>Mon, 02 Aug 2010 10:13:25 +0000</pubDate>
		<dc:creator>FighterHayabusa</dc:creator>
				<category><![CDATA[Posts in English]]></category>
		<category><![CDATA[android]]></category>
		<category><![CDATA[cellphone]]></category>
		<category><![CDATA[eclair]]></category>
		<category><![CDATA[htc]]></category>
		<category><![CDATA[install]]></category>
		<category><![CDATA[upgrade]]></category>

		<guid isPermaLink="false">http://barbedwirebytecodebaconburger.com/blog/?p=584</guid>
		<description><![CDATA[Don&#8217;t say I didn&#8217;t warn you&#8230; To anyone who actually gives a hoot, that&#8217;s my HTC Hero receiving the officially sanctioned Eclair-update from HTC (rather than the hacked HTC Legend Eclair ROM I&#8217;ve been running the past couple of months).]]></description>
			<content:encoded><![CDATA[<p><object width="610" height="367"><param name="movie" value="http://www.youtube.com/v/DX5osGrenpI&amp;hl=en_US&amp;fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/DX5osGrenpI&amp;hl=en_US&amp;fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="610" height="367"></embed></object></p>
<p>Don&#8217;t say I didn&#8217;t warn you&#8230; <img src='http://barbedwirebytecodebaconburger.com/blog/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
<p><span style="color:rgb(153,153,153);font-style:italic;font-size:75%;">To anyone who actually gives a hoot, that&#8217;s my HTC Hero receiving the officially sanctioned Eclair-update from HTC (rather than the hacked HTC Legend Eclair ROM I&#8217;ve been running the past couple of months).</span></p>
]]></content:encoded>
			<wfw:commentRss>http://barbedwirebytecodebaconburger.com/blog/2010/08/02/the-most-boring-video-youll-ever-see/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

