<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
  <channel>
    <title>GuruBlog : Articles about j2me</title>
    <description>local-guru.net</description>
    <link>http://www.local-guru.net/blog</link>
    <ttl>40</ttl>
    <item>
      <title>Two Minute Timer in mobile.processing</title>
      <link>http://www.local-guru.net//blog/2009/4/26/two-minute-timer-in-mobile-processing</link>
      <description>&lt;p&gt;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 &lt;a href="http://mobile.processing.org/"&gt;mobile.processing&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;the programm starts a 120 sec countdown and sends the app in background. After 2 minutes the vibration alarm
is activated for 1 second.&lt;/p&gt;

&lt;p&gt;i made a qr-barcode that contains the link to the jad file. just point a qrcode reader like &lt;a href="http://zxing.org/w/"&gt;zxing&lt;/a&gt; to it and install it&lt;/p&gt;

&lt;p&gt;&lt;img src="http://www.local-guru.net/img/guru/qr-twominutetimer.png" alt="install twominute timer" /&gt;&lt;/p&gt;

&lt;p&gt;you can also use the direct link &lt;a href="http://www.local-guru.net/mobileprocessing/twominutetimer/midlet/twominutetimer.jad"&gt;http://www.local-guru.net/mobileprocessing/twominutetimer/midlet/twominutetimer.jad&lt;/a&gt; (but i think it is a bit complicated to enter on a mobile phone)&lt;/p&gt;
</description>
      <pubDate>2009-04-26T09:50:00+02:00</pubDate>
    </item>
    <item>
      <title>qr-code midlet installer</title>
      <link>http://www.local-guru.net//blog/2009/1/25/qr-code-midlet-installer</link>
      <description>&lt;p&gt;to simplify the installation of &lt;a href="http://www.local-guru.net/blog/2009/01/25/random-numbers-with-mobileprocessing"&gt;my mobileprocessing-sketch&lt;/a&gt;
i have generated a qrcode-tag that downloads the jad file and installs the midlet on the mobile phone.&lt;/p&gt;

&lt;p&gt;simply point a qrcode reader like the one from &lt;a href="http://zxing.org/w/"&gt;zxing&lt;/a&gt; to the image and click on download&lt;/p&gt;

&lt;p&gt;&lt;img src="http://www.local-guru.net/img/guru/qr-random.png" alt="qrcode-random-installer" /&gt;&lt;/p&gt;
</description>
      <pubDate>2009-01-25T14:26:00+01:00</pubDate>
    </item>
    <item>
      <title>Random numbers with MobileProcessing</title>
      <link>http://www.local-guru.net//blog/2009/1/25/random-numbers-with-mobileprocessing</link>
      <description>&lt;p&gt;I wrote my &lt;a href="http://www.local-guru.net/mobileprocessing/random/applet"&gt;first sketch&lt;/a&gt;
in &lt;a href="http://mobile.processing.org/"&gt;MobileProcessing&lt;/a&gt;. MobileProcessing is a processing dialect,
that can be used to write apps for java-capable mobile phones.&lt;/p&gt;

&lt;p&gt;The application can be used to generate random numbers. every key-event shows a new
random number.&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;/**
  a random number generator by
  &amp;lt;a href="http://www.local-guru.net/blog"&amp;gt;Guru&amp;lt;/a&amp;gt;
*/

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();
}
&lt;/code&gt;&lt;/pre&gt;
</description>
      <pubDate>2009-01-25T08:14:00+01:00</pubDate>
    </item>
  </channel>
</rss>

