General

26 May 2009

If you are using the same icon file in your app.xml file in AIR and embedding it to set it dynamically at runtime (for example if you have several icons that you switch between) then you'll most likely get the following error:

Error creating AIR file: YourApp-app.xml(94): error 303: Icon assets/icon.png is missing from the package.

(more...)

Error 303 for embedded icons in AIR apps

26 May 2009

If you're storing information in the encrypted data store in your AIR app, you'll probably want to nuke that data on occasion while testing. You'll find the app-specific files for your application (on OS X) under:

~/Library/ApplicationSupport/Adobe/AIR/ELS/yourApplication

(more...)

Location of app-spefic files for AIR apps on OS X

12 Jan 2009

I just dusted off my old Acer TravelMate to play with Songsmith (it doesn't work well under VMWare) and I remembered why I was so happy to switch to my Mac. My Acer developed, among other things, an annoying screen flickering issue before we parted ways.

I realized this time around that the flickering only occurs when the laptop is plugged in. Disabling ePower Manager didn't do anything.

(more...)

Acer TravelMate 8200 screen flicker problem: solution

13 Nov 2008

Google Country Detection Broken

You're in Germany... no I'm not!

(more...)

The importance of manual override (or Google’s country autodetection is broken!)

10 Oct 2008

Going from a datetime object to a string in Python:

import datetime
str(datetime.datetime.now())

>>> '2008-10-10 16:40:25.126049'

(more...)

datetime to string, easy; string to datetime… oh my, my!