<?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 - iPhone</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 - iPhone - 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>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>

</channel>
</rss>