• “lobolife: If you're having trouble with your iOS launch image orientation check out these docs: http://t.co/MyGAd1zv , http://t.co/KGg7TJ30 . #fg”

  • “lobolife: Really excited to check out Grant Skinner's new canvas library. http://www.easeljs.com/ #fg”

  • “lobolife: Dropbox's latest forum build fixes issues on OS X Lion. http://t.co/ZKZtjcm . Finder integration again! #fg”

  • “lobolife: Looking forward to using Pixel Bender 2.5: http://www.adobe.com/devnet/pixelbender.html #fg”

  • OS X Lion Reverse Scrolling

    We’ve been anxiously anticipating the new version of OS X (Lion) for months. I was thrilled to see it in the mac app store today! But… to my dismay, Apple has flipped the script on me, literally.

    Apparently Lion is trying to be a lot more like iOS and mimics the touch screen gestures. So now in OS X if you swipe the trackpad to scrol...
  • “lobolife: Finally get a chance to do some rails work modifying the Forest Giant blog #fg”

  • I’ve really enjoyed google plus these last few weeks. Now that a lot of my friends and co-workers have joined I’ve been wanting to use google’s +1 to share links. The problem is most sites don’t have this feature implemented. The only way I’ve seen to actually use the +1 button is in the google search results page. I can’t imagine searching google for a link, just to post it to my circles. So, ...
  • Loops in AS3

    Ran across an interesting bit of code while extending a GreenSock class today.
    A while loop that used i— in the place of a conditional. Which honestly didn’t make a lot of sense to me at first. It seemed like the loop would run forever; decrementing i to negative 2147483648.

    …code…

    Kevin pointed out that, in fact, the while loop stops when i == 0 because 0 satisfies the conditional as false.

    Here...