<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Linux * Screw &#187; humour</title>
	<atom:link href="http://www.linuxscrew.com/category/fun/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.linuxscrew.com</link>
	<description></description>
	<lastBuildDate>Thu, 15 Jul 2010 15:44:53 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=3693</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Sort CLI output by line length</title>
		<link>http://www.linuxscrew.com/2009/04/14/sort-cli-output-by-line-length/</link>
		<comments>http://www.linuxscrew.com/2009/04/14/sort-cli-output-by-line-length/#comments</comments>
		<pubDate>Tue, 14 Apr 2009 14:18:28 +0000</pubDate>
		<dc:creator>artiomix</dc:creator>
				<category><![CDATA[applications]]></category>
		<category><![CDATA[debian]]></category>
		<category><![CDATA[docs]]></category>
		<category><![CDATA[faq]]></category>
		<category><![CDATA[gnome]]></category>
		<category><![CDATA[humour]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[virtualization]]></category>

		<guid isPermaLink="false">http://www.linuxscrew.com/?p=767</guid>
		<description><![CDATA[Want to sort file contents by each line&#8217;s lenght? No problems:
artemn@artemn-laptop:~$ cat /etc/passwd &#124; awk '{print length, $0}' &#124; sort -n &#124; awk '{$1=""; print $0 }'

bin:x:2:2:bin:/bin:/bin/sh
sys:x:3:3:sys:/dev:/bin/sh
root:x:0:0:root:/root:/bin/bash
proxy:x:13:13:proxy:/bin:/bin/sh
mail:x:8:8:mail:/var/mail:/bin/sh
lp:x:7:7:lp:/var/spool/lpd:/bin/sh
sync:x:4:65534:sync:/bin:/bin/sync
ntp:x:110:120::/home/ntp:/bin/false
daemon:x:1:1:daemon:/usr/sbin:/bin/sh
ftp:x:111:65534::/home/ftp:/bin/false
games:x:5:60:games:/usr/games:/bin/sh
klog:x:102:103::/home/klog:/bin/false
man:x:6:12:man:/var/cache/man:/bin/sh
irc:x:39:39:ircd:/var/run/ircd:/bin/sh
dhcp:x:100:101::/nonexistent:/bin/false
news:x:9:9:news:/var/spool/news:/bin/sh
saned:x:120:131::/home/saned:/bin/false
syslog:x:101:102::/home/syslog:/bin/false
uucp:x:10:10:uucp:/var/spool/uucp:/bin/sh
backup:x:34:34:backup:/var/backups:/bin/sh
www-data:x:33:33:www-data:/var/www:/bin/sh
libuuid:x:112:121::/var/lib/libuuid:/bin/sh
messagebus:x:103:109::/var/run/dbus:/bin/false
nobody:x:65534:65534:nobody:/nonexistent:/bin/sh
sshd:x:109:65534::/var/run/sshd:/usr/sbin/nologin
Debian-exim:x:117:128::/var/spool/exim4:/bin/false
artemn:x:1000:1000:artemn,,,:/home/artemn:/bin/bash
list:x:38:38:Mailing List Manager:/var/list:/bin/sh
mysql:x:119:130:MySQL Server,,,:/var/lib/mysql:/bin/false
gdm:x:108:118:Gnome Display Manager:/var/lib/gdm:/bin/false
hplip:x:104:7:HPLIP system user,,,:/var/run/hplip:/bin/false
pulse:x:113:123:PulseAudio daemon,,,:/var/run/pulse:/bin/false
polkituser:x:114:127:PolicyKit,,,:/var/run/PolicyKit:/bin/false
avahi:x:106:114:Avahi mDNS daemon,,,:/var/run/avahi-daemon:/bin/false
asterisk:x:118:129:Asterisk PBX daemon,,,:/var/lib/asterisk:/bin/false
gnats:x:41:41:Gnats Bug-Reporting System (admin):/var/lib/gnats:/bin/sh
haldaemon:x:107:116:Hardware abstraction layer,,,:/home/haldaemon:/bin/false
landscape:x:115:65534:Landscape Client Daemon,,,:/var/lib/landscape:/bin/false
avahi-autoipd:x:105:113:Avahi autoip daemon,,,:/var/lib/avahi-autoipd:/bin/false
chipcard:x:116:119:Chipcard-Tools Daemon Account,,,:/var/run/chipcard:/bin/false
For reverse sort, use the following [...]]]></description>
			<content:encoded><![CDATA[<p>Want to sort file contents by each line&#8217;s lenght? No problems:</p>
<pre>artemn@artemn-laptop:~$ cat /etc/passwd | awk '{print length, $0}' | sort -n | awk '{$1=""; print $0 }'</pre>
<p><span id="more-767"></span>
<pre>bin:x:2:2:bin:/bin:/bin/sh
sys:x:3:3:sys:/dev:/bin/sh
root:x:0:0:root:/root:/bin/bash
proxy:x:13:13:proxy:/bin:/bin/sh
mail:x:8:8:mail:/var/mail:/bin/sh
lp:x:7:7:lp:/var/spool/lpd:/bin/sh
sync:x:4:65534:sync:/bin:/bin/sync
ntp:x:110:120::/home/ntp:/bin/false
daemon:x:1:1:daemon:/usr/sbin:/bin/sh
ftp:x:111:65534::/home/ftp:/bin/false
games:x:5:60:games:/usr/games:/bin/sh
klog:x:102:103::/home/klog:/bin/false
man:x:6:12:man:/var/cache/man:/bin/sh
irc:x:39:39:ircd:/var/run/ircd:/bin/sh
dhcp:x:100:101::/nonexistent:/bin/false
news:x:9:9:news:/var/spool/news:/bin/sh
saned:x:120:131::/home/saned:/bin/false
syslog:x:101:102::/home/syslog:/bin/false
uucp:x:10:10:uucp:/var/spool/uucp:/bin/sh
backup:x:34:34:backup:/var/backups:/bin/sh
www-data:x:33:33:www-data:/var/www:/bin/sh
libuuid:x:112:121::/var/lib/libuuid:/bin/sh
messagebus:x:103:109::/var/run/dbus:/bin/false
nobody:x:65534:65534:nobody:/nonexistent:/bin/sh
sshd:x:109:65534::/var/run/sshd:/usr/sbin/nologin
Debian-exim:x:117:128::/var/spool/exim4:/bin/false
artemn:x:1000:1000:artemn,,,:/home/artemn:/bin/bash
list:x:38:38:Mailing List Manager:/var/list:/bin/sh
mysql:x:119:130:MySQL Server,,,:/var/lib/mysql:/bin/false
gdm:x:108:118:Gnome Display Manager:/var/lib/gdm:/bin/false
hplip:x:104:7:HPLIP system user,,,:/var/run/hplip:/bin/false
pulse:x:113:123:PulseAudio daemon,,,:/var/run/pulse:/bin/false
polkituser:x:114:127:PolicyKit,,,:/var/run/PolicyKit:/bin/false
avahi:x:106:114:Avahi mDNS daemon,,,:/var/run/avahi-daemon:/bin/false
asterisk:x:118:129:Asterisk PBX daemon,,,:/var/lib/asterisk:/bin/false
gnats:x:41:41:Gnats Bug-Reporting System (admin):/var/lib/gnats:/bin/sh
haldaemon:x:107:116:Hardware abstraction layer,,,:/home/haldaemon:/bin/false
landscape:x:115:65534:Landscape Client Daemon,,,:/var/lib/landscape:/bin/false
avahi-autoipd:x:105:113:Avahi autoip daemon,,,:/var/lib/avahi-autoipd:/bin/false
chipcard:x:116:119:Chipcard-Tools Daemon Account,,,:/var/run/chipcard:/bin/false</pre>
<p>For reverse sort, use the following command:</p>
<pre>cat /etc/passwd | awk '{print length, $0}' | sort -rn | awk '{$1=""; print $0 }'</pre>
<p>Source: <a href="http://www.opennet.ru">www.opennet.ru</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.linuxscrew.com/2009/04/14/sort-cli-output-by-line-length/feed/</wfw:commentRss>
		<slash:comments>14</slash:comments>
		</item>
		<item>
		<title>Christmas… Linux… Wallpapers…</title>
		<link>http://www.linuxscrew.com/2008/12/23/christmas%e2%80%a6-linux%e2%80%a6-wallpapers%e2%80%a6/</link>
		<comments>http://www.linuxscrew.com/2008/12/23/christmas%e2%80%a6-linux%e2%80%a6-wallpapers%e2%80%a6/#comments</comments>
		<pubDate>Tue, 23 Dec 2008 15:40:35 +0000</pubDate>
		<dc:creator>artiomix</dc:creator>
				<category><![CDATA[centos]]></category>
		<category><![CDATA[fedora]]></category>
		<category><![CDATA[humour]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[suse]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://www.linuxscrew.com/?p=638</guid>
		<description><![CDATA[As it comes from the title below is a small set of Christmas holidays wallpapers which should fit any Ubuntu, Fedora, Debian, Suse, Mandriva, Slackware, RedHat, Centos desktop&#8230;































]]></description>
			<content:encoded><![CDATA[<p>As it comes from the title <a href="http://www.linuxscrew.com/2008/12/23/christmas%e2%80%a6-linux%e2%80%a6-wallpapers%e2%80%a6/#more-638">below</a> is a small set of <strong>Christmas</strong> holidays wallpapers which should fit any <strong>Ubuntu</strong>, Fedora, <strong>Debian</strong>, Suse, Mandriva, Slackware, RedHat, Centos desktop&#8230;</p>
<p style="text-align: center;"><a href="http://www.linuxscrew.com/2008/12/23/christmas%e2%80%a6-linux%e2%80%a6-wallpapers%e2%80%a6/#more-638"><img src="http://linuxscrew.com/files/wallpapers/2009/HappyHolidays.gif" alt="happy linux holidays!" /></a></p>
<p><span id="more-638"></span></p>
<p style="text-align: center;">
<table border="0">
<tbody>
<tr>
<td><a href="http://www.linuxscrew.com/files/wallpapers/2009/01463_asmallgiftforxmas_1280x800.jpg" target="_blank"><img title="linux christmas wallpaper" src="http://www.linuxscrew.com/files/wallpapers/2009/01463_asmallgiftforxmas_1280x800.jpg" alt="linux christmas wallpaper" width="200" height="150" /></a></td>
<td><a href="http://www.linuxscrew.com/files/wallpapers/2009/linux christmas.jpg" target="_blank"><img title="linux christmas wallpaper" src="http://www.linuxscrew.com/files/wallpapers/2009/linux christmas.jpg" alt="linux christmas wallpaper" width="200" height="150" /></a></td>
</tr>
<tr>
<td><a href="http://www.linuxscrew.com/files/wallpapers/2009/01453_xmasvolcano_1280x800.jpg" target="_blank"><img title="linux christmas wallpaper" src="http://www.linuxscrew.com/files/wallpapers/2009/01453_xmasvolcano_1280x800.jpg" alt="linux christmas wallpaper" width="200" height="150" /></a></td>
<td><a href="http://www.linuxscrew.com/files/wallpapers/2009/01746_merrychristmas_1280x1024.jpg" target="_blank"><img title="linux christmas wallpaper" src="http://www.linuxscrew.com/files/wallpapers/2009/01746_merrychristmas_1280x1024.jpg" alt="linux christmas wallpaper" width="200" height="150" /></a></td>
</tr>
<tr>
<td><a href="http://www.linuxscrew.com/files/wallpapers/2009/butuauraum7.jpg" target="_blank"><img title="ubuntu linux christmas wallpaper" src="http://www.linuxscrew.com/files/wallpapers/2009/butuauraum7.jpg" alt="ubuntu linux christmas wallpaper" width="200" height="150" /></a></td>
<td><a href="http://www.linuxscrew.com/files/wallpapers/2009/orangaurorajx2.jpg" target="_blank"><img title="ubuntu linux christmas wallpaper" src="http://www.linuxscrew.com/files/wallpapers/2009/orangaurorajx2.jpg" alt="ubuntu linux christmas wallpaper" width="200" height="150" /></a></td>
</tr>
<tr>
<td><a href="http://www.linuxscrew.com/files/wallpapers/2009/linux-christmas.jpg" target="_blank"><img title="tux linux christmas wallpaper" src="http://www.linuxscrew.com/files/wallpapers/2009/linux-christmas.jpg" alt="tux linux christmas wallpaper" width="200" height="150" /></a></td>
<td><a href="http://www.linuxscrew.com/files/wallpapers/2009/ubuntu-christmas-1024x768.png" target="_blank"><img title="ubuntu linux christmas wallpaper" src="http://www.linuxscrew.com/files/wallpapers/2009/ubuntu-christmas-1024x768.png" alt="ubuntu linux christmas wallpaper" width="200" height="150" /></a></td>
</tr>
<tr>
<td><a href="http://linuxscrew.com/files/wallpapers/2009/christmas%20hq%20wallpapers%20(5).jpg" target="_blank"><img title="linux christmas wallpaper" src="http://linuxscrew.com/files/wallpapers/2009/christmas%20hq%20wallpapers%20(5).jpg" alt="linux christmas wallpaper" width="200" height="150" /></a></td>
<td><a href="http://www.linuxscrew.com/files/wallpapers/2009/christmas-tree.jpg" target="_blank"><img title="linux christmas wallpaper" src="http://www.linuxscrew.com/files/wallpapers/2009/christmas-tree.jpg" alt="linux christmas wallpaper" width="200" height="150" /></a></td>
</tr>
<tr>
<td align="center"><a href="http://www.linuxscrew.com/files/wallpapers/2009/adni18_Linux_Christmas.jpg" target="_blank"><img title="linux christmas wallpaper" src="http://www.linuxscrew.com/files/wallpapers/2009/adni18_Linux_Christmas.jpg" alt="linux christmas wallpaper" width="200" height="150" /></a></td>
<td align="center"><a href="http://linuxscrew.com/files/wallpapers/2009/Fx_MerryChristmas_Sonickydon_KenSaunders1024x768.png" target="_blank"><img title="linux firefox christmas wallpaper" src="http://linuxscrew.com/files/wallpapers/2009/Fx_MerryChristmas_Sonickydon_KenSaunders1024x768.png" alt="linux firefox christmas wallpaper" width="200" height="150" /></a></td>
</tr>
</tbody>
</table>
]]></content:encoded>
			<wfw:commentRss>http://www.linuxscrew.com/2008/12/23/christmas%e2%80%a6-linux%e2%80%a6-wallpapers%e2%80%a6/feed/</wfw:commentRss>
		<slash:comments>12</slash:comments>
		</item>
		<item>
		<title>The Manga Guide to Databases</title>
		<link>http://www.linuxscrew.com/2008/10/10/the-manga-guide-to-databases/</link>
		<comments>http://www.linuxscrew.com/2008/10/10/the-manga-guide-to-databases/#comments</comments>
		<pubDate>Fri, 10 Oct 2008 13:53:55 +0000</pubDate>
		<dc:creator>artiomix</dc:creator>
				<category><![CDATA[humour]]></category>

		<guid isPermaLink="false">http://www.linuxscrew.com/2008/10/10/the-manga-guide-to-databases/</guid>
		<description><![CDATA[Just came across one amusing book&#8230; Here is what Mana Takahashi (the author) says:
Princess Ruruna is stressed out. With the king and queen away, she has to manage the Kingdom of Kod&#8217;s humongous fruit-selling empire. Overseas departments, scads of inventory, conflicting prices, and so many customers! It&#8217;s all such a confusing mess. But a mysterious [...]]]></description>
			<content:encoded><![CDATA[<p>Just came across one amusing book&#8230; Here is what <a href="http://www.oreillynet.com/pub/au/3470">Mana Takahashi</a> (the author) says:</p>
<blockquote><p><a href="http://ecx.images-amazon.com/images/I/51wkRQgwGFL._SS500_.jpg" class="broken_link"  target="_blank"><img src="http://artiomix.googlepages.com/51wkRQgwGFL._SL500_AA240_.jpg" align="right" /></a>Princess Ruruna is stressed out. With the king and queen away, she has to manage the Kingdom of Kod&#8217;s humongous fruit-selling empire. Overseas departments, scads of inventory, conflicting prices, and so many customers! It&#8217;s all such a confusing mess. But a mysterious book and a helpful fairy promise to solve her organizational problems—with the practical magic of databases.</p>
<p>In <a href="http://www.amazon.com/gp/product/1593271905"><em>The Manga Guide to Databases</em></a>, Tico the fairy teaches the Princess how to simplify her data management. We follow along as they design a relational database, understand the entity-relationship model, perform basic database operations, and delve into more advanced topics. Once the Princess is familiar with transactions and basic SQL statements, she can keep her data timely and accurate for the entire kingdom. Finally, Tico explains ways to make the database more efficient and secure, and they discuss methods for concurrency and replication.</p>
<p>Examples and exercises (with answer keys) help you learn, and an appendix of frequently used SQL statements gives the tools you need to create and maintain full-featured databases.</p></blockquote>
<p>By the way, does anybody know where to buy manga illustrated guide to <a href="http://www.cisco.com/en/US/products/ps6557/products_ios_technology_home.html">MPLS</a> (Multiprotocol Label Switching)?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.linuxscrew.com/2008/10/10/the-manga-guide-to-databases/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>CERN and LHC&#8230;</title>
		<link>http://www.linuxscrew.com/2008/09/10/cern-and-lhc/</link>
		<comments>http://www.linuxscrew.com/2008/09/10/cern-and-lhc/#comments</comments>
		<pubDate>Wed, 10 Sep 2008 14:30:22 +0000</pubDate>
		<dc:creator>artiomix</dc:creator>
				<category><![CDATA[humour]]></category>

		<guid isPermaLink="false">http://www.linuxscrew.com/2008/09/10/cern-and-lhc/</guid>
		<description><![CDATA[

]]></description>
			<content:encoded><![CDATA[<p><span id="more-600"></span><br />
<center><img src="http://artiomix.googlepages.com/CERN.jpg" /></center></p>
]]></content:encoded>
			<wfw:commentRss>http://www.linuxscrew.com/2008/09/10/cern-and-lhc/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Weekly portion of Linux humor [6 pics]</title>
		<link>http://www.linuxscrew.com/2008/09/09/weekly-portion-of-linux-humor-6-pics/</link>
		<comments>http://www.linuxscrew.com/2008/09/09/weekly-portion-of-linux-humor-6-pics/#comments</comments>
		<pubDate>Tue, 09 Sep 2008 10:32:17 +0000</pubDate>
		<dc:creator>artiomix</dc:creator>
				<category><![CDATA[debian]]></category>
		<category><![CDATA[distros]]></category>
		<category><![CDATA[humour]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://www.linuxscrew.com/2008/09/09/weekly-portion-of-linux-humor-6-pics/</guid>
		<description><![CDATA[<p>Umm&#8230; See pictures below&#8230; <img src='http://www.linuxscrew.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /><br />
<span id="more-595"></span></p>
<p style="text-align: center"><img src="http://artiomix.googlepages.com/ubuntu.png" /></p>
<p style="text-align: center"><img src="http://artiomix.googlepages.com/gentoo.png" /></p>
<p style="text-align: center"><img src="http://artiomix.googlepages.com/slackware.png" /></p>
<p style="text-align: center"><img src="http://artiomix.googlepages.com/debian.png" /></p>
<p style="text-align: center"><img src="http://artiomix.googlepages.com/redhat.png" /></p>
<p style="text-align: center"><img src="http://artiomix.googlepages.com/knoppix.png" /></p>
<p>Thanks to <a href="http://www.besttechie.net/forums/index.php?s=0b7f10e5e003deebf6af70cd08b8d723&amp;showuser=14">Matt</a> from <a href="http://www.besttechie.net/">besttechie.net</a> forum. </p>
]]></description>
			<content:encoded><![CDATA[<p>Umm&#8230; See pictures below&#8230; <img src='http://www.linuxscrew.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /><br />
<span id="more-595"></span></p>
<p style="text-align: center"><img src="http://artiomix.googlepages.com/ubuntu.png" /></p>
<p style="text-align: center"><img src="http://artiomix.googlepages.com/gentoo.png" /></p>
<p style="text-align: center"><img src="http://artiomix.googlepages.com/slackware.png" /></p>
<p style="text-align: center"><img src="http://artiomix.googlepages.com/debian.png" /></p>
<p style="text-align: center"><img src="http://artiomix.googlepages.com/redhat.png" /></p>
<p style="text-align: center"><img src="http://artiomix.googlepages.com/knoppix.png" /></p>
<p>Thanks to <a href="http://www.besttechie.net/forums/index.php?s=0b7f10e5e003deebf6af70cd08b8d723&amp;showuser=14">Matt</a> from <a href="http://www.besttechie.net/">besttechie.net</a> forum. </p>
]]></content:encoded>
			<wfw:commentRss>http://www.linuxscrew.com/2008/09/09/weekly-portion-of-linux-humor-6-pics/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>FAQ: How to order pizza from Linux CLI?</title>
		<link>http://www.linuxscrew.com/2008/08/08/faq-how-to-order-pizza-from-linux-cli/</link>
		<comments>http://www.linuxscrew.com/2008/08/08/faq-how-to-order-pizza-from-linux-cli/#comments</comments>
		<pubDate>Fri, 08 Aug 2008 13:34:25 +0000</pubDate>
		<dc:creator>artiomix</dc:creator>
				<category><![CDATA[hacks]]></category>
		<category><![CDATA[humour]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[unix]]></category>

		<guid isPermaLink="false">http://www.linuxscrew.com/2008/08/08/faq-how-to-order-pizza-from-linux-cli/</guid>
		<description><![CDATA[Q: How can I order my favourite pizza by using Linux command line interface?
A: Well&#8230; You can use Pizza Party application written by Cory Arcangel and Michael Frumin! Here are some features this outstanding application provides:


Can order pizza with only a few keystrokes.
Can save pizza preferences.
Can use batch files for ordering many pizzas.
Has easy to [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.linuxscrew.com/wp-content/uploads/2008/08/coupleeating.gif" title="couple eating pizza linux" alt="couple eating pizza linux" align="right" /><strong>Q</strong>: How can I order my favourite pizza by using Linux command line interface?</p>
<p><strong>A</strong>: Well&#8230; You can use <a href="http://www.beigerecords.com/cory/pizza_party/">Pizza Party</a> application written by <a href="http://www.beigerecords.com/cory/">Cory Arcangel</a> and Michael Frumin! Here are some features this outstanding application provides:<br />
<quote></quote></p>
<ul>
<li>Can order pizza with only a few keystrokes.</li>
<li>Can save pizza preferences.</li>
<li>Can use batch files for ordering many pizzas.</li>
<li>Has easy to use flags for ordering different toppings.</li>
<li>Runs on most UNIX-like operating systems.</li>
<li>Supports most currently popular topings like &#8220;mushrooms&#8221;, and      &#8220;pepperoni&#8221;!</li>
<li>Unattended / background operation.</li>
<li>Pizza Party is distributed under the <a href="http://www.gnu.org/copyleft/gpl.html">GNU General Public License</a>.</li>
</ul>
<p>Download Pizza Party&#8217;s initial source code <a href="http://www.beigerecords.com/cory/pizza_party/download/pizza_party-0.1.b.tar.gz" target="_blank">here</a> and python ported version from this link.</p>
<p><center><object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/x7pPajOvQGo&#038;color1=11645361&#038;color2=13619151&#038;fs=1"></param><param name="wmode" value="transparent"></param><param name="allowFullScreen" value="true"></param><embed src="http://www.youtube.com/v/x7pPajOvQGo&#038;color1=11645361&#038;color2=13619151&#038;fs=1" type="application/x-shockwave-flash" allowfullscreen="true" wmode="transparent" width="425" height="344"></embed></object></center></p>
<p>P.S. This portion of Friday humour is provided by <a href="http://hehe2.net/" target="_blank">Royal HeHe2-ness!</a> <img src='http://www.linuxscrew.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.linuxscrew.com/2008/08/08/faq-how-to-order-pizza-from-linux-cli/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>#ln -s /dev/null /dev/clue</title>
		<link>http://www.linuxscrew.com/2008/06/11/ln-s-devnull-devclue/</link>
		<comments>http://www.linuxscrew.com/2008/06/11/ln-s-devnull-devclue/#comments</comments>
		<pubDate>Wed, 11 Jun 2008 11:47:52 +0000</pubDate>
		<dc:creator>artiomix</dc:creator>
				<category><![CDATA[humour]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[unix]]></category>

		<guid isPermaLink="false">http://www.linuxscrew.com/2008/06/11/ln-s-devnull-devclue/</guid>
		<description><![CDATA[
   found at  http://17outs.com/.
]]></description>
			<content:encoded><![CDATA[<p style="text-align: center"><img src="http://www.linuxscrew.com/wp-content/uploads/2008/06/jitcrunchaspx.jpeg" title="jitcrunchaspx.jpeg" alt="jitcrunchaspx.jpeg" /></p>
<p> <img src='http://www.linuxscrew.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  found at  <a href="http://17outs.com/">http://17outs.com/</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.linuxscrew.com/2008/06/11/ln-s-devnull-devclue/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Bug #1 in Ubuntu</title>
		<link>http://www.linuxscrew.com/2008/06/06/bug-1-in-ubuntu/</link>
		<comments>http://www.linuxscrew.com/2008/06/06/bug-1-in-ubuntu/#comments</comments>
		<pubDate>Fri, 06 Jun 2008 13:21:13 +0000</pubDate>
		<dc:creator>artiomix</dc:creator>
				<category><![CDATA[humour]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://www.linuxscrew.com/2008/06/06/bug-1-in-ubuntu/</guid>
		<description><![CDATA[By the way do you know what bug was posted by Mark Shuttleworth as a first and major one? Here it is (2004-08-20):
Microsoft has a majority market share in the new desktop PC marketplace.  This is a bug, which Ubuntu is designed to fix.
Non-free software is holding back innovation in the IT industry, restricting [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.linuxscrew.com/wp-content/uploads/2008/06/d2307tq12.jpg" title="mark shuttleworth ubuntu" alt="mark shuttleworth ubuntu" align="right" />By the way do you know what bug was posted by <a href="http://en.wikipedia.org/wiki/Mark_Shuttleworth" target="_blank">Mark Shuttleworth</a> as a first and major one? Here it is<span title="2004-08-20 00:00:00 UTC"></span> (<span title="2004-08-20 00:00:00 UTC">2004-08-20</span>):</p>
<blockquote><p>Microsoft has a majority market share in the new desktop PC marketplace.  This is a bug, which Ubuntu is designed to fix.</p>
<p>Non-free software is holding back innovation in the IT industry, restricting access to IT to a small part of the world&#8217;s population and limiting the ability of software developers to reach their full potential, globally. This bug is widely evident in the PC industry.</p>
<p>Steps to repeat:<br />
1. Visit a local PC store.</p>
<p>What happens:<br />
2. Observe that a majority of PCs for sale have non-free software pre-installed.<br />
3. Observe very few PCs with Ubuntu and free software pre-installed.</p>
<p>What should happen:<br />
1. A majority of the PCs for sale should include only free software like Ubuntu.<br />
2. Ubuntu should be marketed in a way such that its amazing features and benefits would be apparent and known by all.<br />
3. The system shall become more and more user friendly as time passes.</p></blockquote>
<p>No jokes, here is <a href="https://bugs.launchpad.net/ubuntu/+bug/1" target="_blank">permanent link</a> to this at launchpad. I strongly recommend to read the comments (selectively) at least in order to watch how Open Source world changed since 2004&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.linuxscrew.com/2008/06/06/bug-1-in-ubuntu/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Fun: Windows vs. Linux for toasters</title>
		<link>http://www.linuxscrew.com/2008/01/18/fun-windows-vs-linux-for-toasters/</link>
		<comments>http://www.linuxscrew.com/2008/01/18/fun-windows-vs-linux-for-toasters/#comments</comments>
		<pubDate>Fri, 18 Jan 2008 22:11:11 +0000</pubDate>
		<dc:creator>artiomix</dc:creator>
				<category><![CDATA[humour]]></category>
		<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://www.linuxscrew.com/2008/01/18/fun-windows-vs-linux-for-toasters/</guid>
		<description><![CDATA[<p>Last week both systems Microsoft Windows <a href="http://www.vtt.com" target="_blank"><strong>Vivid Toasting Technology</strong></a> (VTT) 2008 Starter Edition and <a href="http://www.heatu.com" target="_blank"><strong>Heatu</strong></a> Linux 9.06  (<strong>Dainty Toast</strong>) were released for modern toasters.</p>
<p>Yesterday <a href="http://www.linuxscrew.com" target="_blank">Linux Screw</a> has an opportunity to test both and the results were demonstrated at the Annual Bread Valley Conference at Jan 17 2008 in Texas, USA. Reactions were mixed as Heatu Linux 9.06 and Windows VTT went head-to-head.<br />
<span id="more-483"></span><span style="font-weight: bold"></span></p>
<p><span style="font-weight: bold">Windows VTT 2008 Starter Edition</span></p>
<p><img src="http://www.linuxscrew.com/wp-content/uploads/2008/01/toaster4th.jpg" title="windows toaster th" alt="windows toaster th" align="left" />The first product of its new Microsoft Kitchen(tm) brand, Windows VTT is designed to make bread toasting more user-friendly. A Microsoft press release started, &#8220;The complications and hassle associated with the production of grilled bread products that made them inaccessible to the end user have been removed with the release of Windows VTT. Just plug in a slice and play&#8221;.</p>
<p>Windows VTT 2008 natively contains drivers for toasters that are based on many heat-generating processors like latest AMToast and new Core Toast Duo. Other toasters may be used with special drivers included into upcoming Toasting Plus! pack. Microsoft recommends that VTT 2007 only be used with MS SlicedBread(tm). A Microsoft spokesman said, &#8220;VTT still contains a few issues that make it incompatible with other brands. We should have a service pack to resolve these problems within six months&#8221;.</p>
<p><img src="http://www.linuxscrew.com/wp-content/uploads/2008/01/blue_toast.jpg" title="windows toast" alt="windows toast" align="right" height="150" width="200" />The VTT demonstrations faced several setbacks. One of the toasters were actually exploded, causing the fire alarms to go off. In addition, several toasters produced bread that was burned on one side but cold on the other. Finally, several times VTT crashed while toasting and had to be rebooted. Every time that happened the toaster hung up or toasters has typical blue color.</p>
<p><span style="font-weight: bold">Heatu Linux 9.06 </span></p>
<p><a href="http://www.linuxscrew.com/wp-content/uploads/2008/01/flyingtoasters.jpg" target="_blank"><img src="http://www.linuxscrew.com/wp-content/uploads/2008/01/flyingtoasters.thumbnail.jpg" alt="toasters windows linux" align="right" height="128" width="170" /></a>Heatu 9.06 is completely different than VTT. Whereas VTT comes pre-installed on many portable toasters (laptoasts also), Heantu must be downloaded from the <a href="http://www.heatu.com" target="_blank">heatu.com</a> or purchased on CD/DVD and then installed on the toaster. Installation, however, is fairly easy, and Heatu works on a variety of machines and configurations. A few proprietary toasters are not supported (such as the I2O-Toast-a-Matic) because the specifications are still not available.</p>
<p><a href="http://www.linuxscrew.com/wp-content/uploads/2008/01/riz-toaster.jpg" target="_blank" title="Direct link to file"><img src="http://www.linuxscrew.com/wp-content/uploads/2008/01/riz-toaster.thumbnail.jpg" alt="linux toaster" align="left" height="128" width="170" /></a>The greatest feature of Dainty Toast (Heatu 9.06) is its multi-user format. Each user can customize what kind of toast they want, and Heatu will retain the settings for future sessions. This, however, requires each user to log in. On the plus side, Heatu can produce toast for several users at once.</p>
<p>Linux Screw team was impressed with the Dainty Toast testing results. The toasters didn&#8217;t crash, didn&#8217;t explode, and always produced perfectly toasted bread. However, some users were concerned about easy-to-use of Linux command line. Onlookers were impressed after XToast GUI System was shown, one man even lost consciousness when Toastiz window manager effects were demonstrated.</p>
<p><span style="font-weight: bold">Reactions</span></p>
<p>While Heatu Linux was more popular, many people expressed a preference for Windows VTT. &#8220;VTT is backed by Microsoft, what is Heatu backed by? What if something goes wrong with Heatu?&#8221; an executive for a bread company asked. A columnist who had just flown in from the Atlanta Pundit Showcase said, &#8220;Windows VTT is yet another innovative Microsoft product. Microsoft will revolutionize the kitchen appliance industry and bring computerized appliances to the masses.&#8221;</p>
<p>Nevertheless, Dainty Toast had a clear edge on VTT. One attendee clutching a Heatu 9.06 CD-ROM said, &#8220;Not only is Heatu free, but it&#8217;s also more stable and powerful. I know what I&#8217;m going to be using at home.&#8221; Another person said, &#8220;Did you see how that one Windows toaster exploded? Wow! I can see where they got the name VTT.&#8221; Finally, after taste testing the bread from Windows VTT, a college student gagged and said, &#8220;Yuck! This is awful. Windows &#8216;Plug-and-Play&#8217; technology should be called &#8216;Plug-and-Burn&#8217;.&#8221;</p>
<p> <img src='http://www.linuxscrew.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></description>
			<content:encoded><![CDATA[<p>Last week both systems Microsoft Windows <a href="http://www.vtt.com" target="_blank"><strong>Vivid Toasting Technology</strong></a> (VTT) 2008 Starter Edition and <a href="http://www.heatu.com" target="_blank"><strong>Heatu</strong></a> Linux 9.06  (<strong>Dainty Toast</strong>) were released for modern toasters.</p>
<p>Yesterday <a href="http://www.linuxscrew.com" target="_blank">Linux Screw</a> has an opportunity to test both and the results were demonstrated at the Annual Bread Valley Conference at Jan 17 2008 in Texas, USA. Reactions were mixed as Heatu Linux 9.06 and Windows VTT went head-to-head.<br />
<span id="more-483"></span><span style="font-weight: bold"></span></p>
<p><span style="font-weight: bold">Windows VTT 2008 Starter Edition</span></p>
<p><img src="http://www.linuxscrew.com/wp-content/uploads/2008/01/toaster4th.jpg" title="windows toaster th" alt="windows toaster th" align="left" />The first product of its new Microsoft Kitchen(tm) brand, Windows VTT is designed to make bread toasting more user-friendly. A Microsoft press release started, &#8220;The complications and hassle associated with the production of grilled bread products that made them inaccessible to the end user have been removed with the release of Windows VTT. Just plug in a slice and play&#8221;.</p>
<p>Windows VTT 2008 natively contains drivers for toasters that are based on many heat-generating processors like latest AMToast and new Core Toast Duo. Other toasters may be used with special drivers included into upcoming Toasting Plus! pack. Microsoft recommends that VTT 2007 only be used with MS SlicedBread(tm). A Microsoft spokesman said, &#8220;VTT still contains a few issues that make it incompatible with other brands. We should have a service pack to resolve these problems within six months&#8221;.</p>
<p><img src="http://www.linuxscrew.com/wp-content/uploads/2008/01/blue_toast.jpg" title="windows toast" alt="windows toast" align="right" height="150" width="200" />The VTT demonstrations faced several setbacks. One of the toasters were actually exploded, causing the fire alarms to go off. In addition, several toasters produced bread that was burned on one side but cold on the other. Finally, several times VTT crashed while toasting and had to be rebooted. Every time that happened the toaster hung up or toasters has typical blue color.</p>
<p><span style="font-weight: bold">Heatu Linux 9.06 </span></p>
<p><a href="http://www.linuxscrew.com/wp-content/uploads/2008/01/flyingtoasters.jpg" target="_blank"><img src="http://www.linuxscrew.com/wp-content/uploads/2008/01/flyingtoasters.thumbnail.jpg" alt="toasters windows linux" align="right" height="128" width="170" /></a>Heatu 9.06 is completely different than VTT. Whereas VTT comes pre-installed on many portable toasters (laptoasts also), Heantu must be downloaded from the <a href="http://www.heatu.com" target="_blank">heatu.com</a> or purchased on CD/DVD and then installed on the toaster. Installation, however, is fairly easy, and Heatu works on a variety of machines and configurations. A few proprietary toasters are not supported (such as the I2O-Toast-a-Matic) because the specifications are still not available.</p>
<p><a href="http://www.linuxscrew.com/wp-content/uploads/2008/01/riz-toaster.jpg" target="_blank" title="Direct link to file"><img src="http://www.linuxscrew.com/wp-content/uploads/2008/01/riz-toaster.thumbnail.jpg" alt="linux toaster" align="left" height="128" width="170" /></a>The greatest feature of Dainty Toast (Heatu 9.06) is its multi-user format. Each user can customize what kind of toast they want, and Heatu will retain the settings for future sessions. This, however, requires each user to log in. On the plus side, Heatu can produce toast for several users at once.</p>
<p>Linux Screw team was impressed with the Dainty Toast testing results. The toasters didn&#8217;t crash, didn&#8217;t explode, and always produced perfectly toasted bread. However, some users were concerned about easy-to-use of Linux command line. Onlookers were impressed after XToast GUI System was shown, one man even lost consciousness when Toastiz window manager effects were demonstrated.</p>
<p><span style="font-weight: bold">Reactions</span></p>
<p>While Heatu Linux was more popular, many people expressed a preference for Windows VTT. &#8220;VTT is backed by Microsoft, what is Heatu backed by? What if something goes wrong with Heatu?&#8221; an executive for a bread company asked. A columnist who had just flown in from the Atlanta Pundit Showcase said, &#8220;Windows VTT is yet another innovative Microsoft product. Microsoft will revolutionize the kitchen appliance industry and bring computerized appliances to the masses.&#8221;</p>
<p>Nevertheless, Dainty Toast had a clear edge on VTT. One attendee clutching a Heatu 9.06 CD-ROM said, &#8220;Not only is Heatu free, but it&#8217;s also more stable and powerful. I know what I&#8217;m going to be using at home.&#8221; Another person said, &#8220;Did you see how that one Windows toaster exploded? Wow! I can see where they got the name VTT.&#8221; Finally, after taste testing the bread from Windows VTT, a college student gagged and said, &#8220;Yuck! This is awful. Windows &#8216;Plug-and-Play&#8217; technology should be called &#8216;Plug-and-Burn&#8217;.&#8221;</p>
<p> <img src='http://www.linuxscrew.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.linuxscrew.com/2008/01/18/fun-windows-vs-linux-for-toasters/feed/</wfw:commentRss>
		<slash:comments>14</slash:comments>
		</item>
		<item>
		<title>Fun: bash:~$ man condom</title>
		<link>http://www.linuxscrew.com/2007/11/22/one-linuxunix-manual-page/</link>
		<comments>http://www.linuxscrew.com/2007/11/22/one-linuxunix-manual-page/#comments</comments>
		<pubDate>Thu, 22 Nov 2007 22:12:02 +0000</pubDate>
		<dc:creator>artiomix</dc:creator>
				<category><![CDATA[humour]]></category>

		<guid isPermaLink="false">http://www.linuxscrew.com/2007/11/22/one-linuxunix-manual-page/</guid>
		<description><![CDATA[<p><span id="more-441"></span></p>
<h3>NAME</h3>
<p><code>condom</code> &#8212; protects against viruses and prevents of child processes</p>
<h3>SYNOPSIS</h3>
<p><code>condom [options] [processid]</code></p>
<h3>DESCRIPTION</h3>
<p><code>condom</code> provides protection against System Transmitted Viruses (STVs) that may invade your system. Although the spread of such viruses across a network can only be abated by aware and cautious users, <code>condom</code> is the only highly effective means of preventing viruses from entering your system (see <em>celibacy(1)</em>). Any data passed to <code>condom</code> by the protected process will be blocked, as specified by the value of  the  <strong>-s</strong>  option (see OPTIONS below).</p>
<p>When used alone or in conjunction with <em>pill(1)</em>, <em>sponge(1)</em>, <em>foam(1)</em>, and/or <em>setiud(3)</em>, condom also prevents the conception of a child process. If invoked from within a synchronous process, condom has, by default, an 80% chance of preventing the external processes from becoming parent processes (see the -s option below). When other process contraceptives are used, the chance of preventing a child process from being forked becomes much greater. See <em>pill(1)</em>, <em>sponge(1)</em>, <em>foam(1)</em>, <em>setiud(3)</em> for more information.</p>
<p>If no options are given, the current user&#8217;s login process (as determined by the environment variable USER) is protected with a Trojan rough-cut latex condom without a reservoir tip. The optional &#8220;processid&#8221; argument is an integer specifying the process to protect.</p>
<p><strong>NOTE:</strong> <code>condom</code> may only be used with a hard disk. <code>condom</code> will terminate abnormally with exit code <strong>-1</strong> if used with a floppy disk (see DIAGNOSTICS below).</p>
<h3>OPTIONS</h3>
<p>The following options may be given to condom:</p>
<p><strong>-b</strong> brand</p>
<p>brands are as follows:</p>
<p>trojan (default)<br />
ramses<br />
sheik<br />
goldcoin<br />
fourex</p>
<p><strong>-m</strong> material<br />
The valid materials are:</p>
<p>latex (default)<br />
saranwrap<br />
membrane</p>
<p><strong>WARNING!</strong> The membrane option is not endorsed by the System Administrator General as an effective barrier against certain viruses. It is supported only for the sake of tradition.</p>
<p><strong>-f</strong> flavor<br />
The following flavors are currently supported:</p>
<p>plain (default)<br />
apple<br />
banana<br />
cherry<br />
cinnamon<br />
licorice<br />
orange<br />
peppermint<br />
raspberry<br />
spearmint<br />
strawberry</p>
<p><strong>-r</strong> Toggle reservoir tip (default is no reservoir tip)</p>
<p><strong>-s</strong> strength<br />
<em>strength</em> is an integer between 20 and 100 specifying the resilience of condom against data passed to condom by the protected process. Using a larger value of strength increases condom&#8217;s protective abilities, but also reduces interprocess communication. A smaller value of strength increases interprocess communication, but also increases the likelihood of a security breach. An extremely vigorous process or one passing an enormous amount of data to condom will increase the chance of condom&#8217;s failure. The default strength is 80%.</p>
<p><strong>-t</strong> texture<br />
Valid textures are:</p>
<p>rough (default)<br />
ribbed<br />
bumps<br />
lubricated<br />
(provides  smoother  interaction  between processes)</p>
<p><strong>WARNING!</strong> The use of an external application to condom in order to reduce friction between processes has been proven in benchmark tests to decrease condom&#8217;s strength factor! If execution speed is important to your process, use the &#8220;-t lubricated&#8221; option.</p>
<h3>DIAGNOSTICS</h3>
<p><code>condom</code> terminates with one of the following exit codes:</p>
<p><strong>-1</strong>: An attempt was made to use condom on a floppy disk.</p>
<p><strong>0</strong>: condom exited successfully (no data was  passed  to the synchronous process).</p>
<p><strong>1</strong>: condom  failed  and  data was allowed through.  The danger of transmission of an STV or the forking  of               a  child  process  is inversely proportional to the               number  of  other  protections  employed   and   is               directly  proportional to the ages of the processes               involved.</p>
<h3>BUGS</h3>
<p>condom is NOT 100% effective at preventing a child process from being forked or at deterring the invasion of a virus (although the System Administrator General has deemed that condom is the most effective means of preventing the spread of system transmitted viruses).</p>
<p>See <em>celibacy(1)</em> for information on a 100% effective program for preventing these problems.</p>
<p>Remember, the use of <em>sex(1)</em>  and  other  related  routines should  only  occur  between mature, consenting processes. If you must use <em>sex(1)</em>, please employ <code>condom</code> to protect your process and your synchronous process. If we are all responsible, we can stop the spread of STVs.</p>
<h3>AUTHORS and HISTORY</h3>
<p>The original version of condom was released in Roman times and was only marginally effective. With the advent of modern technology, condom now supports many more options and is much more effective.</p>
<p>The current release of condom was written by Ken Maupin at the University of Washington (maupin@cs.washington.edu) and was last updated on 10/7/92.</p>
<h3>SEE ALSO</h3>
<p><em>celibacy(1),  sex(1),  pill(1),  sponge(1),  foam(1),  setiud(3)</em></p>
]]></description>
			<content:encoded><![CDATA[<p><span id="more-441"></span></p>
<h3>NAME</h3>
<p><code>condom</code> &#8212; protects against viruses and prevents of child processes</p>
<h3>SYNOPSIS</h3>
<p><code>condom [options] [processid]</code></p>
<h3>DESCRIPTION</h3>
<p><code>condom</code> provides protection against System Transmitted Viruses (STVs) that may invade your system. Although the spread of such viruses across a network can only be abated by aware and cautious users, <code>condom</code> is the only highly effective means of preventing viruses from entering your system (see <em>celibacy(1)</em>). Any data passed to <code>condom</code> by the protected process will be blocked, as specified by the value of  the  <strong>-s</strong>  option (see OPTIONS below).</p>
<p>When used alone or in conjunction with <em>pill(1)</em>, <em>sponge(1)</em>, <em>foam(1)</em>, and/or <em>setiud(3)</em>, condom also prevents the conception of a child process. If invoked from within a synchronous process, condom has, by default, an 80% chance of preventing the external processes from becoming parent processes (see the -s option below). When other process contraceptives are used, the chance of preventing a child process from being forked becomes much greater. See <em>pill(1)</em>, <em>sponge(1)</em>, <em>foam(1)</em>, <em>setiud(3)</em> for more information.</p>
<p>If no options are given, the current user&#8217;s login process (as determined by the environment variable USER) is protected with a Trojan rough-cut latex condom without a reservoir tip. The optional &#8220;processid&#8221; argument is an integer specifying the process to protect.</p>
<p><strong>NOTE:</strong> <code>condom</code> may only be used with a hard disk. <code>condom</code> will terminate abnormally with exit code <strong>-1</strong> if used with a floppy disk (see DIAGNOSTICS below).</p>
<h3>OPTIONS</h3>
<p>The following options may be given to condom:</p>
<p><strong>-b</strong> brand</p>
<p>brands are as follows:</p>
<p>trojan (default)<br />
ramses<br />
sheik<br />
goldcoin<br />
fourex</p>
<p><strong>-m</strong> material<br />
The valid materials are:</p>
<p>latex (default)<br />
saranwrap<br />
membrane</p>
<p><strong>WARNING!</strong> The membrane option is not endorsed by the System Administrator General as an effective barrier against certain viruses. It is supported only for the sake of tradition.</p>
<p><strong>-f</strong> flavor<br />
The following flavors are currently supported:</p>
<p>plain (default)<br />
apple<br />
banana<br />
cherry<br />
cinnamon<br />
licorice<br />
orange<br />
peppermint<br />
raspberry<br />
spearmint<br />
strawberry</p>
<p><strong>-r</strong> Toggle reservoir tip (default is no reservoir tip)</p>
<p><strong>-s</strong> strength<br />
<em>strength</em> is an integer between 20 and 100 specifying the resilience of condom against data passed to condom by the protected process. Using a larger value of strength increases condom&#8217;s protective abilities, but also reduces interprocess communication. A smaller value of strength increases interprocess communication, but also increases the likelihood of a security breach. An extremely vigorous process or one passing an enormous amount of data to condom will increase the chance of condom&#8217;s failure. The default strength is 80%.</p>
<p><strong>-t</strong> texture<br />
Valid textures are:</p>
<p>rough (default)<br />
ribbed<br />
bumps<br />
lubricated<br />
(provides  smoother  interaction  between processes)</p>
<p><strong>WARNING!</strong> The use of an external application to condom in order to reduce friction between processes has been proven in benchmark tests to decrease condom&#8217;s strength factor! If execution speed is important to your process, use the &#8220;-t lubricated&#8221; option.</p>
<h3>DIAGNOSTICS</h3>
<p><code>condom</code> terminates with one of the following exit codes:</p>
<p><strong>-1</strong>: An attempt was made to use condom on a floppy disk.</p>
<p><strong>0</strong>: condom exited successfully (no data was  passed  to the synchronous process).</p>
<p><strong>1</strong>: condom  failed  and  data was allowed through.  The danger of transmission of an STV or the forking  of               a  child  process  is inversely proportional to the               number  of  other  protections  employed   and   is               directly  proportional to the ages of the processes               involved.</p>
<h3>BUGS</h3>
<p>condom is NOT 100% effective at preventing a child process from being forked or at deterring the invasion of a virus (although the System Administrator General has deemed that condom is the most effective means of preventing the spread of system transmitted viruses).</p>
<p>See <em>celibacy(1)</em> for information on a 100% effective program for preventing these problems.</p>
<p>Remember, the use of <em>sex(1)</em>  and  other  related  routines should  only  occur  between mature, consenting processes. If you must use <em>sex(1)</em>, please employ <code>condom</code> to protect your process and your synchronous process. If we are all responsible, we can stop the spread of STVs.</p>
<h3>AUTHORS and HISTORY</h3>
<p>The original version of condom was released in Roman times and was only marginally effective. With the advent of modern technology, condom now supports many more options and is much more effective.</p>
<p>The current release of condom was written by Ken Maupin at the University of Washington (maupin@cs.washington.edu) and was last updated on 10/7/92.</p>
<h3>SEE ALSO</h3>
<p><em>celibacy(1),  sex(1),  pill(1),  sponge(1),  foam(1),  setiud(3)</em></p>
]]></content:encoded>
			<wfw:commentRss>http://www.linuxscrew.com/2007/11/22/one-linuxunix-manual-page/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
	</channel>
</rss>
