<?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 Cookbook</title>
	<atom:link href="http://linuxcookbook.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://linuxcookbook.com</link>
	<description>Doing and making things, with Linux.</description>
	<lastBuildDate>Thu, 11 Nov 2010 16:40:29 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>Linux Command Line Gold</title>
		<link>http://linuxcookbook.com/2010/11/11/linux-command-line-gold/</link>
		<comments>http://linuxcookbook.com/2010/11/11/linux-command-line-gold/#comments</comments>
		<pubDate>Thu, 11 Nov 2010 16:00:52 +0000</pubDate>
		<dc:creator>Peter Loshin</dc:creator>
				<category><![CDATA[Command Line]]></category>
		<category><![CDATA[How-To]]></category>
		<category><![CDATA[How-to Websites]]></category>
		<category><![CDATA[Utilities]]></category>

		<guid isPermaLink="false">http://linuxcookbook.com/?p=222</guid>
		<description><![CDATA[There&#8217;s nothing like a command line for when you need to get things done. Here are some resources (maybe repeats from years past?) that can give you an edge when you&#8217;re looking for a fast and efficient way to do &#8230; <a href="http://linuxcookbook.com/2010/11/11/linux-command-line-gold/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>There&#8217;s nothing like a command line for when you need to get things done. Here are some resources (maybe repeats from years past?) that can give you an edge when you&#8217;re looking for a fast and efficient way to do what you can&#8217;t do quite so easily with a GUI.<br />
<span id="more-222"></span></p>
<ul>
<li><a href="http://www.commandlinefu.com/commands/browse">commandlinefu.com</a> lets you post your command line commands of choice, and lets others vote on them. Good for if you&#8217;re looking for something specific, or if you want some idea of what other people use the command line for, and what they find most useful.</li>
<li><a href="http://www.pixelbeat.org/">Pixelbeat</a>&#8216;s <a href="http://www.pixelbeat.org/cmdline.html">Linux Commands &#8211; A practical reference</a>. Also, try <a href="http://www.pixelbeat.org/docs/linux_commands.html">More Linux Commands &#8211; A practical reference</a> for even more CLI goodness.</li>
<li>For what looks like a pretty newb-friendly introduction to command line, try <a href="http://linuxcommand.org/index.php">LinuxCommand.org</a>. Includes a section on shell scripting, which is where a lot of the power of the command line comes to get even more pumped up.</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://linuxcookbook.com/2010/11/11/linux-command-line-gold/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Choosing an open source text editor</title>
		<link>http://linuxcookbook.com/2010/10/25/choosing-an-open-source-text-editor/</link>
		<comments>http://linuxcookbook.com/2010/10/25/choosing-an-open-source-text-editor/#comments</comments>
		<pubDate>Mon, 25 Oct 2010 09:00:26 +0000</pubDate>
		<dc:creator>Peter Loshin</dc:creator>
				<category><![CDATA[How-To]]></category>
		<category><![CDATA[Utilities]]></category>

		<guid isPermaLink="false">http://linuxcookbook.com/?p=193</guid>
		<description><![CDATA[For many programmers, their first &#8220;real&#8221; program was some kind of a text editor. For some, it was an exercise in a programming class, or else an exercise in creating their first real, personalized, tool that worked the way the &#8230; <a href="http://linuxcookbook.com/2010/10/25/choosing-an-open-source-text-editor/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>For many programmers, their first &#8220;real&#8221; program was some kind of a text editor. For some, it was an exercise in a programming class, or else an exercise in creating their first real, personalized, tool that worked the way the programmer worked. Many others had to write an editor of some sort on the job, as part of some other application.</p>
<p><a href="http://sourceforge.net/search/?type_of_search=soft&#038;words=text+editor">A quick search at the SourceForge open source developer resource</a> returns over 900 programs that match the search term &#8220;text editor&#8221;.</p>
<p><span id="more-193"></span></p>
<p>Consider that almost every time you need to enter text into a program or web form, you are using an editor, and you can imagine just how often text editing is implemented.</p>
<p>Yet, with all those editors to choose from, for most who want to edit text, the choice boils down to two: Vi (pronounced “vee eye”) and Emacs. Each are actually families of functionally equivalent editors, but the Linux default implementations are VIM (<a href="http://www.vim.org">Vi, IMproved</a>) and <a href="http://www.gnu.org/software/emacs/">GNU Emacs</a>.</p>
<p>Both are designed for text editing, with differences. Emacs is modeless, meaning you can enter text or commands at any time; Vi uses two basic modes, one for entering text, the other for executing commands. Being modeless, Emacs is more familiar to users accustomed to more common modeless word processors like Microsoft Word; Vi&#8217;s modes can be confusing at first, but permit faster touch typing because commands don&#8217;t involve numerous multi-keystroke commands that use Alt, Ctrl, ESC and other keys (which is what you use in Emacs).</p>
<p>Free Software Foundation founder Richard Stallman wrote the first version of Emacs in 1976; the current stable version is 23.2 (as of 2010). Written in and incorporating Lisp, Emacs is endlessly extensible and customizable.</p>
<p>As a smaller program, Vi loads much faster than Emacs and is built from the ground up as a programmer&#8217;s editor, so many programmers prefer Vi for utilitarian source code editing. Emacs, on the other hand, is designed to edit any kind of text file, and combined with its built-in Lisp implementation that can mean coding source, outlining, editing documents, to-do lists, contact files, calendars and scheduling, reading email and news, even websurfing. Emacs also comes with a selection of text-based games including Tetris, Snake, even a version of the old Eliza “psychotherapy” program.</p>
<p>Real old-school *NIX gurus know and use both Vi and Emacs: vi for fast, simple jobs and Emacs for more complicated tasks; but for others, Emacs works better as an all-around text editor.</p>
<p>You can bypass the issue with one of the many GUI text editors available like Gedit, the official text editor of the GNOME desktop environment (gedit.org), Kate, the KDE Advanced Text Editor (kate.kde.org), or Java-based programmer&#8217;s editor jEdit (jedit.org).</p>
]]></content:encoded>
			<wfw:commentRss>http://linuxcookbook.com/2010/10/25/choosing-an-open-source-text-editor/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Top Ten Reasons Linux Rules</title>
		<link>http://linuxcookbook.com/2010/10/12/top-ten-reasons-linux-rules/</link>
		<comments>http://linuxcookbook.com/2010/10/12/top-ten-reasons-linux-rules/#comments</comments>
		<pubDate>Tue, 12 Oct 2010 11:00:12 +0000</pubDate>
		<dc:creator>Peter Loshin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://linuxcookbook.com/?p=178</guid>
		<description><![CDATA[Open Sauce, July 2007 It&#8217;s just something like three and a half years since this was written, but these things just keep staying as important as ever. I&#8217;ll add a few more editorial comments in-line here, but slowly AND surely &#8230; <a href="http://linuxcookbook.com/2010/10/12/top-ten-reasons-linux-rules/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Open Sauce, July 2007</p>
<p><em>It&#8217;s just something like three and a half years since this was written, but these things just keep staying as important as ever. I&#8217;ll add a few more editorial comments in-line here, but slowly AND surely open source is taking over the key systems we use: things like telephones and web browsers and web servers and all the software that makes the web/Internet run are all increasingly being designed with open source software at their cores.</em></p>
<p><span id="more-178"></span></p>
<p>Not long ago, while leading my lavish CPU columnist lifestyle (up at noon, surfing the &#8216;net for a few hours before getting ready to party, etc etc), I read “<a href="http://dmartin.org/weblog/things-i-can-do-in-linux-that-i-cant-do-on-windows">Things I can do in Linux that I can&#8217;t do on Windows</a>” on Dan Martin&#8217;s blog, as well as Prakash Advani&#8217;s list of “<a href="http://cityblogger.com/archives/2007/01/24/101-reasons-why-linux-is-better-than-windows">101 reasons why Linux is better than Windows</a>”, even if he lists only 36 reasons so far.</p>
<p><em>[Actually, Prakash now has 80 items in his list, as of the beginning of October 2010, and Dan's piece is still as compelling and succinct today as it was when I first read it.]</em></p>
<p>I&#8217;ve written before about things you can&#8217;t do with Windows but can with Linux, but it&#8217;s been a while. And the fact that I haven&#8217;t done anything with Windows for the past seven years or so means that there&#8217;s a whole universe of things I can&#8217;t do with Windows because I can&#8217;t do anything with Windows.</p>
<p>If I were really lazy (as opposed to just regular-lazy) I&#8217;d rehash items from Prakash and Dan&#8217;s lists for this month&#8217;s column and go back to watching unreleased Ren and Stimpy episodes on my 102 inch plasma TV <em>[I did not own any such a thing as that; this sentence was pure sarcasm]</em>. But because I&#8217;m truly conscientious I&#8217;ll add value for loyal CPU readers with my own top four list of what Linux gives me: resilience, maintainability, usability, and no/low-cost solutions.</p>
<p>Dan and Prakash go into the specifics, and give some good examples of applications that you can&#8217;t get on Windows. For example, Dan, a Web developer, likes having the ability to run different versions of Internet Explorer simultaneously using the <a href="http://www.tatanka.com.br/ies4linux/page/Main_Page">IEs4Linux</a> project. But for me, it all boils down to these four things:</p>
<p>Resilience: I include here what used to be meant by the now-meaningless marketing-speak “robustness”, as well as reliability and even security. Most software works fine running on systems with lots of resources and perfectly formed data. But in the real world I need an OS that gracefully handles too many processes running on a system with an old CPU and insufficient RAM. Remote system-pwning exploits of Linux are rare, email-borne viruses unheard of, and apps can fail without requiring a reboot.</p>
<p>Manageability: Can I easily back out software upgrades? Automate patch installation? Change configuration without rebooting? Administer the system free of activation codes? Backup personal configurations and data? I get all that with Linux. Can I run a supported version of Linux on otherwise obsolete hardware? Can Linux run on modern computer platforms from palmtop to mainframe? Yup. Can I examine and modify the source code? Yes. Do I worry about vendor lock-in, or getting stuck with proprietary products orphaned by bankruptcy or other corporate hi-jinks? Not at all.</p>
<p>Usability: I needn&#8217;t relearn everything every time some vendor decides it&#8217;s time to “upgrade” the UI. Configurability falls under this heading, too; I can configure the way almost everything works with KDE, GNOME or one of dozens of other desktop managers. Did I mention portability? Not just across platforms, but across time and space. I can carry system settings/desktop configuration/key data on a USB thumb drive and boot into my desktop from any PC. And I don&#8217;t need to re-learn (or re-configure) all my applications and utilities when I update system software, nor do I need to update scripts or applications every time I upgrade my OS.</p>
<p>No/low-cost: Microsoft&#8217;s deal last year with Novell signaled Linux is a legitimate OS, so why use the high-priced spread? You don&#8217;t really pay much extra for Windows when they buy a new PC (the already low-cost license is subsidized by shovelware publishers who pay to be included in the standard OS pre-install). Microsoft&#8217;s real cash flow comes from corporate sales, same as for Linux vendors like Red Hat and Novell; key developers of Linux components get funded by companies like IBM that are increasingly coming to rely on it. Personally, most of the “cost” I&#8217;ve recovered has been in the form of reducing the amount of time I spend fiddling around with computers running Linux—most of the things I need/want to do are pretty easy (or at least uncomplicated) and pretty well-documented online.</p>
<p>Sure, applications exist that aren&#8217;t available (yet) on Linux (for example, tax prep); and yes, there are times when proprietary software works better than open source. But for me, the benefits of open source simply overpower any disadvantages I&#8217;ve yet encountered.</p>
]]></content:encoded>
			<wfw:commentRss>http://linuxcookbook.com/2010/10/12/top-ten-reasons-linux-rules/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>My favorite hardware company sells software and it based in Redmond.</title>
		<link>http://linuxcookbook.com/2010/10/11/my-favorite-hardware-company-sells-software-and-it-based-in-redmond/</link>
		<comments>http://linuxcookbook.com/2010/10/11/my-favorite-hardware-company-sells-software-and-it-based-in-redmond/#comments</comments>
		<pubDate>Mon, 11 Oct 2010 10:00:24 +0000</pubDate>
		<dc:creator>Peter Loshin</dc:creator>
				<category><![CDATA[Hardware]]></category>
		<category><![CDATA[Microsoft Watch]]></category>
		<category><![CDATA[Office Productivity]]></category>

		<guid isPermaLink="false">http://linuxcookbook.com/?p=171</guid>
		<description><![CDATA[Open Sauce May 2005 I&#8217;m still using the wireless keyboard I bought back in early 2005, but to be honest is feels downright cheezy when I compare it to the Apple keyboards I&#8217;ve been using lately. Not so much that &#8230; <a href="http://linuxcookbook.com/2010/10/11/my-favorite-hardware-company-sells-software-and-it-based-in-redmond/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Open Sauce May 2005</p>
<p><em>I&#8217;m still using the wireless keyboard I bought back in early 2005, but to be honest is feels downright cheezy when I compare it to the Apple keyboards I&#8217;ve been using lately. Not so much that the Microsoft ergonomic keyboard isn&#8217;t well-designed, but it feels very plastic-y compared to the Cupertino keyboards.</em></p>
<p>Microsoft rocks!</p>
<p><span id="more-171"></span></p>
<p>What? Something nice to say about Microsoft? Yes. I needn&#8217;t like or use Windows or Office or Outlook or Internet Exploder (er, Explorer) or any other of their proprietary offerings, but if you&#8217;re looking to buy a quality ergonomic keyboard at the local big box or technology store, Microsoft is the only game in town.</p>
<p>When repetitive stress injuries like carpal tunnel syndrome loom, you&#8217;ve got to nip them in the bud with a properly adjusted chair, a keyboard tray to properly position your keyboard, a good mouse (I prefer trackballs) and an ergonomic keyboard. I went through it a few years ago, and rather than gamble on undoubtedly better but expensive mail-order keyboards, my choice at retail was between ultra-cheap no-names and Microsoft&#8217;s &#8220;Natural&#8221;s, with the Natural Keyboard Pro being the pick of the litter (avoid the cheesy, cheaper but oddly-laid out Natural Keyboard Elite at all costs).</p>
<p>The corded Microsoft keyboard I bought back then served me well and would still be on my desk if my son Zoom (a.k.a. &#8220;The Terminator&#8221;) hadn&#8217;t destroyed the &#8220;&#038;&#8221; key one snowy afternoon. I&#8217;d hoped to use that keyboard until I retired, especially since I rarely see the wired version &#8220;Pro&#8221; keyboard in stores anymore. You&#8217;ve got to have the<br />
ampersand, so I knew it was time to face my fear of wireless keyboards and find a Linux-compatible one.</p>
<p>I scooped a <a href="http://www.amazon.com/gp/product/B0000AOWVP?ie=UTF8&#038;tag=internetstand-20&#038;linkCode=as2&#038;camp=1789&#038;creative=9325&#038;creativeASIN=B0000AOWVP">Microsoft Wireless Optical Desktop Pro v2.0</a><img src="http://www.assoc-amazon.com/e/ir?t=internetstand-20&#038;l=as2&#038;o=1&#038;a=B0000AOWVP" width="1" height="1" border="0" alt="" style="border:none !important; margin:0px !important;" /> package (including a mouse with &#8220;Tilt-wheel for side-to-side scrolling&#8221;) and rushed home to try it.</p>
<p>The &#8220;Getting Started&#8221; booklet opened ominously: &#8220;Important! Install the Software&#8221;; then, I&#8217;ll have to restart the computer &#8220;if prompted to do so&#8221; (twice, maybe, for a Mac). Only then, I&#8217;m told, can I &#8220;Insert the Batteries&#8221;, plug it in and test it out.</p>
<p>&#8220;How could a Microsoft wireless product possibly work with Linux?&#8221; I can hear you asking. The answer is &#8220;Nanny nanny boo boo. It works as well as the wired version, maybe better.&#8221; I plugged it in and it worked; SUSE Linux even automatically and correctly auto-detected it.</p>
<p>Granted, I can&#8217;t use any of the &#8220;special&#8221; keys Microsoft grafts onto their keyboards, but it&#8217;s easy enough to see what signals those keys emit when pressed (using the &#8220;showkey -s&#8221; from a console session). Remapping them to do something useful within Linux would be more complicated, but it&#8217;s not something I&#8217;m even remotely interested in spending time on since there are plenty of keys that actually do work.</p>
<p>Linux rocks at automatic hardware detection and installation. I&#8217;ve collected dozens of hardware driver CDs for everything from video and audio cards to hard drives to trackballs, joysticks, and yes, keyboards, and never once have I suffered from not installing the software. It all works just great, and I don&#8217;t even even have to restart the system to get things going.</p>
<p>Maybe I don&#8217;t upgrade or change hardware on my system every day or even every week, but I do it often enough for me to be really happy about it all happening automatically, quickly, and correctly, without annoying system restarts.</p>
<p>Why don&#8217;t hardware manufacturers include Linux software with their products? Sometimes they do, but they usually get it wrong one way or another. For example, by making their drivers binary-only, closed source affairs, or by not making the drivers portable across CPU platforms. Invariably, the vendors just aren&#8217;t as good or as fast at writing reliable drivers as the open source community itself.</p>
<p>As for keyboards, I&#8217;m sure there are better ones than Microsoft&#8217;s, but they can&#8217;t seem to get their product into the retail channel. I&#8217;m not going to gamble $300 on a keyboard that I can&#8217;t at touch before I buy, no matter how much it promises to change my life. Microsoft delivers a quality product into half a dozen different major retailers within a 5-mile radius of my home, and I&#8217;m delighted to use their ergonomically correct keyboard.</p>
]]></content:encoded>
			<wfw:commentRss>http://linuxcookbook.com/2010/10/11/my-favorite-hardware-company-sells-software-and-it-based-in-redmond/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How and why to write and edit ASCII text files in Linux</title>
		<link>http://linuxcookbook.com/2010/10/09/how-and-why-to-write-and-edit-ascii-text-files-in-linux/</link>
		<comments>http://linuxcookbook.com/2010/10/09/how-and-why-to-write-and-edit-ascii-text-files-in-linux/#comments</comments>
		<pubDate>Sat, 09 Oct 2010 09:00:30 +0000</pubDate>
		<dc:creator>Peter Loshin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://linuxcookbook.com/?p=194</guid>
		<description><![CDATA[In the beginning, there was ASCII text format, and everything was compatible with everything else. Text still makes sense for many applications: it&#8217;s the format used for everything from email and the web to configuration files and source code. Although &#8230; <a href="http://linuxcookbook.com/2010/10/09/how-and-why-to-write-and-edit-ascii-text-files-in-linux/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>In the beginning, there was ASCII text format, and everything was compatible with everything else. Text still makes sense for many applications: it&#8217;s the format used for everything from email and the web to configuration files and source code. Although many if not most Linux text-based tools are available for other OSes, few OSes are better suited to text manipulation than Linux. Linux doesn&#8217;t have a monopoly on the ultimate backward compatibly-formatted, text, but it does make working with text a pleasure.</p>
<p><span id="more-194"></span></p>
<p>Text is literally the lingua franca of computing. ASCII uses seven bits to encode 95 printing characters—a through z, A through Z, punctuation and symbols—and 33 non-printing characters—things like backspace and carriage return—that all computers can understand. Although most text editors default to the American English character set, they can also usually be reconfigured to use standard ISO character sets for virtually any language.</p>
<p>Text edtors differ from word processors and desktop publishing programs in that they produce raw text files rather than formatted documents with different fonts, font sizes, graphical elements, or other visual flourishes. But text editors add value in the way they are used: they can format and display text files in useful ways during the editing process, for one thing. Programming editors display source code formatted properly for the programming language being used, and can do things like highlight places where there are missing syntax elements.</p>
<p>Text editors can be handy for writing any kind of document that does not need to be formatted or that uses ASCII-based formatting like HTML tagging; being simple text files, writers and editors can easily compare different versions of the same document, and writers can concentrate on content rather than formatting issues.</p>
<p>Text-only applications abound in computing, and especially so in the open source world where so many tools were first developed when there was no such thing as a GUI. I&#8217;ll be posting more over the coming days about text editors, the Big Two text editors, and more about how to use them and what your other open source options can be.</p>
]]></content:encoded>
			<wfw:commentRss>http://linuxcookbook.com/2010/10/09/how-and-why-to-write-and-edit-ascii-text-files-in-linux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Do you trust the software industry to safeguard your rights?</title>
		<link>http://linuxcookbook.com/2010/10/08/do-you-trust-the-software-industry-to-safeguard-your-rights/</link>
		<comments>http://linuxcookbook.com/2010/10/08/do-you-trust-the-software-industry-to-safeguard-your-rights/#comments</comments>
		<pubDate>Fri, 08 Oct 2010 12:00:43 +0000</pubDate>
		<dc:creator>Peter Loshin</dc:creator>
				<category><![CDATA[Linux News]]></category>
		<category><![CDATA[Software Licensing]]></category>

		<guid isPermaLink="false">http://linuxcookbook.com/?p=133</guid>
		<description><![CDATA[This was an interesting column, published at the holiday season back in 2003. I&#8217;ll add in updates/commentary in italics in-line with the original text. Hope that&#8217;s clear! The new year is always a good time to be thankful. In the &#8230; <a href="http://linuxcookbook.com/2010/10/08/do-you-trust-the-software-industry-to-safeguard-your-rights/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><em>This was an interesting column, published at the holiday season back in 2003. I&#8217;ll add in updates/commentary in italics in-line with the original text. Hope that&#8217;s clear!</em></p>
<p>The new year is always a good time to be thankful. In the US, we&#8217;ve got our political liberties, even if it&#8217;s easy to ignore the political aspects of free software and just assume that someone will always be willing to write it.</p>
<p>The biggest free software story this year was SCO&#8217;s legal crusade against Linux. The company formerly known as Caldera (as in &#8220;Caldera Linux&#8221;) now claims that somewhere within the Linux kernel is code improperly taken from the original UNIX kernel, which SCO owns. Which code? They won&#8217;t say. SCO is using the legal system to spread FUD and extort license fees from nervous Linux users.</p>
<p><span id="more-133"></span></p>
<p><em>I was surprised to discover that the SCO Group was still maintaining a website, because I&#8217;d thought they&#8217;d been ground into dust after their disastrous string of losing legal battles. Here&#8217;s the <a href="http://en.wikipedia.org/wiki/SCO_Group">Wikipedia SCO Group entry</a>, where you can read all the gory details; the bottom line is, Linux won, SCO lost.</em></p>
<p>Microsoft sure is an interesting company. How can software selling for hundreds of dollars in the US be sold profitably elsewhere for $40? That&#8217;s what happened when Thailand announced a $250 &#8220;people&#8217;s PC&#8221; running Linux. Windows and Office could have tripled the price tag, so what a pleasant surprise when Microsoft announced it would deliver Thai versions $40! Golly, I can&#8217;t wait for those discounts to make it here to the States!</p>
<p>Which reminds me of the recent &#8220;we&#8217;ll show you ours&#8221; sessions that Microsoft has been holding for Chinese experts to examine Windows source code. China is the world&#8217;s biggest undeveloped market, a hotbed of intellectual property piracy&#8211;and a growing center of free software use and development. Is China checking out Microsoft&#8217;s goodies to make sure there are no CIA backdoors, or to make sure they can put their own backdoors in?</p>
<p><em>This is so quaint: no one cares any more about Windows backdoors, but the government still would like to get a backdoor into the Internet. In <a href="http://www.commondreams.org/headline/2010/09/27-8">Government Seeks Back Door Into All Our Communications</a>, Seth Schoen writes about last week&#8217;s NY Times story about &#8220;a Federal government plan to put government-mandated back doors in all communications systems, including all encryption software.&#8221; at <a href="http://commondreams.org">CommonDreams.org</a></em></p>
<p>According to the CIA World Factbook, Chinese per capita GDP in 2002 was about $4,400. I predict that in 2004 Microsoft will discover it can sell Chinese versions of Windows and Office for under $40 too.</p>
<p><em>In a widely reported story from 2007, Bill Gates was reported to have announced that a Windows/Office bundle for students would be sold in China for approximately $3; here&#8217;s one report: <a href="http://www.itjungle.com/two/two042507-story05.html">Microsoft Takes On Digital Divide with $3 Windows-Office Bundle</a>. Those deals have yet to make it to the US, though.</em></p>
<p>Security and proprietary code may mix, but not well. Speaking out on how Windows-only networks represent a serious security threat cost respected security expert Daniel Geer his job when he co-authored the report &#8220;<a href=" http://cryptome.org/cyberinsecurity.htm">CyberInsecurity: The Cost of Monopoly</a>&#8220;. Read the report; download and print it, just in case it disappears. Here&#8217;s the URL: <code>http://www.ccianet.org/papers/cyberinsecurity.pdf</code>. [<em>NOTE: as predicted, that page is 404 and long gone, but the paper can be seen at <a href="http://cryptome.org/">Cryptome.org</a>, at the link supplied</em>].</p>
<p>To oversimplify, Geer et al state that a monoculture (e.g., the global network of Windows nodes) is susceptible to massive failure whenever a successful attack (e.g., NIMDA worm) is launched. In other words, if you&#8217;ve got nothing but sheep on a ranch the size of Texas, when anthrax breaks out you&#8217;re going to be neck-deep in a sea of dead sheep, which not only isn&#8217;t good for the sheep it&#8217;s bad for anyone within smelling distance of the ranch.</p>
<p>Microsoft is a big customer of Geer&#8217;s employer, @stake; Geer got the boot. Nice example, right? Geer is a star so he won&#8217;t be out of work long. But what if you&#8217;re Joe Sysadmin, are you going to risk it all to tell your boss that Windows-only is not just bad policy, it&#8217;s a huge security risk?</p>
<p><em><a href="http://en.wikipedia.org/wiki/@stake">@stake</a> was bought out by Symantec in 2004.</a></em></p>
<p>Finally, electronic voting. Since 2000, we discovered that it&#8217;s not just a matter of going to the polls on Election Day and pulling a lever, punching a card or marking a circle to have your vote count. Now the digital voting machine industry wants to sell us billions of dollars&#8217; worth of &#8220;direct recording electronic&#8221; (DRV) voting systems (running Windows, of course!) that leave no auditable records, that use secret software to tally votes, and that can be tampered with undetectably.</p>
<p><em>This is a pretty sticky topic. Just Google &#8220;electronic voting problems&#8221; and you&#8217;ll see that these machines continue to cause problems all over the country and the world.</em></p>
<p>Surely it makes sense to give voters a printed receipt that they can check to verify their votes were cast&#8211;and recorded&#8211;properly. How much extra could it cost, and how much is it worth to us as citizens to know that our votes are tallied correctly? It makes business sense to keep track of every nickel, dime and dollar spent in a donut shop or drug store, which is why we get those nice printed receipts every time we buy anything. So why not when we vote? Whatever the cost, I&#8217;d consider it well spent, far more so than <insert your favorite partisan boondoggle here>.</p>
<p><em>In fact, there has been ongoing support for open source software development of open source digital voting systems. You can find out more at <a href="http://www.osdv.org/">The Open Source Digital Voting Foundation (OSDV)</a>.</em></p>
]]></content:encoded>
			<wfw:commentRss>http://linuxcookbook.com/2010/10/08/do-you-trust-the-software-industry-to-safeguard-your-rights/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>My Free Logo Adventure</title>
		<link>http://linuxcookbook.com/2010/10/06/my-free-logo-adventure/</link>
		<comments>http://linuxcookbook.com/2010/10/06/my-free-logo-adventure/#comments</comments>
		<pubDate>Wed, 06 Oct 2010 09:00:59 +0000</pubDate>
		<dc:creator>Peter Loshin</dc:creator>
				<category><![CDATA[Education]]></category>
		<category><![CDATA[How-To]]></category>
		<category><![CDATA[Open Sauce]]></category>
		<category><![CDATA[Open source software]]></category>

		<guid isPermaLink="false">http://linuxcookbook.com/?p=117</guid>
		<description><![CDATA[It's more than just turtles these days with heavy-duty Logo. <a href="http://linuxcookbook.com/2010/10/06/my-free-logo-adventure/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Open Sauce,  April 2005</p>
<p><em>For an article with so many links, I was surprised in a good way by just how many of them are still active and up to date (more or less) after more than five years. Great stuff if you&#8217;re interested in learning to program&#8211;or learning to teach young people how to program.</em></p>
<h2>It&#8217;s more than just turtles these days with heavy-duty Logo</h2>
<p>If French is the language of love, Logo is the language of learning&#8211;and not just learning to program, either. Elegant and simple, Logo is endlessly extensible and a powerful tool for study at almost any educational level, from elementary to post-doctoral.</p>
<p>If you think Logo is kid stuff, think again. Seymour Papert, mathematician, educator and co-founder of the MIT Artificial Intelligence Laboratory, designed Logo as a programming language easy enough for kids to pick up fast, but sufficiently robust to serve as a platform for computing projects of almost any complexity.</p>
<p><span id="more-117"></span></p>
<p>Programming in Logo means using the &#8220;turtle&#8221;: an entity that lives in the Logo environment and responds to commands you give it, either interactively at a command line, or through interpreted programs. Tell the turtle to go forward 50 units onscreen with the command &#8220;fd 50&#8243;; turn to the right with the command &#8220;rt 90&#8243;. Real programming comes quickly with loops (&#8220;repeat&#8221;), conditionals (&#8220;if&#8221;), and procedures.</p>
<p>Logo works well for teaching geometry: create a line by telling the turtle to draw as it moves forward; create a square by telling it, four times, to draw a line and turn 90 degrees. Robotics is just as well-suited to Logo: just turn the virtual turtle into a real robot. Research on &#8220;programmable bricks&#8221; at MIT during the 1990s produced the Lego Mindstorms robotics kit, powered by Logo.</p>
<p>My own first Logo was from <a href="http://www.cs.berkeley.edu/~bh/">Brian Harvey</a>, creator of Berkeley Logo (a.k.a. UCBLogo, see Brian&#8217;s page), bundled with the book <a href="http://www.amazon.com/gp/product/0965193462?ie=UTF8&#038;tag=internetstand-20&#038;linkCode=as2&#038;camp=1789&#038;creative=9325&#038;creativeASIN=0965193462">The Great Logo Adventure: Discovering Logo on and Off the Computer</a><img src="http://www.assoc-amazon.com/e/ir?t=internetstand-20&#038;l=as2&#038;o=1&#038;a=0965193462" width="1" height="1" border="0" alt="" style="border:none !important; margin:0px !important;" /> by Jim Muller.</p>
<p>You can find a downloadable version of Jim&#8217;s book if you dig into the <a href="http://www.softronix.com">Softronix website</a>, as well as other Logo-related links.</p>
<p>Or you can try Brian&#8217;s three-volume <a href="http://www.amazon.com/gp/product/0965193462?ie=UTF8&#038;tag=internetstand-20&#038;linkCode=as2&#038;camp=1789&#038;creative=9325&#038;creativeASIN=0965193462">The Great Logo Adventure: Discovering Logo on and Off the Computer</a><img src="http://www.assoc-amazon.com/e/ir?t=internetstand-20&#038;l=as2&#038;o=1&#038;a=0965193462" width="1" height="1" border="0" alt="" style="border:none !important; margin:0px !important;" /> for a rigorous introduction to serious Logo programming, at the <a href="http://www.cs.berkeley.edu/~bh/">Berkeley Logo</a> site.</p>
<p>SUSE Linux (my [former] favorite) often chokes when compiling apps, like Berkeley Logo, from source, so I sought out a new Logo experience.</p>
<p>Only two&#8211;<a href="http://ccl.sesp.northwestern.edu/netlogo/">NetLogo</a>, from Uri Wilensky, Center for Connected Learning and Computer-Based Modeling, Northwestern University and <a href="http://education.mit.edu/starlogo/">StarLogo</a>, from the MIT Media Lab&#8211;met all my needs. Number 1: my Logo must run under Linux. Other Number 1: my Logo be free. And my final Number 1: an active project with a community of users and developers.</p>
<p>Where UCBLogo offers a basic interface to control and watch the turtle, NetLogo and StarLogo both make it trivial to create and control many turtles, making it dead simple to simulate large population behaviors. Both come with Logo code for modeling bird flocking, prey/predator population variations, gas molecule diffusion, creating fractal images, demonstrating mathematical and statistical theorems and much more.</p>
<p>The biggest hurdle: understanding that to program turtles, screen &#8220;patches&#8221;, and overall (&#8220;observer&#8221;) behaviors, you issue those commands in different modes. But once sorted out, it becomes almost trivial to tweak programs by adding, changing, or removing behaviors, er, I mean procedures. As Java apps, NetLogo and StarLogo both run everywhere, so choice is as much a matter of taste as function. I&#8217;ll continue using both as I climb the programming learning curve.</p>
<p>I could have bought a commercial Logo&#8211;and there are some very impressive looking commercial implementations available, mostly for Windows, sadly&#8211;but that&#8217;s not my way.  Whenever I buy software, I read the box or other promotional material, and I buy into the product: it&#8217;s going to change my life, so I&#8217;m happy to spend my hard-earned bucks for it.</p>
<p>But after the install comes the disappointment. My computer runs no faster, nor can it do much more than before. I still must study the new program to make it work; the license precludes returning it if I&#8217;m unsatisfied, or selling it to someone else for whom it may work better. And the revision that solves all my problems is invariably due just six months hence.</p>
<p>Free software never disappoints. If it helps at all, I&#8217;m happy. I&#8217;ve gotten more than my money&#8217;s worth, and I never suffer buyer&#8217;s remorse. Perhaps a commercial product could do so much more, but it&#8217;s still a gamble. I&#8217;d rather go for the sure thing.</p>
<h2>Logo Resources</h2>
<h3>Free Logo Implementations</h3>
<ul>
<li><a href="http://www.elica.net/site/index.html">Elica</a> is a Windows-only, 3D Logo; apparently free but I couldn&#8217;t verify. It looks extremely cool and capable of doing some very excellent things like gaming, all in a format accessible to kids.</li>
<li><a href="http://education.mit.edu/starlogo/">StarLogo</a> is an excellent version of Logo from MIT capable of programming multiple turtles as well as &#8220;patches&#8221; (bits of space within which the turtles act) that allow the turtles to interact with their environment. Released under a &#8220;free for research and education&#8221; license.</li>
<li><a href="http://ccl.northwestern.edu/netlogo/">NetLogo</a> is another excellent research version of Logo, from Uri Wilensky, Center for Connected Learning and Computer-Based Modeling at Northwestern University; &#8220;free for research and education&#8221; license.</li>
<li><a href="http://www.softronix.com/logo.html">MSW Logo</a> is a Windows version of Brian Harvey&#8217;s UCBLogo.</li>
<li><a href="http://www.cs.berkeley.edu/~bh/logo.html">UCBLogo (a.k.a. Berkeley Logo)</a> Brian Harvey, a lecturer at University of California, Berkeley, wrote and maintains UCBLogo; runs under Mac, Windows and *NIX.</li>
<li><a href="http://clpp.sourceforge.net/">Logo++</a> is a simple, free (GNU license) version of Logo for Windows/X11.</li>
<li><a href="http://xlogo.sourceforge.net/">XLogo</a> is a Mac OSX version of Logo released under BSD license.</li>
<li><a href="http://embry.epcs.com/rLogo/">rLogo</a> is Logo for the web; sparsely supported (?) and released under the GNU license.</li>
</ul>
<h3>Resources</h3>
<ul>
<li><a href="http://el.media.mit.edu/logo-foundation/">The Logo Foundation</a></li>
</ul>
<h2>Online/Free Logo Books/Courses</h2>
<ul>
<li>The Great Logo Adventure [ <a href="http://www.softronix.com/download/tgla.zip">(text)</a>, <a href="http://www.softronix.com/download/tglacd.zip">(companion CD)</a></li>
<li>Computer Science Logo Style (<a href="http://www.cs.berkeley.edu/~bh/v1-toc2.html">vol 1</a>, <a href="http://www.cs.berkeley.edu/~bh/v2-toc2.html">vol 2</a>, <a href="http://www.cs.berkeley.edu/~bh/v3-toc2.html">vol 3</a>)</li>
<li><a href="http://www.ecawa.asn.au/home/jfuller/logotut/menu.htm">An Introduction to MSW Logo</a></li>
<li><a href="http://mckoss.com/logo/">Learning LOGO</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://linuxcookbook.com/2010/10/06/my-free-logo-adventure/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Some more list applications</title>
		<link>http://linuxcookbook.com/2010/10/04/some-more-list-applications/</link>
		<comments>http://linuxcookbook.com/2010/10/04/some-more-list-applications/#comments</comments>
		<pubDate>Mon, 04 Oct 2010 19:49:28 +0000</pubDate>
		<dc:creator>Peter Loshin</dc:creator>
				<category><![CDATA[Listacular]]></category>

		<guid isPermaLink="false">http://listacular.com/?p=55</guid>
		<description><![CDATA[I&#8217;m still searching for list applications/websites/services/what have you. And here are some more that I&#8217;ve found, though I&#8217;m not so sure that there&#8217;s all that much to choose among them. Springpad looks to be an interesting concept of grabbing stuff &#8230; <a href="http://linuxcookbook.com/2010/10/04/some-more-list-applications/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m still searching for list applications/websites/services/what have you. And here are some more that I&#8217;ve found, though I&#8217;m not so sure that there&#8217;s all that much to choose among them.</p>
<p><span id="more-169"></span></p>
<ul>
<li><a href="http://springpadit.com/">Springpad</a> looks to be an interesting concept of grabbing stuff off the web, and then Springpad goes ahead and does things like grabbing more information/links about what you&#8217;ve grabbed, and then give you the option to add/remove/sort through all the data.</li>
<li><a href="http://verbapp.com/">Verb</a> is for lists, mostly task lists, with bells and whistles, and sharing options.</li>
<li><a href="http://www.mangospring.com/task_management_software">MangoTask</a> is part of a whole collaborative workgroup productivity suite. The whole thing looks very complicated, and it reminds me too much of things like <a href="http://en.wikipedia.org/wiki/IBM_Lotus_Notes">Lotus Notes</a>, circa 1996, for some reason.</li>
<li><a href="http://www.orgu.co.uk/">Orgu</a> is another &#8220;simplest list service on the Internets&#8221; type of list service. It&#8217;s free, and it does lists, which you can share. And you can use their &#8220;ready made&#8221; lists for special occasions, if they have the right one for you.</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://linuxcookbook.com/2010/10/04/some-more-list-applications/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google GQueue Application</title>
		<link>http://linuxcookbook.com/2010/10/04/google-gqueue-application/</link>
		<comments>http://linuxcookbook.com/2010/10/04/google-gqueue-application/#comments</comments>
		<pubDate>Mon, 04 Oct 2010 14:43:25 +0000</pubDate>
		<dc:creator>Peter Loshin</dc:creator>
				<category><![CDATA[Listacular]]></category>

		<guid isPermaLink="false">http://listacular.com/?p=50</guid>
		<description><![CDATA[I want to work with lists, and want to have them easily accessible to me from wherever, whenever. So, I started to look at some of the list apps I&#8217;ve been finding. Most of them are &#8220;to do&#8221; lists, as &#8230; <a href="http://linuxcookbook.com/2010/10/04/google-gqueue-application/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I want to work with lists, and want to have them easily accessible to me from wherever, whenever. So, I started to look at some of the list apps I&#8217;ve been finding. Most of them are &#8220;to do&#8221; lists, as opposed to just plain lists. I&#8217;ll continue to dig into all of them, but I thought it might be worthwhile to start with Google&#8217;s <a href="http://www.gqueues.com/">GQueue</a> application.</p>
<p><strong><em>EDIT: GQueue is NOT a Google application, and there is no connection between Google and GQueue other than that GQueue uses your Google account for authentication.</strong></em></p>
<p><span id="more-168"></span></p>
<p>It is definitely designed as a &#8220;to do&#8221; list app, with check boxes on every item to indicate whether or not you&#8217;ve &#8220;completed&#8221; the task, as well as options for adding tags and tasks and sub-tasks and notes and so on. It&#8217;s also got an option for publishing your list, like so:</p>
<p><iframe width="100%" height="404" frameborder="0" scrolling="auto" marginheight="0" marginwidth="0" src="http://www.gqueues.com/public/queues/agdncXVldWVzch0LEgdBY2NvdW50GI6L6AEMCxIFUXVldWUY8asBDA"></iframe></p>
<p>And that actually worked pretty well. I think this may work reasonably well. It certainly gives me something to think about in terms of how I&#8217;d like to be able to work with lists.</p>
]]></content:encoded>
			<wfw:commentRss>http://linuxcookbook.com/2010/10/04/google-gqueue-application/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Protection Racket: Why Red Hat shares didn’t tank after Microsoft’s patent claims</title>
		<link>http://linuxcookbook.com/2010/10/04/the-protection-racket-why-red-hat-shares-didnt-tank-after-microsofts-patent-claims/</link>
		<comments>http://linuxcookbook.com/2010/10/04/the-protection-racket-why-red-hat-shares-didnt-tank-after-microsofts-patent-claims/#comments</comments>
		<pubDate>Mon, 04 Oct 2010 12:00:52 +0000</pubDate>
		<dc:creator>Peter Loshin</dc:creator>
				<category><![CDATA["Get the Facts" (tm)]]></category>
		<category><![CDATA[Microsoft Watch]]></category>
		<category><![CDATA[Open Sauce]]></category>
		<category><![CDATA[Software Licensing]]></category>

		<guid isPermaLink="false">http://linuxcookbook.com/?p=125</guid>
		<description><![CDATA[Back in 2007, the big question on everyone&#8217;s mind was: How can open source projects withstand the threat of being sued by the big proprietary software companies holding thousands of software patents? Here&#8217;s how I saw the problem, back then. &#8230; <a href="http://linuxcookbook.com/2010/10/04/the-protection-racket-why-red-hat-shares-didnt-tank-after-microsofts-patent-claims/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><em>Back in 2007, the big question on everyone&#8217;s mind was: How can open source projects withstand the threat of being sued by the big proprietary software companies holding thousands of software patents? Here&#8217;s how I saw the problem, back then.</em></p>
<p>One might question whether Microsoft&#8217;s recent use of their portfolio of patents is a proper use of the <a href="http://www.uspto.gov">United States Patent and Trademark Office</a>, whose mission, “to promote the progress of science and the useful arts by securing for limited times to inventors the exclusive right to their respective discoveries” is defined in Article 1, Section 8 of the United States Constitution.</p>
<p>Microsoft&#8217;s bombshell about all the patents that Free/Open Source Software (FOSS) allegedly violates hit in mid-May, amid much hair-tearing, whining, gloom and doom. Because the copyright angle didn&#8217;t work out so well for SCO&#8217;s legal misadventures against Linux, it&#8217;s time to roll out Microsoft&#8217;s secret weapon: patents. Here we are in August, and (I predict) Red Hat and all the other big open source vendors are still doing business as usual, and I&#8217;ll tell you why:</p>
<p><span id="more-125"></span></p>
<p>Microsoft wants a piece of the pie, since every CPU running Linux is a CPU that isn&#8217;t running Windows, which means money not rolling into Redmond. Royalties are the name of the game, and the less muss and fuss customers put up to get indemnified against possible legal action from Microsoft, the better off for everyone involved, but most especially Microsoft. So, on May 13 Microsoft  announced that FOSS infringes patents: Linux kernel (42), desktop environment and GUI programs (65), OpenOffice.org (45), email (15), and “assorted” (68).</p>
<p>Here&#8217;s where the “no-fuss, no-muss” comes in, and it&#8217;s a bit tricky. Microsoft won&#8217;t go on the record about which patents are infringed. They don&#8217;t have to, since they&#8217;re not suing anyone (yet). Going public would simplify things for open source developers to challenge—or work around—all those patents, and thus minimize Microsoft&#8217;s leverage over everyone who uses FOSS.</p>
<p>So Microsoft is discussing the patents privately with their big customers, by which I understand them to be saying “revealing the infringed patents under non-disclosure so Microsoft won&#8217;t lose their leverage”, and working out royalty deals. This works because according to the USPTO database Microsoft owns almost 7,000 patents; you&#8217;d have a hard time figuring out which patents they claim are violated by which open source software.</p>
<p>Now, there are a lot of questionable aspects to the whole situation. Does Microsoft&#8217;s deal with Novell to distribute vouchers for Linux equate to actually distributing Linux? Because if so, it means Microsoft would have to abide by the GPL. Does the lack of an expiration date on those vouchers mean that when GPL version 3 licensed software starts coming out, Microsoft will have to abide by the clause in GPLv3 that eliminates the cross-licensing loophole they exploited in their Novell deal?</p>
<p>How many of Microsoft&#8217;s patents will even hold up to courtroom scrutiny? Google “Supreme Court KSR patents” for details on the recent SCOTUS ruling that says the USPTO has been way too generous in granting patents for the past 25 years or so. The bad news for Microsoft is not just that new patents will be held to a higher standard but that current patents are going to be easier to defend against.</p>
<p>Microsoft could litigate Red Hat into dust, but not IBM, which depends heavily on Linux for its business—and has its own huge portfolio of patents (46,197) with which to counter-sue. Wanna bet Microsoft violates some of IBM&#8217;s software patents?</p>
<p>Microsoft&#8217;s brinksmanship is stunning: try to scare their biggest customers, who also happen to be some of the biggest users of FOSS, into paying royalties for Microsoft&#8217;s possibly questionable patents. Or else&#8230; what? The implied threat is that Microsoft will go ahead and sue the pants off their best customers, at great expense to all parties. Talk about going nuclear.</p>
<p>Very risk averse companies with deep pockets and little patience for surprises may be willing to pay off to avoid courtroom action. But as soon as Microsoft goes nuclear with a lawsuit they&#8217;ll have to lay down their patent cards, which means FOSS developers can challenge, work around or innovate over any potentially infringing code.</p>
<p>Could patents actually kill the FOSS movement? Remember, the whole purpose of the patent system is “to promote the progress of science and the useful arts”; if Microsoft tries using patents to kill off an entire industry, they might not be happy with the resulting backlash.</p>
]]></content:encoded>
			<wfw:commentRss>http://linuxcookbook.com/2010/10/04/the-protection-racket-why-red-hat-shares-didnt-tank-after-microsofts-patent-claims/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

