<?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>chmod 644</title>
	<atom:link href="http://www.windracer.net/blog/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.windracer.net/blog</link>
	<description>World Readable: a personal blog about anything that comes to mind for anybody who cares to read it.</description>
	<lastBuildDate>Thu, 26 Aug 2010 23:30:49 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Quick fix for saving Galleon&#8217;s music player options</title>
		<link>http://www.windracer.net/blog/2010/08/quick-fix-for-saving-galleons-music-player-options/</link>
		<comments>http://www.windracer.net/blog/2010/08/quick-fix-for-saving-galleons-music-player-options/#comments</comments>
		<pubDate>Thu, 26 Aug 2010 23:30:49 +0000</pubDate>
		<dc:creator>windracer</dc:creator>
				<category><![CDATA[code]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[tivo]]></category>

		<guid isPermaLink="false">http://www.windracer.net/blog/?p=1056</guid>
		<description><![CDATA[I tend to watch for Galleon-related threads on TCF and came across this one earlier this week. Basically it was reported that after making changes in the Music Player options, those changes would not be saved. I don&#8217;t really use the music player options but always enjoy a debugging challenge so decided to check it [...]]]></description>
			<content:encoded><![CDATA[<p>I tend to watch for Galleon-related threads on <a href="http://www.tivocommunity.com" target="_blank" class="liexternal">TCF</a> and came across <a href="http://www.tivocommunity.com/tivo-vb/showthread.php?p=8106691" target="_blank" class="liexternal">this one</a> earlier this week. Basically it was reported that after making changes in the Music Player options, those changes would not be saved. I don&#8217;t really use the music player options but always enjoy a debugging challenge so decided to check it out.</p>
<p><span id="more-1056"></span></p>
<p>First, I confirmed for myself that when I tried to change the Music Player options on my TiVo (by pressing the Enter key in one of the music apps like the Music Organizer), the changes wouldn&#8217;t take.</p>
<p><a href="http://www.windracer.net/blog/wp-content/uploads/2010/08/galleon-mp-options-before.png" rel="lightbox[1056]" title="Galleon Music Player options (before)" class="liimagelink"><img class="aligncenter size-medium wp-image-1057" title="Galleon Music Player options (before)" src="http://www.windracer.net/blog/wp-content/uploads/2010/08/galleon-mp-options-before-300x224.png" alt="" width="300" height="224" /></a></p>
<p>And I saw this error in the log:</p>
<pre>ERROR [Acceptor] MusicOptionsScreen - java.lang.NullPointerException: Could not configure music player</pre>
<p>If I tried changing the Music Player options through the Galleon GUI, a similar problem occured.</p>
<p><a href="http://www.windracer.net/blog/wp-content/uploads/2010/08/galleon-mp-options-gui.png" rel="lightbox[1056]" title="Galleon Music Player options (GUI)" class="liimagelink"><img class="aligncenter size-medium wp-image-1058" title="Galleon Music Player options (GUI)" src="http://www.windracer.net/blog/wp-content/uploads/2010/08/galleon-mp-options-gui-263x300.png" alt="" width="263" height="300" /></a></p>
<p>Again, the changes were not saved, and I saw this error in the log:</p>
<pre>ERROR [AWT-EventQueue-0] MainFrame - java.lang.NullPointerException: Could not configure server</pre>
<p>I suspected something was going wrong when the app was trying to write the settings back to Galleon&#8217;s configure.xml file (which contains all the server settings). For example, the line in my configure.xml file related to the Music Player options looked like this:</p>
<pre>&lt;musicPlayerConfiguration player="classic" randomPlayFolders="true" screensaver="false"
 showImages="false" skin="/usr/share/galleon/media/winamp/metrix.wsz" useAmazon="false"
 useFile="false" id="1"/&gt;</pre>
<p>I could see the date/time stamp on the file was not changing, nor were any of the changed options appearing on that line in the file. One way around this was to manually edit the settings in configure.xml and restart the Galleon service, but I wanted to find out what was actually going on &#8230;</p>
<p>I turned on debug mode, triggered the bug again and now saw this in the log:</p>
<pre>ERROR [Acceptor] MusicOptionsScreen - java.lang.NullPointerException: Could not configure music player
DEBUG [Acceptor] MusicOptionsScreen - java.lang.NullPointerException
  at org.lnicholls.galleon.widget.MusicOptionsScreen.handleExit(MusicOptionsScreen.java:158)
  ...</pre>
<p>Moving deeper, line 158 in MusicOptionsScreen.java:</p>
<pre>musicPlayerConfiguration.setSkin(mSkinButton.getValue());</pre>
<p>Ah, it had something to do with trying to save the skin option specifically. Looking again at my configure.xml file, I saw it referencing the following skin:</p>
<pre>skin="/usr/share/galleon/media/winamp/metrix.wsz"</pre>
<p>The problem was I had no such winamp folder under /usr/share/galleon/media! Now notice in the screenshots above that the skin option doesn&#8217;t even appear on the TiVo screen and is blank on the GUI dialog. I knew at some point in the past I had seen skins available in this option. Digging some more, I found the following in the ReleaseNotes.txt file:</p>
<blockquote><p>The project has permission from the author of the Metrix Winamp classic skins (Sven Kistner) to distribute the skins with the Galleon project. However, for copyright reasons, the skins are not checked into the project CVS. The Galleon build script will add any *.wsz Winamp skin files that are in the media/winamp directory to a package build. The Galleon GUI will detect any *.wsz files that are in the media/winamp directory and will allow the user to pick a skin in the music app configuration screen.</p></blockquote>
<p>So it looked like when the Galleon 2.5.5 release was built, those default WinAmp skins were missing from the media/winamp folder and thus not included in the distribution.</p>
<p>Now to fix this problem, simply download the <a href="https://sourceforge.net/projects/galleon/files/galleon/2.5.4/galleon-2.5.4-linux.zip/download" target="_blank" class="liexternal">Galleon 2.5.4 archive</a> from Sourceforge (the Linux one is fine even for you Windows or Mac users), copy the media/winamp folder containing the metrix*.wsz files into your existing media folder where you have Galleon installed and then restart the service. You should now be able to save your settings (notice the skin option is present again on the TiVo screen and populated in the GUI dropdown list).</p>
<p><a href="http://www.windracer.net/blog/wp-content/uploads/2010/08/galleon-mp-options-after.png" rel="lightbox[1056]" title="Galleon Music Player options (after)" class="liimagelink"><img class="aligncenter size-medium wp-image-1059" title="Galleon Music Player options (after)" src="http://www.windracer.net/blog/wp-content/uploads/2010/08/galleon-mp-options-after-300x224.png" alt="" width="300" height="224" /></a></p>
<p><a href="http://www.windracer.net/blog/wp-content/uploads/2010/08/galleon-mp-options-gui2.png" rel="lightbox[1056]" title="music player options GUI - fixed" class="liimagelink"><img class="aligncenter size-medium wp-image-1060" title="music player options GUI - fixed" src="http://www.windracer.net/blog/wp-content/uploads/2010/08/galleon-mp-options-gui2-264x300.png" alt="" width="264" height="300" /></a></p>
<p>I&#8217;ve logged this in the project bugtracker on Sourceforge <a href="https://sourceforge.net/tracker/?func=detail&amp;aid=3053327&amp;group_id=126291&amp;atid=705256" target="_blank" class="liexternal">here</a>. Hopefully this can be corrected in a future release, assuming there is one. In the meantime, I hope this helps someone fix their Music Player options!</p>
<!-- PHP 5.x -->]]></content:encoded>
			<wfw:commentRss>http://www.windracer.net/blog/2010/08/quick-fix-for-saving-galleons-music-player-options/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WIJFR: Daemon</title>
		<link>http://www.windracer.net/blog/2010/08/wijfr-daemon/</link>
		<comments>http://www.windracer.net/blog/2010/08/wijfr-daemon/#comments</comments>
		<pubDate>Tue, 17 Aug 2010 23:26:51 +0000</pubDate>
		<dc:creator>windracer</dc:creator>
				<category><![CDATA[books]]></category>
		<category><![CDATA[reviews]]></category>
		<category><![CDATA[sf]]></category>
		<category><![CDATA[wijfr]]></category>

		<guid isPermaLink="false">http://www.windracer.net/blog/?p=1054</guid>
		<description><![CDATA[Gaming genius Matthew Sobol, the 34-year-old head of CyberStorm Entertainment, has just died of brain cancer, but death doesn&#8217;t stop him from initiating an all-out Internet war against humanity. When the authorities investigate Sobol&#8217;s mansion in Thousand Oaks, Calif., they find themselves under attack from his empty house, aided by an unmanned Hummer that tears [...]]]></description>
			<content:encoded><![CDATA[<blockquote><p>Gaming genius Matthew Sobol, the 34-year-old head of CyberStorm  Entertainment, has just died of brain cancer, but death doesn&#8217;t stop him  from initiating an all-out Internet war against humanity. When the  authorities investigate Sobol&#8217;s mansion in Thousand Oaks, Calif., they  find themselves under attack from his empty house, aided by an unmanned  Hummer that tears into the cops with staggering ferocity. Sobol&#8217;s weapon  is a daemon, a kind of computer process that not only has taken over  many of the world&#8217;s computer systems but also enlists the help of  super-intelligent human henchmen willing to carry out his diabolical  plan.</p></blockquote>
<p>The hosts on just about every tech podcast I listen to (Leo Laporte, Tom Merrit, Paul Thurrott, and others) have mentioned &#8220;<a href="http://www.amazon.com/Daemon-Daniel-Suarez/dp/0451228731/ref=sr_1_1?ie=UTF8&amp;s=books&amp;qid=1282071269&amp;sr=8-1" target="_blank" class="liamazon">Daemon</a>&#8221; by Daniel Suarez at one time or another, so it&#8217;s been on my to-read list for a while. I just finished reading this techno-thriller after starting it last month (as I <a href="../2010/07/into-a-new-york-state-of-mind/" class="liinternal">headed to New York</a> on business).</p>
<p><span id="more-1054"></span></p>
<p>The premise is relatively simple: triggered by the death of its creator, software genius Matthew Sobol, a widely distributed, autonomous <a href="http://en.wikipedia.org/wiki/Daemon_(computer_software)" target="_blank" rel="nofollow" class="liwikipedia">daemon</a> starts wreaking havoc on the global economy as it carrys out Sobol&#8217;s final diabolical plan for humankind.</p>
<p>The main cast of characters consists of people on both sides of the daemon&#8217;s war: local police detectives, government agencies, and white hat hackers trying to stop the daemon (if it can be stopped) vs. recruited daemon operatives, hackers, and computer-controlled machines likes killer Hummers, cars, and motorcycles who carry out the daemon&#8217;s tasks. The plot is fast-paced and contains a healthy dose of gaming, MMORPGs, GPS tracking, darknets, the global internet and, of course, explosions and mayhem (in other words, it will probably be made into a movie at some point) but unfortunately just as things are really moving the book ends. I guess this was intentional, paving the way for the sequel &#8220;<a href="http://www.amazon.com/Freedom-TM-Daniel-Suarez/dp/0451231899/ref=tmm_pap_title_0?ie=UTF8&amp;qid=1282071499&amp;sr=8-3" target="_blank" class="liamazon">FreedomTM</a>&#8221; (also on my to-read list).</p>
<p>If you want to learn more about &#8220;Daemon&#8221; there&#8217;s the (rather sparse) <a href="http://whatwouldroymerrittdo.com/wiki/index.php?title=Main_Page" target="_blank" class="liexternal">Daemon Wiki</a> and of course Daniel Suarez&#8217;s own <a href="http://www.thedaemon.com/" target="_blank" class="liexternal">thedaemon.com</a>, which made me think twice before enabling scripts (via <a href="http://noscript.net/" target="_blank" class="liexternal">NoScript</a>) on that site. You never know where pieces of the daemon may be lurking. <img src='http://www.windracer.net/blog/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' />  Also check out the author&#8217;s <a href="http://www.thedaemon.com/aboutauthor.html" target="_blank" class="liexternal">About</a> page to see if you notice <a href="http://www.ethicalhacker.net/content/view/225/8/" target="_blank" class="liexternal">anything interesting</a> about his photograph.</p>
<!-- PHP 5.x -->]]></content:encoded>
			<wfw:commentRss>http://www.windracer.net/blog/2010/08/wijfr-daemon/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Foscam FI8904W outdoor internet camera</title>
		<link>http://www.windracer.net/blog/2010/08/foscam-fi8904w-outdoor-internet-camera/</link>
		<comments>http://www.windracer.net/blog/2010/08/foscam-fi8904w-outdoor-internet-camera/#comments</comments>
		<pubDate>Fri, 13 Aug 2010 00:11:19 +0000</pubDate>
		<dc:creator>windracer</dc:creator>
				<category><![CDATA[iphone]]></category>
		<category><![CDATA[mobile]]></category>
		<category><![CDATA[reviews]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[tech]]></category>
		<category><![CDATA[video]]></category>
		<category><![CDATA[wireless]]></category>

		<guid isPermaLink="false">http://www.windracer.net/blog/?p=1040</guid>
		<description><![CDATA[I&#8217;ve been pleased so far with my in-house internet cameras and decided I&#8217;d like to be able to keep tabs on the outside of the house as well. TrendNet sells weatherproof enclosures for their cameras but they won&#8217;t work with the night-vision models because the IR just reflects off of the glass. I started looking [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been pleased so far with my in-house <a href="http://www.windracer.net/blog/2010/06/trendnet-internet-cameras" class="liinternal">internet cameras</a> and decided I&#8217;d like to be able to keep tabs on the outside of the house as well. TrendNet sells <a href="http://www.trendnet.com/products/proddetail.asp?prod=105_TV-H100&amp;cat=48" target="_blank" class="liexternal">weatherproof enclosures</a> for their cameras but they won&#8217;t work with the night-vision models because the IR just reflects off of the glass. I started looking at other models of outdoor cameras and chose the <a href="http://www.foscam.com/Products_List.asp?id=125" target="_blank" class="liexternal">Foscam FI8904W</a>.</p>
<p><span id="more-1040"></span><a href="http://www.windracer.net/blog/wp-content/uploads/2010/08/foscam.png" rel="lightbox[1040]" title="Foscam FI8904W" class="liimagelink"><img class="alignleft size-medium wp-image-1046" style="margin: 10px;" title="Foscam FI8904W" src="http://www.windracer.net/blog/wp-content/uploads/2010/08/foscam-300x279.png" alt="" width="167" height="155" /></a>Ideally I wanted the (supposedly) cheaper FI8903W (which is the same camera as the FI8904W except it has fewer IR emitters for a shorter night-vision range) but was unable to find it anywhere domestically. Apparently purchasing Foscam cameras is fraught with peril due to the high occurrence of unauthorized clones. The firmwares aren&#8217;t compatible, the interfaces are different, and Foscam won&#8217;t support any hardware not purchased from them. So I ended up getting a 2-pack of the FI8904W cameras from one of their authorized resellers (<a href="http://foscam.us" target="_blank" class="liexternal">Foscam.us</a>).</p>
<p>The camera is very well-constructed and seems pretty sturdy th<a href="http://www.windracer.net/blog/wp-content/uploads/2010/08/foscam-closeups.jpg" rel="lightbox[1040]" title="Foscam closeups" class="liimagelink"><img class="size-medium wp-image-1049 alignright" style="margin: 10px;" title="Foscam closeups" src="http://www.windracer.net/blog/wp-content/uploads/2010/08/foscam-closeups-300x107.jpg" alt="" width="300" height="107" /></a>anks to its metal body and glass enclosed lens and IR emitters. The rear of the unit has the brass connector for the rubberized WiFi antenna and a single cable (also rubberized) that splits into three ends: a wired network jack, a connector for the power supply, and a reset button. A metal mounting bracket and arm are also included. Here&#8217;s a <a href="http://www.gadgetvictims.com/2010/01/my-first-fi8904w.html" target="_blank" class="liexternal">good post</a> about the FI8904W that has some photos of the internals (and tips on replacing the lens with a wide-angle version if you prefer).</p>
<p><a href="http://www.windracer.net/blog/wp-content/uploads/2010/08/foscam-iphone.png" rel="lightbox[1040]" title="Foscam interface on the iPhone" class="liimagelink"><img class="size-medium wp-image-1048 alignleft" style="margin: 10px;" title="Foscam interface on the iPhone" src="http://www.windracer.net/blog/wp-content/uploads/2010/08/foscam-iphone-300x200.png" alt="" width="183" height="122" /></a>Setup is straightforward: connect the camera to your wired network, power it up, then use the included utility to &#8220;find&#8221; the camera&#8217;s DHCP address so you can connect to it via your browser. The web interface, however, leaves a lot to be desired. Like my TrendNet cameras, some of the features require you to use Internet Explorer and ActiveX controls, but other browsers like Firefox, Chrome, or even Safari (including the iPhone) will work via a separate login link (called, inexplicably, Server Push Mode). The basic options are all present: e-mail alerts, FTP storage of images, multiple user security setups, etc.</p>
<p><a href="http://www.windracer.net/blog/wp-content/uploads/2010/08/foscam-schedule.png" rel="lightbox[1040]" title="motion detection schedule" class="liimagelink"><img class="size-medium wp-image-1047 alignright" style="margin: 10px;" title="motion detection schedule" src="http://www.windracer.net/blog/wp-content/uploads/2010/08/foscam-schedule-300x163.png" alt="" width="300" height="163" /></a>Configuring the schedule for motion detection is <em>tedious!</em> Rather than typing in to/from times, you have to click 672 individual boxes that represent 15 minute intervals. You can&#8217;t shift-click to enable a whole range at once, you have to click <em>each one individually!</em> I accidentally stumbled on the fact that if you double-click, a whole hour is selected. Still, to enable motion detection 24/7, I had to double-click 168 times!! This is a terrible user-interface design and not described with any detail in the user manual (which, incidentally, is sparse and filled with bad English due to poor translation). Missing from motion detection is the ability to only watch certain areas of the image for motion (so you can exclude, for example, an outdoor ceiling fan) and also the function to record video to a network share when an alert is triggered (you can&#8217;t record the video at all, actually, since the camera uses only <a href="http://en.wikipedia.org/wiki/Motion_JPEG" target="_blank" rel="nofollow" class="liwikipedia">MJPEG</a> compression). Yes, I could use the FTP function but a) that would require me to set up FTP on my Linux server and b) would only get me still images, which I can get via the e-mail alerts anyway.</p>
<p>Other missing features: the camera has no microphone, so you can&#8217;t listen to any audio in the vicinity and there&#8217;s also no date/time stamp added to the video stream (unless you&#8217;re viewing it through IE with the ActiveX control). Thus, the overlay doesn&#8217;t appear when viewing the camera through <a href="http://itunes.apple.com/us/app/eyecam/id299467234?mt=8" target="_blank" class="liexternal">eyeCam</a> on my iPhone or on the custom web page I wrote that shows me just the video window. Other settings you think would be on the administration pages, like video resolution, color balance, framerate, etc. are all on the &#8220;live video&#8221; page where an &#8220;operator&#8221; can change them (there are three user access levels: Administrator, Operator, and Visitor).</p>
<p><a href="http://www.windracer.net/blog/wp-content/uploads/2010/08/00606E8EC2D7Cam05_m20100812062102.jpg" rel="lightbox[1040]" title="night-vision" class="liimagelink"><img class="size-medium wp-image-1051 alignright" style="margin: 10px;" title="night-vision" src="http://www.windracer.net/blog/wp-content/uploads/2010/08/00606E8EC2D7Cam05_m20100812062102-300x225.jpg" alt="watch out for mutant moths!" width="169" height="138" /></a>Ok, so the interface and setup options are lacking, but how does the camera itself perform? The video is decent (30fps at QVGA or 15fps at VGA), although like my TrendNet cameras, the lack of an infrared filter means some colors are off, especially in bright daylight. The night-vision is pretty good, though, due to all of those IR emitters. The IR LEDs do glow red at night, though, so the camera looks a little like the <a href="http://en.wikipedia.org/wiki/Sauron#Eye_of_Sauron" target="_blank" rel="nofollow" class="liwikipedia">eye of Sauron</a>. The wireless link seems pretty stable even though it has to go through several concrete block walls (since it&#8217;s outside) to connect to my wireless router.</p>
<p><a href="http://www.windracer.net/blog/wp-content/uploads/2010/08/foscam-mounted.jpg" rel="lightbox[1040]" title="Foscam FI8904W outdoor internet camera" class="liimagelink"><img class="alignleft size-medium wp-image-1050" style="margin: 10px;" title="Foscam FI8904W outdoor internet camera" src="http://www.windracer.net/blog/wp-content/uploads/2010/08/foscam-mounted-300x252.jpg" alt="" width="169" height="138" /></a><em>Physical </em>installation is a bit more involved. The camera is obviously meant to be used outdoors which means you need a nearby power outlet. Ideally you don&#8217;t want the outlet to be easily accessible otherwise someone could just unplug it. Also, since the factory reset button is on the split cable end, you&#8217;ll want to make sure that is hidden away as well. The camera is supposedly waterproof, but my selected placement areas are under cover so the unit won&#8217;t be exposed to full-on Florida rainstorms. For my front porch installation, I drilled a hole in the ceiling above where I mounted the camera up into the roof/attic area and then used <a href="http://en.wikipedia.org/wiki/Fish_tape" target="_blank" rel="nofollow" class="liwikipedia">fish tape</a> to run a heavy-duty extension cord from the outlet in my garage ceiling (for the garage door opener) to the camera. Not exactly the most professional installation, but the best I could come up with for now (and all of the connections are up in the ceiling where nobody can mess with them). I&#8217;m still trying to figure out how I&#8217;m going to wire up the second camera out on the lanai in the backyard.</p>
<p>Bottom line: the camera seems to be well-constructed and up to the task of withstanding the elements (although only time will tell that for sure). The video (both daytime and nighttime) is decent enough for basic surveillance, but the lack of audio/video recording is an unfortunate oversight. The firmware and web-based interface can be frustrating and annoying to use but do get the basic job done. If you&#8217;re looking for an outdoor webcam, the Foscam FI8904W is worth considering.</p>
<!-- PHP 5.x -->]]></content:encoded>
			<wfw:commentRss>http://www.windracer.net/blog/2010/08/foscam-fi8904w-outdoor-internet-camera/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Inception</title>
		<link>http://www.windracer.net/blog/2010/08/inception/</link>
		<comments>http://www.windracer.net/blog/2010/08/inception/#comments</comments>
		<pubDate>Wed, 11 Aug 2010 02:24:12 +0000</pubDate>
		<dc:creator>windracer</dc:creator>
				<category><![CDATA[movies]]></category>
		<category><![CDATA[reviews]]></category>

		<guid isPermaLink="false">http://www.windracer.net/blog/?p=1039</guid>
		<description><![CDATA[Over the weekend I went and saw &#8220;Inception.&#8221; I didn&#8217;t know much about it except that the trailer looked pretty sweet and I had been hearing good reviews about it. I really enjoyed it! It was like the mind/memory games of &#8220;Total Recall&#8221; combined with a heist film like &#8220;The Usual Suspects&#8221; with a healthy [...]]]></description>
			<content:encoded><![CDATA[<p>Over the weekend I went and saw &#8220;<a href="http://www.imdb.com/title/tt1375666/" target="_blank" class="liimdb">Inception</a>.&#8221; I didn&#8217;t know much about it except that the trailer looked pretty sweet and I had been hearing good reviews about it.</p>
<p>I really enjoyed it! It was like the mind/memory games of &#8220;<a href="http://www.imdb.com/title/tt0100802/" target="_blank" class="liimdb">Total Recall</a>&#8221; combined with a heist film like &#8220;<a href="http://www.imdb.com/title/tt0114814/" target="_blank" class="liimdb">The Usual Suspects</a>&#8221; with a healthy dose of special effects from &#8220;<a href="http://www.imdb.com/title/tt0133093/" target="_blank" class="liimdb">The Matrix</a>.&#8221; The result is Christopher Nolan&#8217;s well-paced, action-packed, brain-bending thriller played out by a pretty good cast (although I still think of <a href="http://www.imdb.com/name/nm0330687/" target="_blank" class="liimdb">Joseph Gordon-Levitt</a> as the little kid from &#8220;<a href="http://www.imdb.com/title/tt0115082/" target="_blank" class="liimdb">Third Rock from the Sun</a>&#8221; <img src='http://www.windracer.net/blog/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> ).</p>
<p>The way they explained the physics and design (with paradoxes!) and flow of time in the dream world was pretty cool, all without really getting into any heavy details of how the dream-sharing technology worked (which would have been unnecessary anyway). Without spoiling anything, the final sequence, which involves four dream  layers (a dream within a dream within a dream within a dream) with  different time flows was amazing.</p>
<p>Unrelated side note: I did see the &#8220;<a href="http://www.imdb.com/title/tt1104001/" target="_blank" class="liimdb">Tron: Legacy</a>&#8221; trailer on the big screen before the film, which wasn&#8217;t as exciting as it could have been since I had <a href="http://www.windracer.net/blog/2009/07/greetings-programs/" class="liinternal">already seen it</a> on the internet.</p>
<!-- PHP 5.x -->]]></content:encoded>
			<wfw:commentRss>http://www.windracer.net/blog/2010/08/inception/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Netgear MCA1001 MoCA adapters</title>
		<link>http://www.windracer.net/blog/2010/08/netgear-mca1001-moca-adapters/</link>
		<comments>http://www.windracer.net/blog/2010/08/netgear-mca1001-moca-adapters/#comments</comments>
		<pubDate>Sat, 07 Aug 2010 01:36:03 +0000</pubDate>
		<dc:creator>windracer</dc:creator>
				<category><![CDATA[network]]></category>
		<category><![CDATA[reviews]]></category>
		<category><![CDATA[tech]]></category>
		<category><![CDATA[tivo]]></category>

		<guid isPermaLink="false">http://www.windracer.net/blog/?p=1038</guid>
		<description><![CDATA[Since I was facing a re-org of my media cabinet to set up my new TiVo Premiere, I took the opportunity to make some network changes as well. I&#8217;m not quite ready to upgrade my wireless network to the N standard that was finally ratified last year but still wanted good throughput so I could [...]]]></description>
			<content:encoded><![CDATA[<p>Since I was facing a re-org of my media cabinet to set up my new <a href="http://www.windracer.net/blog/2010/08/tivo-premiere/" class="liinternal">TiVo Premiere</a>, I took the opportunity to make some network changes as well. I&#8217;m not quite ready to upgrade my wireless network to the N standard that was finally <a href="http://news.cnet.com/8301-1035_3-10351215-94.html" target="_blank" class="liexternal">ratified last year</a> but still wanted good throughput so I could stream and download HD video to the new Tivo box. After doing some research and reading good reviews, I decided to try out <a href="http://en.wikipedia.org/wiki/Multimedia_over_Coax_Alliance" target="_blank" rel="nofollow" class="liwikipedia">MoCA</a>, or ethernet-over-coax.</p>
<p><span id="more-1038"></span><a href="http://www.windracer.net/blog/wp-content/uploads/2010/08/mca1001.png" rel="lightbox[1038]" title="Netgear MCA1001" class="liimagelink"><img class="alignleft size-full wp-image-1044" style="margin: 10px;" title="Netgear MCA1001" src="http://www.windracer.net/blog/wp-content/uploads/2010/08/mca1001.png" alt="" width="165" height="63" /></a>I picked up a pair of Netgear&#8217;s <a href="http://www.amazon.com/Netgear-MCAB1001-Coax-Ethernet-Adapter-Black/dp/B001N85NMI" target="_blank" class="liamazon">MCA1001</a> MoCA adapters (they come in a set) from Amazon. The setup is supposed to be relatively straight forward: connect one of the adapters to your cable connection (before your cable modem: the cable from the wall goes into the adapter, and then out to your modem) and your router. Then connect the other adapter to the cable line elsewhere in the house and plug the network cable from the MoCA adapter into the device you want to add to the network (in my case the TiVo, but it could be an XBox, PS3, HTPC, etc.). Your network traffic now goes from the router, out over the coax wires already in your walls to the other adapter, then over the CAT5 cable to the target device at speeds up to 270Mpbs.</p>
<p>My setup, unfortunately, was not that straightforward. I wired up both adapters but could not get them to &#8220;see&#8221; each other (the coax LED wasn&#8217;t lighting up). After doing a little more reading, I discovered that the MoCA adapters use the spectrum on the coax lines above the 1GHz range. Most basic cable splitters only pass the 5Mhz &#8211; 900MHz range, effectively filtering out the MoCA signal. I picked up some new satellite splitters at Lowe&#8217;s, which pass the 5MHz &#8211; 2.4GHz range and work just fine for cable TV. After some quick (but hot!) re-wiring work in the attic, I had the old splitters swapped out for the new and eureka! the adapters were working! My TiVo Premiere now had a nice, fast, wired network connection in the media cabinet instead of wireless.</p>
<p>One nice touch is another button that turns off all the bright blue LEDs &#8230; <em>every</em> piece of equipment with bright LEDs should have this option!! I left the LEDs enabled on the adapter in the network closet, but there&#8217;s no need for them on the one connected to the TiVo so I simply pushed the button to turn them off. This will be handy if I end up adding an addition adapter in say, a bedroom (as it is I have to put small pieces of black electrical tape over all the various electronic LEDs that just tell me a device is &#8220;off&#8221;).</p>
<p>The MCA1001 does have a configuration interface, but you can&#8217;t access it  remotely over the network which is a bit annoying. You have to  disconnect the adapter, wire it directly to your PC with a hard-wired IP  address in the 192.168.0.x range, press a button to put the device into  setup mode, and then use Netgear&#8217;s setup utility to access it. The  configuration options are slim. Basically you can change the password  for the configuration interface (which I did), set an encryption key for  the MoCA traffic (which I also did since apparently it&#8217;s possible for  some of the traffic to &#8220;bleed&#8221; out of your house over the coax), and see  some basic statistics (which aren&#8217;t &#8220;live&#8221; since you&#8217;ve had to  disconnect the adapter from your multimedia device). If you&#8217;re seeing interference on your television there are some options for changing the frequency band which luckily I did not have to mess with. You can also update  the firmware, if necessary, from this interface. Don&#8217;t forget to turn off the setup mode button before reconnecting it to your network (there&#8217;s another handy blue LED showing if the unit is in setup mode).</p>
<p>It would also be nice if you could purchase these adapters singly, instead of just in pairs. Obviously your initial setup requires two, but after that I guess you&#8217;ll have a spare if you don&#8217;t need more than two at a time.</p>
<p>Since I don&#8217;t have another MCA1001 on another TiVo, I haven&#8217;t been able to test the MRV transfer speeds, but streaming video via streambaby or transferring shows via pyTivo over the new coax network seems fast. My wireless router also only has a 10/100 switch in it (no gigabit) so that&#8217;s a bottleneck to the theoretical 270Mbps maximum these MoCA adapters can pump out. At any rate, I&#8217;m pretty satisfied with them so far! Now that I have wired ethernet available in the media cabinet, it should be easy to add a Blu-ray DVD player or other network-enabled media device like a Slingbox in the future without having to worry about wireless range or speeds.</p>
<!-- PHP 5.x -->]]></content:encoded>
			<wfw:commentRss>http://www.windracer.net/blog/2010/08/netgear-mca1001-moca-adapters/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>TiVo Premiere</title>
		<link>http://www.windracer.net/blog/2010/08/tivo-premiere/</link>
		<comments>http://www.windracer.net/blog/2010/08/tivo-premiere/#comments</comments>
		<pubDate>Fri, 06 Aug 2010 02:59:37 +0000</pubDate>
		<dc:creator>windracer</dc:creator>
				<category><![CDATA[home theater]]></category>
		<category><![CDATA[reviews]]></category>
		<category><![CDATA[tech]]></category>
		<category><![CDATA[tivo]]></category>
		<category><![CDATA[tv]]></category>
		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://www.windracer.net/blog/?p=1037</guid>
		<description><![CDATA[It&#8217;s been almost three years since I bought a new TiVo, so it was time. I&#8217;ve added the new TiVo Premiere to my main home theater setup, relegating my trusty, original Series3 box to home office duty. I already had the 1TB WD Expander drive from the Series3, so rather than spend the extra cash [...]]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s been <a href="http://www.windracer.net/blog/2007/11/tivo-hd/" class="liinternal">almost three years</a> since I bought a new TiVo, so it was time. I&#8217;ve added the new <a href="http://www.tivo.com/products/tivo-premiere/index.html" target="_blank" class="liexternal">TiVo Premiere</a> to my main home theater setup, relegating my trusty, <a href="http://www.windracer.net/blog/2006/10/tivo-series3/" class="liinternal">original Series3</a> box to home office duty.</p>
<p>I already had the <a href="http://www.windracer.net/blog/2009/05/179-hours-of-hd-goodness/" class="liinternal">1TB WD Expander</a> drive from the Series3, so rather than spend the extra cash on the Premiere XL, I went with the base 320gb model and then connected the Expander giving me 190 hours of HD recording capacity.</p>
<p><span id="more-1037"></span><a href="http://www.windracer.net/blog/wp-content/uploads/2010/08/premiere.png" rel="lightbox[1037]" title="TiVo Premiere" class="liimagelink"><img class="alignleft size-full wp-image-1041" style="margin: 10px;" title="TiVo Premiere" src="http://www.windracer.net/blog/wp-content/uploads/2010/08/premiere.png" alt="" width="300" height="95" /></a>The new box is the smallest TiVo yet, measuring just 16&#8243; wide,  10&#8243; deep and 3&#8243; high. Like the older HD TiVo models, you&#8217;ll need a <a href="http://en.wikipedia.org/wiki/CableCARD" target="_blank" rel="nofollow" class="liwikipedia">CableCARD</a> from your cable provider to receive your encrypted digital cable channels, and possibly a tuning adapter if any channels are <a href="http://en.wikipedia.org/wiki/Switched_digital_video" target="_blank" rel="nofollow" class="liwikipedia">SDV</a>.  Unlike the prior models, however, the Premiere only has a single  CableCARD slot (which has been moved to the rear again, like the Series3) and only accepts a multi-stream card (MCard). The  Premiere has HDMI, component, composite, and optical jacks for video and  audio (but no more S-Video); USB ports for your wireless network (including TiVo&#8217;s new <a href="http://www.amazon.com/TiVo-AN0100-Wireless-Network-Adapter/dp/B0036OR924" target="_blank" class="liamazon">N adapter</a>) or  tuning adapter; eSATA for drive expansion, and a network jack for wired  connectivity. Coax connectors for cable and antenna round out the jack  pack. The Premiere is also the fastest (and greenest) TiVo yet, using a dual-core 400MHz MIPS processor (although currently <a href="http://www.tivocommunity.com/tivo-vb/showthread.php?p=7853623#post7853623" target="_blank" class="liexternal">only one core is enabled</a>) with 512mb of RAM (double that of previous models) while consuming only about 26 watts. The included peanut remote is just about the same except for the addition of new A, B, C, and D buttons that are used for shortcuts in the interface. The Premiere XL comes with the backlit learning version of the peanut remote, and TiVo will soon be releasing a remote with a Bluetooth <a href="http://gizmodo.com/5484061/tivo-premiere-qwerty-remote-requires-another-dongle" target="_blank" class="liexternal">slide-out QWERTY keyboard</a> that looks pretty slick.</p>
<p>The Premiere is billed as the &#8220;one box&#8221; meant to replace your cable set-top box, <a href="http://www.roku.com/" target="_blank" class="liexternal">Roku</a>, <a href="http://en.wikipedia.org/wiki/Home_theater_PC" target="_blank" rel="nofollow" class="liwikipedia">HTPC</a>, etc. The new HD interface (more on that later) integrates searching across video sources like your cable television channels, NetFlix, Blockbuster, Amazon OnDemand, and even YouTube. There&#8217;s now a video window (think picture-in-picture) in the HD menus so you can keep an eye on Live TV (or a recording you&#8217;re playing back) while navigating the menus. Another new feature I like is the episode guide: pick a show and then you can browse the different seasons and episodes for that show, making it easy to create an auto-record WishList for a specific episode if you so desire. Also new (for those people who have been asking for it for years) is a capacity meter in My Shows so you can see how full your disk is. Of course you also get all the regular TiVo functionality like controlling Live TV, Season Passes, WishLists, viewing your photo library or playing your music collection (using TiVo Desktop). My favorite apps like <a href="http://www.windracer.net/blog/2009/08/getting-the-most-out-of-your-tivo/" class="liinternal">Galleon, pyTivo, and streambaby</a> all work with the Premiere as well.</p>
<p>Sounds great so far, right? Unfortunately, right now the new HDUI is <a href="http://www.tivocommunity.com/tivo-vb/showthread.php?t=444083#A4" target="_blank" class="liexternal">very sluggish</a>. Navigating between screens (like from TiVo Central to My Shows) can take several seconds. While watching Live TV, if I press the TiVo button on my remote to go into TiVo Central, I&#8217;ll see a black screen for a few seconds, then the video window will appear, and finally the rest of the menu. Definitely not the TiVo experience I&#8217;ve come to expect. Performance is supposed to improve with the new <a href="http://www.tivocommunity.com/tivo-vb/showthread.php?t=451881" target="_blank" class="liexternal">14.5 software update</a> that is slowly rolling out, but I haven&#8217;t received it yet. It is also generally assumed performance will increase once the second CPU core is enabled (but there has been no announcement on the timeframe for that). The HDUI is also incomplete: screens like the To Do List, Season Pass Manager, and all of the settings are still in the old-style standard definition layout. Some features, like Parental Controls, are <em>only</em> available by switching to the SDUI entirely. It can be a bit jarring going back and forth between interfaces as you navigate the menus. Hopefully these other screens will be added to the HDUI in future updates. If you <em>do </em>switch the classic menus, though, performance is extremely snappy! Right now I&#8217;m sticking with the HDUI so I can learn the ins-and-outs of the new interface.</p>
<p><a href="http://www.windracer.net/blog/wp-content/uploads/2010/08/my-shows.png" rel="lightbox[1037]" title="My Shows" class="liimagelink"><img class="alignright size-medium wp-image-1042" title="My Shows" src="http://www.windracer.net/blog/wp-content/uploads/2010/08/my-shows-300x173.png" alt="" width="300" height="173" /></a>Another &#8220;feature&#8221; of the HDUI is the Discovery Bar, that scrolling bar of pictures across the top of every screen. The Discovery Bar contains suggestions for shows you might like, tips/tricks, and (ugh!) advertising. I don&#8217;t like it. I dislike the Gold Stars and other advertising items that appear on TiVo Central on my other TiVos, now the Discovery Bar is present on every HD menu screen. It&#8217;s supposed to customize itself using your preferences (like Thumbs ratings) and the screen you are currently on, and you can tweak the settings for the Bar itself, but you can&#8217;t turn it off completely! I don&#8217;t like the cluttered look this brings to the TiVo menus. Plus, I suspect the Discovery Bar is contributing to the slow performance of the new interface since as I navigate to each screen I can watch as each block of the Discovery Bar fills in, presumably with content being pulled over my internet connection. If you disconnect your TiVo from the network, the Discovery Bar goes away, but it&#8217;s replaced with a big warning message about certain content/features not working without an internet connection. Disappointing, but I&#8217;m sure I&#8217;ll learn to live with it just like Gold Stars and the Pause menu &#8220;more information&#8221; ads.</p>
<p>One other drawback to the Premiere is that the current user-developed hard drive upgrade tools, like <a href="http://www.mfslive.org/" target="_blank" class="liexternal">MFSLive</a>, won&#8217;t work due to <a href="http://www.mfslive.org/forums/viewtopic.php?f=20&amp;t=1500" target="_blank" class="liexternal">changes</a> in the file system and partition structure. It&#8217;s being worked on, but for now if you want to increase your internal capacity you&#8217;ll need to buy a pre-imaged drive from a third-party like <a href="http://www.weaknees.com/tivo-premiere-series4.php" target="_blank" class="liexternal">Weaknees</a> (the other option being an external eSATA expander like I have).</p>
<p>I&#8217;ve only had the Premiere for a few days and other than the slow performance and incomplete HD interface (both of which I&#8217;m sure will be addressed in future software updates), I&#8217;m happy with it. For more facts (and pictures) about the TiVo Premiere, be sure to check out bkdtv&#8217;s excellent <a href="http://www.tivocommunity.com/tivo-vb/showthread.php?t=444083#A4" target="_blank" class="liexternal">FAQ</a> on the TiVo Community Forum.</p>
<!-- PHP 5.x -->]]></content:encoded>
			<wfw:commentRss>http://www.windracer.net/blog/2010/08/tivo-premiere/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Jailbreaking my iPhone</title>
		<link>http://www.windracer.net/blog/2010/08/jailbreaking-my-iphone/</link>
		<comments>http://www.windracer.net/blog/2010/08/jailbreaking-my-iphone/#comments</comments>
		<pubDate>Thu, 05 Aug 2010 14:40:28 +0000</pubDate>
		<dc:creator>windracer</dc:creator>
				<category><![CDATA[iphone]]></category>
		<category><![CDATA[mobile]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[tech]]></category>

		<guid isPermaLink="false">http://www.windracer.net/blog/?p=1034</guid>
		<description><![CDATA[I couldn&#8217;t resist any longer: the recent exceptions added to the DMCA for jailbreaking allowed for the return of jailbreakme.com, the easiest way yet to jailbreak your iPhone. Just about every podcast I listen to/watch had talked about this and demoed it live so I figured what the heck? I made a full backup of [...]]]></description>
			<content:encoded><![CDATA[<p>I couldn&#8217;t resist any longer: the <a href="https://www.eff.org/press/archives/2010/07/26" target="_blank" class="liexternal">recent exceptions added to the DMCA</a> for jailbreaking allowed for the return of <a href="http://www.jailbreakme.com/faq.html" target="_blank" class="liexternal">jailbreakme.com</a>, the easiest way yet to <a href="http://en.wikipedia.org/wiki/IOS_jailbreaking" target="_blank" rel="nofollow" class="liwikipedia">jailbreak</a> your iPhone. Just about every podcast I listen to/watch had talked about this and demoed it live so I figured what the heck? I made a full backup of my iPhone 3GS with iTunes and then fired up Safari &#8230;</p>
<p><span id="more-1034"></span></p>
<p>A simple slide of my finger, and it was done:</p>
<p><a href="http://www.windracer.net/blog/wp-content/uploads/2010/08/jailbreakme.png" rel="lightbox[1034]" title="jailbreakme.com" class="liimagelink"><img class="aligncenter size-large wp-image-1035" title="jailbreakme.com" src="http://www.windracer.net/blog/wp-content/uploads/2010/08/jailbreakme-1024x382.png" alt="" width="632" height="235" /></a></p>
<p><a href="http://www.windracer.net/gallery/d/30250-1/IMG_0003_001.PNG" rel="lightbox[1034]" title="Cydia, SBSettings, Five IconDock" class="liimagelink"><img class="alignleft" style="margin: 10px;" title="Cydia, SBSettings, Five IconDock" src="http://www.windracer.net/gallery/d/30250-1/IMG_0003_001.PNG" alt="" width="159" height="237" /></a>As you can see from the screenshots, it only took 3 minutes to complete the entire process. I now had the <a href="http://en.wikipedia.org/wiki/Cydia_%28application%29" target="_blank" rel="nofollow" class="liwikipedia">Cydia</a> app store on my device, which opens up a whole new world of applications for the iPhone. These apps aren&#8217;t approved by Apple, so they don&#8217;t have to follow Apple&#8217;s design guidelines and limits on functionality/features.  Just like the App Store, there are free and paid apps in the Cydia store.</p>
<p>One of the first apps I installed was <a href="http://moreinfo.thebigboss.org/moreinfo/depiction.php?file=SBSettingsDpData" target="_blank" class="liexternal">SBSettings</a>, which gives you shortcut access to some common settings. This is a <em>much</em> faster way to turn on/off the different radios rather than having to navigate through the normal Settings app. You can assign different actions (via another cool app, <a href="http://justanotheriphoneblog.com/wordpress/iphone-software/activator-a-free-and-extremely-powerful-jailbreak-app-launcher-for-iphone-jailbreak-apps" target="_blank" class="liexternal">Activator</a>) to bring up SBSettings like swiping the status bar, or doing a short press of the Home button (which is what I use). Also notice in the screenshot to the left that I&#8217;ve got 5 icons in my dock! Currently, SBSettings (plus Activator) is the single-most useful thing I&#8217;ve installed on my iPhone since jailbreaking.</p>
<p>Another reason people jailbreak is for theming, they want the phone&#8217;s interface to look the way <em>they </em>want it, not the way Steve Jobs wants it. For this, you can use <a href="http://www.iphonedownloadblog.com/tag/winterboard/" target="_blank" class="liexternal">Winterboard</a> (which is the newer replacement for Summerboard, which was a play on the Apple&#8217;s springboard (the main pages containing the icons of your apps)). Once you have Winterboard installed, you have the daunting task of searching though <em>thousands</em> of user-created themes for your iPhone. Winterboard lets you mix-and-match themes via a priority screen where you order which parts of a theme should override another. It&#8217;s a bit confusing at first, and every change requires a quick &#8220;respring&#8221; (basically a restart of the springboard) which makes it time consuming, but eventually you can get the phone to look just the way you want. After experimenting with different themes, I decided I like the original, uniform<a href="http://www.windracer.net/gallery/d/30189-1/IMG_0001_002.PNG" rel="lightbox[1034]" title="PDANet tethered to my EeePC" class="liimagelink"><img class="alignright" style="margin: 10px;" title="PDANet tethered to my EeePC" src="http://www.windracer.net/gallery/d/30189-1/IMG_0001_002.PNG" alt="" width="159" height="237" /></a> look. Plus, with iOS4 you can set your separate lock screen and springboard wallpapers anyway. I did use it to &#8220;hide&#8221; the text beneath them (it&#8217;s supposed to be hidden but  apparently the text is just changed to black so it still appears in the  dock reflection, which could be turned off as well), change my icon text from gray to white, and also changed my e-mail and SMS notification sounds. To further customize my springboard, I installed <a href="http://www.appleiphoneschool.com/2009/10/14/rename-ii-rename-stock-jailbroke-and-app-store-applications/" target="_blank" class="liexternal">Rename II </a>so I could actually change the text of my icons. No more long name icons with the annoying &#8220;&#8230;&#8221; in the middle!</p>
<p>Something else you can do once your iPhone is jailbroken is <a href="http://en.wikipedia.org/wiki/Tethering" target="_blank" rel="nofollow" class="liwikipedia">tether</a> it to your laptop using apps like <a href="http://www.junefabrics.com/iphone/" target="_blank" class="liexternal">PDANet</a> or <a href="http://rockyourphone.com/index.php/mywi.html" target="_blank" class="liexternal">MyWi</a>. This is sort of a gray area since even though you may have the grandfathered unlimited data plan with AT&amp;T, the carrier currently charges extra for the tethering &#8220;service.&#8221; I gave PDANet a quick try and was able to surf the internet on my EeePC using my iPhone&#8217;s 3G data connection. <a href="http://www.speedtest.net" target="_blank" class="liexternal">Speedtest.net</a> clocked my connection at about 1.3Mbps, which isn&#8217;t too bad.</p>
<p>Ramping up the nerd factor to 11, why not have command-line access to your iPhone? Installing <a href="http://www.appleiphoneschool.com/openssh/" target="_blank" class="liexternal">OpenSSH</a> gives you the ability to copy files to and from the phone and connect to it like any other Linux-based device. If you do this, <strong>be sure to <a href="http://www.cultofmac.com/how-to-change-your-iphones-default-ssh-password/20871" target="_blank" class="liexternal">change the root password</a>!</strong> You might also want to use the SBSettings plugin to quickly switch OpenSSH on and off when you need it. I had to use this because while playing with Cydia I accidentally misspelled a package source address which was causing errors. I was able to connect to my phone with <a href="http://winscp.net/eng/index.php" target="_blank" class="liexternal">WinSCP</a>, download the files I needed to change, edited them on my PC (there isn&#8217;t a text editor available via the iPhone&#8217;s command-line), and then copied them back onto the phone.</p>
<p>I was apprehensive at first about jailbreaking my phone, but I have to admit that after just a few days I am already pretty happy that I did so, if only just to play around with some of the cool apps people have developed. I&#8217;ve only had one strange crash that occurred while I was <em>removing </em>an app, but other than that I haven&#8217;t noticed any performance or stability issues. At first I thought my battery was draining faster, but I think that was just because I was using the phone more than usual as I played around with apps and themes. I&#8217;ll have to keep an eye on that once I&#8217;m back in my normal usage cycle. Finally, I&#8217;ve had no problem continuing to use my iPhone with iTunes for syncing, backups, using the App Store, etc. All-in-all, it&#8217;s been a pretty satisfying experience. It&#8217;s definitely not for everyone, but if you&#8217;re a tinkerer like me, it can be fun.</p>
<p>One final note: jailbreakme.com is taking advantage of a <a href="http://news.cnet.com/8301-31021_3-20012511-260.html" target="_blank" class="liexternal">PDF security exploit</a> in Safari in order to gain root access to the phone for the jailbreak process. Apple says <a href="http://www.engadget.com/2010/08/04/apple-pdf-security-hole-fix-is-already-ready-to-go/" target="_blank" class="liexternal">they will fix this hole</a> soon. In the meantime, if you want to protect your (jailbroken) phone from potentially malicious PDF attacks, you can install the <a href="http://www.iphonedownloadblog.com/2010/08/03/pdf-loading-warner-protects-your-iphone-from-this-nasty-security-hole/" target="_blank" class="liexternal">PDF Loading Warner</a> from Cydia.</p>
<!-- PHP 5.x -->]]></content:encoded>
			<wfw:commentRss>http://www.windracer.net/blog/2010/08/jailbreaking-my-iphone/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>New theme</title>
		<link>http://www.windracer.net/blog/2010/08/new-theme/</link>
		<comments>http://www.windracer.net/blog/2010/08/new-theme/#comments</comments>
		<pubDate>Mon, 02 Aug 2010 01:04:09 +0000</pubDate>
		<dc:creator>windracer</dc:creator>
				<category><![CDATA[blogging]]></category>

		<guid isPermaLink="false">http://www.windracer.net/blog/?p=1032</guid>
		<description><![CDATA[You might notice a slightly different look to the blog today, compared to yesterday (or the last time you visited). I switched from Srini G&#8217;s Fluid Blue theme (which I&#8217;ve been using ever since I moved to WordPress) to his updated F2 theme (which is basically Fluid Blue optimized for WordPress 3.x). Other than moving [...]]]></description>
			<content:encoded><![CDATA[<p>You might notice a <em>slightly</em> different look to the blog today, compared to yesterday (or the last time you visited). I switched from Srini G&#8217;s <a href="http://srinig.com/wordpress/themes/fluid-blue/" target="_blank" class="liexternal">Fluid Blue</a> theme (which I&#8217;ve been using ever since <a href="http://www.windracer.net/blog/2009/03/ive-switched-to-wordpress/" class="liinternal">I moved to WordPress</a>) to his updated <a href="http://srinig.com/wordpress/themes/f2/" target="_blank" class="liexternal">F2</a> theme (which is basically Fluid Blue optimized for <a href="http://codex.wordpress.org/Version_3.0" target="_blank" class="liwp">WordPress 3.x</a>).</p>
<p>Other than moving my sidebar to the left, and a few other minor customizations, the look-and-feel is basically the same. I also took this opportunity to learn how to use <a href="http://srinig.com/wordpress/2009/09/using-theme-inheritance-to-customize-your-theme/" target="_blank" class="liexternal">theme inheritance</a> so my customizations aren&#8217;t lost when the original theme is updated by the author.</p>
<p>Everything should be working but if you come across something that&#8217;s broken or looks strange, please let me know!</p>
<!-- PHP 5.x -->]]></content:encoded>
			<wfw:commentRss>http://www.windracer.net/blog/2010/08/new-theme/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The &#8220;nonline&#8221; blog</title>
		<link>http://www.windracer.net/blog/2010/07/the-nonline-blog/</link>
		<comments>http://www.windracer.net/blog/2010/07/the-nonline-blog/#comments</comments>
		<pubDate>Sat, 31 Jul 2010 17:54:32 +0000</pubDate>
		<dc:creator>windracer</dc:creator>
				<category><![CDATA[blogging]]></category>
		<category><![CDATA[kids]]></category>

		<guid isPermaLink="false">http://www.windracer.net/blog/?p=1019</guid>
		<description><![CDATA[Inspired by shows like iCarly, my daughter has turned the whiteboard in her room into what she calls her &#8220;nonline blog.&#8221; She&#8217;s using  a pretty standard 3-column template with a simple-but-elegant theme. Notice she&#8217;s even copyrighted the term &#8220;nonline.&#8221; Pretty creative. I might need to discuss content management and security with her though. Right now [...]]]></description>
			<content:encoded><![CDATA[<p>Inspired by shows like <a href="http://www.icarly.com/" target="_blank" class="liexternal">iCarly</a>, my daughter has turned the whiteboard in her room into what she calls her &#8220;nonline blog.&#8221;</p>
<p><span id="more-1019"></span><a href="http://www.windracer.net/blog/wp-content/uploads/2010/07/IMG_5428.jpg" rel="lightbox[1019]" title="my daughter's &quot;nonline&quot; blog" class="liimagelink"><img class="aligncenter size-medium wp-image-1026" title="my daughter's &quot;nonline&quot; blog" src="http://www.windracer.net/blog/wp-content/uploads/2010/07/IMG_5428-300x225.jpg" alt="" width="300" height="225" /></a></p>
<p>She&#8217;s using  a pretty standard 3-column template with a simple-but-elegant theme. Notice she&#8217;s even copyrighted the term &#8220;nonline.&#8221; <img src='http://www.windracer.net/blog/wp-includes/images/smilies/icon_biggrin.gif' alt=':-D' class='wp-smiley' /> </p>
<p><a href="http://www.windracer.net/blog/wp-content/uploads/2010/07/nonline-copyright.png" rel="lightbox[1019]" title="Nonline copyright" class="liimagelink"><img class="aligncenter size-medium wp-image-1029" title="Nonline copyright" src="http://www.windracer.net/blog/wp-content/uploads/2010/07/nonline-copyright-300x138.png" alt="" width="300" height="138" /></a></p>
<p>Pretty creative. I might need to discuss content management and security with her though. Right now anyone with physical access to her room can modify the blog with a simple swipe of their finger (or by using one of the handy dry-erase markers nearby). <img src='http://www.windracer.net/blog/wp-includes/images/smilies/icon_confused.gif' alt=':-?' class='wp-smiley' /> </p>
<!-- PHP 5.x -->]]></content:encoded>
			<wfw:commentRss>http://www.windracer.net/blog/2010/07/the-nonline-blog/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SysAdmin Day 2010</title>
		<link>http://www.windracer.net/blog/2010/07/sysadmin-day-2010/</link>
		<comments>http://www.windracer.net/blog/2010/07/sysadmin-day-2010/#comments</comments>
		<pubDate>Fri, 30 Jul 2010 11:44:06 +0000</pubDate>
		<dc:creator>windracer</dc:creator>
				<category><![CDATA[misc]]></category>
		<category><![CDATA[tech]]></category>

		<guid isPermaLink="false">http://www.windracer.net/blog/?p=1027</guid>
		<description><![CDATA[Let&#8217;s face it, System Administrators get no respect 364 days a year. This is the day that all fellow System Administrators across the globe, will be showered with expensive sports cars and large piles of cash in appreciation of their diligent work. But seriously, we are asking for a nice token gift and some public [...]]]></description>
			<content:encoded><![CDATA[<blockquote><p>Let&#8217;s face it, System Administrators get no respect 364 days a year.  This is the day that all fellow System Administrators across the globe,  will be showered with expensive sports cars and large piles of cash in  appreciation of their diligent work. But seriously, we are asking for a  nice token gift and some public acknowledgement. It&#8217;s the least you  could do.</p>
<p>Consider all the daunting tasks and long hours (weekends too.) Let&#8217;s be  honest, sometimes we don&#8217;t know our System Administrators as well as  they know us. Remember this is one day to recognize your System  Administrator for their workplace contributions and to promote  professional excellence. Thank them for all the things they do for you  and your business.</p></blockquote>
<p>It&#8217;s July 30th again, so Happy <a href="http://www.sysadminday.com/" target="_blank" class="liexternal">System Administrator Appreciation Day</a>! I guess if I used <a href="http://en.wikipedia.org/wiki/Twitter" target="_blank" rel="nofollow" class="liwikipedia">Twitter</a> I would tweet this, but I don&#8217;t, so I won&#8217;t. <img src='http://www.windracer.net/blog/wp-includes/images/smilies/icon_razz.gif' alt=':-P' class='wp-smiley' />  I&#8217;m sure someone else did anyway &#8230;</p>
<!-- PHP 5.x -->]]></content:encoded>
			<wfw:commentRss>http://www.windracer.net/blog/2010/07/sysadmin-day-2010/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
