Category Archives: Uncategorized

Discovering Android – flash_image not found?!?

If you are needing to use the “flash_image” utility program ( perhaps to get ClockworkMod3 on your system? perhaps because you need want to update to CyanogenMod7? ) and you get a “not found” message when you go to run it like this: $ su # flash_image flash_image: not found Here’s a link where you [...]

Discovering Android – ADB su – Permission Denied

If you are using adb and attempt to get root access by running ‘su’ and instead get the message “Permission Denied”, then there are two things you must make sure you’ve done. 1. Make sure you have rooted your phone. This is complicated and I won’t go into it here – it differs based on [...]

Discovering Android – Embedding Video in an Android Application

I was putting some Video into an Android application for the first time. I was hoping this wouldn’t be too difficult and was delighted to find the VideoView component. It was really simple to add a VideoView to my layout: <VideoView android:layout_height="wrap_content" android:layout_width="wrap_content" android:id="@+id/videoView"/> Then I prepared the video and added it to my project [...]

Prototype, JQuery and JQueryUI

We’ve switched over to using JQuery from Prototype at my current employer.  We’d previously used Prototype-1.5 for a long time and had a lot of dependencies to it.  When we first started using JQuery it was version 1.1.3.1.  There was no JQueryUI at that time. So, we currently use JQuery-1.2.6 and JQueryUI-1.6rc2 and I really [...]