<?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/"
	xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Patrick's development blog</title>
	<atom:link href="http://pbeblog.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://pbeblog.wordpress.com</link>
	<description>pbe's blog about everything that comes into mind.</description>
	<lastBuildDate>Wed, 24 Jun 2009 23:35:13 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<cloud domain='pbeblog.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://www.gravatar.com/blavatar/816d1fb5f0a6162129b827dc630e9ef3?s=96&#038;d=http://s.wordpress.com/i/buttonw-com.png</url>
		<title>Patrick's development blog</title>
		<link>http://pbeblog.wordpress.com</link>
	</image>
			<item>
		<title>Drawing rectangles SDL</title>
		<link>http://pbeblog.wordpress.com/2009/06/24/drawing-rectangles-sdl/</link>
		<comments>http://pbeblog.wordpress.com/2009/06/24/drawing-rectangles-sdl/#comments</comments>
		<pubDate>Wed, 24 Jun 2009 23:34:02 +0000</pubDate>
		<dc:creator>Patrick</dc:creator>
				<category><![CDATA[SDL / OpenGL]]></category>
		<category><![CDATA[drawing]]></category>
		<category><![CDATA[easier]]></category>
		<category><![CDATA[FillRect]]></category>
		<category><![CDATA[function]]></category>
		<category><![CDATA[position]]></category>
		<category><![CDATA[rectangle]]></category>
		<category><![CDATA[rectangles]]></category>
		<category><![CDATA[SDL]]></category>

		<guid isPermaLink="false">http://pbeblog.wordpress.com/?p=140</guid>
		<description><![CDATA[Drawing rectangles can become such a pain in the ass after drawing them a couple of times. I made a helper function that makes this easier.
void FillRect(int x, int y, int w, int h, int color) {
    SDL_Rect rect = {x,y,w,h};
    SDL_FillRect(screen, &#38;rect, color);
}
I want to add a 100&#215;150 [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pbeblog.wordpress.com&blog=2759255&post=140&subd=pbeblog&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Drawing rectangles can become such a pain in the ass after drawing them a couple of times. I made a helper function that makes this easier.</p>
<blockquote><p><em>void FillRect(int x, int y, int w, int h, int color) {<br />
    SDL_Rect rect = {x,y,w,h};<br />
    SDL_FillRect(screen, &amp;rect, color);<br />
}</em></p></blockquote>
<p>I want to add a 100&#215;150 rectangle at the position (25,25) with the color white. </p>
<p><em>FillRect(25,25,100,150,0xFFFFFF);</em></p>
<p>Great, no more headache and code memorizing.</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/pbeblog.wordpress.com/140/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/pbeblog.wordpress.com/140/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/pbeblog.wordpress.com/140/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/pbeblog.wordpress.com/140/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/pbeblog.wordpress.com/140/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/pbeblog.wordpress.com/140/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/pbeblog.wordpress.com/140/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/pbeblog.wordpress.com/140/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/pbeblog.wordpress.com/140/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/pbeblog.wordpress.com/140/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pbeblog.wordpress.com&blog=2759255&post=140&subd=pbeblog&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://pbeblog.wordpress.com/2009/06/24/drawing-rectangles-sdl/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/341bb1c9ac7380d223354689f108f30f?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">pbe</media:title>
		</media:content>
	</item>
		<item>
		<title>Getting mouse state in SDL</title>
		<link>http://pbeblog.wordpress.com/2009/06/23/getting-mouse-state-in-sdl/</link>
		<comments>http://pbeblog.wordpress.com/2009/06/23/getting-mouse-state-in-sdl/#comments</comments>
		<pubDate>Tue, 23 Jun 2009 22:30:07 +0000</pubDate>
		<dc:creator>Patrick</dc:creator>
				<category><![CDATA[SDL / OpenGL]]></category>
		<category><![CDATA[break]]></category>
		<category><![CDATA[editor]]></category>
		<category><![CDATA[events]]></category>
		<category><![CDATA[getting]]></category>
		<category><![CDATA[level]]></category>
		<category><![CDATA[mouse]]></category>
		<category><![CDATA[pressed]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[RPG]]></category>
		<category><![CDATA[SDL]]></category>
		<category><![CDATA[SDL_BUTTON_LEFT]]></category>
		<category><![CDATA[state]]></category>
		<category><![CDATA[states]]></category>
		<category><![CDATA[Uint8]]></category>

		<guid isPermaLink="false">http://pbeblog.wordpress.com/?p=138</guid>
		<description><![CDATA[I&#8217;ve decided to finally start a programming project after a very long break. I found the need to use mouse states when creating a Level editor for my RPG because regular events doesn&#8217;t really do what I want. 
I want to add tiles fast and be able to hold the mouse key down, instead of [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pbeblog.wordpress.com&blog=2759255&post=138&subd=pbeblog&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>I&#8217;ve decided to finally start a programming project after a very long break. I found the need to use mouse states when creating a Level editor for my RPG because regular events doesn&#8217;t really do what I want. </p>
<p>I want to add tiles fast and be able to hold the mouse key down, instead of clicking every time I want to add a tile.</p>
<p><strong>Mouse states</strong></p>
<blockquote><p>
        int cx,cy;<br />
        Uint8 ms = SDL_GetMouseState(&amp;cx, &amp;cy);<br />
        if (ms &amp; SDL_BUTTON(SDL_BUTTON_LEFT)) {<br />
            // the left mouse key is pressed<br />
        } else if (ms &amp; SDL_BUTTON(SDL_BUTTON_RIGHT)) {<br />
            // the right mouse key is pressed<br />
        }
</p></blockquote>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/pbeblog.wordpress.com/138/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/pbeblog.wordpress.com/138/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/pbeblog.wordpress.com/138/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/pbeblog.wordpress.com/138/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/pbeblog.wordpress.com/138/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/pbeblog.wordpress.com/138/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/pbeblog.wordpress.com/138/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/pbeblog.wordpress.com/138/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/pbeblog.wordpress.com/138/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/pbeblog.wordpress.com/138/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pbeblog.wordpress.com&blog=2759255&post=138&subd=pbeblog&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://pbeblog.wordpress.com/2009/06/23/getting-mouse-state-in-sdl/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/341bb1c9ac7380d223354689f108f30f?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">pbe</media:title>
		</media:content>
	</item>
		<item>
		<title>Using the OpenBSD package system</title>
		<link>http://pbeblog.wordpress.com/2009/06/15/using-the-openbsd-package-system/</link>
		<comments>http://pbeblog.wordpress.com/2009/06/15/using-the-openbsd-package-system/#comments</comments>
		<pubDate>Mon, 15 Jun 2009 23:23:48 +0000</pubDate>
		<dc:creator>Patrick</dc:creator>
				<category><![CDATA[BSD]]></category>
		<category><![CDATA[base]]></category>
		<category><![CDATA[environment]]></category>
		<category><![CDATA[OpenBSD]]></category>
		<category><![CDATA[package]]></category>
		<category><![CDATA[pkg]]></category>
		<category><![CDATA[PKG_PATH]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[system]]></category>
		<category><![CDATA[tool]]></category>

		<guid isPermaLink="false">http://pbeblog.wordpress.com/?p=136</guid>
		<description><![CDATA[The package system in OpenBSD consists of pre-compiled programs that can be managed with the pkg tool. The packages may not necessarily contain the same kind of security and realibility as the base system, but pkg is useful for installing &#8220;third party&#8221; software.
1. Create the environment variabel PKG_PATH with the value of the right directory [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pbeblog.wordpress.com&blog=2759255&post=136&subd=pbeblog&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>The package system in OpenBSD consists of pre-compiled programs that can be managed with the pkg tool. The packages may not necessarily contain the same kind of security and realibility as the base system, but pkg is useful for installing &#8220;third party&#8221; software.</p>
<p>1. Create the environment variabel PKG_PATH with the value of the right directory to fetch the packages.<br />
<em>export PKG_PATH=ftp://ftp.openbsd.org/pub/OpenBSD/4.5/packages/i386/</em></p>
<p>2. Add this line into the startup file, <strong>~/.profiles</strong> so we don&#8217;t have to export it every time we use pkg.</p>
<p><strong>Installing a package</strong><br />
<em>pkg_add -i firefox</em></p>
<p><strong>Removing a package</strong><br />
<em>pkg_delete firefox</em></p>
<p><strong>Information about installed packages</strong><br />
pkg_info</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/pbeblog.wordpress.com/136/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/pbeblog.wordpress.com/136/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/pbeblog.wordpress.com/136/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/pbeblog.wordpress.com/136/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/pbeblog.wordpress.com/136/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/pbeblog.wordpress.com/136/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/pbeblog.wordpress.com/136/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/pbeblog.wordpress.com/136/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/pbeblog.wordpress.com/136/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/pbeblog.wordpress.com/136/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pbeblog.wordpress.com&blog=2759255&post=136&subd=pbeblog&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://pbeblog.wordpress.com/2009/06/15/using-the-openbsd-package-system/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/341bb1c9ac7380d223354689f108f30f?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">pbe</media:title>
		</media:content>
	</item>
		<item>
		<title>Mount ntfs drive on Linux</title>
		<link>http://pbeblog.wordpress.com/2009/04/28/mount-ntfs-drive-on-linux/</link>
		<comments>http://pbeblog.wordpress.com/2009/04/28/mount-ntfs-drive-on-linux/#comments</comments>
		<pubDate>Tue, 28 Apr 2009 16:32:56 +0000</pubDate>
		<dc:creator>Patrick</dc:creator>
				<category><![CDATA[Linux/GNU]]></category>
		<category><![CDATA[/media]]></category>
		<category><![CDATA[/mnt]]></category>
		<category><![CDATA[drive]]></category>
		<category><![CDATA[fdisk]]></category>
		<category><![CDATA[fstab]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[mount]]></category>
		<category><![CDATA[ntfs]]></category>
		<category><![CDATA[ntfs-3g]]></category>
		<category><![CDATA[storage]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://pbeblog.wordpress.com/?p=130</guid>
		<description><![CDATA[1. Install ntfs-3g.
2. Create a folder in /media or /mnt (mkdir /media/windows)
3. Use fdisk -l to get the name of the NTFS drive (example: dev/sda1)
4. Add the drive into /etc/fstab so it mounts automatically.
/etc/fstab
/dev/sda1   /media/windows  ntfs-3g   defaults    0   0
       [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pbeblog.wordpress.com&blog=2759255&post=130&subd=pbeblog&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>1. Install ntfs-3g.<br />
2. Create a folder in /media or /mnt (mkdir /media/windows)<br />
3. Use fdisk -l to get the name of the NTFS drive (example: dev/sda1)<br />
4. Add the drive into /etc/fstab so it mounts automatically.</p>
<p><strong>/etc/fstab</strong><br />
/dev/sda1   /media/windows  ntfs-3g   defaults    0   0</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/pbeblog.wordpress.com/130/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/pbeblog.wordpress.com/130/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/pbeblog.wordpress.com/130/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/pbeblog.wordpress.com/130/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/pbeblog.wordpress.com/130/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/pbeblog.wordpress.com/130/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/pbeblog.wordpress.com/130/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/pbeblog.wordpress.com/130/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/pbeblog.wordpress.com/130/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/pbeblog.wordpress.com/130/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pbeblog.wordpress.com&blog=2759255&post=130&subd=pbeblog&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://pbeblog.wordpress.com/2009/04/28/mount-ntfs-drive-on-linux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/341bb1c9ac7380d223354689f108f30f?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">pbe</media:title>
		</media:content>
	</item>
		<item>
		<title>Using X with SSH</title>
		<link>http://pbeblog.wordpress.com/2009/04/17/using-x-with-ssh/</link>
		<comments>http://pbeblog.wordpress.com/2009/04/17/using-x-with-ssh/#comments</comments>
		<pubDate>Fri, 17 Apr 2009 00:17:37 +0000</pubDate>
		<dc:creator>Patrick</dc:creator>
				<category><![CDATA[Diary]]></category>
		<category><![CDATA[Linux/GNU]]></category>

		<guid isPermaLink="false">http://pbeblog.wordpress.com/?p=126</guid>
		<description><![CDATA[I was working on the school computers from home trough SSH and needed to use X. Using the &#8220;-X&#8221; parameter gave me error messages when I used the keyboard mouse if I remember correctly. This worked without any error messages though.
ssh -Y -l user server
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pbeblog.wordpress.com&blog=2759255&post=126&subd=pbeblog&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>I was working on the school computers from home trough SSH and needed to use X. Using the &#8220;-X&#8221; parameter gave me error messages when I used the keyboard mouse if I remember correctly. This worked without any error messages though.</p>
<p><em>ssh -Y -l user server</em></p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/pbeblog.wordpress.com/126/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/pbeblog.wordpress.com/126/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/pbeblog.wordpress.com/126/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/pbeblog.wordpress.com/126/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/pbeblog.wordpress.com/126/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/pbeblog.wordpress.com/126/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/pbeblog.wordpress.com/126/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/pbeblog.wordpress.com/126/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/pbeblog.wordpress.com/126/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/pbeblog.wordpress.com/126/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pbeblog.wordpress.com&blog=2759255&post=126&subd=pbeblog&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://pbeblog.wordpress.com/2009/04/17/using-x-with-ssh/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/341bb1c9ac7380d223354689f108f30f?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">pbe</media:title>
		</media:content>
	</item>
		<item>
		<title>Encrypt chat conversations in Pidgin using pidgin-otr</title>
		<link>http://pbeblog.wordpress.com/2009/03/17/encrypt-chat-conversations-in-pidgin-using-pidgin-otr/</link>
		<comments>http://pbeblog.wordpress.com/2009/03/17/encrypt-chat-conversations-in-pidgin-using-pidgin-otr/#comments</comments>
		<pubDate>Tue, 17 Mar 2009 23:22:51 +0000</pubDate>
		<dc:creator>Patrick</dc:creator>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[add-on]]></category>
		<category><![CDATA[conversations]]></category>
		<category><![CDATA[encrypt]]></category>
		<category><![CDATA[encryption]]></category>
		<category><![CDATA[ICQ]]></category>
		<category><![CDATA[instant]]></category>
		<category><![CDATA[keys]]></category>
		<category><![CDATA[message]]></category>
		<category><![CDATA[messaging]]></category>
		<category><![CDATA[MSN]]></category>
		<category><![CDATA[off-the-record]]></category>
		<category><![CDATA[open]]></category>
		<category><![CDATA[Pidgin]]></category>
		<category><![CDATA[pidgin-otr]]></category>
		<category><![CDATA[privacy]]></category>
		<category><![CDATA[private]]></category>
		<category><![CDATA[public]]></category>
		<category><![CDATA[source]]></category>

		<guid isPermaLink="false">http://pbeblog.wordpress.com/?p=121</guid>
		<description><![CDATA[Pidgin is an excellent &#8220;chat client&#8221; or instant messaging client. I&#8217;ve even replaced the MSN client on my Windows system with Pidgin. It&#8217;s open source and has support for many different chat networks like MSN, ICQ&#8230;
There&#8217;s a plugin called pidgin-otr (Off-the-Record messaging) which allows you to encrypt your conversations (assuming the other part also has [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pbeblog.wordpress.com&blog=2759255&post=121&subd=pbeblog&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p><strong>Pidgin</strong> is an excellent &#8220;chat client&#8221; or instant messaging client. I&#8217;ve even replaced the MSN client on my Windows system with Pidgin. It&#8217;s open source and has support for many different chat networks like MSN, ICQ&#8230;</p>
<p>There&#8217;s a plugin called <strong>pidgin-otr (Off-the-Record messaging)</strong> which allows you to encrypt your conversations (assuming the other part also has pidgin-otr installed). Regretfully, people never seems to care about encryption even if they seem to get close to crazy if someone invades their privacy, quite the paradox&#8230; Well that&#8217;s just another story which i&#8217;m not going to post here, as i&#8217;m just spreading the word about everything that&#8217;s good : )</p>
<p>The Off-the-Record messaging plugin uses public and private keys. It&#8217;s very easy to use. Just download the plugin, activate it in the Pidgin add-on menu and generate a key. In the conversation window, a button will appear that makes it easy to toggle encryption on/off.</p>
<p>Download Pidgin from: <a href="http://www.pidgin.im/download/">http://www.pidgin.im/download/</a><br />
Download Pidgin-otr from: <a href="http://www.cypherpunks.ca/otr/index.php#downloads">http://www.cypherpunks.ca/otr/index.php#downloads</a></p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/pbeblog.wordpress.com/121/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/pbeblog.wordpress.com/121/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/pbeblog.wordpress.com/121/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/pbeblog.wordpress.com/121/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/pbeblog.wordpress.com/121/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/pbeblog.wordpress.com/121/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/pbeblog.wordpress.com/121/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/pbeblog.wordpress.com/121/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/pbeblog.wordpress.com/121/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/pbeblog.wordpress.com/121/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pbeblog.wordpress.com&blog=2759255&post=121&subd=pbeblog&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://pbeblog.wordpress.com/2009/03/17/encrypt-chat-conversations-in-pidgin-using-pidgin-otr/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/341bb1c9ac7380d223354689f108f30f?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">pbe</media:title>
		</media:content>
	</item>
		<item>
		<title>Encrypting mail in Thunderbird using GnuPG and Enigmail</title>
		<link>http://pbeblog.wordpress.com/2009/03/17/encrypting-mail-in-thunderbird-using-gnupg-and-enigmail/</link>
		<comments>http://pbeblog.wordpress.com/2009/03/17/encrypting-mail-in-thunderbird-using-gnupg-and-enigmail/#comments</comments>
		<pubDate>Tue, 17 Mar 2009 23:06:29 +0000</pubDate>
		<dc:creator>Patrick</dc:creator>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[agent]]></category>
		<category><![CDATA[data]]></category>
		<category><![CDATA[decrypt]]></category>
		<category><![CDATA[encrypt]]></category>
		<category><![CDATA[encrypting]]></category>
		<category><![CDATA[Enigmail]]></category>
		<category><![CDATA[GnuPG]]></category>
		<category><![CDATA[key]]></category>
		<category><![CDATA[mail]]></category>
		<category><![CDATA[Mozilla]]></category>
		<category><![CDATA[OpenPGP]]></category>
		<category><![CDATA[private]]></category>
		<category><![CDATA[public]]></category>
		<category><![CDATA[Thunderbird]]></category>
		<category><![CDATA[user]]></category>

		<guid isPermaLink="false">http://pbeblog.wordpress.com/?p=117</guid>
		<description><![CDATA[Thunderbird is a mail user agent developed by Mozilla. GnuPG is an encryption program (free software) that uses the standard OpenPGP. This standard is based on encryption using a private and public key. The private key is used to decrypt the data while the public key is used to encrypt the data.
The Thunderbird add-on Enigmail, [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pbeblog.wordpress.com&blog=2759255&post=117&subd=pbeblog&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p><strong>Thunderbird</strong> is a mail user agent developed by Mozilla. <strong>GnuPG</strong> is an encryption program (free software) that uses the standard OpenPGP. This standard is based on encryption using a private and public key. The private key is used to decrypt the data while the public key is used to encrypt the data.</p>
<p>The Thunderbird add-on <strong>Enigmail</strong>, provides an &#8220;back-end&#8221; interface to GnuPG so the user can use Thunderbird to encrypt/decrypt mail. After installing Enigmail, generate a keypair. This will create a public and private key for the current account. The public key is meant to be distributed so other people can send mail encrypted to you. The private key however, is important NOT to distribute. Since it is used to encrypt the messages sent to you with your public key. The public key is usually uploaded to a keyserver.</p>
<p>It&#8217;s possible to search for public keys on the keyservers and add public keys into a local list and configure Thunderbird to encrypt all messages by default (supposing the public key to the person in question is added into your key list). Both Thunderbird, GnuPG and Enigmail, are very useful indeed : )</p>
<p><strong>For more information about GnuPG and Enigmail:</strong><br />
<a href="http://www.gnupg.org/">http://www.gnupg.org/</a><br />
<a href="http://enigmail.mozdev.org/home/index.php">http://enigmail.mozdev.org/home/index.php</a></p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/pbeblog.wordpress.com/117/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/pbeblog.wordpress.com/117/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/pbeblog.wordpress.com/117/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/pbeblog.wordpress.com/117/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/pbeblog.wordpress.com/117/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/pbeblog.wordpress.com/117/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/pbeblog.wordpress.com/117/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/pbeblog.wordpress.com/117/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/pbeblog.wordpress.com/117/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/pbeblog.wordpress.com/117/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pbeblog.wordpress.com&blog=2759255&post=117&subd=pbeblog&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://pbeblog.wordpress.com/2009/03/17/encrypting-mail-in-thunderbird-using-gnupg-and-enigmail/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/341bb1c9ac7380d223354689f108f30f?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">pbe</media:title>
		</media:content>
	</item>
		<item>
		<title>Compile SDL/OpenGL applications using g++</title>
		<link>http://pbeblog.wordpress.com/2009/02/16/compile-sdlopengl-applications-using-g/</link>
		<comments>http://pbeblog.wordpress.com/2009/02/16/compile-sdlopengl-applications-using-g/#comments</comments>
		<pubDate>Mon, 16 Feb 2009 10:24:29 +0000</pubDate>
		<dc:creator>Patrick</dc:creator>
				<category><![CDATA[SDL / OpenGL]]></category>
		<category><![CDATA[applications]]></category>
		<category><![CDATA[C++]]></category>
		<category><![CDATA[compile]]></category>
		<category><![CDATA[g++]]></category>
		<category><![CDATA[GL]]></category>
		<category><![CDATA[GLU]]></category>
		<category><![CDATA[include]]></category>
		<category><![CDATA[libraries]]></category>
		<category><![CDATA[OpenGL]]></category>
		<category><![CDATA[path]]></category>
		<category><![CDATA[program]]></category>
		<category><![CDATA[SDL]]></category>
		<category><![CDATA[sdl-config]]></category>
		<category><![CDATA[`sdl-config --libs --cflags`]]></category>

		<guid isPermaLink="false">http://pbeblog.wordpress.com/?p=110</guid>
		<description><![CDATA[This is how I compile a C++ program with SDL and the OpenGL libraries GL and GLU. 
g++ -o appname opengl.cpp `sdl-config &#8211;libs &#8211;cflags` -lGL -lGLU
sdl-config &#8211;libs &#8211;cflags is used to get the library path and include path for SDL. This can be used instead of manually specifying the libraries for SDL.
    [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pbeblog.wordpress.com&blog=2759255&post=110&subd=pbeblog&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>This is how I compile a C++ program with SDL and the OpenGL libraries GL and GLU. </p>
<blockquote><p>g++ -o appname opengl.cpp `sdl-config &#8211;libs &#8211;cflags` -lGL -lGLU</p></blockquote>
<p>sdl-config &#8211;libs &#8211;cflags is used to get the library path and include path for SDL. This can be used instead of manually specifying the libraries for SDL.</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/pbeblog.wordpress.com/110/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/pbeblog.wordpress.com/110/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/pbeblog.wordpress.com/110/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/pbeblog.wordpress.com/110/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/pbeblog.wordpress.com/110/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/pbeblog.wordpress.com/110/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/pbeblog.wordpress.com/110/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/pbeblog.wordpress.com/110/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/pbeblog.wordpress.com/110/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/pbeblog.wordpress.com/110/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pbeblog.wordpress.com&blog=2759255&post=110&subd=pbeblog&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://pbeblog.wordpress.com/2009/02/16/compile-sdlopengl-applications-using-g/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/341bb1c9ac7380d223354689f108f30f?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">pbe</media:title>
		</media:content>
	</item>
		<item>
		<title>Burn DVD in Linux using dvd+rw-tools</title>
		<link>http://pbeblog.wordpress.com/2009/02/11/burn-dvd-in-linux-using-dvdrw-tools/</link>
		<comments>http://pbeblog.wordpress.com/2009/02/11/burn-dvd-in-linux-using-dvdrw-tools/#comments</comments>
		<pubDate>Wed, 11 Feb 2009 19:07:42 +0000</pubDate>
		<dc:creator>Patrick</dc:creator>
				<category><![CDATA[Linux/GNU]]></category>
		<category><![CDATA[-force]]></category>
		<category><![CDATA[/dev/dvd]]></category>
		<category><![CDATA[burn]]></category>
		<category><![CDATA[disc]]></category>
		<category><![CDATA[dvd]]></category>
		<category><![CDATA[DVD+RW]]></category>
		<category><![CDATA[dvd+rw-tools]]></category>
		<category><![CDATA[format]]></category>

		<guid isPermaLink="false">http://pbeblog.wordpress.com/?p=103</guid>
		<description><![CDATA[Install dvd+rw-tools with your package manager or download it from here. And then invoke the following commands&#8230;
Format disc where /dev/dvd is the device name:
dvd+rw-format -force /dev/dvd
Burn the directory (/home/user/stuff) onto the DVD:
    growisofs -Z /dev/dvd -R -J /home/user/stuff
More information:
http://fy.chalmers.se/~appro/linux/DVD+RW/
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pbeblog.wordpress.com&blog=2759255&post=103&subd=pbeblog&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Install <strong>dvd+rw-tools</strong> with your package manager or download it from <a href="http://fy.chalmers.se/~appro/linux/DVD+RW/" target="_blank">here</a>. And then invoke the following commands&#8230;</p>
<p>Format disc where /dev/dvd is the device name:</p>
<blockquote><p>dvd+rw-format -force /dev/dvd</p></blockquote>
<p>Burn the directory (/home/user/stuff) onto the DVD:</p>
<blockquote><p>    growisofs -Z /dev/dvd -R -J /home/user/stuff</p></blockquote>
<p>More information:<br />
<a href="http://fy.chalmers.se/~appro/linux/DVD+RW/">http://fy.chalmers.se/~appro/linux/DVD+RW/</a></p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/pbeblog.wordpress.com/103/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/pbeblog.wordpress.com/103/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/pbeblog.wordpress.com/103/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/pbeblog.wordpress.com/103/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/pbeblog.wordpress.com/103/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/pbeblog.wordpress.com/103/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/pbeblog.wordpress.com/103/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/pbeblog.wordpress.com/103/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/pbeblog.wordpress.com/103/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/pbeblog.wordpress.com/103/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pbeblog.wordpress.com&blog=2759255&post=103&subd=pbeblog&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://pbeblog.wordpress.com/2009/02/11/burn-dvd-in-linux-using-dvdrw-tools/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/341bb1c9ac7380d223354689f108f30f?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">pbe</media:title>
		</media:content>
	</item>
		<item>
		<title>become anonymous on the internet using Tor</title>
		<link>http://pbeblog.wordpress.com/2008/07/23/become-anonymous-on-the-internet-using-tor/</link>
		<comments>http://pbeblog.wordpress.com/2008/07/23/become-anonymous-on-the-internet-using-tor/#comments</comments>
		<pubDate>Wed, 23 Jul 2008 01:15:04 +0000</pubDate>
		<dc:creator>Patrick</dc:creator>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[anonymous]]></category>
		<category><![CDATA[communication]]></category>
		<category><![CDATA[encrypted]]></category>
		<category><![CDATA[network]]></category>
		<category><![CDATA[platform]]></category>
		<category><![CDATA[protects]]></category>
		<category><![CDATA[Tor]]></category>

		<guid isPermaLink="false">http://pbeblog.wordpress.com/?p=78</guid>
		<description><![CDATA[Tor is a platform independent program that protects you from traffic analysis. Traffic analysis is a form of surveillance of your network traffic which is a threat to your personal integrity. Tor is usually used to surf anonymously, but can also be used with for example instant-messaging applications.
How Tor works
When using Tor, your communication with [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pbeblog.wordpress.com&blog=2759255&post=78&subd=pbeblog&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Tor is a platform independent program that protects you from traffic analysis. Traffic analysis is a form of surveillance of your network traffic which is a threat to your personal integrity. Tor is usually used to surf anonymously, but can also be used with for example instant-messaging applications.</p>
<p><strong>How Tor works</strong><br />
When using Tor, your communication with the internet is protected by distributing it trough a network of different relays trough the world which are run by volunteers. The communication is also encrypted so no one can see what you&#8217;re doing or learn your location.</p>
<p>I recommend using the Firefox add-on <a href="https://addons.mozilla.org/en-US/firefox/addon/2275">Torbutton</a> which provides an easy way to disable/enable Tor in Firefox. This way, you don&#8217;t have to configure your browser either.</p>
<p><strong>Pitfalls with Tor</strong><br />
Watch out for cookies, flash files, java applets and similiar web applications. They can reveal your IP-address even if you use Tor. Using Add-ons for Mozilla Firefox like No Script and Flash Block can prevent this. Be sure that you don&#8217;t fall for things like this.</p>
<p>Even if Tor encrypts your traffic inside the Tor-network and makes you anonymous. The last relay you are connected to, which is directly communication with the webserver can still see your traffic. Don&#8217;t use Tor if you do things that can expose your identity, for example logging in to your webmail (if you truly want to be anonymous that is). Using an encrypted protocol like HTTPS prevents this though.</p>
<p>Read more about potential pitfalls here: <a href="http://www.torproject.org/download.html.en#Warning">http://www.torproject.org/download.html.en#Warning</a></p>
<p><strong>To sum it up</strong><br />
If you want to surf anonymously, this is a very useful program as it also hides your IP-address. But remember that web apps like Flash can still expose your IP. A lot of people believes that installing Tor will automagically make them anonymous. That&#8217;s wrong however. You have to configure the application correctly you want to use with Tor. If you&#8217;re using Firefox, the Torbutton add-on makes this automatically.</p>
<p>A good idea might be to install a portable browser which you use only when you want to be anonymous. Configure this browser so it doesn&#8217;t accept cookies and install a flash blocker, block java and other &#8220;media&#8221; that could expose your IP-address. It&#8217;s recommended to only use services like webmail if the site uses SSL or another secure connection.</p>
<p>There is a portable version of Firefox called <a href="http://portableapps.com/apps/internet/firefox_portable">Firefoxportable</a>.<br />
Tor&#8217;s official website: <a href="http://www.torproject.org/">http://www.torproject.org/</a></p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/pbeblog.wordpress.com/78/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/pbeblog.wordpress.com/78/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/pbeblog.wordpress.com/78/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/pbeblog.wordpress.com/78/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/pbeblog.wordpress.com/78/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/pbeblog.wordpress.com/78/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/pbeblog.wordpress.com/78/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/pbeblog.wordpress.com/78/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/pbeblog.wordpress.com/78/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/pbeblog.wordpress.com/78/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/pbeblog.wordpress.com/78/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/pbeblog.wordpress.com/78/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pbeblog.wordpress.com&blog=2759255&post=78&subd=pbeblog&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://pbeblog.wordpress.com/2008/07/23/become-anonymous-on-the-internet-using-tor/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/341bb1c9ac7380d223354689f108f30f?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">pbe</media:title>
		</media:content>
	</item>
	</channel>
</rss>