Aaron Amstutz's Blog

You should follow us on twitter or subscribe to our RSS feed if you want to stay on top of all the latest.

Quick and handy iPad version-detection plugin for PhoneGap

We were recently using PhoneGap on an iPad specific JavaScript app (HTML5 in PhoneGap with Drupal data backend FTW!) and ran into a problem with the first gen iPad's RAM capability. For this specific project we just needed to disable some functionality for iPad 1 users, so I (with some objective C help from Chris) cobbled together a quick iPad version detection plug-in. Read More…

5 comments.

PhoneGap Day! Andrew Lunny and Hardeep Shoker on Phonegap Build

Andrew Lunny @alunny & Hardeep Shoker @hardeepshoker Andrew was the person who named it Callback, he's the bad person. PhoneGap Build is an Adobe product in public beta, and free for now. Build builds apps in the cloud: upload code download apps Features: Six mobile platforms an API Collaborations Debugging - hosted weinre server git & Github - tight integration Observations/Whining: (his words, not mine) Read More…

0 comments. Filed under phonegap.

PhoneGap Day! Patrick Mueller on Weinre

Works at IBM @pmuellr Weinre has a lot of functionality from webkit web inspector, he worked on building web inspector. Adobe Shadow version is handy and cool- http://debug.shadow.adobe.com:8080/. You can also install via npm, sudo npm -g install weinre Read More…

0 comments. Filed under phonegap.

PhoneGap Day! James Burke on RequireJS and Phonegap

James Burke - works at Mozilla @jrburke Why webapps? They deploy everywhere! Phonegap, B2G/Firefox OS, wavysandbox/install helps get your code on a device. Volo, cool CLI javascript package manager. Require.js, AMD modules The Great Sadness (you are the linker, browser only, disparate automation) Normal Read More…

0 comments. Filed under phonegap.

Phonegap Day! Pamela Fox on Phonegap Pain Points

Pamela Fox - @pamelafox She used to work for google, was on the Wave project. When she quit Google, she decided to build her own app. Question was: native? cross-compiled (Titanium? Hybrid? Decided on a combination of PhoneGap + twitter bootstrap + zepto.js The easy part: Making it work.The hard part: Making it work WELL. (I totally agree.) Read More…

0 comments. Filed under phonegap.

A Short List of Handy Web/Mobile Debugging Tools

I recently helped a friend with a couple bugs they were fixing on a mobile site, and suddenly realized that there is a good basic list of tools that folks should have in their frontend dev kit. Robbie wrote a little while ago about some of the front end (CSS/CSS3) tools he uses, so I thought I'd add to the list, and lean a bit more toward debugging. Read More…

A quick look at CSS3 animations

CSS3 animations are finally becoming a useful tool in the front end developer's kit! Browser support is progressing, however there is no IE support yet (surprised?) and Opera currently doesn't support animations, but may in the future. Despite the plethora of vendor prefixes to keep track of, one can really pull off some interesting animations; transforms and transitions anyone? Read More…