Two Minute Timer in mobile.processing

Posted by Nikolaus Gradwohl Sun, 26 Apr 2009 07:50:00 GMT

no system or programming language should be without it's 2 minute timer for all those GTD followers out there. so i made one in mobile.processing.

the programm starts a 120 sec countdown and sends the app in background. After 2 minutes the vibration alarm is activated for 1 second.

i made a qr-barcode that contains the link to the jad file. just point a qrcode reader like zxing to it and install it

install twominute timer

you can also use the direct link http://www.local-guru.net/mobileprocessing/twominutetimer/midlet/twominutetimer.jad (but i think it is a bit complicated to enter on a mobile phone)

Read more...

Tags , , ,  | 1 comment | no trackbacks

Tweet This! submit to reddit Digg!

qr-code midlet installer

Posted by Nikolaus Gradwohl Sun, 25 Jan 2009 13:26:00 GMT

to simplify the installation of my mobileprocessing-sketch i have generated a qrcode-tag that downloads the jad file and installs the midlet on the mobile phone.

simply point a qrcode reader like the one from zxing to the image and click on download

qrcode-random-installer

Tags , ,  | no comments

Tweet This! submit to reddit Digg!

Random numbers with MobileProcessing

Posted by Nikolaus Gradwohl Sun, 25 Jan 2009 07:14:00 GMT

I wrote my first sketch in MobileProcessing. MobileProcessing is a processing dialect, that can be used to write apps for java-capable mobile phones.

The application can be used to generate random numbers. every key-event shows a new random number.

/**
  a random number generator by
  <a href="http://www.local-guru.net/blog">Guru</a>
*/

PFont font;
int rnd = 0;

void setup() {  
  font = loadFont( FACE_PROPORTIONAL, STYLE_PLAIN, SIZE_LARGE );
  textFont( font );
  textAlign( CENTER );
  fill(0);
  rnd = random(0,100000);
  noLoop();
}

void draw() {
  background(255);
  text( "\n\n\n"+rnd, 0, 0, width, height );
}

void keyPressed() {
  rnd = random(0,100000);
  redraw();
}

Tags , , ,  | no comments

Tweet This! submit to reddit Digg!

the first snowdrop

Posted by Nikolaus Gradwohl Sat, 24 Jan 2009 18:15:00 GMT

today i made a picture of the first snowdrop this year. the picture was shot with my new mobile phone (K550i - has a realy nice 2 megapixel cam with autofocus)

snowdrop

Tags , , ,  | no comments

Tweet This! submit to reddit Digg!