<?xml version="1.0" encoding="utf-8" ?>

<rss version="2.0" 
   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
   xmlns:admin="http://webns.net/mvcb/"
   xmlns:dc="http://purl.org/dc/elements/1.1/"
   xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
   xmlns:wfw="http://wellformedweb.org/CommentAPI/"
   xmlns:content="http://purl.org/rss/1.0/modules/content/"
   >
<channel>
    <title>Words That Never Were</title>
    <link>http://www.rudism.com/blog/</link>
    <description>Does having a blog mean I can call myself a writer?</description>
    <dc:language>en</dc:language>
    <generator>Serendipity 1.3.1 - http://www.s9y.org/</generator>
    <pubDate>Sun, 02 Nov 2008 15:00:20 GMT</pubDate>

    <image>
        <url>http://www.rudism.com/blog/templates/default/img/s9y_banner_small.png</url>
        <title>RSS: Words That Never Were - Does having a blog mean I can call myself a writer?</title>
        <link>http://www.rudism.com/blog/</link>
        <width>100</width>
        <height>21</height>
    </image>

<item>
    <title>Bookmark Any URL in Full Screen Mode on your Home Screen</title>
    <link>http://www.rudism.com/blog/archives/7-Bookmark-Any-URL-in-Full-Screen-Mode-on-your-Home-Screen.html</link>
            <category>iPhone</category>
    
    <comments>http://www.rudism.com/blog/archives/7-Bookmark-Any-URL-in-Full-Screen-Mode-on-your-Home-Screen.html#comments</comments>
    <wfw:comment>http://www.rudism.com/blog/wfwcomment.php?cid=7</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://www.rudism.com/blog/rss.php?version=2.0&amp;type=comments&amp;cid=7</wfw:commentRss>
    

    <author>nospam@example.com (Rudis Muizneks)</author>
    <content:encoded>
    There was a lot of buzz when the iPhone OS 2.1 came out about the ability to run web applications without Mobile Safari. See &lt;a href=&quot;http://www.appleinsider.com/articles/08/10/03/latest_iphone_software_supports_full_screen_web_apps.html&quot;&gt;this article&lt;/a&gt; at Apple Insider if you missed the news.&lt;br /&gt;
&lt;br /&gt;
The only catch is that it will only work for web applications that have been specifically programmed for that functionality.&lt;br /&gt;
&lt;br /&gt;
So what if you want to have the full-screen no-Safari functionality on web apps that haven&#039;t included the line of code that enables full-screen mode on home screen bookmarks (such as &lt;a href=&quot;http://www.google.com/reader/i/&quot;&gt;Google Reader&lt;/a&gt;? You have a few options...&lt;br /&gt;
&lt;br /&gt;
You could write an email a day to the developer and beg them to implement it.&lt;br /&gt;
You could break in to the developer&#039;s home and steal their code, then implement the web application yourself with full-screen mode enabled.&lt;br /&gt;
&lt;br /&gt;
...OR...&lt;br /&gt;
&lt;br /&gt;
You could do it yourself by bookmarking your own simple HTML file that loads in full-screen mode, then redirects to the web application using javascript. I&#039;ll give the code to do this below, but note that it requires you to have your own hosting provider to put the html file up (any free one should work, preferably one that doesn&#039;t mess with the HTML to insert ads and whatnot).&lt;br /&gt;
&lt;br /&gt;
Here&#039;s the code for a full-screen Google Reader:&lt;br /&gt;
&lt;br /&gt;
&lt;pre&gt;01 &amp;lt;html&amp;gt;&lt;br /&gt;
02     &amp;lt;head&amp;gt;&lt;br /&gt;
03         &amp;lt;title&amp;gt;Reader&amp;lt;/title&amp;gt;&lt;br /&gt;
04         &amp;lt;meta name=&quot;viewport&quot; content=&quot;width=device-width; initial-scale=1.0; maximum-scale=1.0; user-scalable=0;&quot; /&amp;gt;&lt;br /&gt;
05         &amp;lt;meta name=&quot;apple-touch-fullscreen&quot; content=&quot;yes&quot; /&amp;gt;&lt;br /&gt;
06         &amp;lt;meta name=&quot;apple-mobile-web-app-capable&quot; content=&quot;yes&quot; /&amp;gt;&lt;br /&gt;
07         &amp;lt;link rel=&quot;apple-touch-icon&quot; href=&quot;http://www.google.com/reader/ui/iphone-icon.png&quot; /&amp;gt;&lt;br /&gt;
08         &amp;lt;script type=&quot;text/javascript&quot;&amp;gt;&lt;br /&gt;
09             //location.href=&#039;http://www.google.com/reader/i/&#039;;&lt;br /&gt;
10         &amp;lt;/script&amp;gt;&lt;br /&gt;
11     &amp;lt;/head&amp;gt;&lt;br /&gt;
12     &amp;lt;body&amp;gt;&lt;br /&gt;
13     &amp;lt;/body&amp;gt;&lt;br /&gt;
14 &amp;lt;/html&amp;gt;&lt;/pre&gt;&lt;br /&gt;
&lt;br /&gt;
Throw that file onto the web, browse to it in mobile safari, and add it to your homescreen. Voila! Full-screen reader, right? Not quite yet.&lt;br /&gt;
&lt;br /&gt;
Note that on line #09 the javascript that redirects the browser to Google Reader is commented out. You have to do this initially in order to bookmark the page. After you&#039;ve added the file to your homescreen, remove the &quot;//&quot; from line #09 and save the file in place of the one you bookmarked. From now on, when you click the homescreen icon for your file, it will load on your iPhone in full-screen mode, and redirect you to Google Reader instantly.&lt;br /&gt;
&lt;br /&gt;
The nifty thing about this is that you can do it for any website at all, not just web applications. You just need to change the location line on line #09 to any URL you want. Other things you&#039;d probably want to reconfigure for different apps:&lt;br /&gt;
&lt;br /&gt;
The text of the &amp;lt;title&amp;gt; tag on line #03 is the default name of the icon when adding it to your homescreen (but you can change this on the fly when adding the bookmark anyway).&lt;br /&gt;
&lt;br /&gt;
The &quot;viewport&quot; meta tag on line #04 should be ok for most web apps, but you might want to change or remove it for regular websites if you want to be able to pinch-zoom and scroll around on them.&lt;br /&gt;
&lt;br /&gt;
The &quot;apple-touch-icon&quot; link on line #07 is the icon that the bookmark will display on your homescreen. You can point this to the webapp&#039;s real icon by copying it from their site, or create your own.&lt;br /&gt;
&lt;br /&gt;
I hope you enjoy this brave new world of Safari-less web browsing! 
    </content:encoded>

    <pubDate>Sun, 02 Nov 2008 10:00:20 -0500</pubDate>
    <guid isPermaLink="false">http://www.rudism.com/blog/archives/7-guid.html</guid>
    
</item>
<item>
    <title>Yet Another Old-Time Radio Podcast</title>
    <link>http://www.rudism.com/blog/archives/6-Yet-Another-Old-Time-Radio-Podcast.html</link>
            <category>Music</category>
    
    <comments>http://www.rudism.com/blog/archives/6-Yet-Another-Old-Time-Radio-Podcast.html#comments</comments>
    <wfw:comment>http://www.rudism.com/blog/wfwcomment.php?cid=6</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://www.rudism.com/blog/rss.php?version=2.0&amp;type=comments&amp;cid=6</wfw:commentRss>
    

    <author>nospam@example.com (Rudis Muizneks)</author>
    <content:encoded>
    This is something that I&#039;ve been personally using for a while, and figured I might as well throw it out there in case anyone else in the general public would enjoy it.&lt;br /&gt;
&lt;br /&gt;
I have written a few simple scripts that generate a podcatcher-friendly XML feed containing two old-time radio shows from &lt;a href=&quot;http://otr-reviews.com/&quot;&gt;OTR-Reviews.com&lt;/a&gt; every day at 9pm EST. The series are random each time, but the episodes within each series are followed sequentially (and loop back to the first one after the last one has played). I&#039;ve just reset all the counters, so all shows will start at episode one starting today, but the vast majority of the series don&#039;t follow much of an overarching storyline, so it&#039;s safe to jump in and enjoy them at any time.&lt;br /&gt;
&lt;br /&gt;
If anyone is interested in getting a copy of the perl scripts to run their own personalized feed (perhaps with some shows omitted), just get in touch with me. This feed is in no way affiliated with &lt;a href=&quot;http://otr-reviews.com/&quot;&gt;OTR-Reviews.com&lt;/a&gt;, and I&#039;m not sure how they&#039;ll feel about people using their bandwidth through it. If someone over there has a problem with it, just let me know and I&#039;ll take it down.&lt;br /&gt;
&lt;br /&gt;
You can subscribe to the feed at &lt;a href=&quot;/otrcast.xml&quot;&gt;http://www.rudism.com/otrcast.xml&lt;/a&gt;. 
    </content:encoded>

    <pubDate>Sun, 14 Sep 2008 12:22:34 -0400</pubDate>
    <guid isPermaLink="false">http://www.rudism.com/blog/archives/6-guid.html</guid>
    
</item>
<item>
    <title>One gadget to rule them all?</title>
    <link>http://www.rudism.com/blog/archives/5-One-gadget-to-rule-them-all.html</link>
            <category>iPhone</category>
    
    <comments>http://www.rudism.com/blog/archives/5-One-gadget-to-rule-them-all.html#comments</comments>
    <wfw:comment>http://www.rudism.com/blog/wfwcomment.php?cid=5</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://www.rudism.com/blog/rss.php?version=2.0&amp;type=comments&amp;cid=5</wfw:commentRss>
    

    <author>nospam@example.com (Rudis Muizneks)</author>
    <content:encoded>
    The iPhone is tantalizingly close to my perfect device. I wanted it to replace three other gadgets that I used regularly: my 60gb iPod video, my Dell Axim x50v, and my ancient nokia cell phone.&lt;br /&gt;
&lt;br /&gt;
The iPod and phone are no-brainers. I&#039;ve also always wanted a GPS, so that&#039;s a bonus (even without turn-by-turn directions). I was a little hesitant about the move from 60gb to 16gb, but I can live with just a subset of my library, and Pandora more than makes up for it. The sticky point is the Axim. The iPhone needs a few things to be able to satisfactorily replacece my old PocketPC:&lt;br /&gt;
&lt;br /&gt;
&lt;em&gt;Birthday and Anniversary Notifications&lt;/em&gt;&lt;br /&gt;
The fact that it doesn&#039;t do this is, quite frankly, idiotic. You even have to jump through hoops to ensure all your birthdays and anniversaries show up in your calendar. The iPhone is broken until Apple does something about that.&lt;br /&gt;
&lt;br /&gt;
&lt;em&gt;File Management&lt;/em&gt;&lt;br /&gt;
Really, Apple? A device with beautiful image and text viewing and zooming abilities, with a full web browser, image browser, and PDF viewer&amp;mdash;with no way to sync eBooks, images larger than 640x480, or PDFs? WTF? Fix plz.&lt;br /&gt;
&lt;br /&gt;
&lt;em&gt;&lt;a href=&quot;http://www.spacetrader.co.uk&quot;&gt;Space Trader&lt;/a&gt;&lt;/em&gt;&lt;br /&gt;
Funnest mobile game ever. Nuff said.&lt;br /&gt;
&lt;br /&gt;
&lt;strong&gt;Also!&lt;/strong&gt; A night sky astronomy app that let you take a snapshot of the sky, and used the GPS and data service to identify the stars in the picture to tell you their names would kick ass. 
    </content:encoded>

    <pubDate>Mon, 01 Sep 2008 00:25:06 -0400</pubDate>
    <guid isPermaLink="false">http://www.rudism.com/blog/archives/5-guid.html</guid>
    
</item>
<item>
    <title>Point to Ponder: When did the X-Files start sucking?</title>
    <link>http://www.rudism.com/blog/archives/4-Point-to-Ponder-When-did-the-X-Files-start-sucking.html</link>
            <category>TV and Movies</category>
    
    <comments>http://www.rudism.com/blog/archives/4-Point-to-Ponder-When-did-the-X-Files-start-sucking.html#comments</comments>
    <wfw:comment>http://www.rudism.com/blog/wfwcomment.php?cid=4</wfw:comment>

    <slash:comments>1</slash:comments>
    <wfw:commentRss>http://www.rudism.com/blog/rss.php?version=2.0&amp;type=comments&amp;cid=4</wfw:commentRss>
    

    <author>nospam@example.com (Rudis Muizneks)</author>
    <content:encoded>
    Having my sense of nostalgia triggered by the release of the new movie, I am thinking about getting some X-Files seasons on DVD, but it&#039;s been so long since I&#039;ve watched them that I can&#039;t remember which season was the last good one. You know, before the whole underlying conspiracy theory mythos jumped from the back seat to the front seat and the show stopped being about solving paranormal mysteries each week. And don&#039;t even get me started on the post-Duchovny period. Blech.&lt;br /&gt;
&lt;br /&gt;
Based on the season descriptions on &lt;a href=&quot;http://en.wikipedia.org/wiki/The_X-Files&quot;&gt;Wikipedia&lt;/a&gt;, I&#039;m pretty sure seasons one through four are a good bet. The only one I&#039;m not sure about is five. I know it was the last season shot in Vancouver, and was &lt;strong&gt;supposed&lt;/strong&gt; to be the final season, based on everyone&#039;s initial contracts, but I can&#039;t remember how prominent the underlying mythos was through that season. All of the nonsense about the syndicate, cancer man, Krychek, and so on really doesn&#039;t interest me too much&amp;mdash;I much preferred the earlier format where each episode was essentially self-contained, with only minor story arch elements loosely tying the series together.&lt;br /&gt;
&lt;br /&gt;
On the other hand, some of the most memorable episodes came from later seasons. The Cops episode in season seven, while admittedly gimmicky, was awesome. And Bruce Campbell guest-starred as a demon in season six. And anything with Bruce Campbell in it automatically becomes the most awesomest thing ever in the entire universe.&lt;br /&gt;
&lt;br /&gt;
Decisions, decisions. 
    </content:encoded>

    <pubDate>Thu, 31 Jul 2008 12:57:03 -0400</pubDate>
    <guid isPermaLink="false">http://www.rudism.com/blog/archives/4-guid.html</guid>
    
</item>
<item>
    <title>Using iTunes with Juice Receiver (Part II)</title>
    <link>http://www.rudism.com/blog/archives/3-Using-iTunes-with-Juice-Receiver-Part-II.html</link>
            <category>Programming</category>
    
    <comments>http://www.rudism.com/blog/archives/3-Using-iTunes-with-Juice-Receiver-Part-II.html#comments</comments>
    <wfw:comment>http://www.rudism.com/blog/wfwcomment.php?cid=3</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://www.rudism.com/blog/rss.php?version=2.0&amp;type=comments&amp;cid=3</wfw:commentRss>
    

    <author>nospam@example.com (Rudis Muizneks)</author>
    <content:encoded>
    In the &lt;a href=&quot;http://www.rudism.com/blog/archives/2-Using-iTunes-with-Juice-Receiver.html&quot;&gt;last post&lt;/a&gt;, I covered how to use Perl to get podcasts downloaded with &lt;a href=&quot;http://juicereceiver.sourceforge.net/&quot;&gt;Juice&lt;/a&gt; to show up in the &quot;Podcasts&quot; section of iTunes.&lt;br /&gt;
&lt;br /&gt;
The only real problem with that alone is that you still have to manually delete old podcasts from your podcasts directory (either directly, or using Juice&#039;s &quot;Cleanup&quot; tab). That&#039;s a pain in the ass. What follows is a nice little windows script that you can run to automatically delete podcast files that you have listened to and deleted in iTunes. &lt;br /&gt;&lt;a href=&quot;http://www.rudism.com/blog/archives/3-Using-iTunes-with-Juice-Receiver-Part-II.html#extended&quot;&gt;Continue reading &quot;Using iTunes with Juice Receiver (Part II)&quot;&lt;/a&gt;
    </content:encoded>

    <pubDate>Wed, 23 Jul 2008 21:45:44 -0400</pubDate>
    <guid isPermaLink="false">http://www.rudism.com/blog/archives/3-guid.html</guid>
    
</item>
<item>
    <title>Using iTunes with Juice Receiver</title>
    <link>http://www.rudism.com/blog/archives/2-Using-iTunes-with-Juice-Receiver.html</link>
            <category>Programming</category>
    
    <comments>http://www.rudism.com/blog/archives/2-Using-iTunes-with-Juice-Receiver.html#comments</comments>
    <wfw:comment>http://www.rudism.com/blog/wfwcomment.php?cid=2</wfw:comment>

    <slash:comments>1</slash:comments>
    <wfw:commentRss>http://www.rudism.com/blog/rss.php?version=2.0&amp;type=comments&amp;cid=2</wfw:commentRss>
    

    <author>nospam@example.com (Rudis Muizneks)</author>
    <content:encoded>
    For various (bug-related) reasons, I strongly dislike the podcast feature in iTunes. Mainly because, at random, it will mysteriously delete episodes of podcasts (giving &quot;could not be found&quot; errors when trying to play or sync them to my iPod).&lt;br /&gt;
&lt;br /&gt;
I tried a number of different alternatives (&lt;a href=&quot;http://www.yamipod.com/&quot;&gt;YamiPod&lt;/a&gt;, &lt;a href=&quot;http://www.floola.com/&quot;&gt;Floola&lt;/a&gt;, &lt;a href=&quot;http://www.podcastready.com/&quot;&gt;myPodder&lt;/a&gt;), but all had their limitations and bugs of their own. After trying a few different podcatchers, I decided that &lt;a href=&quot;http://juicereceiver.sourceforge.net/&quot;&gt;Juice&lt;/a&gt; is my favorite. For a while, I used a combination of Juice, &lt;a href=&quot;http://www.rockbox.org/&quot;&gt;RockBox&lt;/a&gt; (open source alternative firmware for the iPod that allows you to just copy your music directly to the player without iTunes), and &lt;a href=&quot;http://www.microsoft.com/DownLoads/details.aspx?familyid=C26EFA36-98E0-4EE9-A7C5-98D0592D8C52&amp;displaylang=en&quot;&gt;SyncToy&lt;/a&gt; to keep my music and podcasts up to date, but this was lacking as well. While I don&#039;t like the podcast features of iTunes, I &lt;strong&gt;do&lt;/strong&gt; like the clean look and feel of the iPod interface, and the way podcast episodes are auto-bookmarked and marked as new or listened automatically&amp;mdash;something that RockBox simply can&#039;t compete with.&lt;br /&gt;
&lt;br /&gt;
Now, Juice &lt;strong&gt;does&lt;/strong&gt; support iTunes, but it doesn&#039;t put your podcasts into the &quot;Podcasts&quot; section&amp;mdash;it just copies them over as regular songs and creates playlists for each show to keep track of the episodes. This is lame. What follows is my hacked solution that lets Juice put your podcasts where they belong in your iTunes library. &lt;br /&gt;&lt;a href=&quot;http://www.rudism.com/blog/archives/2-Using-iTunes-with-Juice-Receiver.html#extended&quot;&gt;Continue reading &quot;Using iTunes with Juice Receiver&quot;&lt;/a&gt;
    </content:encoded>

    <pubDate>Tue, 22 Jul 2008 15:52:00 -0400</pubDate>
    <guid isPermaLink="false">http://www.rudism.com/blog/archives/2-guid.html</guid>
    
</item>

</channel>
</rss>