<?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:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Netalien&#039;s Blag</title>
	<atom:link href="http://netalien.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://netalien.wordpress.com</link>
	<description>Full of nonsenses 2.0</description>
	<lastBuildDate>Tue, 01 Jun 2010 18:59:50 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='netalien.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Netalien&#039;s Blag</title>
		<link>http://netalien.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://netalien.wordpress.com/osd.xml" title="Netalien&#039;s Blag" />
	<atom:link rel='hub' href='http://netalien.wordpress.com/?pushpress=hub'/>
		<item>
		<title>My take on tweetdeck on gentoo</title>
		<link>http://netalien.wordpress.com/2010/06/01/my-take-on-tweetdeck-on-gentoo/</link>
		<comments>http://netalien.wordpress.com/2010/06/01/my-take-on-tweetdeck-on-gentoo/#comments</comments>
		<pubDate>Tue, 01 Jun 2010 18:59:50 +0000</pubDate>
		<dc:creator>netalien</dc:creator>
				<category><![CDATA[Gentoo]]></category>
		<category><![CDATA[TweetDeck]]></category>

		<guid isPermaLink="false">http://netalien.wordpress.com/?p=22</guid>
		<description><![CDATA[I recently came back to gentoo after playing with other distros for a few months. Gentoo has always been my sort of &#8220;home distro&#8221;. To me is the perfect distro, but after playing with others there are things I started to miss, one of them was tweetdeck. This isn&#8217;t the first time tweetdeck appears on [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=netalien.wordpress.com&amp;blog=13872051&amp;post=22&amp;subd=netalien&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I recently came back to gentoo after playing with other distros for a few months. Gentoo has always been my sort of &#8220;home distro&#8221;. To me is the perfect distro, but after playing with others there are things I started to miss, one of them was <a href="http://tweetdeck.com/">tweetdeck</a>.</p>
<p>This isn&#8217;t the first time tweetdeck appears on my gentoo box, however, it was the first time I was setting it on fluxbox instead of gnome. If you use gentoo you know that the first thing you need to get this app working is to get adobe&#8217;s air working. Even though adobe distribute a binary version (no .rpm or .deb), still it needs dpkg or rpm in order to work. For gentoo users what we&#8217;ve left is the sdk version of air.</p>
<p>I knew that some had already done the air-sdk install so there&#8217;s no point in re-troubleshooting things. A popular link for instance is <a href="http://www.flashinthepan.ca/computer-tips/linux-computer-tips/adobe-air-on-gentoo-linux">this from flashinthepan</a>, although it doesn&#8217;t center on tweetdeck, the concept is the same: Execute your AIR app through air&#8217;s sdl.</p>
<p>Now, here&#8217;s the interesting part. There&#8217;s already a working ebuild for air-sdk in the sunrise overlay (dev-util/adobe-air-sdk-bin), but I didn&#8217;t want to set up layman yet (compiling subversion and git for layman in my decade-old PC is kinda PITA), so I went all manual.</p>
<p>First, a dir for air&#8217;s sdk:</p>
<p><code># mkdir /usr/portage/dev-util/adobe-air-sdk-bin</code></p>
<p>A dir for ${FILES}:</p>
<p><code># mkdir /usr/portage/dev-util/adobe-air-sdk-bin/files</code></p>
<p>Three files from <a href="http://bugs.gentoo.org/show_bug.cgi?id=267555">this bug report</a>, namely: <strong>adobe-air-sdk-bin-1.5.3.ebuild</strong>, <strong>adobe-air-sdk-bin.xml</strong> and <strong>airstart.desktop</strong>. The ebuild goes to the adobe-air-sdk-bin directory and the others go to the files directory. An interesting note though; while trying the installation, the ebuild failed two times because of errors related to airstart not being found. It turned out that the ebuild expected a file named airstart and another named airstart.desktop, thus, you&#8217;ll need a copy with both names on the files directory (just cp airstart{.desktop,} and you&#8217;re done). After having the files, just put them where they&#8217;re expected:</p>
<p><code># cp adobe-air-sdk-bin-1.5.3.ebuild /usr/portage/dev-util/adobe-air-sdk-bin/<br />
# cp adobe-air-sdk-bin.xml /usr/portage/dev-util/adobe-air-sdk-bin/files/<br />
# cp airstart /usr/portage/dev-util/adobe-air-sdk-bin/files/<br />
# cp airstart.desktop /usr/portage/dev-util/adobe-air-sdk-bin/files/</code></p>
<p>Then, digest the ebuild:</p>
<p><code># ebuild /usr/portage/dev-util/adobe-air-sdk-bin/adobe-air-sdk-bin-1.5.3.ebuild digest</code></p>
<p>And then install:</p>
<p><code># emerge adobe-air-sdk-bin</code></p>
<p>Now, here&#8217;s another interesting thing. For those installing on Gnome or KDE, until here you&#8217;ll be done with the installation, but if you don&#8217;t use any of those environments, you&#8217;ll need to do a few things before you can actually start tweetdeck (otherwise it won&#8217;t work).</p>
<p>It turns out that air gets confused if you start it on anything not being Gnome or KDE because a dependency with gnome-keyring or kwallet and environment variables related to this packages. I found that someone already documented the env variables but it&#8217;s up to you to figure out that if you&#8217;re like me, and have a very minimalistic install with no gnome nor kde things laying around, setting those variables won&#8217;t do much, you &#8220;need&#8221; to install either gnome-keyring or kwallet. Gnome-keyring doesn&#8217;t have as many dependencies with the gnome environment as kwallet with KDE has, so I take the gnome-keyring route.</p>
<p>Install gnome-keyring (with -nautilus USE if you want to keep everything slim as possible):</p>
<p><code># emerge gnome-keyring</code></p>
<p>Set the environment variable in your .bashrc or in the system wide /etc/bash/bashrc:</p>
<p><code>$ echo "export GNOME_DESKTOP_SESSION_ID=1" &gt;&gt; ~/.bashrc</code></p>
<p>or</p>
<p><code># echo "export GNOME_DESKTOP_SESSION_ID=1" &gt;&gt; /etc/bash/bashrc</code></p>
<p>Reload the profile:</p>
<p><code>$ source /etc/profile</code></p>
<p>I created a .desktop file so I could call TweetDeck from my Fluxbox menu, the only thing though is that if do something like this on your fluxbox menu (without a .desktop file):</p>
<p><em>[Exec] (TweetDeck) {/opt/Adobe/AirSDK/bin/adl -nodebug /opt/air-apps/TweetDeck/META-INF/AIR/application.xml /opt/air-apps/TweetDeck}</em></p>
<p>It won&#8217;t work, neither if you put this on a .desktop file:</p>
<p><em>[Desktop Entry]<br />
&#8230;<br />
Exec=/opt/Adobe/AirSDK/bin/adl -nodebug /opt/air-apps/TweetDeck/META-INF/AIR/application.xml /opt/air-apps/TweetDeck</em></p>
<p>The problem with both is that they won&#8217;t read the environment variable you set early, to workaround that I just created a simple bash wrapper named start-tweetdeck to call tweetdeck for me and made the .desktop file to call that wrapper instead:</p>
<p><code>#!/bin/bash<br />
/opt/Adobe/AirSDK/bin/adl -nodebug /opt/air-apps/TweetDeck/META-INF/AIR/application.xml /opt/air-apps/TweetDeck &amp;</code></p>
<p>The /usr/share/applications/TweetDeck.desktop file:</p>
<p><code>[Desktop Entry]<br />
Encoding=UTF-8<br />
Name=TweetDeck<br />
Type=Application<br />
Exec=/usr/bin/start-tweetdeck<br />
Categories=Network;</code></p>
<p>And that&#8217;s pretty much it. The first time you start tweetdeck gnome-keyring will be called asking you to set a password for the gnome-keyring DB. You&#8217;ll also need to provide this same password every time you start tweetdeck.</p>
<p>Happy tweeting.</p>
<br />Filed under: <a href='http://netalien.wordpress.com/category/gentoo/'>Gentoo</a> Tagged: <a href='http://netalien.wordpress.com/tag/gentoo/'>Gentoo</a>, <a href='http://netalien.wordpress.com/tag/tweetdeck/'>TweetDeck</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/netalien.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/netalien.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/netalien.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/netalien.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/netalien.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/netalien.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/netalien.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/netalien.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/netalien.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/netalien.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/netalien.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/netalien.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/netalien.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/netalien.wordpress.com/22/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=netalien.wordpress.com&amp;blog=13872051&amp;post=22&amp;subd=netalien&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://netalien.wordpress.com/2010/06/01/my-take-on-tweetdeck-on-gentoo/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/9632fcd1619d70ea15d2f2020fb0988e?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">netalien</media:title>
		</media:content>
	</item>
		<item>
		<title>Month of PHP security nearly over</title>
		<link>http://netalien.wordpress.com/2010/05/31/month-of-php-sec-nearly-over/</link>
		<comments>http://netalien.wordpress.com/2010/05/31/month-of-php-sec-nearly-over/#comments</comments>
		<pubDate>Mon, 31 May 2010 21:42:47 +0000</pubDate>
		<dc:creator>netalien</dc:creator>
				<category><![CDATA[Security]]></category>
		<category><![CDATA[MOPS]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[security]]></category>

		<guid isPermaLink="false">http://netalien.wordpress.com/?p=17</guid>
		<description><![CDATA[Well, it&#8217;s the last day of May which means the MOPS is nearly over, sort of&#8230; The Month of PHP Security was announced at the end of March if I recall right and submissions were accepted until mid April. In total, 13 articles and 60 vulnerabilities are the current result of MOPS. If you haven&#8217;t [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=netalien.wordpress.com&amp;blog=13872051&amp;post=17&amp;subd=netalien&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Well, it&#8217;s the last day of May which means the <a href="http://www.php-security.org/">MOPS</a> is nearly over, sort of&#8230;</p>
<p>The Month of PHP Security was announced at the end of March if I recall right and submissions were accepted <a href="http://www.php-security.org/cfp/index.html">until mid April</a>. In total, 13 articles and 60 vulnerabilities are the current result of MOPS.</p>
<p>If you haven&#8217;t checked out, I suggest you to. The articles are pretty good but I think the more valuables to be (my opinion of course): <a href="http://www.php-security.org/2010/05/31/article-virtual-meta-scripting-bytecode-for-php-and-javascript/index.html">Virtual Meta-Scripting Bytecode for PHP and JS</a>, <a href="http://www.php-security.org/2010/05/26/mops-submission-10-how-to-manage-a-php-applications-users-and-passwords/index.html">How to manage a PHP application&#8217;s users and passwords</a>,  <a href="http://www.php-security.org/2010/05/26/mops-submission-10-how-to-manage-a-php-applications-users-and-passwords/index.html">Configuration encryption patch for Suhosin</a>, and <a href="http://www.php-security.org/2010/05/09/mops-submission-04-generating-unpredictable-session-ids-and-hashes/index.html">Generating unpredictable session IDs and hashes</a>.</p>
<p>The bytecode article is a pretty interesting idea, using a VM that can parse PHP and JS in order to obfuscate payload code and execution. This is part of a project named EPHP-VM, <a href="http://code.google.com/p/ephp-vm/">currently hosted</a> on the google code repository. The paper shows the design ideas, the concept of utilizing a VM running on top of the scripting environment and a few implementation details. It isn&#8217;t incredible complete but the hole concept of the project and the idea, is very interesting nevertheless, so check it out.</p>
<p>The paper about managing users and passwords is a very well thought and complete article. This submission goes from explaining why most common user/password management currently used are far from perfect, it explains several related concepts from hash and salting to stretching and cryptographic decisions. As far as implementation, the article centers on <a href="http://www.openwall.com/phpass/">phpass</a> which is a very nice little framework to help in the creation and verification of strong passwords. This definitively is a must.</p>
<p>For the configuration patch for Suhosin, more than the article itself what makes this a good submission is the feature which is talked about. If you ever created an application that had to store credentials to different services (like database access information) you know how difficult is to plan a good way to keep those credentials safe at the same time you make them available to the application that uses them. The feature described lets you put this credentials encrypted in your files and the key to decrypt them in the php.ini itself thus avoiding many of the concerns related to keeping the credentials secure. Of course, this isn&#8217;t a silver bullet, but sure as hell that is better than most current methods.</p>
<p>Finally, the article about generating more robust IDs and hashes is a very nice introduction to common problems regarding the randomness used by many applications. The article is more about hints than complete explanations but it serves as a guide for you to research more about it. The final implementation isn&#8217;t bad, although is some sort of &#8220;use this random generator + this other one if available + that other if it&#8217;s also available&#8221; which arguably might seem something like hash(&#8220;sha256&#8243;,(mt_rand().microtime())), however, the method described in the article achieve better randomness by using the functions and OS capabilities that offer the most unique values instead of pilling together a bunch of random data inside a hash function.</p>
<p>The other submissions have a value as well, in case you miss them, check them out. Also, a <a href="http://twitter.com/mops_2010/status/15096437386">tweet from the MOPS</a> account today mentioned that php-security.org will receive updates as time pass by, so keep checking the page or subscribe to the feeds, twitter account or whatever you prefer.</p>
<br />Filed under: <a href='http://netalien.wordpress.com/category/security/'>Security</a> Tagged: <a href='http://netalien.wordpress.com/tag/mops/'>MOPS</a>, <a href='http://netalien.wordpress.com/tag/php/'>php</a>, <a href='http://netalien.wordpress.com/tag/security-2/'>security</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/netalien.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/netalien.wordpress.com/17/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/netalien.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/netalien.wordpress.com/17/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/netalien.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/netalien.wordpress.com/17/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/netalien.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/netalien.wordpress.com/17/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/netalien.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/netalien.wordpress.com/17/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/netalien.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/netalien.wordpress.com/17/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/netalien.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/netalien.wordpress.com/17/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=netalien.wordpress.com&amp;blog=13872051&amp;post=17&amp;subd=netalien&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://netalien.wordpress.com/2010/05/31/month-of-php-sec-nearly-over/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/9632fcd1619d70ea15d2f2020fb0988e?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">netalien</media:title>
		</media:content>
	</item>
		<item>
		<title>Facebook now cares about your privacy!</title>
		<link>http://netalien.wordpress.com/2010/05/27/facebook-now-cares-about-your-privacy/</link>
		<comments>http://netalien.wordpress.com/2010/05/27/facebook-now-cares-about-your-privacy/#comments</comments>
		<pubDate>Thu, 27 May 2010 03:08:22 +0000</pubDate>
		<dc:creator>netalien</dc:creator>
				<category><![CDATA[Privacy]]></category>
		<category><![CDATA[Facebook]]></category>

		<guid isPermaLink="false">http://netalien.wordpress.com/?p=11</guid>
		<description><![CDATA[&#8230;right, keep dreaming. Since last week, many people wrote about some &#8220;exciting news&#8221; stating that Facebook was preparing changes for their privacy settings. To many people who read the stories, it seemed that Facebook does indeed care about your data and what you share and for days everybody was expectant on how this was gonna [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=netalien.wordpress.com&amp;blog=13872051&amp;post=11&amp;subd=netalien&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>&#8230;right, keep dreaming.</p>
<p>Since last week, <a title="Sophos - Facebook rumors on privacy" href="http://www.sophos.com/blogs/gc/g/2010/05/18/rumours-facebook-privacy-late/">many people</a> <a title="Washington post - Facebook answering privacy concerns" href="http://www.washingtonpost.com/wp-dyn/content/article/2010/05/23/AR2010052303828.html">wrote about</a> some &#8220;exciting news&#8221; stating that Facebook was preparing changes for their privacy settings. To many people who read the stories, it seemed that Facebook does indeed care about your data and what you share and for days everybody was expectant on how this was gonna turn out.</p>
<p>Now there&#8217;s something more tangible to talk about this changes as Facebook <a title="Facebook - New privacy control settings" href="http://blog.facebook.com/blog.php?post=391922327130">started to roll &#8216;em out</a>, but as <a href="http://www.sophos.com/blogs/gc/g/2010/05/26/facebook-privacy-settings-revamped-good-news-bad-news/">others have</a> already <a href="http://www.eff.org/deeplinks/2010/05/facebooks-new-privacy-improvements-are-positive">pointed out</a>, there&#8217;s much much to be done in order for something as social as Facebook to provide privacy for its users and their data. Nothing stops you from <a href="http://www.eff.org/deeplinks/2010/05/more-privacy-facebook-new-privacy-controls">enhancing your privacy</a> using the controls though.</p>
<p>It seems that many people actually expected to Facebook change its business model, thing that is nothing more than a dream of course.</p>
<p>The changes introduced by Facebook as we know it right now are nothing more than a easy way to change what was already there. Instead of going through several menus and settings in order to make some information private, a new privacy control page is there to provide you easy access to those settings, but that&#8217;s about it. No new information constrains, no new private by default, nothing.</p>
<p>The critics about Facebook&#8217;s lack of interest regarding privacy have been about things like Connections, sharing with thirdy-party applications and connected websites, opt-out instead of opt-in, everything is public by default and everything is shared.</p>
<p>Now we have this new page to control who have access to what, but all the things that many criticized (Connections, sharing with external websites and so on) are still there. Whatever people criticized about Facebook data sharing practices still remains, thus, nothing change.</p>
<p>For those of you thinking about <em>real</em> changes on data privacy (on Facebook or online for that matter), stop dreaming. Facebook in particular have a very well known business model: <em>Share everything you can with everyone</em>. Mark Zuckerberg says that it isn&#8217;t about money, but even if that&#8217;s so, is a business model that shape what Facebook is today and is hardly going to change.</p>
<p>Your data <em>is not</em> your data anymore if it&#8217;s accessible online, deal with it, <a href="http://features.techworld.com/security/3224557/the-biggest-threats-to-your-online-privacy/">online privacy is dead</a>.</p>
<br />Filed under: <a href='http://netalien.wordpress.com/category/privacy/'>Privacy</a> Tagged: <a href='http://netalien.wordpress.com/tag/facebook/'>Facebook</a>, <a href='http://netalien.wordpress.com/tag/privacy/'>Privacy</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/netalien.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/netalien.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/netalien.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/netalien.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/netalien.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/netalien.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/netalien.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/netalien.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/netalien.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/netalien.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/netalien.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/netalien.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/netalien.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/netalien.wordpress.com/11/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=netalien.wordpress.com&amp;blog=13872051&amp;post=11&amp;subd=netalien&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://netalien.wordpress.com/2010/05/27/facebook-now-cares-about-your-privacy/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/9632fcd1619d70ea15d2f2020fb0988e?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">netalien</media:title>
		</media:content>
	</item>
		<item>
		<title>Aliens can also blog</title>
		<link>http://netalien.wordpress.com/2010/05/26/aliens-can-also-blog/</link>
		<comments>http://netalien.wordpress.com/2010/05/26/aliens-can-also-blog/#comments</comments>
		<pubDate>Wed, 26 May 2010 06:45:15 +0000</pubDate>
		<dc:creator>netalien</dc:creator>
				<category><![CDATA[Null]]></category>
		<category><![CDATA[Nonsense]]></category>

		<guid isPermaLink="false">http://netalien.wordpress.com/?p=1</guid>
		<description><![CDATA[netalien here starting a blog from outer space. Filed under: Null Tagged: Nonsense<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=netalien.wordpress.com&amp;blog=13872051&amp;post=1&amp;subd=netalien&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>netalien here starting a blog from outer space.</p>
<br />Filed under: <a href='http://netalien.wordpress.com/category/null/'>Null</a> Tagged: <a href='http://netalien.wordpress.com/tag/nonsense/'>Nonsense</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/netalien.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/netalien.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/netalien.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/netalien.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/netalien.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/netalien.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/netalien.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/netalien.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/netalien.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/netalien.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/netalien.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/netalien.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/netalien.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/netalien.wordpress.com/1/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=netalien.wordpress.com&amp;blog=13872051&amp;post=1&amp;subd=netalien&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://netalien.wordpress.com/2010/05/26/aliens-can-also-blog/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/9632fcd1619d70ea15d2f2020fb0988e?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">netalien</media:title>
		</media:content>
	</item>
	</channel>
</rss>
