<?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>Lyle Backenroth &#187; Misc</title>
	<atom:link href="http://www.lylebackenroth.com/blog/tag/misc/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.lylebackenroth.com/blog</link>
	<description></description>
	<lastBuildDate>Thu, 10 Nov 2011 19:34:51 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.1</generator>
		<item>
		<title>Thunderbolt (Codename: Light Peak)</title>
		<link>http://www.lylebackenroth.com/blog/2011/08/22/thunderbolt-codename-light-peak/</link>
		<comments>http://www.lylebackenroth.com/blog/2011/08/22/thunderbolt-codename-light-peak/#comments</comments>
		<pubDate>Mon, 22 Aug 2011 10:22:06 +0000</pubDate>
		<dc:creator>lyle</dc:creator>
				<category><![CDATA[Blogroll]]></category>
		<category><![CDATA[Misc]]></category>

		<guid isPermaLink="false">http://www.lylebackenroth.com/blog/?p=969</guid>
		<description><![CDATA[Thunderbolt is a new over-the-wire technology. Expect to start seeing it more and more in 2012, and I think it may eclipse USB 3.0 before it really gets off the ground. It&#8217;s essentially PCIe over a wire, but also incorporates the DisplayPort standard which also allows the wire to handle monitor connections &#8211; the connections [...]]]></description>
			<content:encoded><![CDATA[<p>Thunderbolt is a new over-the-wire technology. Expect to start seeing it more and more in 2012, and I think it may eclipse USB 3.0 before it really gets off the ground.</p>
<p>It&#8217;s essentially PCIe over a wire, but also incorporates the DisplayPort standard which also allows the wire to handle monitor connections &#8211; the connections can also be daisychained, and it&#8217;s bidirectional. It supports up to 10Gbps in either direction (so 20Gbps bidirectionally).</p>
<p>For a sense of scale, in order:</p>
<p>- USB 2.0 runs at 480Mbit/sec (total speed in any direction)<br />
- eSATA runs at 3Gbps (total speed in any direction)<br />
- USB 3.0 supports 5Gbps (total speed in any direction)<br />
- Thunderbolt can support up to 20Gbps, 10Gbps in each direction.</p>
<p>In real life, this wire will transfer about 3/4 of a Gigabyte (768 megs) to 1 Gigabyte in ONE second.</p>
<p>This is an Intel technology, but the only one using it right now is Apple. Apparently a really good reason to use this is to make devices (like tablets &amp; laptops) lighter because it&#8217;s only 1 port, where you don&#8217;t need multiple ports to get things done. So a Thunderbolt wire could connect to a projector, monitor, PC, external hard disk, etc.. and they can all be daisychained&#8230;</p>
<p>Video demo from Intel: <a href="http://www.youtube.com/watch?v=kidmWiqKzqY" target="_blank">Video Part 1</a>, <a href="http://www.youtube.com/watch?v=SY5TjnR5Z-c&amp;feature=relmfu" target="_blank">video part 2</a>.</p>
<p>A few articles on the topic: <a href="http://www.techradar.com/news/computing-components/peripherals/thunderbolt-vs-usb-3-0-vs-esata-931343 " target="_blank">One</a>, <a href="http://www.fastcompany.com/1731357/intel-apple-thunderbolt-replace-all-wires-on-your-desk" target="_blank">two</a>.</p>
<p><a href="http://www.intel.com/technology/io/thunderbolt/index.htm" target="_blank">Intel&#8217;s page on the subject</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.lylebackenroth.com/blog/2011/08/22/thunderbolt-codename-light-peak/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to convert PDF&#8217;s to JPEG&#8217;s (and vice versa)</title>
		<link>http://www.lylebackenroth.com/blog/2011/05/20/how-to-convert-pdfs-to-jpegs-and-vice-versa/</link>
		<comments>http://www.lylebackenroth.com/blog/2011/05/20/how-to-convert-pdfs-to-jpegs-and-vice-versa/#comments</comments>
		<pubDate>Fri, 20 May 2011 17:20:44 +0000</pubDate>
		<dc:creator>lyle</dc:creator>
				<category><![CDATA[Blogroll]]></category>
		<category><![CDATA[Misc]]></category>

		<guid isPermaLink="false">http://www.lylebackenroth.com/blog/?p=943</guid>
		<description><![CDATA[If you don&#8217;t have expensive PDF editing software, you can convert your PDF to a JPG and then edit/add text/graphics accordingly, then convert the image back to a PDF. To convert a PDF to a Jpeg, you&#8217;ll need Imagemagick (sudo apt-get install imagemagick). convert -quality 20 -interlace none -density 300 input.pdf output.jpg The quality setting [...]]]></description>
			<content:encoded><![CDATA[<p>If you don&#8217;t have expensive PDF editing software, you can convert your PDF to a JPG and then edit/add text/graphics accordingly, then convert the image back to a PDF.</p>
<p>To convert a PDF to a Jpeg, you&#8217;ll need Imagemagick (sudo apt-get install imagemagick).</p>
<pre>convert -quality 20 -interlace none -density 300 input.pdf output.jpg</pre>
<p>The <strong>quality</strong> setting can be from 0 to 100 (100 being the best, but often a huge file), I have found 20 to be a good balance of size vs. quality. The <strong>interlace</strong> option helps with readability, and <strong>density</strong> specifies the dots per inch (for printing). For PDF&#8217;s with color images, you may find you need to add the option <strong>-colorspace RGB</strong>.</p>
<p>The default print resolution when using the <strong>convert</strong> program on PDF&#8217;s is 72 dots per inch, which is equivalent to one point per pixel. Computer screens are normally 72 or 96 dots per inch, while printers typically support 150, 300, 600, or 1200 dots per inch. To determine the resolution of your display, use a ruler to measure the width of your screen in inches, and divide by the number of horizontal pixels (1024 on a 1024&#215;768 display). Generally, I prefer to maintain enough density to support a possible print job.</p>
<p>This does work the other way around, so the command below will work just fine:</p>
<pre>convert -quality 20 -interlace none -density 300 input.jpg output.pdf</pre>
<p>When convertnig PDF&#8217;s to Jpeg&#8217;s, <strong>each page will be it&#8217;s own numbered Jpeg</strong>. You can then convert multiple Jpeg&#8217;s back into a single PDF (the page order will depend on the filename sorted order, so be sure to number your files in the preferred order).</p>
<p>The command below will take a series of Jpeg&#8217;s and convert them into a single PDF:</p>
<pre>convert -quality 20 -interlace none -density 300 *.jpg output.pdf</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.lylebackenroth.com/blog/2011/05/20/how-to-convert-pdfs-to-jpegs-and-vice-versa/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Boot from USB devices on older computers that don&#8217;t support USB booting.</title>
		<link>http://www.lylebackenroth.com/blog/2011/05/16/boot-from-usb-devices-on-older-computers-that-dont-support-usb-booting/</link>
		<comments>http://www.lylebackenroth.com/blog/2011/05/16/boot-from-usb-devices-on-older-computers-that-dont-support-usb-booting/#comments</comments>
		<pubDate>Mon, 16 May 2011 05:01:38 +0000</pubDate>
		<dc:creator>lyle</dc:creator>
				<category><![CDATA[Blogroll]]></category>
		<category><![CDATA[Misc]]></category>

		<guid isPermaLink="false">http://www.lylebackenroth.com/blog/?p=934</guid>
		<description><![CDATA[Ran into a great application called Plop Boot Manager. The software allows you to boot off USB devices for those older computers whose BIOS doesn&#8217;t support USB booting. The software is free for personal use, but not free for commerical use. It&#8217;s also not open source, but a good tool nonetheless. Click here for the [...]]]></description>
			<content:encoded><![CDATA[<p>Ran into a great application called Plop Boot Manager. The software allows you to boot off USB devices for those older computers whose BIOS doesn&#8217;t support USB booting.</p>
<p>The software is free for personal use, but not free for commerical use. It&#8217;s also not open source, but a good tool nonetheless.</p>
<p><a href="http://www.plop.at/en/home.html" target="_blank">Click here for the application&#8217;s home site</a> and <a href="http://www.linux.com/learn/tutorials/445010:weekend-project-use-the-plop-boot-manager-to-boot-older-computers-from-usb" target="_blank">here for a good write up on using it</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.lylebackenroth.com/blog/2011/05/16/boot-from-usb-devices-on-older-computers-that-dont-support-usb-booting/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google Page Speed Analyzer</title>
		<link>http://www.lylebackenroth.com/blog/2011/05/13/google-page-speed-analyzer/</link>
		<comments>http://www.lylebackenroth.com/blog/2011/05/13/google-page-speed-analyzer/#comments</comments>
		<pubDate>Fri, 13 May 2011 06:36:55 +0000</pubDate>
		<dc:creator>lyle</dc:creator>
				<category><![CDATA[Blogroll]]></category>
		<category><![CDATA[Misc]]></category>

		<guid isPermaLink="false">http://www.lylebackenroth.com/blog/?p=922</guid>
		<description><![CDATA[Google Page Speed Online analyzes the content of a web page, then generates suggestions to make that page faster for both desktop and mobile browsers. This site got a 71/100 &#8230; not bad. One of the biggest suggestions was to recompress the jpeg&#8217;s on the site much more than they are currently for an estimated 50% [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://pagespeed.googlelabs.com/" target="_blank">Google Page Speed Online analyzes the content of a web page, then generates suggestions to make that page faster for both desktop and mobile browsers.</a></p>
<p>This site got a 71/100 &#8230; not bad. One of the biggest suggestions was to recompress the jpeg&#8217;s on the site much more than they are currently for an estimated 50% improvement. Though, I think the site loads pretty quick, it&#8217;s still a great tool for analyzing your own sites.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.lylebackenroth.com/blog/2011/05/13/google-page-speed-analyzer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>FTP 40 Years Old Today . . .</title>
		<link>http://www.lylebackenroth.com/blog/2011/04/16/ftp-40-years-old-today/</link>
		<comments>http://www.lylebackenroth.com/blog/2011/04/16/ftp-40-years-old-today/#comments</comments>
		<pubDate>Sat, 16 Apr 2011 19:11:01 +0000</pubDate>
		<dc:creator>lyle</dc:creator>
				<category><![CDATA[Blogroll]]></category>
		<category><![CDATA[Misc]]></category>

		<guid isPermaLink="false">http://www.lylebackenroth.com/blog/?p=784</guid>
		<description><![CDATA[This year is certainly the year for birthdays. The File Transfer Protocol, otherwise known as FTP is 40 years old today. Originally put forth as the RFC 114 Specification on April 16, 1971, FTP (and the various iterations inspired from it) is as heavily used today as it was back then by people and companies all [...]]]></description>
			<content:encoded><![CDATA[<p>This year is certainly the year for birthdays. The File Transfer Protocol, otherwise known as FTP is 40 years old today. Originally put forth as the <a href="http://tools.ietf.org/html/rfc114" target="_blank">RFC 114 Specification</a> on April 16, 1971, FTP (and the various iterations inspired from it) is as heavily used today as it was back then by people and companies all over the world.</p>
<p>Originally put forth as RFC 114 and used as such from 1971 to 1980, it changed when in 1980 it was put forth again as <a href="http://tools.ietf.org/rfc/rfc765.txt" target="_blank">RFC 765</a> by Jon Postel of ITI. This standard retired RFC 114 and introduced more concepts and conventions that survive to this day, including: A formal architecture for separate client/server functions and two separate channels, Site-to-site transfers, Passive (a.k.a. &#8220;firewall friendly&#8221;) transfer mode among other improvements. RFC 765 was replaced by RFC 959, which formalized directory navigation in 1985.</p>
<p>The third and current generation of FTP was a reaction to two technologies that RFC 959 did not address: SSL/TLS and IPv6. It was essentially a security upgrade to FTP.</p>
<p>The latest RFC&#8217;s that handle the FTP protocol are <a href="http://www.ietf.org/rfc/rfc2228.txt" target="_blank">RFC 2228</a> in 1997 (which added SSL extensions and is how FTP became FTPS) and <a href="http://tools.ietf.org/html/rfc2428" target="_blank">RFC 2428</a>, which added IPv6 suport in 1998.</p>
<p>While FTP matured into FTPS, it is not to be confused with SFTP.</p>
<p><a href="http://en.wikipedia.org/wiki/FTPS" target="_blank">FTPS</a> is essentially a secured or hardened FTP protocol that uses two channels, one for the data transfer and one for directory listings and other data not associated with the actual transfer. It&#8217;s FTP + <a href="http://en.wikipedia.org/wiki/Secure_Sockets_Layer" target="_blank">SSL</a>.</p>
<p><a href="http://en.wikipedia.org/wiki/SSH_File_Transfer_Protocol" target="_blank">SFTP</a> is a complete departure from FTP and is part of the <a href="http://en.wikipedia.org/w/index.php?title=SSH_File_Transfer_Protocol&amp;section=4#Version_3" target="_blank">Secure Shell File Transfer Project</a> and was built from the ground up as an extension of SSH. It is a secured file transfer protocol built as an extension of <a href="http://en.wikipedia.org/wiki/Secure_Shell" target="_blank">SSH</a> itself. While many confuse SFTP with &#8220;an FTP session through SSH&#8221;, it isn&#8217;t. While FTPS is FTP with security extensions (namely SSL), SFTP is an extension of SSH that adds easy file transfer capabilities to the already secure SSH session. Also not to be confused with <a href="http://en.wikipedia.org/wiki/Secure_copy" target="_blank">SCP</a>, SFTP allows for many more dynamic commands than that of simple SCP.</p>
<p>It is interesting to note that many companies still use classic FTP over <a href="http://en.wikipedia.org/wiki/Virtual_private_network" target="_blank">VPN</a> connections as well.</p>
<p>Anyone lost yet? Just checking . . .</p>
<p>For the record, I prefer SFTP, since I love SSH and do everything I can over SSH, even mapping file systems over it with <a href="http://www.lylebackenroth.com/blog/sshfs/" target="_blank">SSHFS</a> (<a href="http://en.wikipedia.org/wiki/SSHFS" target="_blank">more info about SSHFS here</a>).</p>
<p>Here&#8217;s some write-ups on FTP&#8217;s 40th: <a href="http://www.geek.com/articles/chips/happy-40th-birthday-ftp-20110416/" target="_blank">One</a>, <a href="http://www.theregister.co.uk/2011/04/15/ftp_turns_40/" target="_blank">two</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.lylebackenroth.com/blog/2011/04/16/ftp-40-years-old-today/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Been away a while &#8230;</title>
		<link>http://www.lylebackenroth.com/blog/2011/03/24/been-away-a-while/</link>
		<comments>http://www.lylebackenroth.com/blog/2011/03/24/been-away-a-while/#comments</comments>
		<pubDate>Thu, 24 Mar 2011 17:31:38 +0000</pubDate>
		<dc:creator>lyle</dc:creator>
				<category><![CDATA[Blogroll]]></category>
		<category><![CDATA[Misc]]></category>

		<guid isPermaLink="false">http://www.lylebackenroth.com/blog/?p=708</guid>
		<description><![CDATA[&#8230;work has been busy &#8230; but I am going to try to devote more time to posts &#8230; sorry for the hiatus! In the meantime, take this opportunity to check your backups and make sure your treasured data is duplicated, because everything has a failure date. &#8230;more posts to come.]]></description>
			<content:encoded><![CDATA[<p>&#8230;work has been busy &#8230; but I am going to try to devote more time to posts &#8230; sorry for the hiatus!</p>
<p><strong>In the meantime, take this opportunity to check your backups and make sure your treasured data is duplicated, because everything has a failure date.</strong></p>
<p>&#8230;more posts to come.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.lylebackenroth.com/blog/2011/03/24/been-away-a-while/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Yahoo &amp; Google letting you opt out of ads!</title>
		<link>http://www.lylebackenroth.com/blog/2008/08/10/yahoo-google-letting-you-opt-out-of-ads/</link>
		<comments>http://www.lylebackenroth.com/blog/2008/08/10/yahoo-google-letting-you-opt-out-of-ads/#comments</comments>
		<pubDate>Sun, 10 Aug 2008 14:40:28 +0000</pubDate>
		<dc:creator>lyle</dc:creator>
				<category><![CDATA[Blogroll]]></category>
		<category><![CDATA[Misc]]></category>

		<guid isPermaLink="false">http://www.lylebackenroth.com/blog/?p=134</guid>
		<description><![CDATA[Source: Techcrunch (Click for the full article.) From the article . . . All of a sudden, Yahoo and Google want to make it easy for you to opt out of their ad targeting on both their sites and across the Web. Yahoo announced a new one-click opt-out policy today, and Google made it possible [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Source: <a href="http://www.techcrunch.com/2008/08/08/yahoo-and-google-now-let-you-opt-out-of-ads-because-its-better-than-letting-you-opt-in/" target="_blank">Techcrunch</a></strong> (Click for the full article.)</p>
<p>From the article . . .</p>
<blockquote><p><em>All of a sudden, Yahoo and Google want to make it easy for you to opt out of their ad targeting on both their sites and across the Web. Yahoo announced a new one-click opt-out policy today, and Google made it possible to opt out of both Google and Doubleclick ad targeting with one click yesterday.</em></p>
<p><em>At least Yahoo was honest enough to come out and say that the new policy was a direct response to Congressional scrutiny over the intrusiveness of online advertising and behavioral targeting. Google’s announcement was buried in a blog post about Doubleclick cookies.</em></p>
<p><em>. . . if you don’t want those cookies, you can decline <a onclick="javascript:pageTracker._trackPageview ('/outbound/info.yahoo.com');" href="http://info.yahoo.com/privacy/us/yahoo/opt_out/targeting/details.html">Yahoo’s here</a> and <a onclick="javascript:pageTracker._trackPageview ('/outbound/www.google.com');" href="http://www.google.com/privacy_ads.html">Google’s here</a>.</em></p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.lylebackenroth.com/blog/2008/08/10/yahoo-google-letting-you-opt-out-of-ads/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ThisIsSand.com</title>
		<link>http://www.lylebackenroth.com/blog/2008/07/07/thisissandcom/</link>
		<comments>http://www.lylebackenroth.com/blog/2008/07/07/thisissandcom/#comments</comments>
		<pubDate>Mon, 07 Jul 2008 07:11:35 +0000</pubDate>
		<dc:creator>lyle</dc:creator>
				<category><![CDATA[Blogroll]]></category>
		<category><![CDATA[Misc]]></category>

		<guid isPermaLink="false">http://www.lylebackenroth.com/blog/?p=120</guid>
		<description><![CDATA[Now here&#8217;s something you don&#8217;t see every day. Click the little grey box in the upper left for instructions &#8212; then have fun, I did. A gallery of what people have done resides here.]]></description>
			<content:encoded><![CDATA[<p>Now <a href="http://thisissand.com/" target="_blank">here&#8217;s something you don&#8217;t see every day</a>. Click the little grey box in the upper left for instructions &#8212; then have fun, I did.</p>
<p>A gallery of what people have done <a href="http://thisissand.com/gallery/" target="_blank">resides here</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.lylebackenroth.com/blog/2008/07/07/thisissandcom/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Thoughtful who have passed, this year 2007.</title>
		<link>http://www.lylebackenroth.com/blog/2007/12/27/thoughtful-who-have-passed-this-year-2007/</link>
		<comments>http://www.lylebackenroth.com/blog/2007/12/27/thoughtful-who-have-passed-this-year-2007/#comments</comments>
		<pubDate>Thu, 27 Dec 2007 09:02:06 +0000</pubDate>
		<dc:creator>lyle</dc:creator>
				<category><![CDATA[Blogroll]]></category>
		<category><![CDATA[Misc]]></category>

		<guid isPermaLink="false">http://www.lylebackenroth.com/blog/2007/12/27/thoughtful-who-have-passed-this-year-2007/</guid>
		<description><![CDATA[Some of the inventors and creators that died in 2007 who leave behind something for us to remember them by . . . David H. Shepard (Optical Readers, Farrington B numeric font), J. Robert Cade (Gatorade), Herbert Saffir (The Hurricane Scale), George Rieveschl (beta-dimethylaminoethylbenzhydryl ether hydrochloride &#8212; a.k.a. Benadryl), Arthur Jones (Nautilus machines), Jack Odell [...]]]></description>
			<content:encoded><![CDATA[<p>Some of the inventors and creators that died in 2007 who leave behind something for us to remember them by . . .</p>
<p><a href="http://www.nytimes.com/2007/12/11/us/11shepard.html" target="_blank">David H. Shepard </a> (Optical Readers, Farrington B numeric font),  <a href="http://www.nytimes.com/2007/11/28/business/28cade.html" target="_blank"> J. Robert Cade</a> (Gatorade),  <a href="http://www.nytimes.com/2007/11/24/us/24saffir.html" target="_blank"> Herbert Saffir</a> (The Hurricane Scale),   <a href="http://www.nytimes.com/2007/09/29/business/29rieveschl.html" target="_blank"> George Rieveschl</a> (beta-dimethylaminoethylbenzhydryl ether hydrochloride &#8212; a.k.a. Benadryl),   <a href="http://www.nytimes.com/2007/08/30/business/30jones.html" target="_blank"> Arthur Jones</a> (Nautilus machines),   <a href="http://www.nytimes.com/2007/07/17/world/europe/17odell.html" target="_blank"> Jack Odell</a> (<strong>Matchbox Cars</strong>),   <a href="http://www.nytimes.com/2007/07/05/business/media/05douglas.html" target="_blank"> Raymond Douglas</a> (Color in the NY Times),   <a href="http://www.nytimes.com/2007/06/27/business/27kovacs.html" target="_blank"> George Kovacs</a> (<strong>The ubiquitous halogen torchiere lamp</strong>),   <a href="http://www.nytimes.com/2007/06/16/arts/16weber.html" target="_blank"> Martin J. Weber</a> (The Posterization technique), <a href="http://www.nytimes.com/2007/06/04/us/04yost.html" target="_blank"> Ed Yost</a> (Modern Hot-Air Ballooning),   <a href="http://www.nytimes.com/2007/05/11/obituaries/11maiman.html" target="_blank"> Theodore Maiman</a> (The Laser),   <a href="http://www.nytimes.com/2007/04/04/obituaries/04billings.html" target="_blank"> John Billings</a> (The Rhythm Method),   <a href="http://www.nytimes.com/2007/03/28/obituaries/28lauterbur.html" target="_blank"> Paul C. Lauterbur</a> (<strong>The M.R.I.</strong>),   <a href="http://www.nytimes.com/2007/03/20/business/20backus.html" target="_blank"> John W. Backus</a> (<strong>Fortran</strong>),   <a href="http://www.nytimes.com/2007/02/14/obituaries/14melton.html" target="_blank"> Florence Z. Melton</a> (Slippers),   <a href="http://www.nytimes.com/2007/01/22/science/22hillier.html" target="_blank"> James Hillier</a> (The Electron Microscope),   <a href="http://www.nytimes.com/2007/01/10/arts/television/10takamoto.html" target="_blank"> Iwao Takamoto</a> (&#8220;Scooby-Doo&#8221;),   and <a href="http://www.nytimes.com/2007/01/09/business/worldbusiness/09ando.html" target="_blank"> Momofuku Ando</a> (Instant Ramen).   <a href="http://www.nytimes.com/2007/04/12/books/12vonnegut.html" target="_blank"> So it goes</a>. <img src='http://www.lylebackenroth.com/blog/wp-includes/images/smilies/icon_sad.gif' alt=':-(' class='wp-smiley' /> </p>
<p>Source: <a href="http://www.nytimes.com/" target="_blank">NY Times</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.lylebackenroth.com/blog/2007/12/27/thoughtful-who-have-passed-this-year-2007/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Off for a little R&amp;R&#8230;</title>
		<link>http://www.lylebackenroth.com/blog/2007/11/14/off-for-a-little-rr/</link>
		<comments>http://www.lylebackenroth.com/blog/2007/11/14/off-for-a-little-rr/#comments</comments>
		<pubDate>Wed, 14 Nov 2007 07:34:43 +0000</pubDate>
		<dc:creator>lyle</dc:creator>
				<category><![CDATA[Blogroll]]></category>
		<category><![CDATA[Misc]]></category>

		<guid isPermaLink="false">http://www.lylebackenroth.com/blog/2007/11/14/off-for-a-little-rr/</guid>
		<description><![CDATA[Will be taking a little vacation for the next 2 weeks, back @ the end of November, however, I reserve the right to post if the urge is overwhelming&#8230;.]]></description>
			<content:encoded><![CDATA[<p>Will be taking a little vacation for the next 2 weeks, back @ the end of November, however, I reserve the right to post if the urge is overwhelming&#8230;.</p>
<p> <img src='http://www.lylebackenroth.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.lylebackenroth.com/blog/2007/11/14/off-for-a-little-rr/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk: basic
Page Caching using disk: enhanced (User agent is rejected)
Object Caching 428/788 objects using disk: basic

Served from: lylebackenroth.com @ 2012-02-05 10:16:22 -->
