<?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>My fourth descent into ADD &#187; Apple</title>
	<atom:link href="http://jordanbalagot.com/blog/category/apple/feed/" rel="self" type="application/rss+xml" />
	<link>http://jordanbalagot.com/blog</link>
	<description>Just another WordPress weblog</description>
	<lastBuildDate>Sat, 19 Jun 2010 05:29:09 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Keep your MIDI keyboard active with Mainstage and Applescript: Keep Mainstage Running.app</title>
		<link>http://jordanbalagot.com/blog/2010/04/08/keep-your-midi-keyboard-active-with-mainstage-and-applescript/</link>
		<comments>http://jordanbalagot.com/blog/2010/04/08/keep-your-midi-keyboard-active-with-mainstage-and-applescript/#comments</comments>
		<pubDate>Thu, 08 Apr 2010 21:34:29 +0000</pubDate>
		<dc:creator>jordan314</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Gear]]></category>
		<category><![CDATA[Logic 8]]></category>
		<category><![CDATA[Music]]></category>
		<category><![CDATA[audio]]></category>
		<category><![CDATA[originals]]></category>

		<guid isPermaLink="false">http://jordanbalagot.com/blog/?p=360</guid>
		<description><![CDATA[
I know I&#8217;m not the only one with this problem: You have this giant MIDI keyboard that doesn&#8217;t produce sound on its own, and most of the time, playing it doesn&#8217;t do anything. You have to launch logic, or mainstage, or ableton, or digital performer, open a new project, setup a new patch, and then [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://jordanbalagot.com/blog/wp-content/uploads/2010/04/keepmainstagerunning.jpg"><img src="http://jordanbalagot.com/blog/wp-content/uploads/2010/04/keepmainstagerunning.jpg" alt="" title="Keep Mainstage Running v 1.0" width="643" height="352" class="aligncenter size-full wp-image-366" border="0" /></a></p>
<p>I know I&#8217;m not the only one with this problem: You have this giant MIDI keyboard that doesn&#8217;t produce sound on its own, and most of the time, playing it doesn&#8217;t do anything. You have to launch logic, or mainstage, or ableton, or digital performer, open a new project, setup a new patch, and then start playing. In music classes, this can be a distraction, and compositionally, it can get in the way between you and your creativity.</p>
<p>I&#8217;d keep MainStage open all the time, but there are times when I don&#8217;t want a secondary keyboard sound when I&#8217;m using Finale or Logic. Ideally, anytime I&#8217;m not using Finale or Logic, I&#8217;d like MainStage to be running.</p>
<p>I&#8217;ve written a simple OS X application in applescript that checks every 30 seconds to see if Logic or Finale are running, and if they&#8217;re not, launches MainStage in the background. It takes up very little CPU and can run continuously. Here is the code:</p>
<div class="codesnip-container" >
<div class="applescript codesnip" style="font-family:monospace;"><span class="kw3">repeat</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span class="kw3">tell</span> <span class="kw1">application</span> <span class="st0">&quot;System Events&quot;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span class="kw3">if</span> <span class="kw2">not</span> <span class="br0">&#40;</span><span class="kw1">exists</span> process <span class="st0">&quot;Logic Pro&quot;</span><span class="br0">&#41;</span> <span class="kw3">then</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span class="kw3">if</span> <span class="kw2">not</span> <span class="br0">&#40;</span><span class="kw1">exists</span> process <span class="st0">&quot;Finale 2010&quot;</span><span class="br0">&#41;</span> <span class="kw3">then</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span class="kw3">if</span> <span class="kw2">not</span> <span class="br0">&#40;</span><span class="kw1">exists</span> process <span class="st0">&quot;MainStage&quot;</span><span class="br0">&#41;</span> <span class="kw3">then</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span class="kw3">set</span> front_app <span class="kw3">to</span> <span class="br0">&#40;</span><span class="kw1">path to</span> frontmost <span class="kw1">application</span> <span class="kw2">as</span> Unicode <span class="kw1">text</span><span class="br0">&#41;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span class="kw3">tell</span> <span class="kw1">application</span> <span class="st0">&quot;MainStage&quot;</span> <span class="kw3">to</span> <span class="kw1">activate</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span class="kw3">set</span> visible <span class="kw3">of</span> process <span class="st0">&quot;MainStage&quot;</span> <span class="kw3">to</span> <span class="kw1">false</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span class="kw3">tell</span> <span class="kw1">application</span> front_app <span class="kw3">to</span> <span class="kw1">activate</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span class="kw3">end</span> <span class="kw3">if</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span class="kw3">end</span> <span class="kw3">if</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span class="kw3">end</span> <span class="kw3">if</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span class="kw3">end</span> <span class="kw3">tell</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; delay 30<br />
<span class="kw3">end</span> <span class="kw3">repeat</span></div>
</div>
<p>If you&#8217;re on mac you can open that code in the script editor by clicking<br />

<a href="applescript://com.apple.scripteditor?action=new&script=repeat%0A%09tell%20application%20%22System%20Events%22%0A%09%09if%20not%20%28exists%20process%20%22Logic%20Pro%22%29%20then%0A%09%09%09if%20not%20%28exists%20process%20%22Finale%202010%22%29%20then%0A%09%09%09%09if%20not%20%28exists%20process%20%22MainStage%22%29%20then%0A%09%09%09%09%09set%20front_app%20to%20%28path%20to%20frontmost%20application%20as%20Unicode%20text%29%0A%09%09%09%09%09tell%20application%20%22MainStage%22%20to%20activate%0A%09%09%09%09%09tell%20application%20front_app%20to%20activate%0A%09%09%09%09end%20if%0A%09%09%09end%20if%0A%09%09end%20if%0A%09end%20tell%0A%09delay%2030%0Aend%20repeat">here</a>. (Thanks to <a href="http://macdevelopertips.com/category/applescript" target="_blank">Mac Developer tips</a> for that trick.)
</p>
<p><strong>Download</strong><br />
I have created two downloadable versions, a regular version and a silent version that does not appear in the dock.</p>
<p>
<style type="text/css">
div.download {
font-size: 20px;
border: 1 px solid;
background: #88E38B;
width: 200px;
padding: 25px;
align: center;
}
</style>

<div class="download"><a href="http://jordanbalagot.com/apps/keepmainstagerunning.zip">Download Here</a></div>
</p>
<p>Note that the silent version is VERY silent, i.e. you do not see it in the dock, nor in the force quit window. A quick way to kill it is to run &#8220;killall applet&#8221; in the terminal, though this will kill other applescripts you have running as well.</p>
<p>A more precise way to kill it is to run this command in the terminal:<br />
ps -ax | grep -i &#8220;keep mainstage&#8221;</p>
<p>Get the first process number listed (usually 5 digits) and then run:<br />
kill XXXXX (where XXXXX is the process number)</p>
<p>You can point to either of these apps in your System Preferences > Accounts > Login Items to have them run automatically when you start your computer.</p>
<p>You should set MainStage&#8217;s startup action in preferences to &#8220;Open Most Recent Concert&#8221;. I have a simple concert with just a piano that I keep open.</p>
<p>Included in the download above are instructions on how to make the silent app run in the background again if you modify it.</p>
<p><strong>Known Bugs with 1.0:</strong><br />
For some reason you have to force-quit the non-silent version, quitting alone does not work.</p>
<p>MainStage has an annoying behavior of grabbing focus once a concert has loaded. The script hides MainStage after it does this, but you will still see it briefly pop up when it launches.</p>
<p>The script will not launch Mainstage if you have Logic or Finale running but with no documents open.</p>
<p>The script may launch Mainstage at annoying times (such as shutdowns or software updates). I&#8217;d recommend just shutting down with mainstage running, and clicking &#8220;don&#8217;t save&#8221; if it asks.</p>
]]></content:encoded>
			<wfw:commentRss>http://jordanbalagot.com/blog/2010/04/08/keep-your-midi-keyboard-active-with-mainstage-and-applescript/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Video Demo of the incredible iPhone iGOG Mic Trigger Mode</title>
		<link>http://jordanbalagot.com/blog/2009/10/25/video-demo-of-the-incredible-iphone-igog-mic-trigger-mod/</link>
		<comments>http://jordanbalagot.com/blog/2009/10/25/video-demo-of-the-incredible-iphone-igog-mic-trigger-mod/#comments</comments>
		<pubDate>Sun, 25 Oct 2009 04:14:22 +0000</pubDate>
		<dc:creator>jordan314</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Gear]]></category>
		<category><![CDATA[New Instruments]]></category>
		<category><![CDATA[audio]]></category>
		<category><![CDATA[drumming]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[multitouch]]></category>
		<category><![CDATA[science]]></category>

		<guid isPermaLink="false">http://jordanbalagot.com/blog/?p=331</guid>
		<description><![CDATA[I recently saw a demo of the incredible new iGOG drum trigger program on Create Digital Music. This is the best drum app for the iPhone I&#8217;ve ever seen, because it processes the microphone input at the same time you&#8217;re playing to determine velocity. The drums are multi-sampled and hitting different areas of the pads [...]]]></description>
			<content:encoded><![CDATA[<p>I recently saw a demo of the incredible new iGOG drum trigger program on <a href="http://createdigitalmusic.com/2009/10/21/going-mobile-velocity-sensitive-touch-pads-on-an-iphone-igog-says-yes/" target="_blank">Create Digital Music</a>. This is the best drum app for the iPhone I&#8217;ve ever seen, because it processes the microphone input at the same time you&#8217;re playing to determine velocity. The drums are multi-sampled and hitting different areas of the pads also causes them to respond differently (open/closed Hi Hat, Ride Cymbal / Bell).</p>
<p>iGog is developed by Wave Machine Labs, the same people who created the flagship drum replacement program, <a href="http://www.drumagog.com/" target="_blank">Drumagog</a>. It is $5 and available in the iTunes store and <a href="http://www.wavemachinelabs.com/igog/" target="_blank">also here</a>. </p>
<p>I downloaded the demo and tried it out. The mic trigger mode is amazing! I made a demo of it on youtube:</p>
<p><object width="560" height="340"><param name="movie" value="http://www.youtube.com/v/JqyccNK9Ee0&#038;hl=en&#038;fs=1&#038;"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/JqyccNK9Ee0&#038;hl=en&#038;fs=1&#038;" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="560" height="340"></embed></object></p>
<p>It goes crazy when you sing into the mic too, which I forgot to demonstrate. The program saves MIDI, WAVs, and allows you to loop and sequence, so it&#8217;s a great program to have on the road or to create realistic sounding drum loops.</p>
<p>The only drawback with this app is that it requires headphones for mic triggering mode, and performance degrades in pad mode if you use speakers, which limits the possibilities for live performance. Mic triggering only works with one instrument at a time &#8211; it would be nice if, like Drumagog, it used frequency analysis to trigger multiple samples at once. Still though, for now the sequencing and looping make up for that.</p>
<p>With sequencing, I would like to see an undo function, or a track editor &#8211; once you&#8217;ve recorded, it&#8217;s added permanently, so it&#8217;s easy to mess up a good sequence with a bad take. If you&#8217;re recording on different instruments, then this is easy to fix later in the MIDI file with a piano roll, but it would be a handy feature on the road.</p>
<p>I always wanted to create a similar drum pad app using the iPhone&#8217;s accelerometers. I would have used the three axises to trigger different samples, so that you tap on the top for bass, side for snare, and back for hi hat. I&#8217;m pretty sure this app works better than my app ever would &#8211; it also works if you tap on the iPhone body. If they could combine accelerometer data into this app though and separate samples per axis, and also allow you to transit MIDI or OSC over WIFI, this would be the ideal drum trigger.</p>
<p>Still though, what an incredible app, and a great value for $5! In-app purchase of free and pay per download drum kits are also available.</p>
]]></content:encoded>
			<wfw:commentRss>http://jordanbalagot.com/blog/2009/10/25/video-demo-of-the-incredible-iphone-igog-mic-trigger-mod/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Convert controller data in Logic</title>
		<link>http://jordanbalagot.com/blog/2009/07/26/convert-controller-data-in-logic/</link>
		<comments>http://jordanbalagot.com/blog/2009/07/26/convert-controller-data-in-logic/#comments</comments>
		<pubDate>Mon, 27 Jul 2009 02:53:56 +0000</pubDate>
		<dc:creator>jordan314</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Logic 8]]></category>
		<category><![CDATA[Music]]></category>
		<category><![CDATA[finale]]></category>

		<guid isPermaLink="false">http://jordanbalagot.com/blog/?p=313</guid>
		<description><![CDATA[In Logic, often when I import a MIDI file from Finale, Finale puts volume data all over the place and the fader in the mixer bounces up and down as a result. I wanted an easy way to convert this data to expression data so that I could regain control of my fader.
There are two [...]]]></description>
			<content:encoded><![CDATA[<p>In Logic, often when I import a MIDI file from Finale, Finale puts volume data all over the place and the fader in the mixer bounces up and down as a result. I wanted an easy way to convert this data to expression data so that I could regain control of my fader.</p>
<p>There are two ways to do this:</p>
<p>1) Open up the piano roll for the selected region (&#8216;P&#8217;)<br />
2) Click on Functions > Transform<br />
3) Click Presets: New Parameter set, Create<br />
4) Choose Status = Control<br />
5) Choose Data Byte 1 = 7<br />
6) Underneath Data Byte 1 = 7, choose Fix and set it to 11.<br />
7) Select and operate.<br />
In this method, you can reuse this transformer you created.</p>
<p>The other way to do this is:<br />
1) Open up the event view for the selected region (&#8216;E&#8217;)<br />
2) Click on all of the filter buttons except controller<br />
3) Find an event with Num=7, Length/Info Volume<br />
4) Click Edit > Select Similar Events<br />
5) Click on one of the 7s in the Num column and change it to 11<br />
All of the volume events should be changed to expression.</p>
]]></content:encoded>
			<wfw:commentRss>http://jordanbalagot.com/blog/2009/07/26/convert-controller-data-in-logic/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>No file or output access to iPhone MP3 library &#8211; 3.0 SDK still too restrictive</title>
		<link>http://jordanbalagot.com/blog/2009/03/29/no-file-access-to-iphone-mp3-library-30-sdk-still-to-restrictive/</link>
		<comments>http://jordanbalagot.com/blog/2009/03/29/no-file-access-to-iphone-mp3-library-30-sdk-still-to-restrictive/#comments</comments>
		<pubDate>Sun, 29 Mar 2009 05:39:56 +0000</pubDate>
		<dc:creator>jordan314</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[audio]]></category>
		<category><![CDATA[bad ideas]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[multitouch]]></category>

		<guid isPermaLink="false">http://jordanbalagot.com/blog/?p=273</guid>
		<description><![CDATA[So the iPhone 3.0 SDK does allow you to play music from the iPod library from within your application. However, you do not have file access to the mp3s, nor can you control the output other than the standard iPod player controls, i.e. play, stop, skip, and volume. This means you can&#8217;t add effects, you [...]]]></description>
			<content:encoded><![CDATA[<p>So the iPhone 3.0 SDK does allow you to play music from the iPod library from within your application. However, you do not have file access to the mp3s, nor can you control the output other than the standard iPod player controls, i.e. play, stop, skip, and volume. This means you can&#8217;t add effects, you can&#8217;t speed up or slow down a song, and I don&#8217;t think you can even crossfade songs from the library.</p>
<p>That sucks. The 3.0 SDK is still too restrictive. Imagine the amazing 3.0 apps that would come out if you could manipulate the output of your library. A real scratch interface for DJs. A live BPM counter. Reaktor-like stutter and loop apps. A pedometer that syncs music to your step. All of these ideas are things I wanted to try with the 3.0 SDK, and none of them are possible.</p>
<p>Likewise, accessories that come out are more or less going to be limited to one application. You could make a MIDI interface but it&#8217;s only going to work with your app. You could make a keyboard accessory, but it&#8217;s only going to work with your application. You&#8217;d have to copy and paste what you typed from your application to other apps. Even if you allowed other developers to use your keyboard framework to allow it to work in their applications, the keyboard still wouldn&#8217;t work in native apps like Safari, Mail, SMS, etc.</p>
<p>Apple, the iPhone is an amazing device, and you&#8217;re still being far too restrictive with it! Opening up the library to at least read access, allowing device makers to write drivers for their accessories, and giving users and developers at least limited shared file system access would do wonders for the potential for the iPhone.</p>
]]></content:encoded>
			<wfw:commentRss>http://jordanbalagot.com/blog/2009/03/29/no-file-access-to-iphone-mp3-library-30-sdk-still-to-restrictive/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>iPhone OS 3.0 &#8211; First look</title>
		<link>http://jordanbalagot.com/blog/2009/03/18/iphone-os-30-first-look/</link>
		<comments>http://jordanbalagot.com/blog/2009/03/18/iphone-os-30-first-look/#comments</comments>
		<pubDate>Wed, 18 Mar 2009 05:23:31 +0000</pubDate>
		<dc:creator>jordan314</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[multitouch]]></category>

		<guid isPermaLink="false">http://jordanbalagot.com/blog/?p=229</guid>
		<description><![CDATA[Edit: Wow!! Beta 2 is out, and is running a lot smoother. Bugs that have been fixed are now crossed out.
I installed the iPhone 3.0 beta OS tonight and am pretty impressed. If you are a registered iphone developer ($99), you can download the beta and install it on your phone. A warning though &#8211; [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Edit</strong>: Wow!! Beta 2 is out, and is running a lot smoother. Bugs that have been fixed are now <span style="text-decoration: line-through;">crossed out</span>.</p>
<p><a href="http://jordanbalagot.com/blog/wp-content/uploads/2009/03/img_07751.jpg" target="_blank"><img class="alignnone size-thumbnail wp-image-250" title="iphone 3.0 home screen" src="http://jordanbalagot.com/blog/wp-content/uploads/2009/03/img_07751-150x150.jpg" alt="iphone 3.0 home screen" hspace="5" vspace="5" width="150" height="150" align="left" /></a>I installed the iPhone 3.0 beta OS tonight and am pretty impressed. If you are a registered iphone developer ($99), you can download the beta and install it on your phone. A warning though &#8211; according to the PDF apple provides, once you install the beta you cannot restore your phone to a previous version. So if the beta sucks, you&#8217;re out of luck (!).</p>
<p>Luckily, so far it doesn&#8217;t suck.</p>
<p>The update comes with an .ipsw file and no documentation. Double clicking it doesn&#8217;t work &#8211; you have to option-click (or alt-click in windows, I assume) the &#8220;restore&#8221; button in iTunes, and then it prompts you for a firmware file and you point it to your downloaded .ipsw file.</p>
<p>Back up your phone first by syncing it before installing, and all of your data will be saved.</p>
<p>The install took forever &#8211; maybe 30 minutes to install the OS, another hour to restore my backup, and then another hour and a half to install all of my applications. But I have over 140 applications and the rest is filled with music, so I was expecting this.</p>
<p><a href="http://jordanbalagot.com/blog/wp-content/uploads/2009/03/img_0767.jpg" target="_blank"><img class="alignnone size-thumbnail wp-image-235" title="horizontal notes, copy and paste" src="http://jordanbalagot.com/blog/wp-content/uploads/2009/03/img_0767-150x150.jpg" alt="horizontal notes, copy and paste" hspace="5" vspace="5" width="150" height="150" align="right" /></a>The first thing I tried to figure out was where notes would sync on the mac. They weren&#8217;t anywhere to be found in iTunes. They weren&#8217;t initially showing up in Mail either, but I tried composing a new note in Mail and then the rest of my iphone ones showed up. In Mail, they look exactly the same as on the iphone, and you can sort them by name or date. When I resynced, it successfully put my new notes from the mac back on the iphone. Unfortunately, todo items in mail still do not sync with the phone.</p>
<p><a href="http://jordanbalagot.com/blog/wp-content/uploads/2009/03/img_0773.jpg" target="_blank"><img class="alignnone size-thumbnail wp-image-244" title="iphone 3.0 email search" src="http://jordanbalagot.com/blog/wp-content/uploads/2009/03/img_0773-150x150.jpg" alt="iphone 3.0 email search" hspace="5" vspace="5" width="150" height="150" align="left" /></a>Notes on the phone are searchable now, and the results show up as you type, which is great. Landscape typing in notes and mail is great too. You still can&#8217;t sort notes by name, which is annoying. But you can email notes, and now, you can copy and paste too! Copying and pasting worked between notes and between apps.</p>
<p>Mail has an awesome search function, and you can search by From, To, Subject, or All. Yahoo mail has a &#8220;continue search on server&#8221; function, for emails no longer on your phone, but it doesn&#8217;t seem to be working yet. Gmail and my other POP/<span style="text-decoration: line-through;">IMAP</span> email accounts do not have this function.</p>
<p><a href="http://jordanbalagot.com/blog/wp-content/uploads/2009/03/img_0766.jpg" target="_blank"><img class="size-thumbnail wp-image-234" title="iphone 3.0 spotlight" src="http://jordanbalagot.com/blog/wp-content/uploads/2009/03/img_0766-150x150.jpg" alt="spotlight example" hspace="5" vspace="5" width="150" height="150" align="left" /></a>Spotlight is fantastic. It searches your contacts first, and then apps, emails, and music  come up a second or two later. The interface is great, the little category icons butt up against each other and knock each other out of the way as you scroll. It doesn&#8217;t seem to search bookmarks though. If you hit home in spotlight, it brings you back to the first page (which is to the right of spotlight).</p>
<p>I thought I was missing some apps at first, because I have three blank spots on the first page, but I think it just consolidated my three blank spots onto the first page, when they were on other pages before. (Edit: My custom Xcode apps were not installed automatically.) Every time I restore my phone my apps also get resorted into alphabetical order, more or less. This happened again today. However, I was really impressed that my app data was maintained&#8211;Amazon Kindle still knew what page I was in my Reacher novel, and VoiceNote&#8217;s files didn&#8217;t disappear. Whew!</p>
<p><a href="http://jordanbalagot.com/blog/wp-content/uploads/2009/03/img_0770.jpg" target="_blank"><img class="alignnone size-thumbnail wp-image-238" title="iphone 3.0 horizontal mail" src="http://jordanbalagot.com/blog/wp-content/uploads/2009/03/img_0770-150x150.jpg" alt="iphone 3.0 horizontal mail" hspace="5" vspace="5" width="150" height="150" align="left" /></a>Copy and paste is great, and is more intuitive than I thought, though its behavior differs per application. In notes, double clicking brings up a character-by-character selection box that allows you to cut, copy or paste. In mail though, you have to double click and then hold to bring up the selection box. Just holding brings up a &#8220;Select|Select All&#8221; dialog.</p>
<p>When you&#8217;re writing a mail, clicking and holding moves the magnifying glass. Double clicking and holding brings up the cut/copy/paste menu.</p>
<p><a href="http://jordanbalagot.com/blog/wp-content/uploads/2009/03/img_0769.jpg" target="_blank"><img class="alignnone size-thumbnail wp-image-237" title="iphone 3.0 copy and paste in safari" src="http://jordanbalagot.com/blog/wp-content/uploads/2009/03/img_0769-150x150.jpg" alt="iphone 3.0 copy and paste in safari" hspace="5" vspace="5" width="150" height="150" align="left" /></a>In Safari, it&#8217;s the most different. You can still double click to zoom in or zoom out. Double click and holding, or just holding on a paragraph bring up the same copy menu. But this time, it&#8217;s contextual and based on paragraphs. A box appears with four dots on the top, bottom, left and right. You can drag the dots outward to expand other paragraphs or page elements, including photos and tables. However if you drag the side dots inward, the paragraph becomes a regular text selection. <del datetime="2009-03-18T19:21:39+00:00">But you can&#8217;t edit the text selection start and end points.</del> You can, it just wasn&#8217;t working on the particular page I was on.</p>
<p>The amount you can copy and paste seems to be unlimited. I copied the whole page of an NPR article, pasted it and emailed it to myself, and the images and layout came through perfectly in HTML format (using remote URLs for image srcs). I don&#8217;t think even outlook does this that well.</p>
<p>One disappointment: Since phone does not have a regular text field in the dialer, you can&#8217;t paste numbers into it to call.</p>
<p>Texting is much improved! There is a little camera icon where you can take a photo or &#8220;choose existing&#8221;, for MMS. I hear from gizmodo that MMS isn&#8217;t working yet&#8211;I haven&#8217;t tried. Also, doesn&#8217;t MMS support other content, such as videos? I wonder if the iphone supports receiving videos, sound, and animations. Still, sending photo MMS messages is a welcome addition.</p>
<p><a href="http://jordanbalagot.com/blog/wp-content/uploads/2009/03/img_0772.jpg" target="_blank"><img class="alignnone size-thumbnail wp-image-242" title="iphone 3.0 SMS thread management" src="http://jordanbalagot.com/blog/wp-content/uploads/2009/03/img_0772-150x150.jpg" alt="iphone 3.0 SMS thread management" hspace="5" vspace="5" width="150" height="150" align="left" /></a>There&#8217;s a new edit button in the threaded discussions, and if you click on it, each text bubble gets a dot next to it, similar to editing in mail. However, here you can delete or forward individual texts! You can even forward multiple messages &#8212; it appends them into one. Awesome.</p>
<p>The messages icon has changed&#8211;they removed SMS from it and call it Messages, since it&#8217;s an SMS and MMS app now. It looks kind of blank to me, but I&#8217;m sure I&#8217;ll get used to it.</p>
<p><a href="http://jordanbalagot.com/blog/wp-content/uploads/2009/03/img_0768.jpg" target="_blank"><img class="alignnone size-thumbnail wp-image-236" title="iphone 3.0 voice memo" src="http://jordanbalagot.com/blog/wp-content/uploads/2009/03/img_0768-150x150.jpg" alt="iphone 3.0 voice memo" hspace="5" vspace="5" width="150" height="150" align="left" /></a>Voice memos is great&#8211;it&#8217;s a pretty app, with a mini analog VU meter at the bottom and a giant microphone. There&#8217;s a record button, which doubles as a pause button, and a stop button which doubles as a play/list recordings button to view your recordings. Memos are saved as m4a, which is impressive but annoying (aiff or wav would be better), but you can share them via email or MMS. Hmm. I wonder if other phones will support m4a. It probably converts them before sending them. Ok, so the voice memo program is how you would send an audio MMS to a friend&#8211;you have no option to attach an audio file in the messaging app. But as far as I can tell you can only send recordings from your iphone&#8211;you couldn&#8217;t send funny sound clips or music unless you rerecorded them. I still wish this phone had an accessible file system.</p>
<p>One downside to the voice memos &#8211; <del datetime="2009-03-18T04:10:48+00:00">they don&#8217;t sync to your computer</del>. Hey, actually they do. iTunes shows a new playlist on the iPhone called &#8220;Voice Memos&#8221;, but you can&#8217;t edit it or drag files from it. &#8220;Voice Memos&#8221; doesn&#8217;t show up in the iPod player on the phone, which is good. But the voice memos DO show up on your computer&#8217;s library in &#8220;Unknown Album&#8221; and in a Voice Memos playlist. Files are named with timestamps, such as 3/17/09. However it&#8217;s embarrassing that it puts them in your Library&#8211;imagine having your iTunes on shuffle at a party and then a memo comes up that says, &#8220;remind myself to fire Jenny,&#8221; or some personal journal entry or something.<br />
I&#8217;m really excited for push notifications and turn-by-turn directions&#8230;We won&#8217;t get to see the fruit of this labor until the update is officially released and developers are allowed to publish 3.0 applications. I&#8217;m curious how push notifications will work (does the application get to do *anything* with the data coming in? Automatically or only if you allow it? What&#8217;s the limit on the length of data? I assume the popup notification allows you to open the application it&#8217;s attributed to, at least). Bluetooth sharing, custom protocols, bonjour, wifi sharing, voice and video streaming&#8230;this all looks very promising.</p>
<p>Google maps doesn&#8217;t look any different. I haven&#8217;t seen any fully embedded maps in 3.0 applications yet, obviously.</p>
<p>YouTube does not work! Every button in the application gives me the message &#8220;Cannot connect to YouTube&#8221;. When I click on the new &#8220;sign in&#8221; button I also get the same error. Embedded youtube links from safari do not work either. <img src='http://jordanbalagot.com/blog/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' />  I assume they will fix this soon. (Edit: <span style="text-decoration: line-through;">this is a bug that occurs when you restore a backup on the phone</span>.)</p>
<p>The first time I launched voicemail, it called it directly, but when I hung up and loaded the voicemail tab again, then visual voicemail loaded.</p>
<p>So far, other than YouTube, I&#8217;ve only noticed two things in 3.0 that are worse than 2.2.1. One, there are a few additional lags that have come up&#8211;one was displayed prominently when they demoed the messaging app in the keynote. I<span style="text-decoration: line-through;">&#8216;ve noticed especially in notes and mail, there are some new delays clicking on notes or messages, and delays when the apps first launch.</span></p>
<p><span style="text-decoration: line-through;">The other problem was I had difficulty connecting to my WIFI network at first once I first booted the phone. Previously the iphone had had no problem, in fact it connected faster and more reliably than any of my computers. But tonight I&#8217;ve had to connect three times. It could be a coincidence or it could be a 3.0 bug&#8211;only time will tell.</span></p>
<p>The app store still needs improvement&#8211;it&#8217;s exactly the same, too hard to find anything except for top 10 lists of apps. And video, access to the file system, categorization of apps, flash, etc. would all be nice. But overall, I&#8217;m *very* happy with this update.</p>
<hr /><a href="http://jordanbalagot.com/blog/wp-content/uploads/2009/03/img_0776.jpg" target="_blank"><img class="alignnone size-thumbnail wp-image-253" title="iphone 3.0 youtube broken" src="http://jordanbalagot.com/blog/wp-content/uploads/2009/03/img_0776-150x150.jpg" alt="iphone 3.0 youtube broken" hspace="5" vspace="5" width="150" height="150" align="left" /></a>Addendum after a couple more hours of playing. Youtube does not work at all. Neither does MMS (I tried). Hopefully they will fix this soon.</p>
<p>I found out the hard way this morning that the alarm clock no longer sounds or even vibrates if you have your phone in silent mode. (It used to). I just had this silent visual notification, &#8220;Alarm&#8221;, that I found 45 minutes later than I was supposed to get up. Thanks, iPhone! (My silent/vibrate-only ringtone on my <a href="/" target="_blank">home page</a> should still work in normal mode).</p>
<p>Now you can turn off multiple audio notifications of text messages. Some people were thrilled when this was turned on, but I for one am glad to be able to turn it back off.</p>
<p>Camera has a new little thumbnail next to the shutter button that shows the last photo you took. It&#8217;s helpful to check if you took a blurry photo, but it just takes you back to the photo library. It&#8217;s also a little slow.</p>
<p>The iPhone seems to have a new way of handling WIFI authentication. At school for instance we have open WIFI but get redirected to a login page to log in with our school ID. Safari now has a new popup that shows this page. What&#8217;s amazing is that when I&#8217;m *checking my email*, a popup will come up with the HTML log in page to allow me to authenticate. I don&#8217;t know how it does this &#8211; the iphone must detect the redirection. Macs and PCs don&#8217;t even do this. When have you tried to check your mail and had Firefox pop up to allow you to authenticate with the router and finish checking your email?</p>
<p>Unfortunately, the pop up authentication doesn&#8217;t always work yet. Sometimes it like rotates itself and then you can&#8217;t see or type anymore. I can still authenticate with the original page in Safari though. I have noticed a couple more rotation bugs, such as in mail it sometimes doesn&#8217;t redraw right. It will be cool when they get this worked out.</p>
<p><a href="http://jordanbalagot.com/blog/wp-content/uploads/2009/03/img_0787.jpg" target="_blank"><img class="alignnone size-thumbnail wp-image-254" title="iphone 3.0 autofill" src="http://jordanbalagot.com/blog/wp-content/uploads/2009/03/img_0787-150x150.jpg" alt="iphone 3.0 autofill" hspace="5" vspace="5" width="150" height="150" align="left" /></a>Autofill is great. It was greyed out at first&#8211;I had to turn it on in settings. It&#8217;s pretty clever&#8211;it detects email fields and uses your mail account data to fill in possible from: addresses as you type, with a little cancel &#8220;x&#8221; button similar to spell check, but yellow. It has some quirks&#8211;I started typing an @ symbol thinking that it would change my email address, and instead it auto-filled and then put the @ after my email. And I wish it used a dropdown autofill of possibilites instead of just one. But overall it&#8217;s a big timesaver, especially with passwords and that WIFI authentication screen mentioned above.</p>
<p>Safari now has &#8220;next&#8221; and &#8220;previous&#8221; buttons for forms similar to tab and shift-tab on a computer. These are a great time saver. <span style="text-decoration: line-through;">However the cursor seems to have disappeared in forms, so it&#8217;s hard to see where you&#8217;re typing anymore!</span> <span style="text-decoration: line-through;">There&#8217;s also still a bug where the shift button is enabled but not highlighted when you start typing in forms.</span></p>
<p>Commenters have mentioned that there&#8217;s a &#8220;Find my iPhone&#8221; setting in mobileme. I haven&#8217;t played with this and it doesn&#8217;t seem to be working yet but it sounds cool. Thieves beware!</p>
<p>Contacts can be sorted into groups, but you can&#8217;t edit groups on the phone, so I assume you have to do this on the computer. I would love to have a phone-number only group, and am going to see if I can do this on the computer.</p>
<p>I&#8217;m noticing that the iPod app isn&#8217;t finding some songs it should. Like if I search for Passiflora in songs it can&#8217;t find it even though it&#8217;s in my playlists and library, and it can&#8217;t find Babel Gilberto if I search in artists. However it does search better if I search in spotlight (well, it finds Passiflora, but not Babel). It&#8217;d be neat if you could make playlists based on searches, but right now it doesn&#8217;t even play the temporary search list you created, instead it jumps to the album of the song you selected.</p>
<p>Mail&#8230;I still wish there were two more functions: Mark as read and Mark all as read. I could do this with windows mobile and it was a huge time saver.</p>
<p><span style="text-decoration: line-through;">I&#8217;m finding a couple more lags in Safari and other native apps that are frustrating.</span> But in general third party apps are also more responsive, and shut down immediately if you hit home after accidentally clicking on one.</p>
<p>Shake to shuffle: it wasn&#8217;t working at first but now it is. Sweet! I think you just have to wait for the first song to play a while. Sometimes turning the shuffle button on and off first helps.</p>
<hr />
<p>Another addendum after another day of playing.</p>
<p><span style="text-decoration: line-through;">Running into more crashes as commenters have mentioned. The most annoying is when the phone app itself crashes. Settings crashes too sometimes, often after you click on a setting that&#8217;s supposed to bring up another column. I&#8217;ve had two big crashes, once where sound wouldn&#8217;t play in any app and I couldn&#8217;t launch Ipod, another where the screen wouldn&#8217;t turn on. Apple, do you have a bug report page for this beta?? So far it&#8217;s always been recoverable but it definitely feels buggy. Obviously it&#8217;s buggy since it&#8217;s a beta, but after a few days&#8217; use the bugs are becoming distracting.</span></p>
<p>Still more cool features though&#8230;In SMS, instead of a big black screen blocking the keyboard and showing a giant progress bar when you send a text, a tiny progress bar animates and shows up at the top and allows you to keep typing while it sends the first one. It doesn&#8217;t play the outgoing ichat noise anymore though once it sends. Also, as many users have complained, it still doesn&#8217;t allow you to cancel an outgoing text, and often it autocorrects the last word I typed and I still claw at the screen while I watch the spelling error send and I can&#8217;t do anything about it. Still though, the small progress bar and faster texting is an improvement.</p>
<p><a href="http://theiphoneblog.com" target="_blank">theiphoneblog.com</a> mentioned that the podcast interface is different and you can now download over 10 MB podcasts over 3G! Indeed the interface is different, and I love the changes. You can listen to podcasts at 2X or .5X speed. There is also a convenient back-30-seconds button which is useful since the tiny progress bar isn&#8217;t accurate enough for long podcasts. There also is a little mail icon that doesn&#8217;t seem to do anything yet. The new/half listened to / old blue dot indicator also doesn&#8217;t always seem to be working correctly, but the podcasts do resume where you left off.</p>
<p>I did get the new WIFI authentication screen to finally work, and I LOVE it! I love that if I need to authenticate when checking my mail I can do it in one step. I still don&#8217;t know how they did this&#8211;maybe it pings a test site on port 80 first and checks for a redirect before the POP/IMAP/exchange networking starts. The autofill buttons show up on the authentication page, but currently it is not possible to save/autofill the fields since the save password prompt would ordinarily appear on the next page in Safari, and instead you&#8217;re returned to mail. Hopefully that will be fixed, and then this will truly be an awesome function.</p>
<p>Users are reporting that some third party apps no longer work, like facebook. Edit: oh, <a href="http://m4dsk1llz.wordpress.com/2009/03/19/buyer-beware/" target="_blank">this blog is right</a>, images aren&#8217;t showing up in facebook. I thought I was just having network issues. He says, &#8220;we should just call it book.&#8221; LOL. He&#8217;s also having the same &#8220;Cannot connect to youtube&#8221; problem I&#8217;m having. I&#8217;ve found a bunch of solutions for my youtube problem on the web but they all require jailbreaking. *Shakes fist at apple*&#8230;Do you want to FORCE me to jailbreak?</p>
<p>There are reports of getting a 3G tethering hack working, but it sounds too risky and experimental so for now I think I&#8217;m going to wait.</p>
<hr />
<p>More updates:</p>
<p>Probably the most annoying bug is SMS crashing on launch a lot. Sometimes the send progress bar gets stuck too and you can&#8217;t tell if it&#8217;s sent or not. Today I tried to send a group SMS, and it treated it like a group MMS and as a result it couldn&#8217;t send the message. (Edit: You can get this to work if you turn off MMS completely in settings.) I did get an error message though with the option to try deleting or try resending.</p>
<p><span style="text-decoration: line-through;">Google maps seems to be less accurate (5 blocks off, typically) and crashy too. For a couple days I thought it&#8217;d completely crashed on this one directions screen until I finally waited it out and it eventually woke up again.</span></p>
<p>I&#8217;m confident that these bugs will be fixed by launch. However, the more I think about push notifications the more I worry. I *always* keep push email off because it&#8217;s *such* a battery hog. I tried turning it on again with 3.0 and the phone was dead within 4 hours. I don&#8217;t think I was even using it. It may have just been a bug where some app was continuously trying to connect, but if this wasn&#8217;t a bug and battery life is this dismal with push, I don&#8217;t see how it&#8217;s going to be practical. (Edit: many users are confirming a battery life bug in 3.0, maybe having to do with wifi and not push.)</p>
<p>These are mostly just beta bug reports; I&#8217;m sure it will get better. I&#8217;ve used copy and paste a lot and search some&#8211;I keep forgetting it&#8217;s there but it&#8217;s super useful when I remember, especially for finding apps.</p>
<hr />
<strong>3/29 update</strong><br />
I heard that 3.0 works a lot better when you activate it as a new phone instead of restoring from backup and it&#8217;s true. I came up with <a href="http://problemstosolve.com/os-x/back-up-iphone-sms-messages-into-an-excel-database-without-jailbreaking/" target="_blank">this technique</a> on my problems to solve blog for backing up my SMS messages into an excel sheet. (This only worked for messages pre-3.0 though.) I ran iphoto and downloaded all of my pictures, and synced in iTunes. Then, I option-restored the phone again with the 3.0 firmware.</p>
<p>What this does on the phone: You lose all your music and apps on the phone, obviously. But you also lose which apps and music iTunes is set to resync. Kind of a pain to set up again but not terrible. You lose all of your SMS and photos (hence my backing up above). Worst of all your app data appears to be lost (I had to do a lot of reconfiguring, and things like VoiceNotes are lost unless you backed up first).</p>
<p>Contacts, notes, and email were all resynced successfully. I had to manually set up my webmail accounts again and re-set up exchange.</p>
<p>This time, I installed a bare minimum of apps (it&#8217;s nice that you can keep them un-synced in iTunes and save them for later, so to speak). Even in 2.2.1, having 9 pages of apps = fail. Without that many apps, the phone is running a lot snappier.</p>
<p>Google maps seems to be running a lot better, <span style="text-decoration: line-through;">though GPS is still sporadic</span>. Mail is working well. <span style="text-decoration: line-through;">Youtube works with the fresh restore</span>! I had to reconfigure all of my phone settings and wifi. <span style="text-decoration: line-through;">The annoying 30 second pause in settings especially in general &gt; network is still there</span>. All in all though the phone seems to be running better. A lot of the bugs seem to have cropped up when you try and restore from backup.</p>
<hr />
<b>Beta 2 update</b><br />
All in all MOST of the bugs I complained about were fixed. The safari rotation bookmark bug, GPS craziness, the settings hang, the google maps hang, the notes hang, the mail hang. The phone is a lot more usable!!</p>
<p>UNFORTUNATELY Youtube is broken and &#8220;cannot connect to youtube&#8221; AGAIN. This time I had restored from a backup from beta 1. Don&#8217;t really feel like starting from scratch and setting it up AGAIN, so I&#8217;m going to leave it for now.</p>
<p>I hear you can have 11 pages of apps now but haven&#8217;t tried. The only other bug I&#8217;ve noticed so far is WIFI won&#8217;t list your network in settings, but when you close settings you see it&#8217;s connected to your network automatically. Weird.</p>
<p>Facebook still cannot display photos. I don&#8217;t know if this is an API bug or an app bug.</p>
<p>One thing I keep forgetting to mention, is Safari is very stable and a lot faster. There has been some speculation that it is using a new javascript engine; All I know is that everything loads faster and it hasn&#8217;t crashed on me. Wohoo!</p>
]]></content:encoded>
			<wfw:commentRss>http://jordanbalagot.com/blog/2009/03/18/iphone-os-30-first-look/feed/</wfw:commentRss>
		<slash:comments>17</slash:comments>
		</item>
		<item>
		<title>Logic Tip: Turn off Core Audio when troubleshooting or copying between projects</title>
		<link>http://jordanbalagot.com/blog/2009/03/05/logic-tip-turn-off-core-audio-when-troubleshooting-or-copying-between-projects/</link>
		<comments>http://jordanbalagot.com/blog/2009/03/05/logic-tip-turn-off-core-audio-when-troubleshooting-or-copying-between-projects/#comments</comments>
		<pubDate>Thu, 05 Mar 2009 21:27:26 +0000</pubDate>
		<dc:creator>jordan314</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Logic 8]]></category>
		<category><![CDATA[Music]]></category>
		<category><![CDATA[audio]]></category>

		<guid isPermaLink="false">http://jordanbalagot.com/blog/?p=211</guid>
		<description><![CDATA[Wow, I read a tip somewhere on the Vienna forums that if you held down control when you launched Logic it would disable Core Audio, and you could open up a project and troubleshoot your plugins that way by disabling them and then re-enabling core audio.
That&#8217;s a big help (especially since Vienna runs so finicky [...]]]></description>
			<content:encoded><![CDATA[<p>Wow, I read a tip somewhere on the <a href="http://community.vsl.co.at" target="_blank">Vienna forums</a> that if you held down control when you launched Logic it would disable Core Audio, and you could open up a project and troubleshoot your plugins that way by disabling them and then re-enabling core audio.<br />
That&#8217;s a big help (especially since Vienna runs so finicky on my iMac w/ 4 GBs of ram&#8230;time to upgrade I guess), but I realized that can also be a big help in other ways too:<br />
In Preferences > Audio > Core Audio, un-check &#8220;Enabled&#8221; and hit &#8220;Apply Changes&#8221;.<br />
Now you can open up a project instantly. This is great for:<br />
•copying a region between two projects, or several regions, without having each patch load every time you give one project keyboard focus (eliminates several minutes of downtime)<br />
•editing a score for printout &#8211; you just want the score, you don&#8217;t need to hear all the virtual instruments!<br />
•saving a channel strip setting (how did I get that cool bass delay in that one project?) •optimizing a project (I don&#8217;t need that whole section of the orchestra&#8230;let me delete those tracks BEFORE you load them).</p>
<p>Then, when you&#8217;re back in your current project, or you&#8217;ve troubleshooted, or you&#8217;ve optimized, then you can click the &#8220;Enabled&#8221; checkbox and apply changes again.</p>
]]></content:encoded>
			<wfw:commentRss>http://jordanbalagot.com/blog/2009/03/05/logic-tip-turn-off-core-audio-when-troubleshooting-or-copying-between-projects/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>145+ Brief iPhone Application Reviews</title>
		<link>http://jordanbalagot.com/blog/2009/02/08/145-brief-iphone-application-reviews/</link>
		<comments>http://jordanbalagot.com/blog/2009/02/08/145-brief-iphone-application-reviews/#comments</comments>
		<pubDate>Sun, 08 Feb 2009 21:05:38 +0000</pubDate>
		<dc:creator>jordan314</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[misc]]></category>

		<guid isPermaLink="false">http://jordanbalagot.com/blog/?p=154</guid>
		<description><![CDATA[Evidently I feel the need to review these iPhone apps before I delete them.
iPod &#8211; I keep this on my home page of the iPhone because I don&#8217;t need constant access to it. As of OS 2.1 I can hit the home button to quickly get to the home page, and use double click home [...]]]></description>
			<content:encoded><![CDATA[<p>Evidently I feel the need to review these iPhone apps before I delete them.</p>
<p>iPod &#8211; I keep this on my home page of the iPhone because I don&#8217;t need constant access to it. As of OS 2.1 I can hit the home button to quickly get to the home page, and use double click home button or the headphone button to control it in a pinch. I like it a lot, though wish the podcasts would update automatically over wifi and would let me update even if they&#8217;re over 10 MB over 3G (what is error checking for after all?). Included with phone</p>
<p>Calendar &#8211; Great but I never remember to look at it. I wish I could display my upcoming appointments on my lock screen so I knew what was coming up (windows mobile did this on the today screen). I wish appointments automatically had an alarm set and didn&#8217;t just go off once (had a snooze). Included with phone</p>
<p>Photos &#8211; Nice. I turned off turning on iPhoto automatically when I plug in my iPhone because it was driving me nuts. Most of the time trying to email a photo crashes with no draft or copy in my outbox. Otherwise good. Included with phone</p>
<p>Camera &#8211; Since Photos and Camera are essentially the same app, they should really just combine it. But it&#8217;s decent, wish I could do macro photography and wish it recorded video. The camera should face you too for video conferencing but that&#8217;s a hardware complaint. The whole screen should be a shutter button though. Included with phone</p>
<p>YouTube &#8211; Pretty good. Should be able to download videos and clear searches. Included with phone</p>
<p>Maps &#8211; Great. Wish I could reroute dynamically if I got off course. Turn-by-turn would be great. Auto-lock prevention would be great (google maps for windows mobile did this). A retry GPS would be nice (often I have to restart maps to get an exact location). And when you click on your location it zooms too far in (hard to see where you&#8217;re going). But street view is amazing! Included with phone</p>
<p>Weather &#8211; great. Wish my dock weather widget on Leopard worked this well (or at all). I like having like 15 cities in there so I can view temps across the world at any time. Included with phone</p>
<p>Clock &#8211; good. Infinite alarms is nice. Wish you could save stopwatch results (too easy to delete them). Had to solve the no vibrating alarm problem (see my earlier post). Included with phone</p>
<p>Notes &#8211; SYNC WITH THE COMPUTER. Arrrgh. Also I need to be able to sort by date (size would be nice too). Titles would be nice too. Included with phone</p>
<p>iTunes &#8211; Never use it except for browsing and downloading podcasts (which is nice). Wish you could download files over 10 MB over 3G. Included with phone</p>
<p>Contacts &#8211; Why is this a separate app from the tab in the phone? It doesn&#8217;t need to be. Included with phone</p>
<p>App Store &#8211; Use it all the time. Wish you could view browsing history and have bookmarks. Included with phone</p>
<p>Phone &#8211; Pretty good. I keep this on the home page because I can access it by hitting home, or if the ipod is not playing, home twice. Wish you could filter out email contacts vs. phone contacts, it&#8217;s too hard to find people with a lot of email addresses in there! Also I hate dropped calls (I have to turn off 3G, and I can still tell when a call is about to drop). But otherwise pretty slick. Included with phone</p>
<p>Settings &#8211; Ok. I keep this in the dock instead of on the home page because I use it more often than iPod. Wish there was a hardware shortcut (such as pushing both volume buttons at the same time) to bring it up without closing your apps. I&#8217;m constantly turning on and off 3G (why is it three menus deep) and WIFI. I also wish home-volume up and home-volume down would adjust brightness from any applciation. Also this is a bad place for application settings. Included with phone</p>
<p>Safari &#8211; Decent. Definitely faster and sleeker than windows mobile. Javascript is impressive but why no flash? A lack of &#8220;Find&#8221; and copy and paste drives me nuts. Wish bookmarks synced with firefox, and autocomplete was smarter. It&#8217;s impossible to use autocomplete to start the domain and then keep typing after without going to the site first. The click and hold to drag the cursor around is too hard to use too. I wish you could lock the screen horizontally or vertically, but you can kind of do this horizontally by holding the phone upside down. Included with phone</p>
<p>SMS &#8211; Drives me nuts. I put this on my dock because I use it often but it drives me crazy.  Wish there was a confirm or cancel button before sending a text, often it corrects me as I hit send and I claw at the screen wishing I could cancel sending the text. Examples: &#8220;Yo&#8221; turns into &#8220;No&#8221;, &#8220;np&#8221; turns into &#8220;no&#8221;, etc. WIsh you could MMS, wish you could forward texts, wish you could tell if an incoming message was delivered to a group or just you. Wish I could reply without leaving my current application. Included with phone</p>
<p>Facebook &#8211; Great! I hope for finer enhancements such as status comment threads but keep up the good work guys. Have this on my home page. Free</p>
<p>Air Sharing &#8211; Cool idea but don&#8217;t use it much. Too much work to set up the network connection with my computer and it sucks that all the documents are sandboxed (not the developers&#8217; fault). Did have some file transfer errors. Not sure why this is on my home page, I don&#8217;t use it much (just wish iPhone had a disk mode and a transfer over air protocol built in). Free when I got it, may cost money now.</p>
<p>Zenbe &#8211; Great!! Use this all the time. I haven&#8217;t tried syncing yet, and am still looking for an all around iCal / gmail / zenbe tasks sync solution, but this is great for now. I only wish I could add tasks with enter instead of hitting done and then + all the time. Sometimes I accidentally put several tasks in one. Free</p>
<p>Pandora &#8211; Amazing. Wish I could read more about the artists but this application keeps getting better and better. Great work guys. Free</p>
<p>User Guide &#8211; This is just a bookmark. I may delete it. Included with phone</p>
<p>Anaconda &#8211; Good old snake days. Or Nibbles before that. Fun app, wish you could control the starting speed. Free</p>
<p>AOL Radio &#8211; Neat, haven&#8217;t used it much. Cool that you can find local stations. Free</p>
<p>AroundMe &#8211; Pretty neat, comparable to Yelp and Urbanspoon. Free</p>
<p>AstroTilt &#8211; Great! Really impressive arkanoid game. Impressive controls. Free</p>
<p>BJRunLite &#8211; Pretty fun alternative blackjack game. Easier than normal blackjack though. Free</p>
<p>Aurora Feint The Beginning &#8211; Amazing game. I played it like every day the first week I got it. The graphics and controls are outstanding. I have to give props to the music too, it&#8217;s really great. The gameplay gets a little old though, I haven&#8217;t played for a couple months now. Free</p>
<p>Blue Skies &#8211; Cute and impressive birds eye helicopter game. A lot of fun but easy to beat. I&#8217;d buy it if they added more weapons, enemies and levels. Free</p>
<p>AIM &#8211; Meh. Almost useless without background or push notification capabilities. Free</p>
<p>Black Jack &#8211; Fun black jack app. Better than BJLite, but the ads are annoying. Free</p>
<p>Chess Puzzles &#8211; Great. I&#8217;m not good at them though. Maybe a description of why there&#8217;s only one way to solve the puzzle after each one would help. Free</p>
<p>AirMe &#8211; Interesting. Upload photos from your phone using Flickr, Facebook or Picasa. Geotagging is nice, but I&#8217;m finding myself just using the Facebook app. Deleting. Free</p>
<p>Constitution &#8211; Pretty neat that you can have it in your pocket. I&#8217;ve used it like once though. Free</p>
<p>Calculatlor &#8211; Nice. Again, wish the dock calculator worked as well (my dock calc takes like a minute to load&#8230;faster to use my iphone). Included with phone</p>
<p>Lose It! &#8211; Amazing weight loss app. I didn&#8217;t think I&#8217;d actually use this but so far I am. It has a LOT of foods programmed in already (though sometimes it&#8217;s hard to find what you&#8217;re looking for, such as just coffee with sugar, not vending machine coffee). You enter all the data in yourself (including weight), but it&#8217;s impressive. Free</p>
<p>Bank of America &#8211; Decent. V1 was just their website in an app but it was still faster than typing their address in Safari. V2 is more customized for the iphone. There are still some display bugs but it&#8217;s a very handy app. I put this in the top left corner of my third page because it&#8217;s useful. Free</p>
<p>Crash Bandikoot Nitro Kart &#8211; Decent Mario Kart clone. I bought this but probably wouldn&#8217;t again for $10. It had 5 stars when I bought it but I&#8217;d give it 4. It&#8217;s impressive but hard to control, and I never finished the game. Very impressive use of openGL though. $10</p>
<p>Cube Runner &#8211; Neat primitive speed driving game. Challenging and fun. I played this all the time the first week I got it. Free</p>
<p>Dactyl &#8211; Like wack-a-mole but not as much fun. Kinda primitive like a web flash game. Deleting. Free</p>
<p>Stocks &#8211; Neat but I hardly use it. Wish you could delete it. Included with phone</p>
<p>Sleep Display &#8211; A custom app I wrote that sleeps my imac display. More coming soon.</p>
<p>Wake Display &#8211; A custom app I wrote that wakes my imac display. More coming soon.</p>
<p>DizzyBeeFree &#8211; Adorable, creative game. Cute sounds and graphics. Haven&#8217;t purchased the full version yet but the free version was super easy to beat. May buy the full version. Free</p>
<p>Earthscape &#8211; Impressive for coming out before google earth, and without google&#8217;s resources. However still pretty buggy and crashy. Deleting. Free</p>
<p>eBay &#8211; Pretty neat for watching or bidding. Search is somewhat primitive. Haven&#8217;t used it much. Free</p>
<p>eReader &#8211; Looks like an impressive app, but I haven&#8217;t found anything worth reading yet. Still trying to figure out how to import my own PDFs into it (it&#8217;s nicer than the native PDF reader). Free, but books cost money</p>
<p>Evernote &#8211; Everyone raves about this but it doesn&#8217;t do any of the stuff I wish it did. It sounded like it OCR&#8217;d photos you take but as far as I can tell it doesn&#8217;t. You can take all sorts of notes such as web clippings and photo reminders, but that just doesn&#8217;t make sense to me (I prefer lists). I suppose note syncing is nice but so far I&#8217;ve just been using notes and Zenbe (even though notes don&#8217;t sync, grr). Free</p>
<p>FlyCast &#8211; Radio, right? Haven&#8217;t used it (iPod, Pandora, and AOL Radio in a pinch all take precedence). Free</p>
<p>Fring &#8211; Haven&#8217;t played with it yet. Evidently you can make voip calls with it? I thought that was against the SDK. Anyway, still need to set up an account. Free</p>
<p>G-park &#8211; Decent. Used it a couple times. GPS use has improved. Take Photo / Add Notes is a nice addition. Wish it didn&#8217;t send you to google maps though for finding your car. $1</p>
<p>Hangman &#8211; Fun! Ads are a little annoying. Oh neat, now there&#8217;s 2 player mode. Free</p>
<p>AP Mobile News &#8211; Use this all the time! Keep it as the top app on my 4th page. Great app. Also wish old stories didn&#8217;t show while the new ones were loaded, because sometimes you want to click and then the new ones overwrite it. The ads have gotten less obtrusive though which is nice, and I like that it caches data for reading later if you lose internet. The new reload button is a welcome improvement. Free</p>
<p>G-spot &#8211; Interesting. Can calculate your direction and speed somewhat unreliably. You can share your location with others, though some of this functionality is being overlapped in google maps. Still, it was worth purchasing when I got it. $1</p>
<p>Grafitio &#8211; Pretty neat. Haven&#8217;t used it for a while but it&#8217;s amazing how many people use this app around you and leave notes no matter where you are. You can&#8217;t delete posts though (yikes!)&#8230;I accidentally publically geocoded my own apartment. Fail. Free</p>
<p>phpToDo &#8211; a bookmark to my phpToDo page. I was using this before I started using Zenbe.</p>
<p>GraphCalc &#8211; Pretty rad. I wish I had this when I was taking trig or calc. Free</p>
<p>iDoodle2Lite &#8211; Free doodling app. Pretty neat, I&#8217;ve used it once or twice. Free</p>
<p>iBowl &#8211; neat use of the technology (you swing the iPhone to bowl). Kind of easy. Don&#8217;t really play on my own but a fun demo app of the iPhone&#8217;s capabilities. Free</p>
<p>SGN Golf &#8211; similar controls to iBowl. Haven&#8217;t played it much but it&#8217;s impressive. Though I do worry about throwing my iPhone into the ceiling with these apps. Free</p>
<p>IM+ Lite &#8211; Kinda neat multi client chat app. Again, kinda useless without background or push notification support. I prefer using meebo.com in Safari.</p>
<p>iReversi &#8211; Pretty rad internet reversi game! Free</p>
<p>ITM MidiLab &#8211; Haven&#8217;t set this up yet, but a neat MIDI interface for your computer. Free</p>
<p>Karajan Beginner &#8211; Pretty rad music theory tutor / game. Most of it is pretty easy, I use it for the perfect pitch tests. Free</p>
<p>Obama &#8216;08 &#8211; Very nifty app during the election. They haven&#8217;t updated it though (you&#8217;d think they&#8217;d at least put the weekly addresses in there) so I&#8217;m deleting it. Free</p>
<p>Urbansppon &#8211; Fun app. Successfully guided me and my friends to the nearest gelato place. Shaking is awesome though it usually leads me to junk food. Free</p>
<p>Google &#8211; Voice recognition is amazing though often provides comical results. Still, it&#8217;s useful for finding quick answers especially when I&#8217;m driving. Doesn&#8217;t work with contacts yet. One great thing: If I don&#8217;t know how to spell a word and spell check can&#8217;t help me, I&#8217;ll use voice recognition.</p>
<p>Yelp &#8211; Pretty good. Wish its listings were a little more current (it&#8217;s taken me to old shut down places more than once). Wish you could rate places from the phone too. Still pretty useful. Free</p>
<p>Labyrinth &#8211; Awesome awesome awesome game. Finished the lite version so I bought the full version. Custom levels are neat too. No complaints. ~$3</p>
<p>Last.fm &#8211; Pretty cool. Holy crap, how does it have access to my iPod library? Wow, I&#8217;m going to use this more now. Free</p>
<p>LiveSportz &#8211; Pretty neat app for following MLB games. I mean I&#8217;m sure the MLB app is better, but this shows you who&#8217;s on base, what the count and score is, etc. Free</p>
<p>Midomi &#8211; Amazing. Really great at tagging live music just by holding it up to a speaker. I understand how that works, by uploading a sample and using an audio fingerprint database to analyze it and return the results. But how does it recognize the melody I&#8217;m humming??? That I don&#8217;t understand, unless they have a database of melodies too. Really impressive, though it primarily works on pop songs (wish it had film music and classical support). Free</p>
<p>Mondo &#8211; Fun solitare game by Ambrosia, one of my favorite software companies. Very decent, has every software game you can think of plus hundreds more, and a database of explanations, rules, and difficulty. I&#8217;ll never play all of them though. There are free alternatives out there now that probably make this not worth buying, but I play it every once in a while. ~$5</p>
<p>Super Monkey Ball &#8211; Terrible. Slightly better now that you can continue from where you left off but only slightly. The graphics are impressive but the controls are god awful. I&#8217;d delete this if I didn&#8217;t pay for it. Wish I could get my money back. ~$10</p>
<p>myLite &#8211; great just to have the lighter at rock concerts. Free</p>
<p>MySpace &#8211; pretty neat, but I don&#8217;t really use MySpace (the site) anymore. Free</p>
<p>Moonlight lite &#8211; Really impressive Mahjong game. The 3D display and two and three finger gesture controls are incredible. Still, I&#8217;ve never beaten this game, don&#8217;t have the patience. Free</p>
<p>Now Playing &#8211; Great! Faster than using the web for finding movie showtimes, though it doesn&#8217;t always support buying tickets. Free</p>
<p>Black and White &#8211; Great single player reversi game. Strangely, medium is harder to beat than difficult. But I can beat them all, so don&#8217;t play it much. Free</p>
<p>PakISound1 &#8211; Pretty rad monome-like composition tool. Don&#8217;t really use it for anything serious but it&#8217;s fun to play around with. Supports bass, synth and drums. Give me octaves and the ability to save songs and I&#8217;ll use it more. Free</p>
<p>Puzzloop Free &#8211; Fun game with a twist on bust a move. I beat all the levels, but the pro version has more. Free</p>
<p>Remote &#8211; Pretty damn nifty app for controlling iTunes. I&#8217;m writing some other apps for controlling other things too. Free</p>
<p>Shazam &#8211; Also amazing music tagging service. The youtube and iTunes links and album info are a really nice touch. Free</p>
<p>Simplify Media &#8211; Pretty incredible app that allows you to stream your music from your computer. Doesn&#8217;t always work though but great when it does. Free when I got it, now $3</p>
<p>reMovem free &#8211; Fun clickmania clone game. I remember clickmania, those were the good old days. Free</p>
<p>Scratch &#8211; cute mini turntable for scratching. Cute for demos. Free</p>
<p>SpaceMonkey &#8211; Fun, original catching game. I got bored after a while but I liked how each level brought a new aspect of game play. Free</p>
<p>StepTrakLite &#8211; A pretty impressive pedometer. My initial tests got it to work, but I haven&#8217;t actually tried walking or jogging with it. Free</p>
<p>Slots &#8211; Pretty, but what the heck is the point? Deleted. Free</p>
<p>Sudoku &#8211; Great! I can beat it on expert but it takes me a while. Nice improvements on notes with the latest version. Free</p>
<p>Tap Tap Revenge &#8211; Fun DDR clone, really impressive. Can&#8217;t believe it&#8217;s free. Supports downloading new levels which is neat. Free</p>
<p>TapTheBeat &#8211; A Tap BPM calculator that looks all retro (originally programmed for the newton!). Super useful and free. Sometimes I play games with my friends to see who can tap the fastest (I got 900 BPM+ once!).</p>
<p>Trailguru &#8211; I guess it maps your path or something with GPS and you can post it online. Sounds neat but I haven&#8217;t tried it yet. Would be fun for biking. Free</p>
<p>Tris &#8211; Pretty, free tetris clone. I get too frustrated with the controls though. Don&#8217;t know how anyone can play this or the official Tetris without bashing the phone in (not nearly as fun as playing with nintendo controls). Deleting. Free</p>
<p>Twitterific &#8211; Great twitter client. This is the only way I use twitter. Free.</p>
<p>Vegas Pool Lite &#8211; Impressive 3D pool app. Haven&#8217;t played a full game, I hear it&#8217;s pretty draconian with how little it lets you play though. Free</p>
<p>VNC &#8211; Pretty impressive VNC app with gesture support. Doesn&#8217;t always work and crashes on my dual flatscreen widescreen monitors a lot, but great for Free.</p>
<p>VoiceNotes &#8211; Awesome. Decent quality (though the iPhone mic is mono) and no time limit. Now that the voice notes are named by timestamp, even better. Sometimes you have to remember to save what you&#8217;re recording though or you&#8217;ll lose it. Syncing can be a bit of a trick (you have to set up a server on your computer)&#8230;it might be easier if you could email the note or something. But I use this a lot in the car for quick memos.</p>
<p>Where &#8211; Another yelp/urbanspoon/nearme app. Haven&#8217;t decided which one is best, but this one has slightly different items (like zipcars and starbucks). Free</p>
<p>Wikipanion &#8211; Great. The font on wikipedia.com is too small to view in safari and doesn&#8217;t double click to fill the screen easily. Wikipanion is easy to read and caches data I believe. Sometimes I forget to use it but it&#8217;s a great portal for looking up answers quickly. Free</p>
<p>Wordpress &#8211; Pretty neat that I can blog from my iPhone but I haven&#8217;t used it much yet. Free</p>
<p>AquaForest &#8211; Very impressive puzzle and doodling app. The fluid dynamics are amazing and the graphics are pretty. It slows down pretty quickly when you draw a lot of water. But a fun must-have app. Free</p>
<p>Luz Touch &#8211; Really impressive Risk game. I always seem to lose &#8211; but then I&#8217;ve never played Risk before. Free</p>
<p>RjDj Free/Album &#8211; Possibly my favorite app. It uses a port of PD and custom patches to remix live audio from your headset and vocode, echo and pan it into your head. It feels like you&#8217;re on drugs. Everyone I&#8217;ve shown it to is blown away. I bought the full (Album) version immediately. Absolutely amazing, especially eargasm. I wish they would update it with more patches though. Free / $4</p>
<p>Yahoo oneConnect &#8211; I guess it syncs your yahoo contacts with your iPhone ones. I haven&#8217;t tried it yet, I already have too many email contacts in my Contacts, and it drives me nuts when I&#8217;m trying to find a phone number.</p>
<p>FS5 Hockey &#8211; Really fun air hockey game. Genius use of multitouch &#8211; two players can play on the same screen. Ads are prevalent but worth it for this game. Free</p>
<p>MazeFinger &#8211; Pretty fun speed maze game. Free</p>
<p>Pac-Man Lite &#8211; Pretty fun. Lots of control alternatives but none rival the original controls. Wouldn&#8217;t buy the full version as a result. Free</p>
<p>JellyCar &#8211; Amazing, somewhat difficult puzzle/physics game. Unique/confusing controls (touch right side of screen for forward, left side of screen for reverse, double click to expand car, tilt to change weight) but amazing 2D physics engine. However a lot of the levels are frustrating (I keep falling off!). Free</p>
<p>FourFree &#8211; simple connect four game. Fun at bars and things. Ads are somewhat annoying. Free</p>
<p>Brain Toot Lite &#8211; Meh. Kind of like brain age, but I was never as big of a fan as most people were of that game. Full version may be better. Free</p>
<p>Trace &#8211; One of my favorite iPhone games! Primitive graphics mario-like game, but you can draw on the screen and dynamically change the level to solve the puzzle. Really creative game and fun music. 100s of levels, hours of entertainment. Free</p>
<p>MiniPiano Lite &#8211; Fun for checking quick pitches. I think the pro version has more octives. Free</p>
<p>Say Who Lite Dialer &#8211; Pretty neat! Wish google did this (or the iphone itself). However I always forget to use it. Hmm, I&#8217;m going to have to try the integration with google maps more now. Free</p>
<p>Mint.com &#8211; Scares the crap out of me that this much info is on my iPhone but pretty useful. I keep my iPhone on autolock after 5 minutes and 10 attempts will destroy all data. Theoretically if I or my friends do this by accident I can restore everything with iTunes. But for now, Mint.com is useful enough for the security risk. Free</p>
<p>Google Earth &#8211; Actually works now! Before the memory management was so bad that it would crash as soon as I tried to do anything. But now the autotilt is actually neat and it responds pretty well. Free</p>
<p>Elections &#8211; What a disappointment. This was supposed to keep me updated with the most recent election results on election night, but it ended up being like 5 hours behind. I want my money back. Deleting. ~$1</p>
<p>Backgrounds &#8211; Not sure why this is so popular, but it does have some nice backgrounds. They should credit who made them though. Free</p>
<p>DigiLite &#8211; Cute little drum app. Mostly a toy though, too laggy. Free</p>
<p>HoldEm &#8211; Apple&#8217;s flagship poker game. Really impressive, with good controls and two views, video portrait mode and table bird&#8217;s eye landscape mode. Supposedly the video characters have tells but I don&#8217;t know what they are. Difficult but fun. $5</p>
<p>Accelerometer graph &#8211; comes with the SDK. Really neat live scrolling charts of the three accelerometers. Free with SDK</p>
<p>TouchTerm &#8211; great terminal app. Free!</p>
<p>The Weather Channel &#8211; great for when you want more info on the weather. Includes severe weather alerts, maps, and videos. Free</p>
<p>Live Poker &#8211; for playing poker online. Kinda ad ridden. Free</p>
<p>Cube &#8211; a duke nukem clone. Couldn&#8217;t figure out the controls. Still very beta but impressive. Free</p>
<p>ESPN Cameraman &#8211; it&#8217;s that find the differences between the photos bar game! Great, fun at bars. Free</p>
<p>Night Stand &#8211; Nice little clock app. Impressive that it disables auto-lock. Free</p>
<p>Drinks Free &#8211; Keep forgetting I have this. Impressive list of cocktail recipes. Have to try this with my random bar sometime. Free</p>
<p>Joost &#8211; A little buggy but really impressive. Full episodes, music videos, and even features for free and no ads. I wish I wish it worked over 3G though (WIFI only). Free</p>
<p>USA TODAY &#8211; Just got it, haven&#8217;t played with it much. Not as nice as AP Mobile News but a nice alternative.</p>
<p>vSNAX &#8211; Another video client. Haven&#8217;t played with it much but I hear good things about it.</p>
<p>iChess Lite &#8211; Great! The computer is better than me at chess, so I keep cheating and taking back moves. Great chess game. Free</p>
<p>Classics &#8211; Very impressive eReader, with classic public novels. I&#8217;m enjoying Alice in Wonderland. Wish it had a larger selection. See google books&#8217; iphone optimized site for more books. ~$2</p>
<p>Space Deadbeef &#8211; Short but amazing 2D sidescrolling flying game. Very pretty and a lot of fun. Free</p>
<p>Topple &#8211; Fun balancing game with funny faces. Free</p>
<p>Penguin Lite &#8211; Free and goofy puzzle/timing game. Clever and silly. I might buy the full version. Free</p>
<p>iRewardCards Lite &#8211; Interesting idea, barcode generator for storing barcodes on your iphone (such as club cards). Haven&#8217;t played with it much but I like the idea of getting even more things digital. Free</p>
<p>Rick Rocketson Free &#8211; Very impressive megaman clone. Free</p>
<p>Craigsphone &#8211; Some screens are unintuitive but I still find myself using this app a lot (better than the website). Craigslist for the iphone. Free</p>
<p>FreeMemory &#8211; Great app. I think all it does is load a bunch of memory and then unload it (you can do the same by opening and then quitting google earth), but I like the process view. I wish it worked for under 4 MB and over 20 MB though.</p>
<p>iShoot Lite &#8211; Like old school gorillas but more fun! Lots of weapons. Great game! Free</p>
<p>Cannon Game &#8211; Like gorillas and iShoot but not nearly as much fun. Deleted. Free</p>
<p>Paper Football &#8211; Pretty but not that much fun. After you get the hang of it it&#8217;s really easy. Free</p>
<p>Mancala Free &#8211; Pretty and fun, but I don&#8217;t think the rules are the same. I think if you land on an empty spot, even if your opponent&#8217;s spot is empty, you still get the last bean on your side. The AI is too easy as well. Multiplayer is great though. Free</p>
<p>Beer Pong &#8211; Heh, pretty neat. Haven&#8217;t played it much. Free</p>
<p>iHandy Level &#8211; There is a level that comes with the SDK, so I&#8217;m not really impressed with the levels in the app store. This one is free though, shows degrees, can be calibrated, and has a Z angle mode, so it&#8217;s decent. Free</p>
<p>DDR Lite &#8211; I don&#8217;t know why everyone is giving this app bad reviews. It&#8217;s a lot of fun. The 3D dancing in the background is impressive. Hope they do more levels.</p>
]]></content:encoded>
			<wfw:commentRss>http://jordanbalagot.com/blog/2009/02/08/145-brief-iphone-application-reviews/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Make a Vibrate-only iPhone Alarm</title>
		<link>http://jordanbalagot.com/blog/2009/02/06/make-a-vibrate-only-iphone-alarm/</link>
		<comments>http://jordanbalagot.com/blog/2009/02/06/make-a-vibrate-only-iphone-alarm/#comments</comments>
		<pubDate>Fri, 06 Feb 2009 20:33:56 +0000</pubDate>
		<dc:creator>jordan314</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[originals]]></category>

		<guid isPermaLink="false">http://jordanbalagot.com/blog/?p=167</guid>
		<description><![CDATA[For such an amazing device, the iPhone sure does lack some features. Forwarding text messages, copy and paste, and background applications come to mind. But there&#8217;s been one thing that&#8217;s been bothering me lately: Vibrating alarms.
The iPhone&#8217;s clock application is great, allowing you to set timers, use a stopwatch, and have unlimited alarms. But even [...]]]></description>
			<content:encoded><![CDATA[<p>For such an amazing device, the iPhone sure does lack some features. Forwarding text messages, copy and paste, and background applications come to mind. But there&#8217;s been one thing that&#8217;s been bothering me lately: Vibrating alarms.</p>
<p><img class="size-full wp-image-168" title="Vibrate-only alarm" src="http://jordanbalagot.com/blog/wp-content/uploads/2009/02/iphone_vibrate_alarm.png" alt="Select the Vibrate ringtone in the iPhone alarm settings page." hspace="5" vspace="5" width="250" align="left" />The iPhone&#8217;s clock application is great, allowing you to set timers, use a stopwatch, and have unlimited alarms. But even if you put the iPhone on silent mode, when an alarm goes off it still plays the ringtone you selected at full blast. This is very inconsiderate if you&#8217;re trying to set an alarm at night without waking other people up!</p>
<p>Luckily, there is an easy solution:</p>
<p>• Download the Vibrate ringtone from the free ringtones section of my <a href="http://jordanbalagot.com/" target="_blank">home page</a>. (Check out my other free ringtones and music too!)</p>
<p>• Drag Vibrate.m4r file to iTunes.</p>
<p>• Connect your iPhone, and under iPhone&gt;Ringtones check &#8220;Sync ringtones &gt; All ringtones&#8221;.</p>
<p>• Click sync.</p>
<p>Now, when you set an alarm, choose Vibrate as your alarm.</p>
<p><em>Voilà!</em></p>
<p><em></em></p>
]]></content:encoded>
			<wfw:commentRss>http://jordanbalagot.com/blog/2009/02/06/make-a-vibrate-only-iphone-alarm/feed/</wfw:commentRss>
		<slash:comments>13</slash:comments>
		</item>
		<item>
		<title>Evidentally you can only have 9 pages of applications on the iPhone</title>
		<link>http://jordanbalagot.com/blog/2009/01/16/evidentally-you-can-only-have-9-pages-of-applications-on-the-iphone/</link>
		<comments>http://jordanbalagot.com/blog/2009/01/16/evidentally-you-can-only-have-9-pages-of-applications-on-the-iphone/#comments</comments>
		<pubDate>Fri, 16 Jan 2009 16:07:07 +0000</pubDate>
		<dc:creator>jordan314</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Gear]]></category>
		<category><![CDATA[iPhone]]></category>

		<guid isPermaLink="false">http://jordanbalagot.com/blog/?p=152</guid>
		<description><![CDATA[And by installing all these applications I won the &#8220;congratulations, your phone stopped working&#8221; prize.
Not really. It still works ok, but it definitely slows down the more apps you install. I actually found that FreeMemory ($.99 in the iTunes store) helps, but I think all it does is load 20 MB into memory forcing other [...]]]></description>
			<content:encoded><![CDATA[<p>And by installing all these applications I won the &#8220;congratulations, your phone stopped working&#8221; prize.</p>
<p>Not really. It still works ok, but it definitely slows down the more apps you install. I actually found that FreeMemory ($.99 in the iTunes store) helps, but I think all it does is load 20 MB into memory forcing other daemons out and then unloads the memory it just loaded, freeing ~20 MB. I tried loading a memory intensive app like google earth and then quitting and it does the same thing (~20 MB memory free, according to FreeMemory). It sucks when you get down to &lt;4 MB free and FreeMemory doesn&#8217;t have enough memory to free memory.</p>
<p>Anyway, I tried installing my 145th app today and the iphone didn&#8217;t draw a page 10 for me to scroll to, even though it looks like it has room for 18 pages, given the dot spacing. The application store showed the new app as &#8220;INSTALLED&#8221; but I had no way to run it. When I deleted an app it didn&#8217;t show up to replace the last spot, but it did show up after I rebooted the phone.</p>
<p>I&#8217;m sick of the phone still taking forever to sync, apps crashing, and not being able to jailbreak, so now that I&#8217;ve hit the app display limit I think I&#8217;ll start deleting some.</p>
]]></content:encoded>
			<wfw:commentRss>http://jordanbalagot.com/blog/2009/01/16/evidentally-you-can-only-have-9-pages-of-applications-on-the-iphone/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Quick DIY Portable iPhone 3g Charger</title>
		<link>http://jordanbalagot.com/blog/2008/08/22/quick-diy-portable-iphone-3g-charger/</link>
		<comments>http://jordanbalagot.com/blog/2008/08/22/quick-diy-portable-iphone-3g-charger/#comments</comments>
		<pubDate>Fri, 22 Aug 2008 06:59:49 +0000</pubDate>
		<dc:creator>jordan314</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Gear]]></category>
		<category><![CDATA[diy]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[misc]]></category>
		<category><![CDATA[originals]]></category>
		<category><![CDATA[science]]></category>

		<guid isPermaLink="false">http://jordanbalagot.com/blog/?p=127</guid>
		<description><![CDATA[I&#8217;m going to the desert for a week and wanted a way to recharge my iPhone. I bought a zap rx4-c, which works with most of my other devices, only to learn that it&#8217;s not compatible with the iPhone. Zap&#8217;s customer service was friendly but they should change their description in two ways: One, you [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m going to the desert for a week and wanted a way to recharge my iPhone. I bought a <a href="http://www.zapworld.com/recharge-it-all/rx4-c-aa-universal-charger" target="_blank">zap rx4-c</a>, which works with most of my other devices, only to learn that it&#8217;s not compatible with the iPhone. Zap&#8217;s customer service was friendly but they should change their description in two ways: One, you can use regular AA batteries with it for living out in the field for a long time (yay!), and two, it&#8217;s not compatible with the iPhone or iPod Touch (boo.). The iPhone requires a 2.4V and 2.8V reference signal on the data pins for it to charge&#8230;Crafty Apple! Zap is coming out with a cheap adapter for the Rx4 but I needed something right away.</p>
<p>There are <a href="http://www.tzywen.com/modules.php?name=News&#038;file=article&#038;sid=683" target="_blank">circuits</a> out there for converting the 5V to the proper data pins and voltage, but I already had a 12V car adapter that would supply them. So instead, the goal was to supply 12V to my car adapter with batteries.</p>
<p>The solution:</p>
<p>2 6V lantern batteries<br />
Alligator Clips<br />
Female Car Adapter<br />
iPhone Car Adapter<br />
Cardboard Box</p>
<p>If you wire the batteries in series you get 12V. It works fine, though the adapter whines pretty loudly which worries me a little. Also, I am aware that batteries encased in paper and cardboard are a slight fire hazard. I&#8217;m only going to charge this outside while I&#8217;m watching it. (Any advice is appreciated, this isn&#8217;t much different than how the iPhone charges in a car is it?)</p>
<p>Thanks to <a href="http://fakecomputermusic.com/" target="_blank">Fred</a> for his help conceptualizing this.</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="425" height="350" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="src" value="http://www.youtube.com/v/ZmwV5hoDj0I" /><embed type="application/x-shockwave-flash" width="425" height="350" src="http://www.youtube.com/v/ZmwV5hoDj0I"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://jordanbalagot.com/blog/2008/08/22/quick-diy-portable-iphone-3g-charger/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
