<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:dc="http://purl.org/dc/elements/1.1/" version="2.0"><channel><atom:link rel="hub" href="http://tumblr.superfeedr.com/" xmlns:atom="http://www.w3.org/2005/Atom"/><description>We are a small collection of creative thinkers and agile developers who make things people enjoy.</description><title>polarfin</title><generator>Tumblr (3.0; @polarfin)</generator><link>http://blog.polarfin.net/</link><item><title>We submitted an app to the 10k An Event Apart competition...</title><description>&lt;img src="http://27.media.tumblr.com/tumblr_lr9ai1Ldv51qbfokgo1_500.png"/&gt;&lt;br/&gt;&lt;br/&gt;&lt;p&gt;We submitted an app to the 10k An Event Apart competition (posted to the site last night). &lt;a href="http://10k.aneventapart.com/Entry/Details/543"&gt;Chord Finder&lt;/a&gt; is a small app that let’s you pick a key and see the chords within that key. Since we had to keep things relatively small we ended up building out the fretboards using &lt;code&gt;&lt;canvas/&gt;&lt;/code&gt;. We had a lot of fun, so check it out and let us know what you think.&lt;/p&gt;</description><link>http://blog.polarfin.net/post/9999506478</link><guid>http://blog.polarfin.net/post/9999506478</guid><pubDate>Fri, 09 Sep 2011 13:42:05 -0400</pubDate><category>canvas</category><category>html5</category><category>css3</category><category>ios</category><category>competition</category><category>app</category></item><item><title>The importance of written communication</title><description>&lt;p&gt;It’s important to consider the medium in which you communicate with other people (friends, family, team members, or people you collaborate with). Information is utilized best when it is well documented and shared easily between parties so that everyone can reference things have been said and decisions that were made. Email, chat, and typically any form of typed or written communication is perfect for this. Phone calls, meetings, and generally face-to-face are less than ideal unless someone is taking detailed notes (which almost never happens). When someone says something I’ve found it best to say something along the lines of “Put it in writing.” This applies to any decision, idea, task, event, etc. If it can’t be said clearly through written word, than it’s usually not executable, and they are wasting everyone’s time.&lt;/p&gt;</description><link>http://blog.polarfin.net/post/9376578658</link><guid>http://blog.polarfin.net/post/9376578658</guid><pubDate>Thu, 25 Aug 2011 11:39:07 -0400</pubDate><category>communication</category><category>self-improvement</category></item><item><title>Creating Hybrid Mobile Applications with HTML, CSS, Javascript &amp; PHP </title><description>&lt;p&gt;I recently started looking around at different hybrid mobile frameworks, so I can create native iPhone Apps using web languages I already know (ie. HTML, CSS, Javascript, PHP). There are three main ones I took a look at and did some testing with: &lt;a href="http://sourceforge.net/projects/quickconnect/"&gt;QuickConnect&lt;/a&gt;, &lt;a href="http://www.phonegap.com/"&gt;PhoneGap&lt;/a&gt;, and &lt;a href="http://www.appcelerator.com/"&gt;Appcelerator Titanium&lt;/a&gt;. In all my testing I looked specifically at uses for the iPhone. All of these have a lot of the same functionality like GPS, Accelerometer, Vibrate, System Sounds, etc and they are all FREE.&lt;/p&gt;

&lt;p&gt;QuickConnect can create iPhone, Android, and Blackberry mobile apps. I love the installation of this development tool, its extremely easy. All you have to do is open the package, which will install a dashboard template, and the xcode template. you basically use Dashcode as you GUI tool for layout and use paths to your javascript and images. One suggestion is not to separate them into different folders, it makes things less organized, but when you deploy to xcode you need to strip all the file paths out anyways so you’ll save yourself some time here. I can’t really find any examples of using js libraries online, most examples you straight js but after some testing you can use jQuery and jqTouch (as well as others too like prototype, YUI, etc.). When you deploy to Xcode, you can then install it on your iPhone or run it in the iPhone simulator to see the result. It’s important to note Xcode acts as the wrapper and saves all your source code to disk which makes it a true native app. The only calls that go out to your server would Ajax calls to a server-side language like PHP. Some features QC has that the others don’t is a charting, the ability to embed google maps, cable networking, Bonjour networking and a drag &amp; drop library. The &lt;a href="http://quickconnect.pbworks.com/FrontPage"&gt;documentation&lt;/a&gt; is a little lacking right now but it seems like its getting better, and the install does come with some examples to get you started.&lt;/p&gt;

&lt;p&gt;PhoneGap can create iPhone, Android, Palm OS, Symbian, and Blackberry apps. This installation is a little more difficult using git, and it doesn’t have a Dashcode template in the installation. PhoneGap seems to be a little more popular then the rest though, and has a fairly large &lt;a href="http://www.phonegap.com/community"&gt;community&lt;/a&gt;. &lt;span style="text-decoration: line-through;"&gt;One major difference is that all your CSS, JS and images are actually stored on your server, which makes this technically more of a mobile web app, with native functionality.&lt;/span&gt; PhoneGap has workshops and great &lt;a href="http://phonegap.pbworks.com/"&gt;documentation&lt;/a&gt;. It also supports most js libraries. PhoneGap has limited functionality compared with QuickConnect, but if your looking to take your app truly cross mobile platform it excels in that area.&lt;/p&gt;

&lt;p&gt;Lastly is Appcelerator Titanium, which can create iPhone, iPad, Android, Mac, Windows, Linux, and I’ve heard coming soon should be the Palm OS. This is the only tool that has its own developer tools. Also the only one that supports the iPad. I feel like this has the best &lt;a href="http://www.codestrong.com/cs/"&gt;documentation&lt;/a&gt;, it’s very clear in each of it’s steps. Also they have a &lt;a href="http://vimeo.com/appcelerator"&gt;video channel&lt;/a&gt; to help you get started. They have workshops and a university, which they will give you all the information you need to present to a class or user group you even get t-shirts, which I thought was pretty cool. The installation is probably the easiest of all too, just download their software and install whichever mobile SDK you plan on outputting your app to. It has many different &lt;a href="http://www.codestrong.com/timobile/api/"&gt;APIs&lt;/a&gt; you mash with, and seems they use the js library Entourage.&lt;/p&gt;

&lt;p&gt;In my upcoming project I’ll most likely be using QuickConnect, because of it’s robust features specifically for the the iPhone. However if I was going to release a cross mobile app I would probably use PhoneGap, with Appcelerator as a close second. I’ll try post more as I dive further into these, but until then I hope this gives you a little more insight on what’s out there.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;UPDATE 7.7.2010&lt;/strong&gt;
Another great place for &lt;a href="http://mobile.tutsplus.com/category/tutorials/appcelerator/"&gt;tutorials&lt;/a&gt; on Appcelerator is &lt;a href="http://mobile.tutsplus.com/"&gt;Mobiletuts+&lt;/a&gt;.&lt;/p&gt;</description><link>http://blog.polarfin.net/post/9376577507</link><guid>http://blog.polarfin.net/post/9376577507</guid><pubDate>Tue, 02 Feb 2010 11:39:00 -0500</pubDate><category>mobile</category><category>hybrid</category><category>apps</category><category>html</category><category>css</category><category>javascript</category><category>php</category></item><item><title>Finding the right JavaScript framework</title><description>&lt;p&gt;To get this blog on the right track let’s start off by talking about JavaScript frameworks. Back in 2006 I was completely obsessed with &lt;a href="http://mootools.net/"&gt;MooTools&lt;/a&gt;. I’d stomp around telling all my fellow web designers and developer about how “It’s the best JavaScript framework out there! It can do anything you want and the animation capabilities are so smooth. You’re a fool for not using it!” Truth is, at the time, I didn’t really know about &lt;a href="http://jquery.com/"&gt;jQuery&lt;/a&gt; and its simplistic approach. What would be 5 lines of code in MooTools was suddenly a single line using jQuery. Now my argument didn’t seem so strong; if it even was in the first place. I have since swore jQuery as the best JavaScript framework (for now).&lt;/p&gt;

&lt;p&gt;While jQuery has taken a lot of busy work out of making beautiful dynamic websites, I can’t help but think that there has to be a &lt;em&gt;better&lt;/em&gt; solution. Maybe jQuery is too easy and thus we end up writing sloppy scripts. One of the biggest things that has bugged me about jQuery is that there is no animation interruption handling when using effects like &lt;a href="http://docs.jquery.com/Effects/slideToggle#speedcallback"&gt;slideToggle&lt;/a&gt; or &lt;a href="http://docs.jquery.com/Effects/fadeIn#speedcallback"&gt;fadeIn&lt;/a&gt;. It can start this animation queue if used on something like a &lt;a href="http://docs.jquery.com/Events/hover#overout"&gt;hover&lt;/a&gt; that can behave horribly. They do have a solution if you use their animation method. But that feels like a hack. I noticed that the people I look up to are all using &lt;a href="http://www.prototypejs.org/"&gt;Prototype&lt;/a&gt; and sometimes combining that with &lt;a href="http://script.aculo.us"&gt;Script.aculo.us&lt;/a&gt;. While I haven’t really messed around with this combo, you can see it’s beauty on sites like &lt;a href="http://apple.com/"&gt;Apple&lt;/a&gt; and in all of &lt;a href="http://37signals.com/"&gt;37signals&lt;/a&gt;’ apps.&lt;/p&gt;

&lt;p&gt;With big names like that and a slew of other companies using it as their framework of choice for their web applications it makes me wonder if it’s worth taking the time to learn and adopt. It would mean going back to writing numerous lines of code. But maybe that’s worth it if the outcome is cleaner, smoother, and always behaves the way it was intended to.&lt;/p&gt;</description><link>http://blog.polarfin.net/post/9376576250</link><guid>http://blog.polarfin.net/post/9376576250</guid><pubDate>Fri, 08 Jan 2010 11:39:00 -0500</pubDate><category>javascript</category><category>framework</category></item></channel></rss>

