<?xml version="1.0" encoding="UTF-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
  <id>tag:www.local-guru.net,2005:/blog/tag/j2me</id>
  <link type="text/html" href="http://www.local-guru.net" rel="alternate"/>
  <link type="application/atom+xml" href="http://www.local-guru.net/blog/tag/j2me.atom" rel="self"/>
  <title>GuruBlog : Articles about j2me</title>
  <subtitle>local-guru.net</subtitle>
  <updated>2009-04-26T09:50:00+02:00</updated>
  <generator>GuruBlog engine</generator>
  <entry>
    <id>tag:www.local-guru.net,2005:Article/164</id>
    <published>2009-04-26T09:50:00+02:00</published>
    <updated>2009-04-26T09:50:00+02:00</updated>
    <link type="text/html" href="http://www.local-guru.net//blog/2009/4/26/two-minute-timer-in-mobile-processing" rel="alternate"/>
    <author>
      <name>Nikolaus Gradwohl</name>
    </author>
    <title type="html">Two Minute Timer in mobile.processing</title>
    <category term="processing" scheme="http://www.local-guru.net/blog/tag/processing"/>
    <category term="mobilephone" scheme="http://www.local-guru.net/blog/tag/mobilephone"/>
    <category term="gtd" scheme="http://www.local-guru.net/blog/tag/gtd"/>
    <category term="j2me" scheme="http://www.local-guru.net/blog/tag/j2me"/>
    <content type="html">&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;
</content>
  </entry>
  <entry>
    <id>tag:www.local-guru.net,2005:Article/112</id>
    <published>2009-01-25T14:26:00+01:00</published>
    <updated>2009-01-25T14:26:00+01:00</updated>
    <link type="text/html" href="http://www.local-guru.net//blog/2009/1/25/qr-code-midlet-installer" rel="alternate"/>
    <author>
      <name>Nikolaus Gradwohl</name>
    </author>
    <title type="html">qr-code midlet installer</title>
    <category term="qrcode" scheme="http://www.local-guru.net/blog/tag/qrcode"/>
    <category term="mobilephone" scheme="http://www.local-guru.net/blog/tag/mobilephone"/>
    <category term="j2me" scheme="http://www.local-guru.net/blog/tag/j2me"/>
    <content type="html">&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;
</content>
  </entry>
  <entry>
    <id>tag:www.local-guru.net,2005:Article/111</id>
    <published>2009-01-25T08:14:00+01:00</published>
    <updated>2009-01-25T08:14:00+01:00</updated>
    <link type="text/html" href="http://www.local-guru.net//blog/2009/1/25/random-numbers-with-mobileprocessing" rel="alternate"/>
    <author>
      <name>Nikolaus Gradwohl</name>
    </author>
    <title type="html">Random numbers with MobileProcessing</title>
    <category term="processing" scheme="http://www.local-guru.net/blog/tag/processing"/>
    <category term="mobilephone" scheme="http://www.local-guru.net/blog/tag/mobilephone"/>
    <category term="j2me" scheme="http://www.local-guru.net/blog/tag/j2me"/>
    <category term="mobileprocessing" scheme="http://www.local-guru.net/blog/tag/mobileprocessing"/>
    <content type="html">&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;
</content>
  </entry>
</feed>

