<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><!--Generated by Squarespace Site Server v5.11.81 (http://www.squarespace.com/) on Fri, 25 Nov 2011 07:08:33 GMT--><rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:creativeCommons="http://backend.userland.com/creativeCommonsRssModule" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0"><channel><title>LiamHughes.com</title><link>http://www.liamhughes.com/blog/</link><description /><lastBuildDate>Fri, 25 Nov 2011 05:39:14 +0000</lastBuildDate><copyright /><language>en-AU</language><generator>Squarespace Site Server v5.11.81 (http://www.squarespace.com/)</generator><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/liamhughes" /><feedburner:info uri="liamhughes" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><creativeCommons:license>http://creativecommons.org/licenses/by-nc/3.0/</creativeCommons:license><image><link>http://creativecommons.org/licenses/by-nc/3.0/</link><url>http://creativecommons.org/images/public/somerights20.gif</url><title>Some Rights Reserved</title></image><feedburner:emailServiceId>liamhughes</feedburner:emailServiceId><feedburner:feedburnerHostname>http://feedburner.google.com</feedburner:feedburnerHostname><item><title>Slow Startup in Mac OS X</title><category>Mac</category><category>applescript</category><category>launchd</category><category>skype</category><dc:creator>Liam Hughes</dc:creator><pubDate>Fri, 25 Nov 2011 05:18:39 +0000</pubDate><link>http://feedproxy.google.com/~r/liamhughes/~3/z1ZDQAoZrXk/slow-startup-in-mac-os-x.html</link><guid isPermaLink="false">862666:10113762:13858490</guid><description>&lt;p&gt;So for some time now whenever I start up my MacBook Pro everything took a long time to be ready to do what I told it. It would just sit there thinking for quite a while before it would accept any input or respond.&lt;/p&gt;
&lt;p&gt;I only had one application start at login and that was Skype. The reason for this is because it is not an app I use, but one I want to have open in case someone wants to call me.&lt;/p&gt;
&lt;p&gt;Anyway, I tried an experiment where I turned off Skype launching at start up and difference was amazing. I don't know if they have bad memory code on start up or what.&lt;/p&gt;
&lt;p&gt;I still wanted to Skype to start up automatically, but wanted a faster start up time. The answer, as usual for me, was AppleScript, and it is a super simple one:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p class="p1"&gt;&lt;strong&gt;tell&lt;/strong&gt; &lt;span class="s1"&gt;&lt;em&gt;application&lt;/em&gt;&lt;/span&gt; "Skype"&lt;/p&gt;
&lt;p class="p2"&gt;&lt;span class="s2"&gt;&lt;span&gt; &lt;/span&gt;&lt;/span&gt;&lt;strong&gt;delay&lt;/strong&gt;&lt;span class="s2"&gt; 30&lt;/span&gt;&lt;/p&gt;
&lt;p class="p3"&gt;&lt;span class="s2"&gt;&lt;span&gt; &lt;/span&gt;&lt;/span&gt;&lt;strong&gt;activate&lt;/strong&gt;&lt;/p&gt;
&lt;p class="p1"&gt;&lt;strong&gt;end&lt;/strong&gt; &lt;strong&gt;tell&lt;/strong&gt;&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p class="p1"&gt;Basically it just sits there for thirty seconds and then starts Skype. So copy and paste this into AppleScript Editor and save it somewhere out of the way. I put mine at ﻿/Applications/Scripts/LaunchSkype.scpt.&lt;/p&gt;
&lt;p class="p1"&gt;The next step is to automatically trigger the script. I use &lt;a href="http://www.peterborgapps.com/lingon/"&gt;Lingon&lt;/a&gt; to create &lt;a href="http://en.wikipedia.org/wiki/Launchd"&gt;launchd&lt;/a&gt; scripts but you can also write them manually.&lt;/p&gt;
&lt;p class="p1"&gt;For example, create a file called say, com.liamhughes.LaunchSkype.plist, in ~/Library/LaunchAgents/ with the following contents:&lt;/p&gt;
&lt;blockquote&gt;
&lt;div id="_mcePaste"&gt;&amp;lt;?xml version="1.0" encoding="UTF-8"?&amp;gt;&lt;/div&gt;
&lt;div id="_mcePaste"&gt;&amp;lt;!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"&amp;gt;&lt;/div&gt;
&lt;div id="_mcePaste"&gt;&amp;lt;plist version="1.0"&amp;gt;&lt;/div&gt;
&lt;div id="_mcePaste"&gt;&amp;lt;dict&amp;gt;&lt;/div&gt;
&lt;div id="_mcePaste"&gt;&lt;span&gt; &lt;/span&gt;&amp;lt;key&amp;gt;Label&amp;lt;/key&amp;gt;&lt;/div&gt;
&lt;div id="_mcePaste"&gt;&lt;span&gt; &lt;/span&gt;&amp;lt;string&amp;gt;com.liamhughes.LaunchSkype&amp;lt;/string&amp;gt;&lt;/div&gt;
&lt;div id="_mcePaste"&gt;&lt;span&gt; &lt;/span&gt;&amp;lt;key&amp;gt;ProgramArguments&amp;lt;/key&amp;gt;&lt;/div&gt;
&lt;div id="_mcePaste"&gt;&lt;span&gt; &lt;/span&gt;&amp;lt;array&amp;gt;&lt;/div&gt;
&lt;div id="_mcePaste"&gt;&lt;span&gt; &lt;/span&gt;&amp;lt;string&amp;gt;osascript&amp;lt;/string&amp;gt;&lt;/div&gt;
&lt;div id="_mcePaste"&gt;&lt;span&gt; &lt;/span&gt;&amp;lt;string&amp;gt;/Applications/Scripts/LaunchSkype.scpt&amp;lt;/string&amp;gt;&lt;/div&gt;
&lt;div id="_mcePaste"&gt;&lt;span&gt; &lt;/span&gt;&amp;lt;/array&amp;gt;&lt;/div&gt;
&lt;div id="_mcePaste"&gt;&lt;span&gt; &lt;/span&gt;&amp;lt;key&amp;gt;RunAtLoad&amp;lt;/key&amp;gt;&lt;/div&gt;
&lt;div id="_mcePaste"&gt;&lt;span&gt; &lt;/span&gt;&amp;lt;true/&amp;gt;&lt;/div&gt;
&lt;div id="_mcePaste"&gt;&amp;lt;/dict&amp;gt;&lt;/div&gt;
&lt;div id="_mcePaste"&gt;&amp;lt;/plist&amp;gt;&lt;/div&gt;
&lt;div&gt;&lt;/div&gt;
&lt;/blockquote&gt;
&lt;p&gt;This will cause your script to be run whenever you login to your computer.&lt;/p&gt;
&lt;p&gt;Best of both worlds: fast start up time and automatic launch of Skype (or whatever application you want).&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/liamhughes/~4/z1ZDQAoZrXk" height="1" width="1"/&gt;</description><wfw:commentRss>http://www.liamhughes.com/blog/rss-comments-entry-13858490.xml</wfw:commentRss><feedburner:origLink>http://www.liamhughes.com/blog/2011/11/25/slow-startup-in-mac-os-x.html</feedburner:origLink></item><item><title>Preparing for Lion</title><category>Lion</category><category>Mac</category><category>OS X</category><category>applescript</category><category>backup</category><dc:creator>Liam Hughes</dc:creator><pubDate>Wed, 20 Jul 2011 01:17:55 +0000</pubDate><link>http://feedproxy.google.com/~r/liamhughes/~3/EttifyEGxao/preparing-for-lion.html</link><guid isPermaLink="false">862666:10113762:12190150</guid><description>&lt;div id="_mcePaste"&gt;We now have &lt;a href="http://www.tuaw.com/2011/07/19/mac-os-x-lion-launches-july-20/"&gt;official word&lt;/a&gt; that Mac OS X Lion is launching "tomorrow" (likely tonight Australian time).&lt;/div&gt;
&lt;br/&gt; 
&lt;div id="_mcePaste"&gt;A big decision to make every time a new OS comes out is clean install vs upgrade install.&amp;nbsp;&lt;/div&gt;
&lt;br/&gt;
&lt;div id="_mcePaste"&gt;&lt;strong&gt;Pros for Clean Install&lt;/strong&gt;&lt;/div&gt;
&lt;div id="_mcePaste"&gt;Crud left lying around: While Mac OS X may not be plagued with the dreaded Windows registry, that does not mean that application developers don't leave files all over your system that don't go away when you remove the app in question (although &lt;a href="http://appzapper.com/"&gt;AppZapper&lt;/a&gt; can help with that.&lt;/div&gt;
&lt;br/&gt;
&lt;div id="_mcePaste"&gt;A fresh start: I have over 100 applications on my computer. I doubt I use all of them. A clean install lets me just add the applications back as I need them.&lt;/div&gt;
&lt;br/&gt;
&lt;div id="_mcePaste"&gt;&lt;strong&gt;Pros for Upgrade Install&lt;/strong&gt;&lt;/div&gt;
&lt;div id="_mcePaste"&gt;Really easy: No chasing up preference files. No going to use App X in a week's time and not finding it, having to download a 100MB+ file from the Internet and then finding my serial number for it.&lt;/div&gt;
&lt;div&gt;Really quick: You will probably be all done in about an hour, start to finish.&lt;/div&gt;
&lt;br/&gt;
&lt;div id="_mcePaste"&gt;&lt;strong&gt;On Time Machine&lt;/strong&gt;&lt;/div&gt;
&lt;div id="_mcePaste"&gt;I love Time Machine. Between my wife and my laptops we've had a few hard drive failures and a Time Machine restore makes it as though nothing happened at all. In this context, though, that means that all those left over preference files and caches are also restored, quickly turning your freshly installed OS into a one or two year old system.&lt;/div&gt;
&lt;br/&gt;
&lt;div id="_mcePaste"&gt;When you go to restore from Time Machine using the Migration Assistant you have the option of migrating the following files:&lt;/div&gt;
&lt;div id="_mcePaste"&gt;&amp;nbsp;- Users&lt;/div&gt;
&lt;div id="_mcePaste"&gt;&amp;nbsp;- Applications&lt;/div&gt;
&lt;div id="_mcePaste"&gt;&amp;nbsp;- Settings&lt;/div&gt;
&lt;div id="_mcePaste"&gt;&amp;nbsp;- Other files and folders&lt;/div&gt;
&lt;div id="_mcePaste"&gt;&amp;nbsp;&lt;/div&gt;
&lt;div id="_mcePaste"&gt;Now, you could only restore the Users option, which would mean that your Applications, Settings and the &lt;a href="http://guides.macrumors.com/Library#Local_Library"&gt;Local Library&lt;/a&gt; will not be restored. However, not only does this mean that your Local Library might be lost with important data before you realise it (due to Time Machine deleting older backups), but also your &lt;a href="http://guides.macrumors.com/Library#User_Library"&gt;User Library&lt;/a&gt;, which stores a lot of application data, &lt;em&gt;will&lt;/em&gt; be restored.&lt;/div&gt;
&lt;br/&gt;
&lt;div id="_mcePaste"&gt;&lt;strong&gt;My Solution (use at your own risk)&lt;/strong&gt;&lt;/div&gt;
&lt;div id="_mcePaste"&gt;I have come up with a solution that I think provides you with the benefits of a clean install, but reduces the risk of losing any of your important data.&lt;/div&gt;
&lt;br/&gt;
&lt;div id="_mcePaste"&gt;Here's the process:&lt;/div&gt;
&lt;div id="_mcePaste"&gt;&lt;strong&gt;1. Back up with Time Machine.&lt;/strong&gt;&lt;/div&gt;
&lt;div id="_mcePaste"&gt;But you were doing this already, right?&lt;/div&gt;
&lt;br/&gt;
&lt;div id="_mcePaste"&gt;&lt;strong&gt;2. Do a static back up of your Applications and Libraries.&lt;/strong&gt;&lt;/div&gt;
&lt;div id="_mcePaste"&gt;Create a folder on your external harddrive called 'Static Backup'.&lt;/div&gt;
&lt;div id="_mcePaste"&gt;Inside that folder create folders called 'Applications', 'Library' and 'Users'.&lt;/div&gt;
&lt;div id="_mcePaste"&gt;Inside 'Users' create one folder for each of the Users on your computer.&lt;/div&gt;
&lt;div id="_mcePaste"&gt;Inside each of those user folders create a folder called 'Library'.&lt;/div&gt;
&lt;div id="_mcePaste"&gt;Copy and paste the following into the AppleScript Editor:&lt;/div&gt;
&lt;blockquote&gt;
&lt;div id="_mcePaste"&gt;set myPassword to "password"&lt;/div&gt;
&lt;div id="_mcePaste"&gt;set myHarddrive to "harddrive"&lt;/div&gt;
&lt;div id="_mcePaste"&gt;do shell script "rsync -a --delete /Applications/ /Volumes/" &amp;amp; myHarddrive &amp;amp; "/StaticBackup/Applications/" password myPassword with administrator privileges&lt;/div&gt;
&lt;div id="_mcePaste"&gt;do shell script "rsync -a --delete /Library/ /Volumes/" &amp;amp; myHarddrive &amp;amp; "/StaticBackup/Library/" password myPassword with administrator privileges&lt;/div&gt;
&lt;div id="_mcePaste"&gt;set myUsername to "username"&lt;/div&gt;
&lt;div id="_mcePaste"&gt;do shell script "rsync -a --delete /Users/" &amp;amp; myUsername &amp;amp; "/Library/ /Volumes/" &amp;amp; myHarddrive &amp;amp; "/StaticBackup/Users/" &amp;amp; myUsername &amp;amp; "/Library/" password myPassword with administrator privileges&lt;/div&gt;
&lt;/blockquote&gt;
&lt;div id="_mcePaste"&gt;Replace password with your admin password. (Don't save the file with your password entered, but set back to password before saving.)&lt;/div&gt;
&lt;div id="_mcePaste"&gt;Replace harddrive with the name of your external hard drive.&lt;/div&gt;
&lt;div id="_mcePaste"&gt;Make copies of the last two lines for each of the users on your system. Set username for each accordingly.&lt;/div&gt;
&lt;div id="_mcePaste"&gt;Run the script.&lt;/div&gt;
&lt;div id="_mcePaste"&gt;You will now have a back up of your Applications, your Local Library and all of your User Libraries.&lt;/div&gt;
&lt;div id="_mcePaste"&gt;You can run this script at any time and then again just before doing the OS install and it will just update the files already backed up.&lt;/div&gt;
&lt;br/&gt;
&lt;div id="_mcePaste"&gt;&lt;strong&gt;3. Install the OS&lt;/strong&gt;&lt;/div&gt;
&lt;div id="_mcePaste"&gt;Do one final Time Machine backup.&lt;/div&gt;
&lt;div id="_mcePaste"&gt;Do the fresh install.&lt;/div&gt;
&lt;div id="_mcePaste"&gt;When the system asks if you would like to migrate data from Time Machine, say no.&lt;/div&gt;
&lt;div id="_mcePaste"&gt;Create the users from your old system.&lt;/div&gt;
&lt;br/&gt;
&lt;div id="_mcePaste"&gt;&lt;strong&gt;4. Restore your user data&lt;/strong&gt;&lt;/div&gt;
&lt;div id="_mcePaste"&gt;Once the OS install has finished, enter Time Machine and browse to your user directory.&lt;/div&gt;
&lt;div id="_mcePaste"&gt;Select all the folders, except for the Library, and select Restore.&lt;/div&gt;
&lt;div id="_mcePaste"&gt;Repeat for each user on the system.&lt;/div&gt;
&lt;br/&gt;
&lt;div id="_mcePaste"&gt;&lt;strong&gt;5. That's it (for now)&lt;/strong&gt;&lt;/div&gt;
&lt;div id="_mcePaste"&gt;You now have a completely clean system, but still have all of your user data, including iTunes and iPhoto libraries.&lt;/div&gt;
&lt;div id="_mcePaste"&gt;If you install an application and realise that some important data is missing, there is a 99% chance you will find it in your static backup.&lt;/div&gt;
&lt;div id="_mcePaste"&gt;After some time (maybe six months) you can probably just delete your static backup.&lt;/div&gt;
&lt;br/&gt;
&lt;div id="_mcePaste"&gt;&lt;strong&gt;Conclusion&lt;/strong&gt;&lt;/div&gt;
&lt;div id="_mcePaste"&gt;It certainly does not have the simplicity of a Time Machine restore, but a new version of OS X only comes out less than once per year. I think it is probably worth it for that fresh new car smell.&lt;/div&gt;
&lt;br/&gt;
&lt;div id="_mcePaste"&gt;Oh, yeah, and don't forget to check &lt;a href="http://roaringapps.com/"&gt;Roaring Apps&lt;/a&gt; to see if your mission critical apps are stable in Lion.&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/liamhughes/~4/EttifyEGxao" height="1" width="1"/&gt;</description><wfw:commentRss>http://www.liamhughes.com/blog/rss-comments-entry-12190150.xml</wfw:commentRss><feedburner:origLink>http://www.liamhughes.com/blog/2011/7/20/preparing-for-lion.html</feedburner:origLink></item><item><title>A Quick Update</title><category>blog</category><category>evernote</category><category>rhinote</category><category>wwdc</category><dc:creator>Liam Hughes</dc:creator><pubDate>Mon, 04 Jul 2011 02:40:58 +0000</pubDate><link>http://feedproxy.google.com/~r/liamhughes/~3/HG3oGnyTAVA/a-quick-update.html</link><guid isPermaLink="false">862666:10113762:11999541</guid><description>&lt;p&gt;Haven't blogged for a while, so here's a quick update.&lt;/p&gt;
&lt;p&gt;Last week I took a week of annual leave to spend time with family.&lt;/p&gt;
&lt;p&gt;The two weeks before that I began work on an iOS specific library to wrap around the official Evernote API. The idea is to get a library to the point where an iOS developer could add Evernote capability to a range of different apps as quickly as possible. This includes adding client-side storage and validation of data, along with a bunch of other things.&lt;/p&gt;
&lt;p&gt;All of this will replace a chunk of code from QuickText which should allow me to add new features a bit easier as well as develop new apps using a common base.&lt;/p&gt;
&lt;p&gt;I'll post more on the library when it is closer to being finished. At this stage I am thinking I might open source the lot of it, but who knows.&lt;/p&gt;
&lt;p&gt;I'm also getting stuck in to the WWDC 2011 session videos to learn all what's new about iOS 5. Unfortunately I can't talk about any of it due to the NDA...&lt;/p&gt;
&lt;p&gt;So, that's me from the last three weeks. More to come...&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/liamhughes/~4/HG3oGnyTAVA" height="1" width="1"/&gt;</description><wfw:commentRss>http://www.liamhughes.com/blog/rss-comments-entry-11999541.xml</wfw:commentRss><feedburner:origLink>http://www.liamhughes.com/blog/2011/7/4/a-quick-update.html</feedburner:origLink></item><item><title>iOS5 and iCloud: A Follow-up</title><category>iOS 5</category><category>iOS User</category><dc:creator>Liam Hughes</dc:creator><pubDate>Tue, 07 Jun 2011 03:40:20 +0000</pubDate><link>http://feedproxy.google.com/~r/liamhughes/~3/7LEUCqDbv_c/ios5-and-icloud-a-follow-up.html</link><guid isPermaLink="false">862666:10113762:11718363</guid><description>&lt;div&gt;
&lt;p&gt;Here is &lt;a href="http://www.liamhughes.com/blog/2011/6/1/ios-5-and-icloud-a-wishlist.html"&gt;my wishlist&lt;/a&gt; of what would be announced today.&lt;/p&gt;
&lt;p&gt;Let's see if Apple likes me...&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Notifications&lt;/strong&gt;&lt;br /&gt;Check!&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;iCloud: Better Not Just Be MobileMe + Music&lt;/strong&gt;&lt;br /&gt;Check! The built-in sync across apps and devices is definitely a noteable improvement. Also, free.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;iCloud: Better Not Just Be Dropbox&lt;/strong&gt;&lt;br /&gt;Check, again! When I stop to think about it, there was nothing that I wanted iCloud to do that developers couldn't have done with Dropbox. But, much like Game Center when there was already OpenFeint, I'm sure we will see a slew of updates in "the fall" which will introduce over the air syncing of our favourite apps. Although there is one thing that iCloud will be able to do that Dropbox can't: background syncing!&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Wi-Fi Sync to iTunes&lt;/strong&gt;&lt;br /&gt;Check! Funnily enough, as someone who syncs their iPhone every day, I'm almost most excited about this than anything else. Pair that with over the air backups and my iOS devices and my MacBook Pro will barely have to ever meet.&lt;/p&gt;
&lt;p&gt;So, four out of four. Thanks Uncle Apple!&amp;nbsp;&lt;/p&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/liamhughes/~4/7LEUCqDbv_c" height="1" width="1"/&gt;</description><wfw:commentRss>http://www.liamhughes.com/blog/rss-comments-entry-11718363.xml</wfw:commentRss><feedburner:origLink>http://www.liamhughes.com/blog/2011/6/7/ios5-and-icloud-a-follow-up.html</feedburner:origLink></item><item><title>Rhinote - QuickText v1.0.4</title><category>quicktext</category><category>rhinote</category><category>update</category><dc:creator>Liam Hughes</dc:creator><pubDate>Tue, 07 Jun 2011 02:22:34 +0000</pubDate><link>http://feedproxy.google.com/~r/liamhughes/~3/63nextaQwRM/rhinote-quicktext-v104.html</link><guid isPermaLink="false">862666:10113762:11717829</guid><description>&lt;p&gt;Despite all the WWDC news, looks like Apple still had time to approve some app submissions, and as a result v1.0.4 of QuickText is out.&lt;/p&gt;
&lt;p&gt;As a result of user requests, the ability to delete notes rose to the top of the features list. So you can now delete individual notes (by tapping the trash can icon) or all the notes at once (in the settings).&lt;/p&gt;
&lt;p&gt;&lt;a href="http://www.smilesoftware.com/TextExpander/touch/index.html"&gt;TextExpander&lt;/a&gt; is a tool that I've seen around for quite some time now, integrated into a bunch of different productivity apps, including Appigo's &lt;a href="http://www.appigo.com/todo"&gt;Todo&lt;/a&gt;. I have never really got into using it myself. That is until I decided to add it to QuickText. After just a few minutes of playing around with it I can see why it is so popular. So definitely go ahead and try out TextExpander Touch and then turn on the snippet sharing option in QuickText's settings.&lt;/p&gt;
&lt;p&gt;This version of QuickText also has a fair amount of behind the scenes work, most of which you won't notice. What you might notice is that indenting is now preserved and the location tracking for geodata is more frugal when exiting the app.&lt;/p&gt;
&lt;p&gt;Anyway, hit up the link to download the update.&lt;/p&gt;
&lt;p&gt;&lt;a href="http://itunes.apple.com/us/app/rhinote-quicktext/id433352304?mt=8"&gt;iTunes Link&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/liamhughes/~4/63nextaQwRM" height="1" width="1"/&gt;</description><wfw:commentRss>http://www.liamhughes.com/blog/rss-comments-entry-11717829.xml</wfw:commentRss><feedburner:origLink>http://www.liamhughes.com/blog/2011/6/7/rhinote-quicktext-v104.html</feedburner:origLink></item><item><title>iOS 5 and iCloud: A Wishlist</title><category>iOS 5</category><category>iOS User</category><dc:creator>Liam Hughes</dc:creator><pubDate>Wed, 01 Jun 2011 01:13:12 +0000</pubDate><link>http://feedproxy.google.com/~r/liamhughes/~3/3vzKX4A5bmE/ios-5-and-icloud-a-wishlist.html</link><guid isPermaLink="false">862666:10113762:11639127</guid><description>&lt;p&gt;So &lt;a href="http://www.tuaw.com/2011/05/31/steve-jobs-will-introduce-icloud-lion-ios5-at-wwdc-keynote-jun/"&gt;the news&lt;/a&gt; is that it is official that next week Apple will make announcements about Mac OS X Lion, iOS 5 and something called iCloud.&lt;/p&gt;
&lt;p&gt;Here is my wishlist of features as an iOS user. I'll probably write something after the event about what it means for me as a developer.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Notifications&lt;/strong&gt;&lt;br /&gt;One of the rumoured features of iOS 5 is an updated notifications system. Notifications are those little blue rounded-cornered rectangles that pop up telling you about new text messages or that it is your turn in Words with Friends. My two main gripes with the current system is that only one is viewed at a time and that you can't go back and view old notifications. Hopefully both of these will be addressed.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;iCloud: Better Not Just Be MobileMe + Music&lt;/strong&gt;&lt;br /&gt;All we know about iCloud at this point is that it will be "Apple's cloud services offering". At the moment Apple have MobileMe which includes an online version of mail and calendar offerings among a few other things. For the moment I use Google for this stuff. The speculation for the new features are mostly geared around music to go head to head with Amazon's CloudPlayer. As much as I would love to have access to more of my music when out and about, at the moment I have over 24 hours worth of my music on my iPhone, which seems ample most of the time.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;iCloud: Better Not Just Be Dropbox&amp;nbsp;&lt;/strong&gt;&lt;br /&gt;I love &lt;a href="http://db.tt/9k97NMF"&gt;Dropbox&lt;/a&gt;. It ensures that I have access to all my documents anywhere, and that the most recent version of my most important files are backed up almost instantly. But I already have Dropbox and many iOS developers are already implementing Dropbox support for savings files to the cloud. So iCloud has to be Dropbox + something. What I really want to see is a file storage service that heavily links my iPhone to my iPad so that I am working with one set of data on both. I want to be playing Plants vs Zombies on my iPad at home and then when I'm waiting in line at the bank be able to turn on my iPhone and pick up exactly where I left off because my save game has synced between the two devices.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Wi-Fi Sync to iTunes&lt;/strong&gt;&lt;br /&gt;That leads me to Wi-Fi sync. Every morning I plug my iPhone into my computer to update my podcasts and backup my phone, as well as getting the freshest music into my Smart Playlists. I know that Wi-Fi sync could be very draining to the battery, but how about an automatic sync when the device is plugged in to charge, and a manual sync otherwise?&amp;nbsp;&lt;/p&gt;
&lt;p&gt;There's my list. We will know by this time next week whether my dreams came true. The WWDC Keynote is on at 3am on Tuesday local time. I usually try to avoid hearing all the news until the video is released, so fingers crossed it will be out soon after I wake up on Tuesday.&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/liamhughes/~4/3vzKX4A5bmE" height="1" width="1"/&gt;</description><wfw:commentRss>http://www.liamhughes.com/blog/rss-comments-entry-11639127.xml</wfw:commentRss><feedburner:origLink>http://www.liamhughes.com/blog/2011/6/1/ios-5-and-icloud-a-wishlist.html</feedburner:origLink></item><item><title>A Smart Phone Based Quiz Show</title><category>ideas</category><dc:creator>Liam Hughes</dc:creator><pubDate>Sat, 28 May 2011 01:22:41 +0000</pubDate><link>http://feedproxy.google.com/~r/liamhughes/~3/ynD9oWlN8e0/a-smart-phone-based-quiz-show.html</link><guid isPermaLink="false">862666:10113762:11599438</guid><description>&lt;p&gt;&lt;a href="http://www.liamhughes.com/blog/2011/5/11/ideas-an-introduction.html"&gt;Click here for an introduction to my series on ideas.&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;I don't mean a quiz show app, like a Wheel of Fortune app. I mean a television game show where the contestants are allowed to, nay! are required to, use a smart phone to compete.&lt;/p&gt;
&lt;p&gt;The contestants would be able to use their pick of phone (iPhone, Android, etc) with any apps that they choose (web browser, Wikipedia app, calculator, etc).&lt;/p&gt;
&lt;p&gt;There would a number of different segments:&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Question and Answer&lt;/strong&gt;&lt;br /&gt;Much like your typical game show with factual or logical questions. Only because the contestants have access to smart phones along with Wikipedia and Google, the questions could be significantly harder than other game shows. What the contestant needs to do is work out the quickest way to find the answer.&lt;/p&gt;
&lt;p&gt;What is 5.41 miles in kilometers? Do you use the built in calculator,&amp;nbsp;&lt;a href="http://tapbots.com/software/convertbot/"&gt;Convertbot&lt;/a&gt;, &lt;a href="http://www.wolframalpha.com/input/?i=5.41+miles+in+kilometers"&gt;WolframAlpha&lt;/a&gt; or just &lt;a href="http://www.google.com.au/search?sourceid=chrome&amp;amp;ie=UTF-8&amp;amp;q=5.41+miles+in+kilometers"&gt;Google it&lt;/a&gt;?&lt;/p&gt;
&lt;p&gt;Furthermore, any of the contestant's friends or family who are watching at home can call or text in the answer!&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Text Hero&lt;/strong&gt;&lt;br /&gt;A lot like the national and International texting competitions around, the contestants have to type in a particular section of text and SMS it to a predetermined number. They will receive a certain number of points based on speed and accuracy.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Head-to-Head&lt;/strong&gt;&lt;br /&gt;Probably the final segment, this would involve some sort of multiplayer game, such as multiplayer &lt;a href="http://itunes.apple.com/us/app/doodle-jump-be-warned-insanely/id307727765?mt=8&amp;amp;ign-mpt=uo%3D6"&gt;Doodle Jump&lt;/a&gt; or &lt;a href="http://www.epicgames.com/infinityblade/"&gt;Infinity Blade&lt;/a&gt;. The winner gets a whole bunch of points. This could maybe a potential sponsorship opportunity, where app developers pay to have their game featured for a week.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;An additional aspect of the game show would be that there would be an official complementary app so that you can play along with the show. And if you are watching live and you do really well (keeping in mind that you would have to switch back to the app and type in the answers rather than just say them) you may be selected as a future contestant on the show!&lt;/p&gt;
&lt;p&gt;If you can think of any ideas for additional segments, go ahead and leave a comment.&lt;strong&gt;&amp;nbsp;&lt;/strong&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/liamhughes/~4/ynD9oWlN8e0" height="1" width="1"/&gt;</description><wfw:commentRss>http://www.liamhughes.com/blog/rss-comments-entry-11599438.xml</wfw:commentRss><feedburner:origLink>http://www.liamhughes.com/blog/2011/5/28/a-smart-phone-based-quiz-show.html</feedburner:origLink></item><item><title>Rhinote - QuickText v1.0.3</title><category>quicktext</category><category>rhinote</category><category>update</category><dc:creator>Liam Hughes</dc:creator><pubDate>Tue, 24 May 2011 22:56:38 +0000</pubDate><link>http://feedproxy.google.com/~r/liamhughes/~3/Va3UVPmy0Jc/rhinote-quicktext-v103.html</link><guid isPermaLink="false">862666:10113762:11565542</guid><description>&lt;p&gt;Just a few moments ago QuickText v1.0.3 went live.&lt;/p&gt;
&lt;p&gt;Evernote notes can have attached latitude and longitude data, and while I don't ever really use this feature, I know other people do, so I added that feature to QuickText.&lt;/p&gt;
&lt;p&gt;Secondly, a badge number now appears on the app's icon that represents the number of notes queued for upload. For those with background processing, this will update as each note is uploaded.&lt;/p&gt;
&lt;p&gt;Lastly, a bug fix for notes with titles that ended with a space.&lt;/p&gt;
&lt;p&gt;Enjoy!&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/liamhughes/~4/Va3UVPmy0Jc" height="1" width="1"/&gt;</description><wfw:commentRss>http://www.liamhughes.com/blog/rss-comments-entry-11565542.xml</wfw:commentRss><feedburner:origLink>http://www.liamhughes.com/blog/2011/5/25/rhinote-quicktext-v103.html</feedburner:origLink></item><item><title>Rhinote - QuickText v1.0.2</title><category>quicktext</category><category>rhinote</category><category>update</category><dc:creator>Liam Hughes</dc:creator><pubDate>Tue, 17 May 2011 23:29:28 +0000</pubDate><link>http://feedproxy.google.com/~r/liamhughes/~3/AC9JVhjWK04/rhinote-quicktext-v102.html</link><guid isPermaLink="false">862666:10113762:11489308</guid><description>&lt;p&gt;There is definitely an advantage to being a user of your own product. "Eating your own dogfood" as they say in the biz.&lt;/p&gt;
&lt;p&gt;When I started using QuickText I soon realised how annoying it was to have to actually click on a note in the Desktop version of Evernote to see what it said. So v1.0.2 now uses the first line of your note as the title of that note.&lt;/p&gt;
&lt;p&gt;Another bug fix in this one too, so definitely go ahead and update the app!&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/liamhughes/~4/AC9JVhjWK04" height="1" width="1"/&gt;</description><wfw:commentRss>http://www.liamhughes.com/blog/rss-comments-entry-11489308.xml</wfw:commentRss><feedburner:origLink>http://www.liamhughes.com/blog/2011/5/18/rhinote-quicktext-v102.html</feedburner:origLink></item><item><title>Ideas: An Introduction</title><category>ideas</category><dc:creator>Liam Hughes</dc:creator><pubDate>Tue, 10 May 2011 23:54:35 +0000</pubDate><link>http://feedproxy.google.com/~r/liamhughes/~3/JOuhNZVI6cg/ideas-an-introduction.html</link><guid isPermaLink="false">862666:10113762:11424063</guid><description>&lt;p&gt;&lt;a href="http://wondermark.com/541/" target="_blank"&gt;&lt;img style="width: 600px;" src="http://www.liamhughes.com/storage/post-images/2009-08-07-541product.gif?__SQUARESPACE_CACHEVERSION=1305072710429" alt="" /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;I have a lot of ideas.&lt;/p&gt;
&lt;p&gt;In my Evernote I have a notebook with over a dozen independent Rhinote-related ideas alone.&lt;/p&gt;
&lt;p&gt;In another notebook simply called "Ideas" I currently have 48 separate ideas for products or services. Some of them are a bit silly and most of them would probably never survive as a self-sustained business venture. Some of them I rather like and if someone gave me a few large sacks with dollar signs on them I would devote my working life to making as many of them as possible.&lt;/p&gt;
&lt;p&gt;This is all where the "ideas guy" of my subtitle comes from. And one of the segments of this blog will be to turn as many of them from the above comic's "Option 2" to "Option 1" as possible.&lt;/p&gt;
&lt;p&gt;Best case scenario, someone comes along, makes my idea into reality and then hires me to work on it. Worst case scenario, when someone else comes up with it I have documented proof that I thought of it first!&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/liamhughes/~4/JOuhNZVI6cg" height="1" width="1"/&gt;</description><wfw:commentRss>http://www.liamhughes.com/blog/rss-comments-entry-11424063.xml</wfw:commentRss><feedburner:origLink>http://www.liamhughes.com/blog/2011/5/11/ideas-an-introduction.html</feedburner:origLink></item></channel></rss>

