<?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>aFblog</title>
	<atom:link href="http://farmando.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://farmando.wordpress.com</link>
	<description>tracce sparse che scrivo quando mi pare.</description>
	<lastBuildDate>Fri, 27 Jan 2012 21:50:43 +0000</lastBuildDate>
	<language>it</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='farmando.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>aFblog</title>
		<link>http://farmando.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://farmando.wordpress.com/osd.xml" title="aFblog" />
	<atom:link rel='hub' href='http://farmando.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Understanding the bin, sbin, usr/bin , usr/sbin split</title>
		<link>http://farmando.wordpress.com/2012/01/27/understanding-the-bin-sbin-usrbin-usrsbin-split/</link>
		<comments>http://farmando.wordpress.com/2012/01/27/understanding-the-bin-sbin-usrbin-usrsbin-split/#comments</comments>
		<pubDate>Fri, 27 Jan 2012 21:50:38 +0000</pubDate>
		<dc:creator>farmando</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://farmando.wordpress.com/?p=201</guid>
		<description><![CDATA[Understanding the bin, sbin, usr/bin , usr/sbin split Rob Landley rob at landley.net Thu Dec 9 15:45:39 UTC 2010 Previous message: Applet for detecting the filesystem type. Next message: Understanding the bin, sbin, usr/bin , usr/sbin split Messages sorted by: [ date ] [ thread ] [ subject ] [ author ] On Tuesday 30 [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=farmando.wordpress.com&amp;blog=5440&amp;post=201&amp;subd=farmando&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<div class='posterous_autopost'>
<div class="posterous_bookmarklet_entry">
<blockquote class="posterous_long_quote">
<h1>Understanding the bin, sbin, usr/bin , usr/sbin split</h1>
<p>  <b>Rob Landley</b>   <a href="http://lists.busybox.net/pipermail/busybox/2010-December/074114.html/mailto:busybox%40busybox.net?Subject=Re%3A%20Understanding%20the%20bin%2C%20sbin%2C%20usr/bin%20%2C%20usr/sbin%20split&amp;In-Reply-To=%3C201012090945.39817.rob%40landley.net%3E" title="Understanding the bin, sbin, usr/bin , usr/sbin split">rob at landley.net  </a><br />  <i>Thu Dec  9 15:45:39 UTC 2010</i>
</p>
<ul>
<li>Previous message: <a href="http://lists.busybox.net/pipermail/busybox/2010-December/074114.html/074239.html">Applet for detecting the filesystem type.  </a></li>
<li>Next message: <a href="http://lists.busybox.net/pipermail/busybox/2010-December/074114.html/074201.html">Understanding the bin, sbin, usr/bin , usr/sbin split  </a></li>
<li> <b>Messages sorted by:</b>   <a href="http://lists.busybox.net/pipermail/busybox/2010-December/074114.html/date.html#74114">[ date ]</a>  <a href="http://lists.busybox.net/pipermail/busybox/2010-December/074114.html/thread.html#74114">[ thread ]</a>  <a href="http://lists.busybox.net/pipermail/busybox/2010-December/074114.html/subject.html#74114">[ subject ]</a>  <a href="http://lists.busybox.net/pipermail/busybox/2010-December/074114.html/author.html#74114">[ author ]</a>  </li>
</ul>
<hr />
<div class="CodeRay">
<div class="code">
<div class="CodeRay">
<div class="code">
<pre>On Tuesday 30 November 2010 15:58:00 David Collier wrote: &gt; I see that busybox spreads it's links over these 4 directories. &gt; &gt; Is there a simple rule which decides which directory each link lives &gt; in..... &gt; &gt; For instance I see kill is in /bin and killall in /usr/bin.... I don't &gt; have a grip on what might be the logic for that.  You know how Ken Thompson and Dennis Ritchie created Unix on a PDP-7 in 1969?   Well around 1971 they upgraded to a PDP-11 with a pair of RK05 disk packs (1.5  megabytes each) for storage.  When the operating system grew too big to fit on the first RK05 disk pack (their  root filesystem) they let it leak into the second one, which is where all the  user home directories lived (which is why the mount was called /usr).  They  replicated all the OS directories under there (/bin, /sbin, /lib, /tmp...) and  wrote files to those new directories because their original disk was out of  space.  When they got a third disk, they mounted it on /home and relocated all  the user directories to there so the OS could consume all the space on both  disks and grow to THREE WHOLE MEGABYTES (ooooh!).  Of course they made rules about &quot;when the system first boots, it has to come up  enough to be able to mount the second disk on /usr, so don't put things like  the mount command /usr/bin or we'll have a chicken and egg problem bringing  the system up.&quot;  Fairly straightforward.  Also fairly specific to v6 unix of 35  years ago.  The /bin vs /usr/bin split (and all the others) is an artifact of this, a  1970's implementation detail that got carried forward for decades by  bureaucrats who never question _why_ they're doing things.  It stopped making  any sense before Linux was ever invented, for multiple reasons:  1) Early system bringup is the provice of initrd and initramfs, which deals  with the &quot;this file is needed before that file&quot; issues.  We've already _got_ a  temporary system that boots the main system.  2) shared libraries (introduced by the Berkeley guys) prevent you from  independently upgrading the /lib and /usr/bin parts.  They two partitions have  to _match_ or they won't work.  This wasn't the case in 1974, back then they  had a certain level of independence because everything was statically linked.  3) Cheap retail hard drives passed the 100 megabyte mark around 1990, and  partition resizing software showed up somewhere around there (partition magic  3.0 shipped in 1997).  Of course once the split existed, some people made other rules to justify it.   Root was for the OS stuff you got from upstream and /usr was for your site- local files.  Then / was for the stuff you got from AT&amp;T and /usr was for the  stuff that your distro like IBM AIX or Dec Ultrix or SGI Irix added to it, and  /usr/local was for your specific installation's files.  Then somebody decided  /usr/local wasn't a good place to install new packages, so let's add /opt!   I'm still waiting for /opt/local to show up...  Of course given 30 years to fester, this split made some interesting distro- specific rules show up and go away again, such as &quot;/tmp is cleared between  reboots but /usr/tmp isn't&quot;.  (Of course on Ubuntu /usr/tmp doesn't exist and  on Gentoo /usr/tmp is a symlink to /var/tmp which now has the &quot;not cleared  between reboots&quot; rule.  Yes all this predated tmpfs.  It has to do with read- only root filesystems, /usr is always going to be read only in that case and  /var is where your writable space is, / is _mostly_ read only except for bits  of /etc which they tried to move to /var but really symlinking /etc to  /var/etc happens more often than not...)  Standards bureaucracies like the Linux Foundation (which consumed the Free  Standards Group in its' ever-growing accretion disk years ago) happily  document and add to this sort of complexity without ever trying to understand  why it was there in the first place.  'Ken and Dennis leaked their OS into the  equivalent of home because an RK05 disk pack on the PDP-11 was too small&quot; goes  whoosh over their heads.  I'm pretty sure the busybox install just puts binaries wherever other versions  of those binaries have historically gone.  There's no actual REASON for any of  it anymore.  Personally, I symlink /bin /sbin and /lib to their /usr  equivalents on systems I put together.  Embedded guys try to understand and  simplify...  Rob --  GPLv3: as worthy a successor as The Phantom Menace, as timely as Duke Nukem  Forever, and as welcome as New Coke.</pre>
</div></div>
</p></div>
</p></div>
</blockquote>
<div class="posterous_quote_citation">via <a href="http://lists.busybox.net/pipermail/busybox/2010-December/074114.html">lists.busybox.net</a></div>
</p>
</div>
</div>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/farmando.wordpress.com/201/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/farmando.wordpress.com/201/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/farmando.wordpress.com/201/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/farmando.wordpress.com/201/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/farmando.wordpress.com/201/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/farmando.wordpress.com/201/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/farmando.wordpress.com/201/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/farmando.wordpress.com/201/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/farmando.wordpress.com/201/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/farmando.wordpress.com/201/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/farmando.wordpress.com/201/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/farmando.wordpress.com/201/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/farmando.wordpress.com/201/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/farmando.wordpress.com/201/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=farmando.wordpress.com&amp;blog=5440&amp;post=201&amp;subd=farmando&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://farmando.wordpress.com/2012/01/27/understanding-the-bin-sbin-usrbin-usrsbin-split/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/4851bc008c57781fc951b47439adb3f6?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">farmando</media:title>
		</media:content>
	</item>
		<item>
		<title>Internet Against SOPA, PIPA &#124; The Onion &#8211; America&#8217;s Finest News Source</title>
		<link>http://farmando.wordpress.com/2012/01/27/internet-against-sopa-pipa-the-onion-americas-finest-news-source/</link>
		<comments>http://farmando.wordpress.com/2012/01/27/internet-against-sopa-pipa-the-onion-americas-finest-news-source/#comments</comments>
		<pubDate>Fri, 27 Jan 2012 16:11:25 +0000</pubDate>
		<dc:creator>farmando</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://farmando.wordpress.com/?p=199</guid>
		<description><![CDATA[January 26, 2012 Internet Against SOPA, PIPA Last week, several websites, including Google and Wikipedia, raised awareness of the prohibitive measures included in the Stop Online Piracy Act (SOPA) and the Protect IP Act (PIPA). Here are some of the legislation&#8217;s controversial provisions: Music review sites can only allude to a song&#8217;s title and content [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=farmando.wordpress.com&amp;blog=5440&amp;post=199&amp;subd=farmando&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<div class='posterous_autopost'>
<div class="posterous_bookmarklet_entry">
<blockquote>
<div>
<p>January 26, 2012 </p>
<div>
<h3>Internet Against SOPA, PIPA</h3>
</p>
<p><b>Last week, several websites, including Google and Wikipedia, raised awareness of the prohibitive measures included in the Stop Online Piracy Act (SOPA) and the Protect IP Act (PIPA). Here are some of the legislation&#8217;s controversial provisions:</b></p>
</p>
<ul>
<li>Music review sites can only allude to a song&#8217;s title and content in vague terms</li>
<li>All pirated material available only at the Commerce Department&#8217;s new site, Torrent.gov</li>
<li>Government will actively encourage people to download only public-domain music, such as Pipey Lester&#8217;s &#8220;That Cat&#8217;s a-Mewing!&#8221; or Ukulele Ted&#8217;s &#8220;Nickel For Your Hat&#8221;</li>
<li>Denies future generations the ability to watch hilarious scene from <i>Dirty Work</i> where Chris Farley yells at the Asian hooker anytime, free of charge, which is a fundamental right of being an American</li>
<li>Does absolutely nothing to get rid of goddamn Lolcats</li>
<li>Makes the MPAA and RIAA feel better, which, if you have any shred of a soul, causes pure rage to swell through your very being</li>
<li>Any person suspected of Photoshopping bill sponsor Rep. Lamar Smith (R-TX) in an unflattering manner shall be subject to a minimum sentence of two months in prison; sentence will be increased by an additional two months if MS Paint is used</li>
<li>No longer legal to steal Ryan Gosling&#8217;s credit card information</li>
</ul>
<div>
<p>            <img src="http://o.onionstatic.com/images/articles/article/27/27170/Infographic-SOPA-R_jpg_630x1200_upscale_q85.jpg" height="347" alt="" width="500" />          </p>
</p></div>
</p></div>
<div>
<div>
<ul>
<li>  <span style="margin:0;padding:0;"></span>    </li>
<li>    </li>
<li>  	        </li>
<li>  <span></span><a href="http://www.theonion.com/articles/internet-against-sopa-pipa,27170#">Email</a>
<div>  <span></span>  <a href="http://www.theonion.com/articles/internet-against-sopa-pipa,27170#"></a>    </div>
</li>
<li>  <span></span><a href="http://www.theonion.com/articles/internet-against-sopa-pipa,27170#">Print</a>  </li>
<li>  <span></span><a href="http://www.theonion.com/articles/internet-against-sopa-pipa,27170#">Share</a>
<div>  <span></span>  <a href="http://www.theonion.com/articles/internet-against-sopa-pipa,27170#"></a>
<div>
<h3>Share</h3>
<ul>
<li><a href="http://www.facebook.com/sharer.php?u=http://www.theonion.com/articles/internet-against-sopa-pipa,27170/&amp;t=Internet%20Against%20SOPA,%20PIPA"><span></span>Facebook</a></li>
<li><a href="http://digg.com/submit?url=http://www.theonion.com/articles/internet-against-sopa-pipa,27170/&amp;title=Internet%20Against%20SOPA,%20PIPA"><span></span>Digg</a></li>
<li><a href="http://www.stumbleupon.com/submit?url=http://www.theonion.com/articles/internet-against-sopa-pipa,27170/&amp;title=Internet%20Against%20SOPA,%20PIPA"><span></span>Stumble</a></li>
<li><a href="http://reddit.com/submit?url=http://www.theonion.com/articles/internet-against-sopa-pipa,27170/&amp;title=Internet%20Against%20SOPA,%20PIPA"><span></span>Reddit</a></li>
</ul></div>
</p></div>
</li>
</ul></div>
</p></div>
<div>
<h5>Recent Infographic</h5>
<ul>
<li>
<p><a href="http://www.theonion.com/articles/internet-against-sopa-pipa,27170#">        <img src="http://o.onionstatic.com/images/articles/article/27/27092/Infographic-Romney-R_jpg_140x140_crop-smart_upscale_q85.jpg" height="140" alt="" width="140" /></a></p>
<p><a href="http://www.theonion.com/articles/internet-against-sopa-pipa,27170#">      </a></p>
</p>
<p><a href="http://www.theonion.com/articles/internet-against-sopa-pipa,27170#">Romney Facing Flak For Turn As Venture Capitalist</a></p>
<p><span>01.19.12</span> | <a href="http://www.theonion.com/articles/internet-against-sopa-pipa,27170#" title="The Onion: Issue 4803">ISSUE 48•03</a></p>
</li>
<li>
<p><a href="http://www.theonion.com/articles/internet-against-sopa-pipa,27170#">        <img src="http://o.onionstatic.com/images/articles/article/27/27027/Infographic-Detroit-R_jpg_140x140_crop-smart_upscale_q85.jpg" height="140" alt="" width="140" /></a></p>
<p><a href="http://www.theonion.com/articles/internet-against-sopa-pipa,27170#">      </a></p>
</p>
<p><a href="http://www.theonion.com/articles/internet-against-sopa-pipa,27170#">Detroit Ending 24-Hour Police Station Access</a></p>
<p><span>01.12.12</span> | <a href="http://www.theonion.com/articles/internet-against-sopa-pipa,27170#" title="The Onion: Issue 4802">ISSUE 48•02</a></p>
</li>
<li>
<p><a href="http://www.theonion.com/articles/internet-against-sopa-pipa,27170#">        <img src="http://o.onionstatic.com/images/articles/article/26/26954/Infographic-Republican-R_jpg_140x140_crop-smart_upscale_q85.jpg" height="140" alt="" width="140" /></a></p>
<p><a href="http://www.theonion.com/articles/internet-against-sopa-pipa,27170#">      </a></p>
</p>
<p><a href="http://www.theonion.com/articles/internet-against-sopa-pipa,27170#">Best Debate Moments</a></p>
<p><span>01.05.12</span> | <a href="http://www.theonion.com/articles/internet-against-sopa-pipa,27170#" title="The Onion: Issue 4801">ISSUE 48•01</a></p>
</li>
</ul>
<h5>More Infographic</h5>
<div>
<ul>
<li>
<p><a href="http://www.theonion.com/articles/internet-against-sopa-pipa,27170#">        <img src="http://o.onionstatic.com/images/articles/article/7675/onion_imagearticle279_jpg_140x140_crop-smart_upscale_q85.jpg" height="140" alt="" width="140" /></a></p>
<p><a href="http://www.theonion.com/articles/internet-against-sopa-pipa,27170#">      </a></p>
</p>
<p><a href="http://www.theonion.com/articles/internet-against-sopa-pipa,27170#">Kmart&#8217;s Woes</a></p>
<p><span>03.27.02</span> | <a href="http://www.theonion.com/articles/internet-against-sopa-pipa,27170#" title="The Onion: Issue 3811">ISSUE 38•11</a></p>
</li>
<li>
<p><a href="http://www.theonion.com/articles/internet-against-sopa-pipa,27170#">        <img src="http://o.onionstatic.com/images/articles/article/21/21361/Infographic_American_Secrets_R_jpg_140x140_crop-smart_upscale_q85.jpg" height="140" alt="" width="140" /></a></p>
<p><a href="http://www.theonion.com/articles/internet-against-sopa-pipa,27170#">      </a></p>
</p>
<p><a href="http://www.theonion.com/articles/internet-against-sopa-pipa,27170#">American Secrets For Sale</a></p>
<p><span>09.15.11</span> | <a href="http://www.theonion.com/articles/internet-against-sopa-pipa,27170#" title="The Onion: Issue 4737">ISSUE 47•37</a></p>
</li>
<li>
<p><a href="http://www.theonion.com/articles/internet-against-sopa-pipa,27170#">        <img src="http://o.onionstatic.com/images/articles/article/7884/onion_imagearticle1553_jpg_140x140_crop-smart_upscale_q85.jpg" height="140" alt="" width="140" /></a></p>
<p><a href="http://www.theonion.com/articles/internet-against-sopa-pipa,27170#">      </a></p>
</p>
<p><a href="http://www.theonion.com/articles/internet-against-sopa-pipa,27170#">Exotic Pet Fever</a></p>
<p><span>02.25.98</span> | <a href="http://www.theonion.com/articles/internet-against-sopa-pipa,27170#" title="The Onion: Issue 3307">ISSUE 33•07</a></p>
</li>
</ul></div>
</p></div>
</p></div>
</blockquote>
<div class="posterous_quote_citation">via <a href="http://www.theonion.com/articles/internet-against-sopa-pipa,27170/">theonion.com</a></div>
</p>
</div>
</div>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/farmando.wordpress.com/199/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/farmando.wordpress.com/199/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/farmando.wordpress.com/199/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/farmando.wordpress.com/199/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/farmando.wordpress.com/199/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/farmando.wordpress.com/199/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/farmando.wordpress.com/199/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/farmando.wordpress.com/199/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/farmando.wordpress.com/199/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/farmando.wordpress.com/199/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/farmando.wordpress.com/199/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/farmando.wordpress.com/199/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/farmando.wordpress.com/199/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/farmando.wordpress.com/199/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=farmando.wordpress.com&amp;blog=5440&amp;post=199&amp;subd=farmando&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://farmando.wordpress.com/2012/01/27/internet-against-sopa-pipa-the-onion-americas-finest-news-source/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/4851bc008c57781fc951b47439adb3f6?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">farmando</media:title>
		</media:content>

		<media:content url="http://o.onionstatic.com/images/articles/article/27/27170/Infographic-SOPA-R_jpg_630x1200_upscale_q85.jpg" medium="image" />

		<media:content url="http://o.onionstatic.com/images/articles/article/27/27092/Infographic-Romney-R_jpg_140x140_crop-smart_upscale_q85.jpg" medium="image" />

		<media:content url="http://o.onionstatic.com/images/articles/article/27/27027/Infographic-Detroit-R_jpg_140x140_crop-smart_upscale_q85.jpg" medium="image" />

		<media:content url="http://o.onionstatic.com/images/articles/article/26/26954/Infographic-Republican-R_jpg_140x140_crop-smart_upscale_q85.jpg" medium="image" />

		<media:content url="http://o.onionstatic.com/images/articles/article/7675/onion_imagearticle279_jpg_140x140_crop-smart_upscale_q85.jpg" medium="image" />

		<media:content url="http://o.onionstatic.com/images/articles/article/21/21361/Infographic_American_Secrets_R_jpg_140x140_crop-smart_upscale_q85.jpg" medium="image" />

		<media:content url="http://o.onionstatic.com/images/articles/article/7884/onion_imagearticle1553_jpg_140x140_crop-smart_upscale_q85.jpg" medium="image" />
	</item>
		<item>
		<title>Security Onion Intrusion Detection System Basic Setup Tutorial « CYBER ARMS – Computer Security</title>
		<link>http://farmando.wordpress.com/2012/01/25/security-onion-intrusion-detection-system-basic-setup-tutorial-cyber-arms-computer-security/</link>
		<comments>http://farmando.wordpress.com/2012/01/25/security-onion-intrusion-detection-system-basic-setup-tutorial-cyber-arms-computer-security/#comments</comments>
		<pubDate>Wed, 25 Jan 2012 21:36:47 +0000</pubDate>
		<dc:creator>farmando</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://farmando.wordpress.com/?p=197</guid>
		<description><![CDATA[Security Onion is one of my favorite tools. Doug Burks did an amazing job pulling many of the top open source Network Security Monitoring (NSM) and Intrusion Detection System (IDS) programs. You can run Security Onion in Live CD mode, or you can install it and run it off of your hard drive. It’s based [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=farmando.wordpress.com&amp;blog=5440&amp;post=197&amp;subd=farmando&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<div class='posterous_autopost'>
<div class="posterous_bookmarklet_entry">
<blockquote>
<div>  				<span style="text-align:center;display:block;"></span>
<p style="text-align:justify;"><a href="http://securityonion.blogspot.com/" target="_blank">Security Onion</a> is one of my favorite tools. Doug Burks did an amazing job pulling many of the top open source Network Security Monitoring (NSM) and Intrusion Detection System (IDS) programs. You can run Security Onion in Live CD mode, or you can install it and run it off of your hard drive.</p>
<p style="text-align:justify;">It’s based on Xubuntu 10.04 and contains a ton of programs including Snort, Suricata, Sguil, Squert, argus, Xplico, tcpreplay, scapy, hping, and many other security tools. Sounds complicated right? Well, Doug has done the hard work in pulling all these tools together into an easy to use Linux distribution.</p>
<p style="text-align:justify;">Run this on a system that has two network cards and you have a complete NSM/IDS system. One NIC connects to your network or the internet side of your traffic and records and monitors every packet that comes in or goes out of your system. The second NIC connects to your LAN side and can be used to remotely view and monitor intrusion attempts and security threats.</p>
<p style="text-align:justify;">The exceptional basic setup video above was created by Adrian Crenshaw aka “Irongeek”. Adrian has always done an amazing job passing on information on the latest security tools and techniques. <a href="http://www.irongeek.com/" target="_blank">Irongeek.com</a> has a ton of videos and security how too’s, check it out!</p>
<div>
<div>
<h3>Share this:</h3>
<div>
<ul>
<li><a href="http://cyberarms.wordpress.com/2012/01/24/security-onion-intrusion-detections-system-basic-setup-tutorial/?share=stumbleupon&amp;nb=1" title="Click to share on StumbleUpon" rel="nofollow"><span>StumbleUpon</span></a></li>
<li><a href="http://cyberarms.wordpress.com/2012/01/24/security-onion-intrusion-detections-system-basic-setup-tutorial/?share=digg&amp;nb=1" title="Click to Digg this post" rel="nofollow"><span>Digg</span></a></li>
<li><a href="http://cyberarms.wordpress.com/2012/01/24/security-onion-intrusion-detections-system-basic-setup-tutorial/?share=reddit&amp;nb=1" title="Click to share on Reddit" rel="nofollow"><span>Reddit</span></a></li>
<li><a href="http://cyberarms.wordpress.com/2012/01/24/security-onion-intrusion-detections-system-basic-setup-tutorial/?share=twitter&amp;nb=1" title="Click to share on Twitter" rel="nofollow"><span>Twitter<span>2</span></span></a></li>
<li></li>
</ul>
</div>
</div>
<div>
<h3>Like this:</h3>
<div>
<div><a href="http://cyberarms.wordpress.com/2012/01/24/security-onion-intrusion-detections-system-basic-setup-tutorial/?like=1&amp;_wpnonce=c433e5e022" title="I like this post" rel="nofollow"><span>Like</span></a></div>
<div>One blogger likes this post.</div>
<ul>
<li><a href="http://gravatar.com/lkafle"><img src="http://0.gravatar.com/avatar/01521140ac09959ea2c98c11f9bd8b2b?s=30&amp;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D30&amp;r=G" height="30" alt="lkafle" width="30" /></a>
<p><a href="http://gravatar.com/lkafle"></a></p>
</li>
</ul>
</div>
</div>
</div>
<p>~ by D. Dieterle on January 24, 2012.</p>
<p>Posted in <a href="http://cyberarms.wordpress.com/category/computer-security/" title="View all posts in Computer Security" rel="category tag">Computer Security</a>					<br />Tags: <a href="http://cyberarms.wordpress.com/tag/intrusion-attempts/" rel="tag">intrusion attempts</a>, <a href="http://cyberarms.wordpress.com/tag/intrusion-detection/" rel="tag">Intrusion Detection</a>, <a href="http://cyberarms.wordpress.com/tag/intrusion-detection-system/" rel="tag">intrusion detection system</a>, <a href="http://cyberarms.wordpress.com/tag/intrusion-detection-system-ids/" rel="tag">intrusion detection system ids</a>, <a href="http://cyberarms.wordpress.com/tag/intrusion-prevention/" rel="tag">Intrusion Prevention</a>, <a href="http://cyberarms.wordpress.com/tag/linux-security/" rel="tag">Linux Security</a>, <a href="http://cyberarms.wordpress.com/tag/network-security-monitoring/" rel="tag">Network Security Monitoring</a>, <a href="http://cyberarms.wordpress.com/tag/scapy/" rel="tag">scapy</a>, <a href="http://cyberarms.wordpress.com/tag/security-onion/" rel="tag">Security Onion</a>, <a href="http://cyberarms.wordpress.com/tag/squert/" rel="tag">squert</a>				</p>
</p></div>
</blockquote>
<div class="posterous_quote_citation">via <a href="http://cyberarms.wordpress.com/2012/01/24/security-onion-intrusion-detections-system-basic-setup-tutorial/">cyberarms.wordpress.com</a></div>
</p>
</div>
</div>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/farmando.wordpress.com/197/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/farmando.wordpress.com/197/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/farmando.wordpress.com/197/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/farmando.wordpress.com/197/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/farmando.wordpress.com/197/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/farmando.wordpress.com/197/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/farmando.wordpress.com/197/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/farmando.wordpress.com/197/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/farmando.wordpress.com/197/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/farmando.wordpress.com/197/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/farmando.wordpress.com/197/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/farmando.wordpress.com/197/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/farmando.wordpress.com/197/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/farmando.wordpress.com/197/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=farmando.wordpress.com&amp;blog=5440&amp;post=197&amp;subd=farmando&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://farmando.wordpress.com/2012/01/25/security-onion-intrusion-detection-system-basic-setup-tutorial-cyber-arms-computer-security/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/4851bc008c57781fc951b47439adb3f6?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">farmando</media:title>
		</media:content>

		<media:content url="http://0.gravatar.com/avatar/01521140ac09959ea2c98c11f9bd8b2b?s=30&#38;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D30&#38;r=G" medium="image">
			<media:title type="html">lkafle</media:title>
		</media:content>
	</item>
		<item>
		<title>Happy New Year! &#124; The Best Article Every day</title>
		<link>http://farmando.wordpress.com/2012/01/02/happy-new-year-the-best-article-every-day/</link>
		<comments>http://farmando.wordpress.com/2012/01/02/happy-new-year-the-best-article-every-day/#comments</comments>
		<pubDate>Mon, 02 Jan 2012 07:53:14 +0000</pubDate>
		<dc:creator>farmando</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://farmando.wordpress.com/?p=195</guid>
		<description><![CDATA[via bspcn.com<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=farmando.wordpress.com&amp;blog=5440&amp;post=195&amp;subd=farmando&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<div class='posterous_autopost'>
<div class="posterous_bookmarklet_entry"> <a href="http://www.bspcn.com/2011/12/31/happy-new-year/"><img class="posterous_download_image" src="https://lh6.googleusercontent.com/-1NXcnGmbHaE/Tv82tEEWl3I/AAAAAAAAOH8/o1TfNoIWl34/s800/ga33.png" border="0" height="297" width="402" /></a>
<div class="posterous_quote_citation">via <a href="http://www.bspcn.com/2011/12/31/happy-new-year/">bspcn.com</a></div>
</p>
</div>
</div>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/farmando.wordpress.com/195/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/farmando.wordpress.com/195/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/farmando.wordpress.com/195/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/farmando.wordpress.com/195/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/farmando.wordpress.com/195/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/farmando.wordpress.com/195/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/farmando.wordpress.com/195/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/farmando.wordpress.com/195/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/farmando.wordpress.com/195/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/farmando.wordpress.com/195/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/farmando.wordpress.com/195/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/farmando.wordpress.com/195/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/farmando.wordpress.com/195/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/farmando.wordpress.com/195/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=farmando.wordpress.com&amp;blog=5440&amp;post=195&amp;subd=farmando&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://farmando.wordpress.com/2012/01/02/happy-new-year-the-best-article-every-day/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/4851bc008c57781fc951b47439adb3f6?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">farmando</media:title>
		</media:content>

		<media:content url="https://lh6.googleusercontent.com/-1NXcnGmbHaE/Tv82tEEWl3I/AAAAAAAAOH8/o1TfNoIWl34/s800/ga33.png" medium="image" />
	</item>
		<item>
		<title>To Infinity and Beyond &#8211; Horizon &#8211; BBC &#8211; YouTube</title>
		<link>http://farmando.wordpress.com/2011/12/01/to-infinity-and-beyond-horizon-bbc-youtube/</link>
		<comments>http://farmando.wordpress.com/2011/12/01/to-infinity-and-beyond-horizon-bbc-youtube/#comments</comments>
		<pubDate>Wed, 30 Nov 2011 22:42:23 +0000</pubDate>
		<dc:creator>farmando</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://farmando.wordpress.com/?p=193</guid>
		<description><![CDATA[via youtube.com<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=farmando.wordpress.com&amp;blog=5440&amp;post=193&amp;subd=farmando&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<div class='posterous_autopost'>
<div class="posterous_bookmarklet_entry"> <span style="text-align:center; display: block;"><a href="http://farmando.wordpress.com/2011/12/01/to-infinity-and-beyond-horizon-bbc-youtube/"><img src="http://img.youtube.com/vi/V1N5pCAgUzU/2.jpg" alt="" /></a></span>
<div class="posterous_quote_citation">via <a href="http://www.youtube.com/watch?feature=player_embedded&amp;v=V1N5pCAgUzU">youtube.com</a></div>
</p>
</div>
</div>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/farmando.wordpress.com/193/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/farmando.wordpress.com/193/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/farmando.wordpress.com/193/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/farmando.wordpress.com/193/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/farmando.wordpress.com/193/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/farmando.wordpress.com/193/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/farmando.wordpress.com/193/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/farmando.wordpress.com/193/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/farmando.wordpress.com/193/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/farmando.wordpress.com/193/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/farmando.wordpress.com/193/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/farmando.wordpress.com/193/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/farmando.wordpress.com/193/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/farmando.wordpress.com/193/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=farmando.wordpress.com&amp;blog=5440&amp;post=193&amp;subd=farmando&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://farmando.wordpress.com/2011/12/01/to-infinity-and-beyond-horizon-bbc-youtube/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/4851bc008c57781fc951b47439adb3f6?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">farmando</media:title>
		</media:content>
	</item>
		<item>
		<title>Network Dictionary – DILLIGAF — My Etherealmind</title>
		<link>http://farmando.wordpress.com/2011/12/01/network-dictionary-dilligaf-my-etherealmind/</link>
		<comments>http://farmando.wordpress.com/2011/12/01/network-dictionary-dilligaf-my-etherealmind/#comments</comments>
		<pubDate>Wed, 30 Nov 2011 22:16:59 +0000</pubDate>
		<dc:creator>farmando</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://farmando.wordpress.com/?p=191</guid>
		<description><![CDATA[The acronym DILLIGAF expands to: Do I Look Like I Give A Fart ?. The acronym is commonly used when some asks a pointless or futile question regarding the state of the firewall cluster ? Or they want to let you know that your Checkpoint firewall has, unsurprisingly, crashed yet again ? Or do you [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=farmando.wordpress.com&amp;blog=5440&amp;post=191&amp;subd=farmando&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<div class='posterous_autopost'>
<div class="posterous_bookmarklet_entry">
<blockquote class="posterous_long_quote">
<p>The acronym DILLIGAF expands to: <strong>Do I Look Like I Give A Fart ?</strong>.</p>
<p>The acronym is commonly used when some asks a pointless or futile question regarding the state of the firewall cluster ? Or they want to let you know that your Checkpoint firewall has, unsurprisingly, crashed yet again ? Or do you care that your MPLS Service Provider just promised guaranteed bandwidth ? Or perhaps, your manager has committed to a “five nine uptime” on five year old assets that have grumpy little gnomes who come out at night to keep them working.</p>
<p>An all purpose statement of deprecation, that works in most circumstances where a weary cynicism is your only defense.</p>
<hr />
<p>You may wish to consider stronger language, but I do not recommend it.</p>
<div class="snap_nopreview sharing robots-nocontent">
<ul>
<li class="sharing_label"></li>
</ul>
</div>
</blockquote>
<div class="posterous_quote_citation">via <a href="http://etherealmind.com/network-dicitonary-dilligaf/?utm_source=feedburner&amp;utm_medium=feed&amp;utm_campaign=Feed%3A+etherealmind+%28My+Etherealmind+-+Network+design%2C+architecture%2C+thinking%2C+working.+Tech.%29">etherealmind.com</a></div>
</p>
</div>
</div>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/farmando.wordpress.com/191/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/farmando.wordpress.com/191/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/farmando.wordpress.com/191/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/farmando.wordpress.com/191/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/farmando.wordpress.com/191/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/farmando.wordpress.com/191/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/farmando.wordpress.com/191/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/farmando.wordpress.com/191/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/farmando.wordpress.com/191/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/farmando.wordpress.com/191/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/farmando.wordpress.com/191/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/farmando.wordpress.com/191/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/farmando.wordpress.com/191/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/farmando.wordpress.com/191/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=farmando.wordpress.com&amp;blog=5440&amp;post=191&amp;subd=farmando&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://farmando.wordpress.com/2011/12/01/network-dictionary-dilligaf-my-etherealmind/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/4851bc008c57781fc951b47439adb3f6?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">farmando</media:title>
		</media:content>
	</item>
		<item>
		<title>everyday_i_show: photos by Robert Doisneau</title>
		<link>http://farmando.wordpress.com/2011/10/10/everyday_i_show-photos-by-robert-doisneau/</link>
		<comments>http://farmando.wordpress.com/2011/10/10/everyday_i_show-photos-by-robert-doisneau/#comments</comments>
		<pubDate>Mon, 10 Oct 2011 13:11:11 +0000</pubDate>
		<dc:creator>farmando</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://farmando.wordpress.com/2011/10/10/everyday_i_show-photos-by-robert-doisneau/</guid>
		<description><![CDATA[via everyday-i-show.livejournal.com<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=farmando.wordpress.com&amp;blog=5440&amp;post=188&amp;subd=farmando&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<div class='posterous_autopost'>
<div class="posterous_bookmarklet_entry">
<div class='p_embed p_image_embed'> <a href="http://farmando.files.wordpress.com/2011/10/media_httpfarm7static_ivsiv-scaled1000.jpg"><img alt="Media_httpfarm7static_ivsiv" height="415" src="http://farmando.files.wordpress.com/2011/10/media_httpfarm7static_ivsiv-scaled1000.jpg?w=500&#038;h=415" width="500" /></a> </div>
<div class="posterous_quote_citation">via <a href="http://everyday-i-show.livejournal.com/129632.html">everyday-i-show.livejournal.com</a></div>
</p>
</div>
</div>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/farmando.wordpress.com/188/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/farmando.wordpress.com/188/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/farmando.wordpress.com/188/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/farmando.wordpress.com/188/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/farmando.wordpress.com/188/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/farmando.wordpress.com/188/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/farmando.wordpress.com/188/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/farmando.wordpress.com/188/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/farmando.wordpress.com/188/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/farmando.wordpress.com/188/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/farmando.wordpress.com/188/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/farmando.wordpress.com/188/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/farmando.wordpress.com/188/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/farmando.wordpress.com/188/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=farmando.wordpress.com&amp;blog=5440&amp;post=188&amp;subd=farmando&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://farmando.wordpress.com/2011/10/10/everyday_i_show-photos-by-robert-doisneau/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/4851bc008c57781fc951b47439adb3f6?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">farmando</media:title>
		</media:content>

		<media:content url="http://farmando.files.wordpress.com/2011/10/media_httpfarm7static_ivsiv-scaled1000.jpg?w=300" medium="image">
			<media:title type="html">Media_httpfarm7static_ivsiv</media:title>
		</media:content>
	</item>
		<item>
		<title>Log In</title>
		<link>http://farmando.wordpress.com/2011/10/03/log-in/</link>
		<comments>http://farmando.wordpress.com/2011/10/03/log-in/#comments</comments>
		<pubDate>Mon, 03 Oct 2011 20:01:10 +0000</pubDate>
		<dc:creator>farmando</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://farmando.wordpress.com/2011/10/03/log-in/</guid>
		<description><![CDATA[via niemann.blogs.nytimes.com Genius!<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=farmando.wordpress.com&amp;blog=5440&amp;post=185&amp;subd=farmando&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<div class='posterous_autopost'>
<div class="posterous_bookmarklet_entry">
<div class='p_embed p_image_embed'> <img alt="Media_httpgraphics8ny_ezhum" height="193" src="http://farmando.files.wordpress.com/2011/10/media_httpgraphics8ny_ezhum-scaled500.png?w=500&#038;h=193" width="500" /> </div>
<div class="posterous_quote_citation">via <a href="http://niemann.blogs.nytimes.com/2011/09/30/log-in/">niemann.blogs.nytimes.com</a></div>
<p>Genius!</p>
</div>
</div>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/farmando.wordpress.com/185/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/farmando.wordpress.com/185/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/farmando.wordpress.com/185/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/farmando.wordpress.com/185/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/farmando.wordpress.com/185/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/farmando.wordpress.com/185/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/farmando.wordpress.com/185/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/farmando.wordpress.com/185/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/farmando.wordpress.com/185/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/farmando.wordpress.com/185/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/farmando.wordpress.com/185/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/farmando.wordpress.com/185/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/farmando.wordpress.com/185/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/farmando.wordpress.com/185/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=farmando.wordpress.com&amp;blog=5440&amp;post=185&amp;subd=farmando&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://farmando.wordpress.com/2011/10/03/log-in/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/4851bc008c57781fc951b47439adb3f6?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">farmando</media:title>
		</media:content>

		<media:content url="http://farmando.files.wordpress.com/2011/10/media_httpgraphics8ny_ezhum-scaled500.png?w=300" medium="image">
			<media:title type="html">Media_httpgraphics8ny_ezhum</media:title>
		</media:content>
	</item>
		<item>
		<title>The Making of Blade Runner &#124; Open Culture</title>
		<link>http://farmando.wordpress.com/2011/09/01/the-making-of-blade-runner-open-culture/</link>
		<comments>http://farmando.wordpress.com/2011/09/01/the-making-of-blade-runner-open-culture/#comments</comments>
		<pubDate>Thu, 01 Sep 2011 14:35:37 +0000</pubDate>
		<dc:creator>farmando</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://farmando.wordpress.com/2011/09/01/the-making-of-blade-runner-open-culture/</guid>
		<description><![CDATA[via openculture.com<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=farmando.wordpress.com&amp;blog=5440&amp;post=184&amp;subd=farmando&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<div class='posterous_autopost'>
<div class="posterous_bookmarklet_entry"> <span style="text-align:center; display: block;"><a href="http://farmando.wordpress.com/2011/09/01/the-making-of-blade-runner-open-culture/"><img src="http://img.youtube.com/vi/1ZVW8Zn5fSM/2.jpg" alt="" /></a></span>
<div class="posterous_quote_citation">via <a href="http://www.openculture.com/2011/09/the_making_of_blade_runner.html?utm_source=feedburner&amp;utm_medium=feed&amp;utm_campaign=Feed%3A+OpenCulture+%28Open+Culture%29">openculture.com</a></div>
</p>
</div>
</div>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/farmando.wordpress.com/184/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/farmando.wordpress.com/184/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/farmando.wordpress.com/184/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/farmando.wordpress.com/184/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/farmando.wordpress.com/184/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/farmando.wordpress.com/184/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/farmando.wordpress.com/184/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/farmando.wordpress.com/184/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/farmando.wordpress.com/184/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/farmando.wordpress.com/184/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/farmando.wordpress.com/184/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/farmando.wordpress.com/184/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/farmando.wordpress.com/184/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/farmando.wordpress.com/184/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=farmando.wordpress.com&amp;blog=5440&amp;post=184&amp;subd=farmando&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://farmando.wordpress.com/2011/09/01/the-making-of-blade-runner-open-culture/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/4851bc008c57781fc951b47439adb3f6?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">farmando</media:title>
		</media:content>
	</item>
		<item>
		<title>Network Dictionary – powerpointalism — My Etherealmind</title>
		<link>http://farmando.wordpress.com/2011/07/19/network-dictionary-%e2%80%93-powerpointalism-%e2%80%94-my-etherealmind/</link>
		<comments>http://farmando.wordpress.com/2011/07/19/network-dictionary-%e2%80%93-powerpointalism-%e2%80%94-my-etherealmind/#comments</comments>
		<pubDate>Tue, 19 Jul 2011 21:34:50 +0000</pubDate>
		<dc:creator>farmando</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://farmando.wordpress.com/2011/07/19/network-dictionary-%e2%80%93-powerpointalism-%e2%80%94-my-etherealmind/</guid>
		<description><![CDATA[Rough term for an event where PowerPoint presentations are occurring in multiple rooms. You might call it a conference, but really it’s a powerpointalism experience. The definition of a conference —a formal meeting for discussion — doesn’t really apply since only the people up the front are talking and everyone else is listening. Generally, you [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=farmando.wordpress.com&amp;blog=5440&amp;post=183&amp;subd=farmando&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<div class='posterous_autopost'>
<div class="posterous_bookmarklet_entry">
<blockquote>
<div>
<p>Rough term for an event where PowerPoint presentations are occurring in multiple rooms. You might call it a conference, but really it’s a <strong>powerpointalism experience</strong>. The definition of a conference —a formal meeting for discussion — doesn’t really apply since only the people up the front are talking and everyone else is listening. Generally, you want to be involved.</p>
<p>Note that&nbsp;<strong>powerpointalism </strong>can also be a noun “I’m experiencing&nbsp;<strong>powerpointalism” </strong>or more simply, setting one’s status to “<strong>powerpointalism” </strong>explains your current status.</p>
<p>Note that&nbsp;powerpointalism is&nbsp;how you experience <a href="http://etherealmind.com/network-dictionary-markitecture/">marketecture</a>.</p>
<p>Compare with <a href="http://etherealmind.com/network-dictionary-powerpoint-waterboarding/" target="_blank">PowerPoint Waterboarding</a> which tends to occur in much smaller groups that you can’t escape from.</p>
<p>With reference to <a href="http://twitter.com/@aneel" rel="nofollow" target="_blank">@aneel</a> during Cisco Live Conference in Las Vegas, 2011.</p>
<div>
<ul>
<li>Share this:</li>
<li>
</li>
<li>
</li>
<li>
</li>
<li><a href="http://etherealmind.com/network-dictionary-powerpointalism/?share=email&amp;nb=1" title="Click to email this to a friend" rel="nofollow">Email</a></li>
<li></li>
</ul>
</div>
<p>  		  &#8211;&gt;  		</p></div>
</blockquote>
<div class="posterous_quote_citation">via <a href="http://etherealmind.com/network-dictionary-powerpointalism/?utm_source=feedburner&amp;utm_medium=feed&amp;utm_campaign=Feed%3A+etherealmind+%28My+Etherealmind+-+Network+design%2C+architecture%2C+thinking%2C+working.+Tech.%29">etherealmind.com</a></div>
</p>
</div>
</div>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/farmando.wordpress.com/183/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/farmando.wordpress.com/183/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/farmando.wordpress.com/183/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/farmando.wordpress.com/183/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/farmando.wordpress.com/183/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/farmando.wordpress.com/183/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/farmando.wordpress.com/183/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/farmando.wordpress.com/183/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/farmando.wordpress.com/183/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/farmando.wordpress.com/183/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/farmando.wordpress.com/183/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/farmando.wordpress.com/183/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/farmando.wordpress.com/183/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/farmando.wordpress.com/183/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=farmando.wordpress.com&amp;blog=5440&amp;post=183&amp;subd=farmando&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://farmando.wordpress.com/2011/07/19/network-dictionary-%e2%80%93-powerpointalism-%e2%80%94-my-etherealmind/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/4851bc008c57781fc951b47439adb3f6?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">farmando</media:title>
		</media:content>
	</item>
	</channel>
</rss>
