<?xml version="1.0"?>
<?xml-stylesheet type="text/css" href="http://wiki.openmoko.org/skins/common/feed.css?303"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
		<id>http://wiki.openmoko.org/api.php?action=feedcontributions&amp;user=Ojw&amp;feedformat=atom</id>
		<title>Openmoko - User contributions [en]</title>
		<link rel="self" type="application/atom+xml" href="http://wiki.openmoko.org/api.php?action=feedcontributions&amp;user=Ojw&amp;feedformat=atom"/>
		<link rel="alternate" type="text/html" href="http://wiki.openmoko.org/wiki/Special:Contributions/Ojw"/>
		<updated>2013-05-25T23:20:33Z</updated>
		<subtitle>User contributions</subtitle>
		<generator>MediaWiki 1.19.6</generator>

	<entry>
		<id>http://wiki.openmoko.org/wiki/User:Ojw/Notes</id>
		<title>User:Ojw/Notes</title>
		<link rel="alternate" type="text/html" href="http://wiki.openmoko.org/wiki/User:Ojw/Notes"/>
				<updated>2010-07-15T21:29:40Z</updated>
		
		<summary type="html">&lt;p&gt;Ojw: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== accel == &lt;br /&gt;
[[Technical:Accelerometer Fundamentals]], [[Accelerometer data retrieval]]&lt;br /&gt;
&amp;lt;pre&amp;gt;#!/usr/bin/python&lt;br /&gt;
import struct&lt;br /&gt;
from math import sqrt&lt;br /&gt;
&lt;br /&gt;
x = 0&lt;br /&gt;
y = 0&lt;br /&gt;
z = 0&lt;br /&gt;
&lt;br /&gt;
in_file = open(&amp;quot;/dev/input/event3&amp;quot;,&amp;quot;rb&amp;quot;)&lt;br /&gt;
event = in_file.read(16)&lt;br /&gt;
&lt;br /&gt;
while event:&lt;br /&gt;
    (time1,time2, type, code, value) = struct.unpack('iihhi',event)&lt;br /&gt;
    time = time2 / 1000.0&lt;br /&gt;
&lt;br /&gt;
    if type == 2 or type == 3:&lt;br /&gt;
        if code == 0:&lt;br /&gt;
            x = value&lt;br /&gt;
        if code == 1:&lt;br /&gt;
            y = value&lt;br /&gt;
        if code == 2:&lt;br /&gt;
            z = value&lt;br /&gt;
    if type == 0 and code == 0:&lt;br /&gt;
&lt;br /&gt;
        sum = sqrt(x*x + y*y + z*z)&lt;br /&gt;
        px = x / sum&lt;br /&gt;
        py = y / sum&lt;br /&gt;
        pz = z / sum&lt;br /&gt;
        &lt;br /&gt;
        orientation = &amp;quot;unknown&amp;quot;&lt;br /&gt;
        if(px &amp;gt; 0.5):&lt;br /&gt;
            orientation =  &amp;quot;landscape&amp;quot;&lt;br /&gt;
        elif(px &amp;lt; -0.5):&lt;br /&gt;
            orientation =  &amp;quot;landscape, inverted&amp;quot;&lt;br /&gt;
        elif(py &amp;gt; 0.5):&lt;br /&gt;
            orientation =  &amp;quot;portrait, inverted&amp;quot;&lt;br /&gt;
        elif(py &amp;lt; -0.5):&lt;br /&gt;
            orientation =  &amp;quot;portrait&amp;quot;&lt;br /&gt;
        elif(pz &amp;gt; 0):&lt;br /&gt;
            orientation =  &amp;quot;upright&amp;quot;&lt;br /&gt;
        elif(pz &amp;lt; 0):&lt;br /&gt;
            orientation =  &amp;quot;on back&amp;quot;&lt;br /&gt;
&lt;br /&gt;
        print &amp;quot;%s (%+4.1f %+4.1f %+4.1f)&amp;quot; % (orientation, px,py,pz)&lt;br /&gt;
&lt;br /&gt;
    event = in_file.read(16)&lt;br /&gt;
in_file.close()&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== vibe ==&lt;br /&gt;
&lt;br /&gt;
[[Vibrator]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;import sys&lt;br /&gt;
import time&lt;br /&gt;
&lt;br /&gt;
outfile = open(&amp;quot;/sys/class/leds/neo1973:vibrator/brightness&amp;quot;, &amp;quot;w&amp;quot;, 1)&lt;br /&gt;
&lt;br /&gt;
for i in range(0,4):&lt;br /&gt;
    for f in range(10,255):&lt;br /&gt;
        outfile.write(str(f) + &amp;quot;\n&amp;quot;)&lt;br /&gt;
        time.sleep(0.01)&lt;br /&gt;
&lt;br /&gt;
outfile.write(&amp;quot;0\n&amp;quot;)&lt;br /&gt;
outfile.close()&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;/div&gt;</summary>
		<author><name>Ojw</name></author>	</entry>

	<entry>
		<id>http://wiki.openmoko.org/wiki/Talk:Wishlist/Computer_Mouse</id>
		<title>Talk:Wishlist/Computer Mouse</title>
		<link rel="alternate" type="text/html" href="http://wiki.openmoko.org/wiki/Talk:Wishlist/Computer_Mouse"/>
				<updated>2010-07-15T20:55:15Z</updated>
		
		<summary type="html">&lt;p&gt;Ojw: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;does anyone actually have code for this? [[User:Ojw|Ojw]] 20:55, 15 July 2010 (UTC)&lt;/div&gt;</summary>
		<author><name>Ojw</name></author>	</entry>

	<entry>
		<id>http://wiki.openmoko.org/wiki/User:Ojw/Notes</id>
		<title>User:Ojw/Notes</title>
		<link rel="alternate" type="text/html" href="http://wiki.openmoko.org/wiki/User:Ojw/Notes"/>
				<updated>2010-07-15T20:34:23Z</updated>
		
		<summary type="html">&lt;p&gt;Ojw: /* accel */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== accel == &lt;br /&gt;
[[Technical:Accelerometer Fundamentals]], [[Accelerometer data retrieval]]&lt;br /&gt;
&amp;lt;pre&amp;gt;#!/usr/bin/python&lt;br /&gt;
import struct&lt;br /&gt;
from math import sqrt&lt;br /&gt;
&lt;br /&gt;
x = 0&lt;br /&gt;
y = 0&lt;br /&gt;
z = 0&lt;br /&gt;
&lt;br /&gt;
in_file = open(&amp;quot;/dev/input/event3&amp;quot;,&amp;quot;rb&amp;quot;)&lt;br /&gt;
event = in_file.read(16)&lt;br /&gt;
&lt;br /&gt;
while event:&lt;br /&gt;
    (time1,time2, type, code, value) = struct.unpack('iihhi',event)&lt;br /&gt;
    time = time2 / 1000.0&lt;br /&gt;
&lt;br /&gt;
    if type == 2 or type == 3:&lt;br /&gt;
        if code == 0:&lt;br /&gt;
            x = value&lt;br /&gt;
        if code == 1:&lt;br /&gt;
            y = value&lt;br /&gt;
        if code == 2:&lt;br /&gt;
            z = value&lt;br /&gt;
    if type == 0 and code == 0:&lt;br /&gt;
&lt;br /&gt;
        sum = sqrt(x*x + y*y + z*z)&lt;br /&gt;
        px = x / sum&lt;br /&gt;
        py = y / sum&lt;br /&gt;
        pz = z / sum&lt;br /&gt;
        &lt;br /&gt;
        orientation = &amp;quot;unknown&amp;quot;&lt;br /&gt;
        if(px &amp;gt; 0.5):&lt;br /&gt;
            orientation =  &amp;quot;landscape&amp;quot;&lt;br /&gt;
        elif(px &amp;lt; -0.5):&lt;br /&gt;
            orientation =  &amp;quot;landscape, inverted&amp;quot;&lt;br /&gt;
        elif(py &amp;gt; 0.5):&lt;br /&gt;
            orientation =  &amp;quot;portrait, inverted&amp;quot;&lt;br /&gt;
        elif(py &amp;lt; -0.5):&lt;br /&gt;
            orientation =  &amp;quot;portrait&amp;quot;&lt;br /&gt;
        elif(pz &amp;gt; 0):&lt;br /&gt;
            orientation =  &amp;quot;upright&amp;quot;&lt;br /&gt;
        elif(pz &amp;lt; 0):&lt;br /&gt;
            orientation =  &amp;quot;on back&amp;quot;&lt;br /&gt;
&lt;br /&gt;
        print &amp;quot;%s (%+4.1f %+4.1f %+4.1f)&amp;quot; % (orientation, px,py,pz)&lt;br /&gt;
&lt;br /&gt;
    event = in_file.read(16)&lt;br /&gt;
in_file.close()&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;/div&gt;</summary>
		<author><name>Ojw</name></author>	</entry>

	<entry>
		<id>http://wiki.openmoko.org/wiki/User:Ojw/Notes</id>
		<title>User:Ojw/Notes</title>
		<link rel="alternate" type="text/html" href="http://wiki.openmoko.org/wiki/User:Ojw/Notes"/>
				<updated>2010-07-15T20:33:43Z</updated>
		
		<summary type="html">&lt;p&gt;Ojw: New page: == accel ==  Technical:Accelerometer Fundamentals Accelerometer data retrieval &amp;lt;pre&amp;gt;#!/usr/bin/python import struct from math import sqrt  x = 0 y = 0 z = 0  in_file = open(&amp;quot;/dev/i...&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== accel == &lt;br /&gt;
[[Technical:Accelerometer Fundamentals]] [[Accelerometer data retrieval]]&lt;br /&gt;
&amp;lt;pre&amp;gt;#!/usr/bin/python&lt;br /&gt;
import struct&lt;br /&gt;
from math import sqrt&lt;br /&gt;
&lt;br /&gt;
x = 0&lt;br /&gt;
y = 0&lt;br /&gt;
z = 0&lt;br /&gt;
&lt;br /&gt;
in_file = open(&amp;quot;/dev/input/event3&amp;quot;,&amp;quot;rb&amp;quot;)&lt;br /&gt;
event = in_file.read(16)&lt;br /&gt;
&lt;br /&gt;
while event:&lt;br /&gt;
    (time1,time2, type, code, value) = struct.unpack('iihhi',event)&lt;br /&gt;
    time = time2 / 1000.0&lt;br /&gt;
&lt;br /&gt;
    if type == 2 or type == 3:&lt;br /&gt;
        if code == 0:&lt;br /&gt;
            x = value&lt;br /&gt;
        if code == 1:&lt;br /&gt;
            y = value&lt;br /&gt;
        if code == 2:&lt;br /&gt;
            z = value&lt;br /&gt;
    if type == 0 and code == 0:&lt;br /&gt;
&lt;br /&gt;
        sum = sqrt(x*x + y*y + z*z)&lt;br /&gt;
        px = x / sum&lt;br /&gt;
        py = y / sum&lt;br /&gt;
        pz = z / sum&lt;br /&gt;
        &lt;br /&gt;
        orientation = &amp;quot;unknown&amp;quot;&lt;br /&gt;
        if(px &amp;gt; 0.5):&lt;br /&gt;
            orientation =  &amp;quot;landscape&amp;quot;&lt;br /&gt;
        elif(px &amp;lt; -0.5):&lt;br /&gt;
            orientation =  &amp;quot;landscape, inverted&amp;quot;&lt;br /&gt;
        elif(py &amp;gt; 0.5):&lt;br /&gt;
            orientation =  &amp;quot;portrait, inverted&amp;quot;&lt;br /&gt;
        elif(py &amp;lt; -0.5):&lt;br /&gt;
            orientation =  &amp;quot;portrait&amp;quot;&lt;br /&gt;
        elif(pz &amp;gt; 0):&lt;br /&gt;
            orientation =  &amp;quot;upright&amp;quot;&lt;br /&gt;
        elif(pz &amp;lt; 0):&lt;br /&gt;
            orientation =  &amp;quot;on back&amp;quot;&lt;br /&gt;
&lt;br /&gt;
        print &amp;quot;%s (%+4.1f %+4.1f %+4.1f)&amp;quot; % (orientation, px,py,pz)&lt;br /&gt;
&lt;br /&gt;
    event = in_file.read(16)&lt;br /&gt;
in_file.close()&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;/div&gt;</summary>
		<author><name>Ojw</name></author>	</entry>

	<entry>
		<id>http://wiki.openmoko.org/wiki/User:Ojw</id>
		<title>User:Ojw</title>
		<link rel="alternate" type="text/html" href="http://wiki.openmoko.org/wiki/User:Ojw"/>
				<updated>2010-07-15T20:33:38Z</updated>
		
		<summary type="html">&lt;p&gt;Ojw: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;ojwlists at gmail&lt;br /&gt;
&lt;br /&gt;
[[user:Ojw/Notes]]&lt;/div&gt;</summary>
		<author><name>Ojw</name></author>	</entry>

	<entry>
		<id>http://wiki.openmoko.org/wiki/User:Ojw</id>
		<title>User:Ojw</title>
		<link rel="alternate" type="text/html" href="http://wiki.openmoko.org/wiki/User:Ojw"/>
				<updated>2008-12-30T17:12:09Z</updated>
		
		<summary type="html">&lt;p&gt;Ojw: New page: ojwlists at gmail&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;ojwlists at gmail&lt;/div&gt;</summary>
		<author><name>Ojw</name></author>	</entry>

	<entry>
		<id>http://wiki.openmoko.org/wiki/LED_clock</id>
		<title>LED clock</title>
		<link rel="alternate" type="text/html" href="http://wiki.openmoko.org/wiki/LED_clock"/>
				<updated>2008-12-30T13:57:14Z</updated>
		
		<summary type="html">&lt;p&gt;Ojw: /* Usage */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Image:LED clock.jpg|thumb]]&lt;br /&gt;
When an Openmoko is sitting unused at night, turn it into an alarm clock with large 7-segment digits on a black background in landscape mode.&lt;br /&gt;
&lt;br /&gt;
This differs from the regular clock in that it's intended to be readable from a distance or with unfocused eyes, similar to commercial LED alarm clocks.&lt;br /&gt;
&lt;br /&gt;
Since it's not limited to a single-colour display, it can do a few neat things like changing colour to signify the hour before an alarm, or hue changing through night, or gradually brightening the whole display to [http://en.wikipedia.org/wiki/Dawn_simulation simulate a dawn] and provide gradual wake-up.&lt;br /&gt;
&lt;br /&gt;
This provides an alternative to having the OM sitting in normal desktop mode while in a bedroom at night (which is too much unwanted illumination for no purpose), and an alternative to putting it into sleep mode (make it do something useful, make it easier to find)&lt;br /&gt;
&lt;br /&gt;
== Installing ==&lt;br /&gt;
&lt;br /&gt;
Download python file from:&lt;br /&gt;
&lt;br /&gt;
http://projects.openmoko.org/projects/ledclock/&lt;br /&gt;
&lt;br /&gt;
Carlo Minucci and Jakob Heusinger are working on the packaging, and an .opkg should be available soon.&lt;br /&gt;
&lt;br /&gt;
== Usage ==&lt;br /&gt;
&lt;br /&gt;
Touch the right side of the screen to scroll through the 'menu' pages.  It will automatically return to normal clock mode if you don't press anything for 5 seconds.&lt;br /&gt;
&lt;br /&gt;
{| border=1&lt;br /&gt;
! Page&lt;br /&gt;
! Actions&lt;br /&gt;
! Notes&lt;br /&gt;
|-&lt;br /&gt;
| Main page&lt;br /&gt;
| Touch anywhere to get to the menus&lt;br /&gt;
| Can someone tell me how to [http://stackoverflow.com/questions/397927/turn-off-screensaver-while-openmoko-app-is-running turn off the screensaver] while this is running?&lt;br /&gt;
|-&lt;br /&gt;
| Alarm&lt;br /&gt;
| Non-functional&lt;br /&gt;
| this isn't an alarm clock (yet)&lt;br /&gt;
|-&lt;br /&gt;
| Colour&lt;br /&gt;
| Touch the screen to select a colour for the display&lt;br /&gt;
| List of colours is defined in an array &amp;quot;self.colours&amp;quot;&lt;br /&gt;
|- &lt;br /&gt;
| Brightness&lt;br /&gt;
| Touch top of screen to increase brightness, bottom of screen to decrease&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| Options&lt;br /&gt;
| Touch any option to toggle it&lt;br /&gt;
| Use 'rotate' option to go into landscape/portrait mode (this is done internally, not using the window manager).&lt;br /&gt;
|-&lt;br /&gt;
| Quit page&lt;br /&gt;
| Touch this page to exit the program&lt;br /&gt;
| Just calls sys.exit at the moment, can someone get it to close the window nicely?&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
To turn-off Openmoko's display blanking, add disable=1 to the &amp;lt;nowiki&amp;gt;[odeviced.idlenotifier]&amp;lt;/nowiki&amp;gt; section of /etc/frameworkd.conf (in [[SHR]]).  The device will need to be attached to a charger while acting as a clock, because it keeps the screen powered.&lt;br /&gt;
&lt;br /&gt;
You may need to set screen brightness to minimum in Openmoko's settings, to prevent the 'black' regions of screen from being too bright.&lt;br /&gt;
&lt;br /&gt;
== Development ==&lt;br /&gt;
&lt;br /&gt;
Hack away on whatever you want; let [[User:Ojw|Ojw]] know if you need permissions to release files.&lt;br /&gt;
&lt;br /&gt;
Due to some subversion problems, I'm currently uploading each version of the source-code as a 'release' rather than using version-control.&lt;br /&gt;
&lt;br /&gt;
[[Category:Utility Applications]]&lt;/div&gt;</summary>
		<author><name>Ojw</name></author>	</entry>

	<entry>
		<id>http://wiki.openmoko.org/wiki/LED_clock</id>
		<title>LED clock</title>
		<link rel="alternate" type="text/html" href="http://wiki.openmoko.org/wiki/LED_clock"/>
				<updated>2008-12-30T13:56:59Z</updated>
		
		<summary type="html">&lt;p&gt;Ojw: /* Usage */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Image:LED clock.jpg|thumb]]&lt;br /&gt;
When an Openmoko is sitting unused at night, turn it into an alarm clock with large 7-segment digits on a black background in landscape mode.&lt;br /&gt;
&lt;br /&gt;
This differs from the regular clock in that it's intended to be readable from a distance or with unfocused eyes, similar to commercial LED alarm clocks.&lt;br /&gt;
&lt;br /&gt;
Since it's not limited to a single-colour display, it can do a few neat things like changing colour to signify the hour before an alarm, or hue changing through night, or gradually brightening the whole display to [http://en.wikipedia.org/wiki/Dawn_simulation simulate a dawn] and provide gradual wake-up.&lt;br /&gt;
&lt;br /&gt;
This provides an alternative to having the OM sitting in normal desktop mode while in a bedroom at night (which is too much unwanted illumination for no purpose), and an alternative to putting it into sleep mode (make it do something useful, make it easier to find)&lt;br /&gt;
&lt;br /&gt;
== Installing ==&lt;br /&gt;
&lt;br /&gt;
Download python file from:&lt;br /&gt;
&lt;br /&gt;
http://projects.openmoko.org/projects/ledclock/&lt;br /&gt;
&lt;br /&gt;
Carlo Minucci and Jakob Heusinger are working on the packaging, and an .opkg should be available soon.&lt;br /&gt;
&lt;br /&gt;
== Usage ==&lt;br /&gt;
&lt;br /&gt;
Touch the right side of the screen to scroll through the 'menu' pages.  It will automatically return to normal clock mode if you don't press anything for 5 seconds.&lt;br /&gt;
&lt;br /&gt;
{| border=1&lt;br /&gt;
! Page&lt;br /&gt;
! Actions&lt;br /&gt;
! Notes&lt;br /&gt;
|-&lt;br /&gt;
| Main page&lt;br /&gt;
| Touch anywhere to get to the menus&lt;br /&gt;
| Can someone tell me how to [http://stackoverflow.com/questions/397927/turn-off-screensaver-while-openmoko-app-is-running turn off the screensaver] while this is running?&lt;br /&gt;
|-&lt;br /&gt;
| Alarm&lt;br /&gt;
| Non-functional&lt;br /&gt;
| this isn't an alarm clock (yet)&lt;br /&gt;
|-&lt;br /&gt;
| Colour&lt;br /&gt;
| Touch the screen to select a colour for the display&lt;br /&gt;
| List of colours is defined in an array &amp;quot;self.colours&amp;quot;&lt;br /&gt;
|- &lt;br /&gt;
| Brightness&lt;br /&gt;
| Touch top of screen to increase brightness, bottom of screen to decrease&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| Options&lt;br /&gt;
| Touch any option to toggle it&lt;br /&gt;
| Use 'rotate' option to go into landscape/portrait mode (this is done internally, not using the window manager).&lt;br /&gt;
|-&lt;br /&gt;
| Quit page&lt;br /&gt;
| Touch this page to exit the program&lt;br /&gt;
| Just calls sys.exit at the moment, can someone get it to close the window nicely?&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
To turn-off Openmoko's display blanking, add disable=1 to the &amp;lt;nowiki&amp;gt;[odeviced.idlenotifier]&amp;lt;/nowiki&amp;gt; section of /etc/frameworkd.conf (in [[SHR]]).  The device will need to be attached to a charger while acting as a clock, because it keeps the screen powered.&lt;br /&gt;
&lt;br /&gt;
You may need to set screen brightness to minimum in Openmoko's settings, to prevent the 'black' regions of screen from being too bright.  (even then, black is still quite bright)&lt;br /&gt;
&lt;br /&gt;
== Development ==&lt;br /&gt;
&lt;br /&gt;
Hack away on whatever you want; let [[User:Ojw|Ojw]] know if you need permissions to release files.&lt;br /&gt;
&lt;br /&gt;
Due to some subversion problems, I'm currently uploading each version of the source-code as a 'release' rather than using version-control.&lt;br /&gt;
&lt;br /&gt;
[[Category:Utility Applications]]&lt;/div&gt;</summary>
		<author><name>Ojw</name></author>	</entry>

	<entry>
		<id>http://wiki.openmoko.org/wiki/LED_clock</id>
		<title>LED clock</title>
		<link rel="alternate" type="text/html" href="http://wiki.openmoko.org/wiki/LED_clock"/>
				<updated>2008-12-30T13:56:16Z</updated>
		
		<summary type="html">&lt;p&gt;Ojw: /* Usage */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Image:LED clock.jpg|thumb]]&lt;br /&gt;
When an Openmoko is sitting unused at night, turn it into an alarm clock with large 7-segment digits on a black background in landscape mode.&lt;br /&gt;
&lt;br /&gt;
This differs from the regular clock in that it's intended to be readable from a distance or with unfocused eyes, similar to commercial LED alarm clocks.&lt;br /&gt;
&lt;br /&gt;
Since it's not limited to a single-colour display, it can do a few neat things like changing colour to signify the hour before an alarm, or hue changing through night, or gradually brightening the whole display to [http://en.wikipedia.org/wiki/Dawn_simulation simulate a dawn] and provide gradual wake-up.&lt;br /&gt;
&lt;br /&gt;
This provides an alternative to having the OM sitting in normal desktop mode while in a bedroom at night (which is too much unwanted illumination for no purpose), and an alternative to putting it into sleep mode (make it do something useful, make it easier to find)&lt;br /&gt;
&lt;br /&gt;
== Installing ==&lt;br /&gt;
&lt;br /&gt;
Download python file from:&lt;br /&gt;
&lt;br /&gt;
http://projects.openmoko.org/projects/ledclock/&lt;br /&gt;
&lt;br /&gt;
Carlo Minucci and Jakob Heusinger are working on the packaging, and an .opkg should be available soon.&lt;br /&gt;
&lt;br /&gt;
== Usage ==&lt;br /&gt;
&lt;br /&gt;
Touch the right side of the screen to scroll through the 'menu' pages.  It will automatically return to normal clock mode if you don't press anything for 5 seconds.&lt;br /&gt;
&lt;br /&gt;
{| border=1&lt;br /&gt;
! Page&lt;br /&gt;
! Actions&lt;br /&gt;
! Notes&lt;br /&gt;
|-&lt;br /&gt;
| Main page&lt;br /&gt;
| Touch anywhere to get to the menus&lt;br /&gt;
| Can someone tell me how to [http://stackoverflow.com/questions/397927/turn-off-screensaver-while-openmoko-app-is-running turn off the screensaver] while this is running?&lt;br /&gt;
|-&lt;br /&gt;
| Alarm&lt;br /&gt;
| Non-functional&lt;br /&gt;
| this isn't an alarm clock (yet)&lt;br /&gt;
|-&lt;br /&gt;
| Colour&lt;br /&gt;
| Touch the screen to select a colour for the display&lt;br /&gt;
| List of colours is defined in an array &amp;quot;self.colours&amp;quot;&lt;br /&gt;
|- &lt;br /&gt;
| Brightness&lt;br /&gt;
| Touch top of screen to increase brightness, bottom of screen to decrease&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| Options&lt;br /&gt;
| Touch any option to toggle it&lt;br /&gt;
| Use 'rotate' option to go into landscape/portrait mode (this is done internally, not using the window manager).&lt;br /&gt;
|-&lt;br /&gt;
| Quit page&lt;br /&gt;
| Touch this page to exit the program&lt;br /&gt;
| Just calls sys.exit at the moment, can someone get it to close the window nicely?&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
To turn-off Openmoko's display blanking, add disable=1 to the &amp;lt;nowiki&amp;gt;[odeviced.idlenotifier]&amp;lt;/nowiki&amp;gt; section of /etc/frameworkd.conf (in [[SHR]]).  The device will need to be attached to a charger while acting as a clock, because it keeps the screen powered.&lt;br /&gt;
&lt;br /&gt;
You may need to set screen brightness to minimum in Openmoko's settings, to prevent the 'black' regions of screen from being too bright.  Even at minimum brightness, black is still very bright in a darkened room.&lt;br /&gt;
&lt;br /&gt;
== Development ==&lt;br /&gt;
&lt;br /&gt;
Hack away on whatever you want; let [[User:Ojw|Ojw]] know if you need permissions to release files.&lt;br /&gt;
&lt;br /&gt;
Due to some subversion problems, I'm currently uploading each version of the source-code as a 'release' rather than using version-control.&lt;br /&gt;
&lt;br /&gt;
[[Category:Utility Applications]]&lt;/div&gt;</summary>
		<author><name>Ojw</name></author>	</entry>

	<entry>
		<id>http://wiki.openmoko.org/wiki/Talk:LED_clock</id>
		<title>Talk:LED clock</title>
		<link rel="alternate" type="text/html" href="http://wiki.openmoko.org/wiki/Talk:LED_clock"/>
				<updated>2008-12-30T13:49:51Z</updated>
		
		<summary type="html">&lt;p&gt;Ojw: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
== Proposed icons ==&lt;br /&gt;
&lt;br /&gt;
{|&lt;br /&gt;
|-&lt;br /&gt;
| 1&lt;br /&gt;
| [[Image:ledclock_icon1.png]]&lt;br /&gt;
|-&lt;br /&gt;
| 2&lt;br /&gt;
| [[Image:ledclock_icon2.png]]&lt;br /&gt;
|-&lt;br /&gt;
| 3&lt;br /&gt;
| [[Image:ledclock_icon3.png]]&lt;br /&gt;
|-&lt;br /&gt;
| 4&lt;br /&gt;
| [[Image:ledclock_icon4.png]]&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Ojw</name></author>	</entry>

	<entry>
		<id>http://wiki.openmoko.org/wiki/LED_clock</id>
		<title>LED clock</title>
		<link rel="alternate" type="text/html" href="http://wiki.openmoko.org/wiki/LED_clock"/>
				<updated>2008-12-30T13:48:08Z</updated>
		
		<summary type="html">&lt;p&gt;Ojw: /* Usage */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Image:LED clock.jpg|thumb]]&lt;br /&gt;
When an Openmoko is sitting unused at night, turn it into an alarm clock with large 7-segment digits on a black background in landscape mode.&lt;br /&gt;
&lt;br /&gt;
This differs from the regular clock in that it's intended to be readable from a distance or with unfocused eyes, similar to commercial LED alarm clocks.&lt;br /&gt;
&lt;br /&gt;
Since it's not limited to a single-colour display, it can do a few neat things like changing colour to signify the hour before an alarm, or hue changing through night, or gradually brightening the whole display to [http://en.wikipedia.org/wiki/Dawn_simulation simulate a dawn] and provide gradual wake-up.&lt;br /&gt;
&lt;br /&gt;
This provides an alternative to having the OM sitting in normal desktop mode while in a bedroom at night (which is too much unwanted illumination for no purpose), and an alternative to putting it into sleep mode (make it do something useful, make it easier to find)&lt;br /&gt;
&lt;br /&gt;
== Installing ==&lt;br /&gt;
&lt;br /&gt;
Download python file from:&lt;br /&gt;
&lt;br /&gt;
http://projects.openmoko.org/projects/ledclock/&lt;br /&gt;
&lt;br /&gt;
Carlo Minucci and Jakob Heusinger are working on the packaging, and an .opkg should be available soon.&lt;br /&gt;
&lt;br /&gt;
== Usage ==&lt;br /&gt;
&lt;br /&gt;
Touch the right side of the screen to scroll through the 'menu' pages.  It will automatically return to normal clock mode if you don't press anything for 5 seconds.&lt;br /&gt;
&lt;br /&gt;
{| border=1&lt;br /&gt;
! Page&lt;br /&gt;
! Actions&lt;br /&gt;
! Notes&lt;br /&gt;
|-&lt;br /&gt;
| Main page&lt;br /&gt;
| Touch anywhere to get to the menus&lt;br /&gt;
| Can someone tell me how to [http://stackoverflow.com/questions/397927/turn-off-screensaver-while-openmoko-app-is-running turn off the screensaver] while this is running?&lt;br /&gt;
|-&lt;br /&gt;
| Alarm&lt;br /&gt;
| Non-functional&lt;br /&gt;
| this isn't an alarm clock (yet)&lt;br /&gt;
|-&lt;br /&gt;
| Colour&lt;br /&gt;
| Touch the screen to select a colour for the display&lt;br /&gt;
| List of colours is defined in an array &amp;quot;self.colours&amp;quot;&lt;br /&gt;
|- &lt;br /&gt;
| Brightness&lt;br /&gt;
| Touch top of screen to increase brightness, bottom of screen to decrease&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| Options&lt;br /&gt;
| Touch any option to toggle it&lt;br /&gt;
| Use 'rotate' option to go into landscape/portrait mode (this is done internally, not using the window manager).&lt;br /&gt;
|-&lt;br /&gt;
| Quit page&lt;br /&gt;
| Touch this page to exit the program&lt;br /&gt;
| Just calls sys.exit at the moment, can someone get it to close the window nicely?&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
To turn-off Openmoko's display blanking, add disable=1 to the &amp;lt;nowiki&amp;gt;[odeviced.idlenotifier]&amp;lt;/nowiki&amp;gt; section of /etc/frameworkd.conf (in [[SHR]]).  The device will need to be attached to a charger while acting as a clock, because it keeps the screen powered.&lt;br /&gt;
&lt;br /&gt;
== Development ==&lt;br /&gt;
&lt;br /&gt;
Hack away on whatever you want; let [[User:Ojw|Ojw]] know if you need permissions to release files.&lt;br /&gt;
&lt;br /&gt;
Due to some subversion problems, I'm currently uploading each version of the source-code as a 'release' rather than using version-control.&lt;br /&gt;
&lt;br /&gt;
[[Category:Utility Applications]]&lt;/div&gt;</summary>
		<author><name>Ojw</name></author>	</entry>

	<entry>
		<id>http://wiki.openmoko.org/wiki/LED_clock</id>
		<title>LED clock</title>
		<link rel="alternate" type="text/html" href="http://wiki.openmoko.org/wiki/LED_clock"/>
				<updated>2008-12-30T13:47:22Z</updated>
		
		<summary type="html">&lt;p&gt;Ojw: /* Usage */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Image:LED clock.jpg|thumb]]&lt;br /&gt;
When an Openmoko is sitting unused at night, turn it into an alarm clock with large 7-segment digits on a black background in landscape mode.&lt;br /&gt;
&lt;br /&gt;
This differs from the regular clock in that it's intended to be readable from a distance or with unfocused eyes, similar to commercial LED alarm clocks.&lt;br /&gt;
&lt;br /&gt;
Since it's not limited to a single-colour display, it can do a few neat things like changing colour to signify the hour before an alarm, or hue changing through night, or gradually brightening the whole display to [http://en.wikipedia.org/wiki/Dawn_simulation simulate a dawn] and provide gradual wake-up.&lt;br /&gt;
&lt;br /&gt;
This provides an alternative to having the OM sitting in normal desktop mode while in a bedroom at night (which is too much unwanted illumination for no purpose), and an alternative to putting it into sleep mode (make it do something useful, make it easier to find)&lt;br /&gt;
&lt;br /&gt;
== Installing ==&lt;br /&gt;
&lt;br /&gt;
Download python file from:&lt;br /&gt;
&lt;br /&gt;
http://projects.openmoko.org/projects/ledclock/&lt;br /&gt;
&lt;br /&gt;
Carlo Minucci and Jakob Heusinger are working on the packaging, and an .opkg should be available soon.&lt;br /&gt;
&lt;br /&gt;
== Usage ==&lt;br /&gt;
&lt;br /&gt;
Touch the right side of the screen to scroll through the 'menu' pages.  It will automatically return to normal clock mode if you don't press anything for 5 seconds.&lt;br /&gt;
&lt;br /&gt;
{| border=1&lt;br /&gt;
! Page&lt;br /&gt;
! Actions&lt;br /&gt;
! Notes&lt;br /&gt;
|-&lt;br /&gt;
| Main page&lt;br /&gt;
| Touch anywhere to get to the menus&lt;br /&gt;
| Can someone tell me how to [http://stackoverflow.com/questions/397927/turn-off-screensaver-while-openmoko-app-is-running turn off the screensaver] while this is running?&lt;br /&gt;
|-&lt;br /&gt;
| Alarm&lt;br /&gt;
| Non-functional&lt;br /&gt;
| this isn't an alarm clock (yet)&lt;br /&gt;
|-&lt;br /&gt;
| Colour&lt;br /&gt;
| Touch the screen to select a colour for the display&lt;br /&gt;
| List of colours is defined in an array &amp;quot;self.colours&amp;quot;&lt;br /&gt;
|- &lt;br /&gt;
| Brightness&lt;br /&gt;
| Touch top of screen to increase brightness, bottom of screen to decrease&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| Options&lt;br /&gt;
| Touch any option to toggle it&lt;br /&gt;
| Use 'rotate' option to go into landscape/portrait mode (this is done internally, not using the window manager).&lt;br /&gt;
|-&lt;br /&gt;
| Quit page&lt;br /&gt;
| Touch this page to exit the program&lt;br /&gt;
| Just calls sys.exit at the moment, can someone get it to close the window nicely?&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
To turn-off the display blanking, add disable=1 to the &amp;lt;nowiki&amp;gt;[odeviced.idlenotifier]&amp;lt;/nowiki&amp;gt; section of /etc/frameworkd.conf.  The device will need to be attached to a charger while acting as a clock, because it keeps the screen powered.&lt;br /&gt;
&lt;br /&gt;
== Development ==&lt;br /&gt;
&lt;br /&gt;
Hack away on whatever you want; let [[User:Ojw|Ojw]] know if you need permissions to release files.&lt;br /&gt;
&lt;br /&gt;
Due to some subversion problems, I'm currently uploading each version of the source-code as a 'release' rather than using version-control.&lt;br /&gt;
&lt;br /&gt;
[[Category:Utility Applications]]&lt;/div&gt;</summary>
		<author><name>Ojw</name></author>	</entry>

	<entry>
		<id>http://wiki.openmoko.org/wiki/Talk:LED_clock</id>
		<title>Talk:LED clock</title>
		<link rel="alternate" type="text/html" href="http://wiki.openmoko.org/wiki/Talk:LED_clock"/>
				<updated>2008-12-30T13:42:45Z</updated>
		
		<summary type="html">&lt;p&gt;Ojw: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;It would be nice if you could set this as the default screensaver only between 9pm and 9am or something [[User:Ojw|Ojw]] 16:57, 29 December 2008 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Proposed icons ==&lt;br /&gt;
&lt;br /&gt;
{|&lt;br /&gt;
|-&lt;br /&gt;
| 1&lt;br /&gt;
| [[Image:ledclock_icon1.png]]&lt;br /&gt;
|-&lt;br /&gt;
| 2&lt;br /&gt;
| [[Image:ledclock_icon2.png]]&lt;br /&gt;
|-&lt;br /&gt;
| 3&lt;br /&gt;
| [[Image:ledclock_icon3.png]]&lt;br /&gt;
|-&lt;br /&gt;
| 4&lt;br /&gt;
| [[Image:ledclock_icon4.png]]&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Ojw</name></author>	</entry>

	<entry>
		<id>http://wiki.openmoko.org/wiki/Talk:LED_clock</id>
		<title>Talk:LED clock</title>
		<link rel="alternate" type="text/html" href="http://wiki.openmoko.org/wiki/Talk:LED_clock"/>
				<updated>2008-12-30T13:41:46Z</updated>
		
		<summary type="html">&lt;p&gt;Ojw: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;It would be nice if you could set this as the default screensaver only between 9pm and 9am or something [[User:Ojw|Ojw]] 16:57, 29 December 2008 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Proposed icons ==&lt;br /&gt;
&lt;br /&gt;
{|&lt;br /&gt;
| 1&amp;lt;br&amp;gt;[[Image:ledclock_icon1.png]]&lt;br /&gt;
| 2&amp;lt;br&amp;gt;[[Image:ledclock_icon2.png]]&lt;br /&gt;
| 3&amp;lt;br&amp;gt;[[Image:ledclock_icon3.png]]&lt;br /&gt;
| 4&amp;lt;br&amp;gt;[[Image:ledclock_icon4.png]]&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Ojw</name></author>	</entry>

	<entry>
		<id>http://wiki.openmoko.org/wiki/File:Ledclock_icon4.png</id>
		<title>File:Ledclock icon4.png</title>
		<link rel="alternate" type="text/html" href="http://wiki.openmoko.org/wiki/File:Ledclock_icon4.png"/>
				<updated>2008-12-30T13:40:34Z</updated>
		
		<summary type="html">&lt;p&gt;Ojw: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Ojw</name></author>	</entry>

	<entry>
		<id>http://wiki.openmoko.org/wiki/File:Ledclock_icon3.png</id>
		<title>File:Ledclock icon3.png</title>
		<link rel="alternate" type="text/html" href="http://wiki.openmoko.org/wiki/File:Ledclock_icon3.png"/>
				<updated>2008-12-30T13:40:28Z</updated>
		
		<summary type="html">&lt;p&gt;Ojw: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Ojw</name></author>	</entry>

	<entry>
		<id>http://wiki.openmoko.org/wiki/File:Ledclock_icon2.png</id>
		<title>File:Ledclock icon2.png</title>
		<link rel="alternate" type="text/html" href="http://wiki.openmoko.org/wiki/File:Ledclock_icon2.png"/>
				<updated>2008-12-30T13:40:24Z</updated>
		
		<summary type="html">&lt;p&gt;Ojw: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Ojw</name></author>	</entry>

	<entry>
		<id>http://wiki.openmoko.org/wiki/File:Ledclock_icon1.png</id>
		<title>File:Ledclock icon1.png</title>
		<link rel="alternate" type="text/html" href="http://wiki.openmoko.org/wiki/File:Ledclock_icon1.png"/>
				<updated>2008-12-30T13:40:20Z</updated>
		
		<summary type="html">&lt;p&gt;Ojw: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Ojw</name></author>	</entry>

	<entry>
		<id>http://wiki.openmoko.org/wiki/LED_clock</id>
		<title>LED clock</title>
		<link rel="alternate" type="text/html" href="http://wiki.openmoko.org/wiki/LED_clock"/>
				<updated>2008-12-30T13:37:11Z</updated>
		
		<summary type="html">&lt;p&gt;Ojw: /* Installing */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Image:LED clock.jpg|thumb]]&lt;br /&gt;
When an Openmoko is sitting unused at night, turn it into an alarm clock with large 7-segment digits on a black background in landscape mode.&lt;br /&gt;
&lt;br /&gt;
This differs from the regular clock in that it's intended to be readable from a distance or with unfocused eyes, similar to commercial LED alarm clocks.&lt;br /&gt;
&lt;br /&gt;
Since it's not limited to a single-colour display, it can do a few neat things like changing colour to signify the hour before an alarm, or hue changing through night, or gradually brightening the whole display to [http://en.wikipedia.org/wiki/Dawn_simulation simulate a dawn] and provide gradual wake-up.&lt;br /&gt;
&lt;br /&gt;
This provides an alternative to having the OM sitting in normal desktop mode while in a bedroom at night (which is too much unwanted illumination for no purpose), and an alternative to putting it into sleep mode (make it do something useful, make it easier to find)&lt;br /&gt;
&lt;br /&gt;
== Installing ==&lt;br /&gt;
&lt;br /&gt;
Download python file from:&lt;br /&gt;
&lt;br /&gt;
http://projects.openmoko.org/projects/ledclock/&lt;br /&gt;
&lt;br /&gt;
Carlo Minucci and Jakob Heusinger are working on the packaging, and an .opkg should be available soon.&lt;br /&gt;
&lt;br /&gt;
== Usage ==&lt;br /&gt;
&lt;br /&gt;
Touch the right side of the screen to scroll through the 'menu' pages.  It will automatically return to normal clock mode if you don't press anything for 5 seconds.&lt;br /&gt;
&lt;br /&gt;
{| border=1&lt;br /&gt;
! Page&lt;br /&gt;
! Actions&lt;br /&gt;
! Notes&lt;br /&gt;
|-&lt;br /&gt;
| Main page&lt;br /&gt;
| Touch anywhere to get to the menus&lt;br /&gt;
| Can someone tell me how to [http://stackoverflow.com/questions/397927/turn-off-screensaver-while-openmoko-app-is-running turn off the screensaver] while this is running?&lt;br /&gt;
|-&lt;br /&gt;
| Alarm&lt;br /&gt;
| Non-functional&lt;br /&gt;
| this isn't an alarm clock (yet)&lt;br /&gt;
|-&lt;br /&gt;
| Colour&lt;br /&gt;
| Touch the screen to select a colour for the display&lt;br /&gt;
| List of colours is defined in an array &amp;quot;self.colours&amp;quot;&lt;br /&gt;
|- &lt;br /&gt;
| Brightness&lt;br /&gt;
| Touch top of screen to increase brightness, bottom of screen to decrease&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| Options&lt;br /&gt;
| Touch any option to toggle it&lt;br /&gt;
| Use 'rotate' option to go into landscape/portrait mode (this is done internally, not using the window manager).&lt;br /&gt;
|-&lt;br /&gt;
| Quit page&lt;br /&gt;
| Touch this page to exit the program&lt;br /&gt;
| Just calls sys.exit at the moment, can someone get it to close the window nicely?&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Development ==&lt;br /&gt;
&lt;br /&gt;
Hack away on whatever you want; let [[User:Ojw|Ojw]] know if you need permissions to release files.&lt;br /&gt;
&lt;br /&gt;
Due to some subversion problems, I'm currently uploading each version of the source-code as a 'release' rather than using version-control.&lt;br /&gt;
&lt;br /&gt;
[[Category:Utility Applications]]&lt;/div&gt;</summary>
		<author><name>Ojw</name></author>	</entry>

	<entry>
		<id>http://wiki.openmoko.org/wiki/LED_clock</id>
		<title>LED clock</title>
		<link rel="alternate" type="text/html" href="http://wiki.openmoko.org/wiki/LED_clock"/>
				<updated>2008-12-29T20:50:17Z</updated>
		
		<summary type="html">&lt;p&gt;Ojw: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Image:LED clock.jpg|thumb]]&lt;br /&gt;
When an OpenMoko is sitting unused at night, turn it into an alarm clock with large 7-segment digits on a black background in landscape mode.&lt;br /&gt;
&lt;br /&gt;
This differs from the regular clock in that it's intended to be readable from a distance or with unfocused eyes, similar to commercial LED alarm clocks.&lt;br /&gt;
&lt;br /&gt;
Since it's not limited to a single-colour display, it can do a few neat things like changing colour to signify the hour before an alarm, or hue changing through night, or gradually brightening the whole display to [http://en.wikipedia.org/wiki/Dawn_simulation simulate a dawn] and provide gradual wake-up.&lt;br /&gt;
&lt;br /&gt;
This provides an alternative to having the OM sitting in normal desktop mode while in a bedroom at night (which is too much unwanted illumination for no purpose), and an alternative to putting it into sleep mode (make it do something useful, make it easier to find)&lt;br /&gt;
&lt;br /&gt;
== Installing ==&lt;br /&gt;
&lt;br /&gt;
Download python file from:&lt;br /&gt;
&lt;br /&gt;
http://projects.openmoko.org/projects/ledclock/&lt;br /&gt;
&lt;br /&gt;
There is no .desktop file for it yet (could someone create one, and an installer or opkg or something?)&lt;br /&gt;
&lt;br /&gt;
== Usage ==&lt;br /&gt;
&lt;br /&gt;
Touch the right side of the screen to scroll through the 'menu' pages.  It will automatically return to normal clock mode if you don't press anything for 5 seconds.&lt;br /&gt;
&lt;br /&gt;
{| border=1&lt;br /&gt;
! Page&lt;br /&gt;
! Actions&lt;br /&gt;
! Notes&lt;br /&gt;
|-&lt;br /&gt;
| Main page&lt;br /&gt;
| Touch anywhere to get to the menus&lt;br /&gt;
| Can someone tell me how to [http://stackoverflow.com/questions/397927/turn-off-screensaver-while-openmoko-app-is-running turn off the screensaver] while this is running?&lt;br /&gt;
|-&lt;br /&gt;
| Alarm&lt;br /&gt;
| Non-functional&lt;br /&gt;
| this isn't an alarm clock (yet)&lt;br /&gt;
|-&lt;br /&gt;
| Colour&lt;br /&gt;
| Touch the screen to select a colour for the display&lt;br /&gt;
| List of colours is defined in an array &amp;quot;self.colours&amp;quot;&lt;br /&gt;
|- &lt;br /&gt;
| Brightness&lt;br /&gt;
| Touch top of screen to increase brightness, bottom of screen to decrease&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| Options&lt;br /&gt;
| Touch any option to toggle it&lt;br /&gt;
| Use 'rotate' option to go into landscape/portrait mode (this is done internally, not using the window manager).&lt;br /&gt;
|-&lt;br /&gt;
| Quit page&lt;br /&gt;
| Touch this page to exit the program&lt;br /&gt;
| Just calls sys.exit at the moment, can someone get it to close the window nicely?&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Development ==&lt;br /&gt;
&lt;br /&gt;
Hack away on whatever you want; let [[User:Ojw|Ojw]] know if you need permissions to release files.&lt;br /&gt;
&lt;br /&gt;
Due to some subversion problems, I'm currently uploading each version of the source-code as a 'release' rather than using version-control.&lt;br /&gt;
&lt;br /&gt;
[[Category:Utility Applications]]&lt;/div&gt;</summary>
		<author><name>Ojw</name></author>	</entry>

	<entry>
		<id>http://wiki.openmoko.org/wiki/Talk:LED_clock</id>
		<title>Talk:LED clock</title>
		<link rel="alternate" type="text/html" href="http://wiki.openmoko.org/wiki/Talk:LED_clock"/>
				<updated>2008-12-29T16:57:51Z</updated>
		
		<summary type="html">&lt;p&gt;Ojw: New page: It would be nice if you could set this as the default screensaver only between 9pm and 9am or something ~~~~&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;It would be nice if you could set this as the default screensaver only between 9pm and 9am or something [[User:Ojw|Ojw]] 16:57, 29 December 2008 (UTC)&lt;/div&gt;</summary>
		<author><name>Ojw</name></author>	</entry>

	<entry>
		<id>http://wiki.openmoko.org/wiki/LED_clock</id>
		<title>LED clock</title>
		<link rel="alternate" type="text/html" href="http://wiki.openmoko.org/wiki/LED_clock"/>
				<updated>2008-12-29T16:54:49Z</updated>
		
		<summary type="html">&lt;p&gt;Ojw: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Image:LED clock.jpg|thumb]]&lt;br /&gt;
When an OpenMoko is sitting unused at night, turn it into an alarm clock with large 7-segment digits on a black background in landscape mode.&lt;br /&gt;
&lt;br /&gt;
This differs from the regular clock in that it's intended to be readable from a distance or with unfocused eyes, similar to commercial LED alarm clocks.&lt;br /&gt;
&lt;br /&gt;
Since it's not limited to a single-colour display, it can do a few neat things like changing colour to signify the hour before an alarm, or hue changing through night, or gradually brightening the whole display to [http://en.wikipedia.org/wiki/Dawn_simulation simulate a dawn] and provide gradual wake-up.&lt;br /&gt;
&lt;br /&gt;
This provides an alternative to having the OM sitting in normal desktop mode while in a bedroom at night (which is too much unwanted illumination for no purpose), and an alternative to putting it into sleep mode (make it do something useful, make it easier to find)&lt;br /&gt;
&lt;br /&gt;
== Installing ==&lt;br /&gt;
&lt;br /&gt;
Download python file from:&lt;br /&gt;
&lt;br /&gt;
http://projects.openmoko.org/projects/ledclock/&lt;br /&gt;
&lt;br /&gt;
There is no .desktop file for it yet (could someone create one, and an installer or opkg or something?)&lt;br /&gt;
&lt;br /&gt;
== Usage ==&lt;br /&gt;
&lt;br /&gt;
Touch the right side of the screen to scroll through the 'menu' pages.  It will automatically return to normal clock mode if you don't press anything for 5 seconds.&lt;br /&gt;
&lt;br /&gt;
{| border=1&lt;br /&gt;
! Page&lt;br /&gt;
! Actions&lt;br /&gt;
! Notes&lt;br /&gt;
|-&lt;br /&gt;
| Main page&lt;br /&gt;
| Touch anywhere to get to the menus&lt;br /&gt;
| Can someone tell me how to [http://stackoverflow.com/questions/397927/turn-off-screensaver-while-openmoko-app-is-running turn off the screensaver] while this is running?&lt;br /&gt;
|-&lt;br /&gt;
| Alarm&lt;br /&gt;
| Non-functional&lt;br /&gt;
| this isn't an alarm clock (yet)&lt;br /&gt;
|-&lt;br /&gt;
| Colour&lt;br /&gt;
| Touch the screen to select a colour for the display&lt;br /&gt;
| List of colours is defined in an array &amp;quot;self.colours&amp;quot;&lt;br /&gt;
|- &lt;br /&gt;
| Brightness&lt;br /&gt;
| Touch top of screen to increase brightness, bottom of screen to decrease&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| Options&lt;br /&gt;
| Touch any option to toggle it&lt;br /&gt;
| 12/24 hour mode not available yet.  Use 'rotate' option to go into landscape/portrait mode (this is done internally, not using the window manager).&lt;br /&gt;
|-&lt;br /&gt;
| Quit page&lt;br /&gt;
| Touch this page to exit the program&lt;br /&gt;
| Just calls sys.exit at the moment, can someone get it to close the window nicely?&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Development ==&lt;br /&gt;
&lt;br /&gt;
Hack away on whatever you want; let [[User:Ojw|Ojw]] know if you need permissions to release files.&lt;br /&gt;
&lt;br /&gt;
Due to some subversion problems, I'm currently uploading each version of the source-code as a 'release' rather than using version-control.&lt;br /&gt;
&lt;br /&gt;
[[Category:Utility Applications]]&lt;/div&gt;</summary>
		<author><name>Ojw</name></author>	</entry>

	<entry>
		<id>http://wiki.openmoko.org/wiki/LED_clock</id>
		<title>LED clock</title>
		<link rel="alternate" type="text/html" href="http://wiki.openmoko.org/wiki/LED_clock"/>
				<updated>2008-12-29T16:49:52Z</updated>
		
		<summary type="html">&lt;p&gt;Ojw: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Image:LED clock.jpg|thumb]]&lt;br /&gt;
When an OpenMoko is sitting unused at night, turn it into an alarm clock with large 7-segment digits on a black background in landscape mode.&lt;br /&gt;
&lt;br /&gt;
This differs from the regular clock in that it's intended to be readable from a distance or with unfocused eyes, similar to commercial LED alarm clocks.&lt;br /&gt;
&lt;br /&gt;
Since it's not limited to a single-colour display, it can do a few neat things like changing colour to signify the hour before an alarm, or hue changing through night, or gradually brightening the whole display to [http://en.wikipedia.org/wiki/Dawn_simulation simulate a dawn] and provide gradual wake-up.&lt;br /&gt;
&lt;br /&gt;
This provides an alternative to having the OM sitting in normal desktop mode while in a bedroom at night (which is too much unwanted illumination for no purpose), and an alternative to putting it into sleep mode (make it do something useful, make it easier to find)&lt;br /&gt;
&lt;br /&gt;
== Installing ==&lt;br /&gt;
&lt;br /&gt;
Download python file from:&lt;br /&gt;
&lt;br /&gt;
http://projects.openmoko.org/projects/ledclock/&lt;br /&gt;
&lt;br /&gt;
There is no .desktop file for it yet (could someone create one, and an installer or opkg or something?)&lt;br /&gt;
&lt;br /&gt;
== Usage ==&lt;br /&gt;
&lt;br /&gt;
Touch the right side of the screen to scroll through the 'menu' pages.  It will automatically return to normal clock mode if you don't press anything for 5 seconds.&lt;br /&gt;
&lt;br /&gt;
{| border=1&lt;br /&gt;
! Page&lt;br /&gt;
! Actions&lt;br /&gt;
! Notes&lt;br /&gt;
|-&lt;br /&gt;
| Main page&lt;br /&gt;
| Touch anywhere to get to the menus&lt;br /&gt;
| Can someone tell me how to [http://stackoverflow.com/questions/397927/turn-off-screensaver-while-openmoko-app-is-running turn off the screensaver] while this is running?&lt;br /&gt;
|-&lt;br /&gt;
| Alarm&lt;br /&gt;
| Non-functional&lt;br /&gt;
| this isn't an alarm clock (yet)&lt;br /&gt;
|-&lt;br /&gt;
| Colour&lt;br /&gt;
| Touch the screen to select a colour for the display&lt;br /&gt;
| List of colours is defined in an array &amp;quot;self.colours&amp;quot;&lt;br /&gt;
|- &lt;br /&gt;
| Brightness&lt;br /&gt;
| Touch top of screen to increase brightness, bottom of screen to decrease&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| Options&lt;br /&gt;
| Touch any option to toggle it&lt;br /&gt;
| 12/24 hour mode not available yet.  Use 'rotate' option to go into landscape/portrait mode (this is done internally, not using the window manager).&lt;br /&gt;
|-&lt;br /&gt;
| Quit page&lt;br /&gt;
| Touch this page to exit the program&lt;br /&gt;
| Just calls sys.exit at the moment, can someone get it to close the window nicely?&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Development ==&lt;br /&gt;
&lt;br /&gt;
Hack away on whatever you want; let [[User:Ojw|Ojw]] know if you need permissions to release files.&lt;br /&gt;
&lt;br /&gt;
Due to some subversion problems, I'm currently uploading each version of the source-code as a 'release' rather than using version-control.&lt;/div&gt;</summary>
		<author><name>Ojw</name></author>	</entry>

	<entry>
		<id>http://wiki.openmoko.org/wiki/LED_clock</id>
		<title>LED clock</title>
		<link rel="alternate" type="text/html" href="http://wiki.openmoko.org/wiki/LED_clock"/>
				<updated>2008-12-29T16:46:23Z</updated>
		
		<summary type="html">&lt;p&gt;Ojw: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Image:LED clock.jpg|thumb]]&lt;br /&gt;
When an OpenMoko is sitting unused at night, turn it into an alarm clock with large 7-segment digits on a black background in landscape mode.&lt;br /&gt;
&lt;br /&gt;
This differs from the regular clock in that it's intended to be readable from a distance or with unfocused eyes, similar to commercial LED alarm clocks.&lt;br /&gt;
&lt;br /&gt;
Since it's not limited to a single-colour display, it can do a few neat things like changing colour to signify the hour before an alarm, or hue changing through night, or gradually brightening the whole display in the time preceding an alarm to simulate a dawn and provide gradual wake-up.&lt;br /&gt;
&lt;br /&gt;
This provides an alternative to having the OM sitting in normal desktop mode while in a bedroom at night (which is too much unwanted illumination for no purpose), and an alternative to putting it into sleep mode (make it do something useful, make it easier to find)&lt;br /&gt;
&lt;br /&gt;
== Installing ==&lt;br /&gt;
&lt;br /&gt;
Download python file from:&lt;br /&gt;
&lt;br /&gt;
http://projects.openmoko.org/projects/ledclock/&lt;br /&gt;
&lt;br /&gt;
There is no .desktop file for it yet (could someone create one, and an installer or opkg or something?)&lt;br /&gt;
&lt;br /&gt;
== Usage ==&lt;br /&gt;
&lt;br /&gt;
Touch the right side of the screen to scroll through the 'menu' pages.  It will automatically return to normal clock mode if you don't press anything for 5 seconds.&lt;br /&gt;
&lt;br /&gt;
{| border=1&lt;br /&gt;
! Page&lt;br /&gt;
! Actions&lt;br /&gt;
! Notes&lt;br /&gt;
|-&lt;br /&gt;
| Main page&lt;br /&gt;
| Touch anywhere to get to the menus&lt;br /&gt;
| Can someone tell me how to [http://stackoverflow.com/questions/397927/turn-off-screensaver-while-openmoko-app-is-running turn off the screensaver] while this is running?&lt;br /&gt;
|-&lt;br /&gt;
| Alarm&lt;br /&gt;
| Non-functional&lt;br /&gt;
| this isn't an alarm clock (yet)&lt;br /&gt;
|-&lt;br /&gt;
| Colour&lt;br /&gt;
| Touch the screen to select a colour for the display&lt;br /&gt;
| List of colours is defined in an array &amp;quot;self.colours&amp;quot;&lt;br /&gt;
|- &lt;br /&gt;
| Brightness&lt;br /&gt;
| Touch top of screen to increase brightness, bottom of screen to decrease&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| Options&lt;br /&gt;
| Touch any option to toggle it&lt;br /&gt;
| 12/24 hour mode not available yet.  Use 'rotate' option to go into landscape/portrait mode (this is done internally, not using the window manager).&lt;br /&gt;
|-&lt;br /&gt;
| Quit page&lt;br /&gt;
| Touch this page to exit the program&lt;br /&gt;
| Just calls sys.exit at the moment, can someone get it to close the window nicely?&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Development ==&lt;br /&gt;
&lt;br /&gt;
Hack away on whatever you want; let [[User:Ojw|Ojw]] know if you need permissions to release files.&lt;br /&gt;
&lt;br /&gt;
Due to some subversion problems, I'm currently uploading each version of the source-code as a 'release' rather than using version-control.&lt;/div&gt;</summary>
		<author><name>Ojw</name></author>	</entry>

	<entry>
		<id>http://wiki.openmoko.org/wiki/LED_clock</id>
		<title>LED clock</title>
		<link rel="alternate" type="text/html" href="http://wiki.openmoko.org/wiki/LED_clock"/>
				<updated>2008-12-29T16:44:57Z</updated>
		
		<summary type="html">&lt;p&gt;Ojw: /* Development */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Image:LED clock.jpg|thumb]]&lt;br /&gt;
When an OpenMoko is sitting unused at night, turn it into an alarm clock with large red 7-segment digits on a black background in landscape mode.&lt;br /&gt;
&lt;br /&gt;
This differs from the regular clock in that it's intended to be readable from a distance or with unfocused eyes, similar to commercial LED alarm clocks.&lt;br /&gt;
&lt;br /&gt;
Since it's not limited to a single-colour display, it can do a few neat things like changing 'LED' colour to signify the hour before an alarm, or hue changing through night, or gradually brightening the whole display in the time preceding an alarm to simulate a dawn and provide gradual wake-up.&lt;br /&gt;
&lt;br /&gt;
This provides an alternative to having the OM sitting in normal desktop mode while in a bedroom at night (which is too much unwanted illumination for no purpose), and an alternative to putting it into sleep mode (make it do something useful, make it easier to find)&lt;br /&gt;
&lt;br /&gt;
== Installing ==&lt;br /&gt;
&lt;br /&gt;
Download python file from:&lt;br /&gt;
&lt;br /&gt;
http://projects.openmoko.org/projects/ledclock/&lt;br /&gt;
&lt;br /&gt;
There is no .desktop file for it yet (could someone create one, and an installer or opkg or something?)&lt;br /&gt;
&lt;br /&gt;
== Usage ==&lt;br /&gt;
&lt;br /&gt;
Touch the right side of the screen to scroll through the 'menu' pages.  It will automatically return to normal clock mode if you don't press anything for 5 seconds.&lt;br /&gt;
&lt;br /&gt;
{| border=1&lt;br /&gt;
! Page&lt;br /&gt;
! Actions&lt;br /&gt;
! Notes&lt;br /&gt;
|-&lt;br /&gt;
| Main page&lt;br /&gt;
| Touch anywhere to get to the menus&lt;br /&gt;
| Can someone tell me how to [http://stackoverflow.com/questions/397927/turn-off-screensaver-while-openmoko-app-is-running turn off the screensaver] while this is running?&lt;br /&gt;
|-&lt;br /&gt;
| Alarm&lt;br /&gt;
| Non-functional&lt;br /&gt;
| this isn't an alarm clock (yet)&lt;br /&gt;
|-&lt;br /&gt;
| Colour&lt;br /&gt;
| Touch the screen to select a colour for the display&lt;br /&gt;
| List of colours is defined in an array &amp;quot;self.colours&amp;quot;&lt;br /&gt;
|- &lt;br /&gt;
| Brightness&lt;br /&gt;
| Touch top of screen to increase brightness, bottom of screen to decrease&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| Options&lt;br /&gt;
| Touch any option to toggle it&lt;br /&gt;
| 12/24 hour mode not available yet.  Use 'rotate' option to go into landscape/portrait mode (this is done internally, not using the window manager).&lt;br /&gt;
|-&lt;br /&gt;
| Quit page&lt;br /&gt;
| Touch this page to exit the program&lt;br /&gt;
| Just calls sys.exit at the moment, can someone get it to close the window nicely?&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Development ==&lt;br /&gt;
&lt;br /&gt;
Hack away on whatever you want; let [[User:Ojw|Ojw]] know if you need permissions to release files.&lt;br /&gt;
&lt;br /&gt;
Due to some subversion problems, I'm currently uploading each version of the source-code as a 'release' rather than using version-control.&lt;/div&gt;</summary>
		<author><name>Ojw</name></author>	</entry>

	<entry>
		<id>http://wiki.openmoko.org/wiki/LED_clock</id>
		<title>LED clock</title>
		<link rel="alternate" type="text/html" href="http://wiki.openmoko.org/wiki/LED_clock"/>
				<updated>2008-12-29T16:44:37Z</updated>
		
		<summary type="html">&lt;p&gt;Ojw: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Image:LED clock.jpg|thumb]]&lt;br /&gt;
When an OpenMoko is sitting unused at night, turn it into an alarm clock with large red 7-segment digits on a black background in landscape mode.&lt;br /&gt;
&lt;br /&gt;
This differs from the regular clock in that it's intended to be readable from a distance or with unfocused eyes, similar to commercial LED alarm clocks.&lt;br /&gt;
&lt;br /&gt;
Since it's not limited to a single-colour display, it can do a few neat things like changing 'LED' colour to signify the hour before an alarm, or hue changing through night, or gradually brightening the whole display in the time preceding an alarm to simulate a dawn and provide gradual wake-up.&lt;br /&gt;
&lt;br /&gt;
This provides an alternative to having the OM sitting in normal desktop mode while in a bedroom at night (which is too much unwanted illumination for no purpose), and an alternative to putting it into sleep mode (make it do something useful, make it easier to find)&lt;br /&gt;
&lt;br /&gt;
== Installing ==&lt;br /&gt;
&lt;br /&gt;
Download python file from:&lt;br /&gt;
&lt;br /&gt;
http://projects.openmoko.org/projects/ledclock/&lt;br /&gt;
&lt;br /&gt;
There is no .desktop file for it yet (could someone create one, and an installer or opkg or something?)&lt;br /&gt;
&lt;br /&gt;
== Usage ==&lt;br /&gt;
&lt;br /&gt;
Touch the right side of the screen to scroll through the 'menu' pages.  It will automatically return to normal clock mode if you don't press anything for 5 seconds.&lt;br /&gt;
&lt;br /&gt;
{| border=1&lt;br /&gt;
! Page&lt;br /&gt;
! Actions&lt;br /&gt;
! Notes&lt;br /&gt;
|-&lt;br /&gt;
| Main page&lt;br /&gt;
| Touch anywhere to get to the menus&lt;br /&gt;
| Can someone tell me how to [http://stackoverflow.com/questions/397927/turn-off-screensaver-while-openmoko-app-is-running turn off the screensaver] while this is running?&lt;br /&gt;
|-&lt;br /&gt;
| Alarm&lt;br /&gt;
| Non-functional&lt;br /&gt;
| this isn't an alarm clock (yet)&lt;br /&gt;
|-&lt;br /&gt;
| Colour&lt;br /&gt;
| Touch the screen to select a colour for the display&lt;br /&gt;
| List of colours is defined in an array &amp;quot;self.colours&amp;quot;&lt;br /&gt;
|- &lt;br /&gt;
| Brightness&lt;br /&gt;
| Touch top of screen to increase brightness, bottom of screen to decrease&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| Options&lt;br /&gt;
| Touch any option to toggle it&lt;br /&gt;
| 12/24 hour mode not available yet.  Use 'rotate' option to go into landscape/portrait mode (this is done internally, not using the window manager).&lt;br /&gt;
|-&lt;br /&gt;
| Quit page&lt;br /&gt;
| Touch this page to exit the program&lt;br /&gt;
| Just calls sys.exit at the moment, can someone get it to close the window nicely?&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Development ==&lt;br /&gt;
&lt;br /&gt;
Hack away on whatever you want; let me know if you need permissions to release files.&lt;br /&gt;
&lt;br /&gt;
Due to some subversion problems, I'm currently uploading each version of the source-code as a 'release' rather than using version-control.&lt;/div&gt;</summary>
		<author><name>Ojw</name></author>	</entry>

	<entry>
		<id>http://wiki.openmoko.org/wiki/LED_clock</id>
		<title>LED clock</title>
		<link rel="alternate" type="text/html" href="http://wiki.openmoko.org/wiki/LED_clock"/>
				<updated>2008-12-29T16:42:38Z</updated>
		
		<summary type="html">&lt;p&gt;Ojw: /* Usage */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Image:LED clock.jpg|thumb]]&lt;br /&gt;
When an OpenMoko is sitting unused at night, turn it into an alarm clock with large red 7-segment digits on a black background in landscape mode.&lt;br /&gt;
&lt;br /&gt;
This differs from the regular clock in that it's intended to be readable from a distance or with unfocused eyes, similar to commercial LED alarm clocks.&lt;br /&gt;
&lt;br /&gt;
Since it's not limited to a single-colour display, it can do a few neat things like changing 'LED' colour to signify the hour before an alarm, or hue changing through night, or gradually brightening the whole display in the time preceding an alarm to simulate a dawn and provide gradual wake-up.&lt;br /&gt;
&lt;br /&gt;
This provides an alternative to having the OM sitting in normal desktop mode while in a bedroom at night (which is too much unwanted illumination for no purpose), and an alternative to putting it into sleep mode (make it do something useful, make it easier to find)&lt;br /&gt;
&lt;br /&gt;
== Installing ==&lt;br /&gt;
&lt;br /&gt;
Download python file from:&lt;br /&gt;
&lt;br /&gt;
http://projects.openmoko.org/projects/ledclock/&lt;br /&gt;
&lt;br /&gt;
There is no .desktop file for it yet (could someone create one, and an installer or opkg or something?)&lt;br /&gt;
&lt;br /&gt;
== Usage ==&lt;br /&gt;
&lt;br /&gt;
Touch the right side of the screen to scroll through the 'menu' pages.  It will automatically return to normal clock mode if you don't press anything for 5 seconds.&lt;br /&gt;
&lt;br /&gt;
{| border=1&lt;br /&gt;
! Page&lt;br /&gt;
! Actions&lt;br /&gt;
! Notes&lt;br /&gt;
|-&lt;br /&gt;
| Main page&lt;br /&gt;
| Touch anywhere to get to the menus&lt;br /&gt;
| Can someone tell me how to [http://stackoverflow.com/questions/397927/turn-off-screensaver-while-openmoko-app-is-running turn off the screensaver] while this is running?&lt;br /&gt;
|-&lt;br /&gt;
| Alarm&lt;br /&gt;
| Non-functional&lt;br /&gt;
| this isn't an alarm clock (yet)&lt;br /&gt;
|-&lt;br /&gt;
| Colour&lt;br /&gt;
| Touch the screen to select a colour for the display&lt;br /&gt;
| List of colours is defined in an array &amp;quot;self.colours&amp;quot;&lt;br /&gt;
|- &lt;br /&gt;
| Brightness&lt;br /&gt;
| Touch top of screen to increase brightness, bottom of screen to decrease&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| Options&lt;br /&gt;
| Touch any option to toggle it&lt;br /&gt;
| 12/24 hour mode not available yet.  Use 'rotate' option to go into landscape/portrait mode (this is done internally, not using the window manager).&lt;br /&gt;
|-&lt;br /&gt;
| Quit page&lt;br /&gt;
| Touch this page to exit the program&lt;br /&gt;
| Just calls sys.exit at the moment, can someone get it to close the window nicely?&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Ojw</name></author>	</entry>

	<entry>
		<id>http://wiki.openmoko.org/wiki/LED_clock</id>
		<title>LED clock</title>
		<link rel="alternate" type="text/html" href="http://wiki.openmoko.org/wiki/LED_clock"/>
				<updated>2008-12-29T16:41:21Z</updated>
		
		<summary type="html">&lt;p&gt;Ojw: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Image:LED clock.jpg|thumb]]&lt;br /&gt;
When an OpenMoko is sitting unused at night, turn it into an alarm clock with large red 7-segment digits on a black background in landscape mode.&lt;br /&gt;
&lt;br /&gt;
This differs from the regular clock in that it's intended to be readable from a distance or with unfocused eyes, similar to commercial LED alarm clocks.&lt;br /&gt;
&lt;br /&gt;
Since it's not limited to a single-colour display, it can do a few neat things like changing 'LED' colour to signify the hour before an alarm, or hue changing through night, or gradually brightening the whole display in the time preceding an alarm to simulate a dawn and provide gradual wake-up.&lt;br /&gt;
&lt;br /&gt;
This provides an alternative to having the OM sitting in normal desktop mode while in a bedroom at night (which is too much unwanted illumination for no purpose), and an alternative to putting it into sleep mode (make it do something useful, make it easier to find)&lt;br /&gt;
&lt;br /&gt;
== Installing ==&lt;br /&gt;
&lt;br /&gt;
Download python file from:&lt;br /&gt;
&lt;br /&gt;
http://projects.openmoko.org/projects/ledclock/&lt;br /&gt;
&lt;br /&gt;
There is no .desktop file for it yet (could someone create one, and an installer or opkg or something?)&lt;br /&gt;
&lt;br /&gt;
== Usage ==&lt;br /&gt;
&lt;br /&gt;
Touch the right side of the screen to scroll through the 'menu' pages.  It will automatically return to normal clock mode if you don't press anything for 5 seconds.&lt;br /&gt;
&lt;br /&gt;
{| border=1&lt;br /&gt;
! Page&lt;br /&gt;
! Actions&lt;br /&gt;
! Notes&lt;br /&gt;
|-&lt;br /&gt;
| Alarm&lt;br /&gt;
| non-functional&lt;br /&gt;
| this isn't an alarm clock (yet)&lt;br /&gt;
|-&lt;br /&gt;
| Colour&lt;br /&gt;
| Touch the screen to select a colour for the display&lt;br /&gt;
| List of colours is defined in an array &amp;quot;self.colours&amp;quot;&lt;br /&gt;
|- &lt;br /&gt;
| Brightness&lt;br /&gt;
| Touch top of screen to increase brightness, bottom of screen to decrease&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| Options&lt;br /&gt;
| Touch any option to toggle it&lt;br /&gt;
| 12/24 hour mode not available yet.  Use 'rotate' option to go into landscape/portrait mode (this is done internally, not using the window manager).&lt;br /&gt;
|-&lt;br /&gt;
| Quit page&lt;br /&gt;
| Touch this page to exit the program&lt;br /&gt;
| Just calls sys.exit at the moment, can someone get it to close the window nicely?&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Ojw</name></author>	</entry>

	<entry>
		<id>http://wiki.openmoko.org/wiki/File:LED_clock.jpg</id>
		<title>File:LED clock.jpg</title>
		<link rel="alternate" type="text/html" href="http://wiki.openmoko.org/wiki/File:LED_clock.jpg"/>
				<updated>2008-12-29T16:33:04Z</updated>
		
		<summary type="html">&lt;p&gt;Ojw: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Ojw</name></author>	</entry>

	<entry>
		<id>http://wiki.openmoko.org/wiki/LED_clock</id>
		<title>LED clock</title>
		<link rel="alternate" type="text/html" href="http://wiki.openmoko.org/wiki/LED_clock"/>
				<updated>2008-12-29T16:31:44Z</updated>
		
		<summary type="html">&lt;p&gt;Ojw: New page: thumb When an OpenMoko is sitting unused at night, turn it into an alarm clock with large red 7-segment digits on a black background in landscape mode.  This differ...&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Image:LED clock.jpg|thumb]]&lt;br /&gt;
When an OpenMoko is sitting unused at night, turn it into an alarm clock with large red 7-segment digits on a black background in landscape mode.&lt;br /&gt;
&lt;br /&gt;
This differs from the regular clock in that it's intended to be readable from a distance or with unfocused eyes, similar to commercial LED alarm clocks.&lt;br /&gt;
&lt;br /&gt;
Since it's not limited to a single-colour display, it can do a few neat things like changing 'LED' colour to signify the hour before an alarm, or hue changing through night, or gradually brightening the whole display in the time preceding an alarm to simulate a dawn and provide gradual wake-up.&lt;br /&gt;
&lt;br /&gt;
This provides an alternative to having the OM sitting in normal desktop mode while in a bedroom at night (which is too much unwanted illumination for no purpose), and an alternative to putting it into sleep mode (make it do something useful, make it easier to find)&lt;br /&gt;
&lt;br /&gt;
== Installing ==&lt;br /&gt;
&lt;br /&gt;
Download python file from:&lt;br /&gt;
&lt;br /&gt;
http://projects.openmoko.org/projects/ledclock/&lt;br /&gt;
&lt;br /&gt;
There is no .desktop file for it yet (could someone create one, and an installer or opkg or something?)&lt;/div&gt;</summary>
		<author><name>Ojw</name></author>	</entry>

	<entry>
		<id>http://wiki.openmoko.org/wiki/Talk:Orrery</id>
		<title>Talk:Orrery</title>
		<link rel="alternate" type="text/html" href="http://wiki.openmoko.org/wiki/Talk:Orrery"/>
				<updated>2008-07-18T07:40:36Z</updated>
		
		<summary type="html">&lt;p&gt;Ojw: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;nice!&lt;br /&gt;
I like it&lt;br /&gt;
&lt;br /&gt;
will it use the accelerometers to show the night sky 'behind' the phone?  So you can pan the view by turning around or looking up?&lt;/div&gt;</summary>
		<author><name>Ojw</name></author>	</entry>

	<entry>
		<id>http://wiki.openmoko.org/wiki/Getting_Started_with_your_Neo_FreeRunner</id>
		<title>Getting Started with your Neo FreeRunner</title>
		<link rel="alternate" type="text/html" href="http://wiki.openmoko.org/wiki/Getting_Started_with_your_Neo_FreeRunner"/>
				<updated>2008-07-16T19:46:56Z</updated>
		
		<summary type="html">&lt;p&gt;Ojw: /* The Package Contents */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Languages|Getting Started with your Neo FreeRunner}}&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; cellspacing=&amp;quot;2&amp;quot; cellpadding=&amp;quot;2&amp;quot; style=&amp;quot;padding: 0%; margin:0em 0em 1em 0em; border:1px solid #cccccc; background:#eeeeee; width:100%;floating=&amp;quot;center&amp;quot;; &amp;quot;&lt;br /&gt;
! style=&amp;quot;background:#fcfcfc;border-left:1px solid #9999cc;border-right:1px ; border-top:2px solid 75d806; border:1px solid #222222; width:75% &amp;quot; |  &lt;br /&gt;
 &amp;lt;div align=&amp;quot;left&amp;quot;&amp;gt;&lt;br /&gt;
Thank you for purchasing this Developer release of Neo FreeRunner. The [[Neo FreeRunner]] phone is the second hardware platform to take advantage of [[Openmoko]]. This guide will help you get to know your Neo FreeRunner and how to start using your Neo FreeRunner.&lt;br /&gt;
! style=&amp;quot;background:#fcfcfc;border-left:1px solid #9999cc;border-right:1px ; border-top:2px solid 75d806; border:1px solid #222222; width:25% &amp;quot; |&lt;br /&gt;
[[Image:Freerunner box.png|200px|thumb|Neo FreeRunner Package]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== The Package Contents ==&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; cellspacing=&amp;quot;2&amp;quot; cellpadding=&amp;quot;2&amp;quot; style=&amp;quot;padding: 0%; margin:0em 0em 1em 0em; border:1px solid #ffffff; background:#ffffff; width:80%; floating=&amp;quot;center&amp;quot;; &amp;quot;&lt;br /&gt;
! style=&amp;quot;background:#ffffff;border-left:1px solid #ffffff;border-right:1px ; border-top:2px solid ffffff; border:1px solid #ffffff; &amp;quot; |  &lt;br /&gt;
&amp;lt;div align=&amp;quot;left&amp;quot;&amp;gt;&lt;br /&gt;
[[Image:GTA02ALL.png|400px|thumb|Inside package]]&lt;br /&gt;
|&lt;br /&gt;
&lt;br /&gt;
: [[Image:Circle２.gif|10px]]  Neo FreeRunner&lt;br /&gt;
: [[Image:Circle２.gif|10px]]  Stylus&lt;br /&gt;
: [[Image:Circle２.gif|10px]]  Battery&lt;br /&gt;
: [[Image:Circle２.gif|10px]]  Charger&lt;br /&gt;
: [[Image:Circle２.gif|10px]]  USB Cable &lt;br /&gt;
: [[Image:Circle２.gif|10px]]  microSD Card 512MB &amp;amp; SD adapter&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Getting To Know the Neo FreeRunner==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div align-center&amp;gt;&lt;br /&gt;
&amp;lt;table width=&amp;quot;80%&amp;quot; style=&amp;quot;clear: both; border: 1px solid #ffffff; border-collapse: collapse; padding: 0.2em; margin: 0; font-size: 100%; margin: 0 1px;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr valign=&amp;quot;top&amp;quot; style=&amp;quot;background: #ffffff&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width: 25px; padding-left: 0.5em;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width: 10px; white-space: nowrap; padding: 4px 1em 0 0.5em; border-right: 1px solid #ffffff;&amp;quot;&amp;gt;[[Image:menu8.jpg|370px|thumb|AUX Button and phone jack(From left to right)|center]]&amp;lt;/td&amp;gt;&amp;lt;td style=&amp;quot;padding: 1px 1em 0; background: #ffffff;&amp;quot;&amp;gt;&lt;br /&gt;
[[Image:menu9.jpg|365px|thumb|Power Button, USB and external GPS Antenna (From left to right)|center]]&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;/table&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div align-center&amp;gt;&lt;br /&gt;
&amp;lt;table width=&amp;quot;80%&amp;quot; style=&amp;quot;clear: both; border: 1px solid #ffffff; border-collapse: collapse; padding: 0.2em; margin: 0; font-size: 100%; margin: 0 1px;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr valign=&amp;quot;top&amp;quot; style=&amp;quot;background: #ffffff&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width: 50%; padding-left: 0.5em;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width: 50%; white-space: nowrap; padding: 4px 1em 0 0.5em; border-right: 1px solid #ffffff;&amp;quot;&amp;gt;[[Image:menu12.jpg|233px|thumb|AUX Back side with battery|center]]&amp;lt;/td&amp;gt;&amp;lt;td style=&amp;quot;padding: 1px 1em 0; background: #ffffff;&amp;quot;&amp;gt;&lt;br /&gt;
[[Image:menu11.jpg|260px|thumb|Put the SIM card and SD card here|center]]&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;/table&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div align-center&amp;gt;&lt;br /&gt;
&amp;lt;table width=&amp;quot;80%&amp;quot; style=&amp;quot;clear: both; border: 1px solid #ffffff; border-collapse: collapse; padding: 0.2em; margin: 0; font-size: 100%; margin: 0 1px;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr valign=&amp;quot;top&amp;quot; style=&amp;quot;background: #ffffff&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width: 50%; padding-left: 0.5em;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width: 50%; white-space: nowrap; padding: 4px 1em 0 0.5em; border-right: 1px solid #ffffff;&amp;quot;&amp;gt;[[Image:menu13.jpg|233px|thumb|open case from this side |center]]&amp;lt;/td&amp;gt;&amp;lt;td style=&amp;quot;padding: 1px 1em 0; background: #ffffff;&amp;quot;&amp;gt;&lt;br /&gt;
[[Image:menu14.jpg|250px|thumb|Opened|center]]&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;/table&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Installing the Micro-SD card, the SIM card, and the Battery ===&lt;br /&gt;
&lt;br /&gt;
# Remove the rear cover of the Neo FreeRunner by first holding the Neo FreeRunner on the side and then use your fingernail to prise off the rear cover at the slot on top of the device.&lt;br /&gt;
# Now you should be able to locate the combined SIM and Micro-SD card holder at the bottom of the battery compartment.&lt;br /&gt;
# Unlock the SIM card holder by sliding the metal clip down, towards the USB socket, with your fingernail. Use caution, as these parts are delicate and could be damaged by forcing them in the wrong direction.&lt;br /&gt;
# Lift up on the SIM card holder.&lt;br /&gt;
# The Micro-SD card holder is held in place by a latch on either side.  It is easiest to open the Micro-SD card holder by releasing these latches one at a time rather than by lifting from the middle, as lifting from the middle tends to increase the latching pressure.  A small screwdriver or knife can be used for this.&lt;br /&gt;
# Insert the Micro-SD card into the Micro-SD card holder. Note that on the inside of metal part of the holder there are little holding tabs for the card. Slide the card in these holders (on the metal part) before closing the card holder. Note that the electrical contacts should face down and towards the edge of the Neo Freerunner.&lt;br /&gt;
# Close the Micro-SD card holder, making sure that both latches of the holder are securely fastened.&lt;br /&gt;
# Insert the SIM card into the SIM card holder, taking care to slide inside the two metal tabs in the cover. Note that the electrical contacts should face down and that the cut corner should be closest to the external GPS Antenna Socket.&lt;br /&gt;
# Close the SIM card holder and lock it by sliding the metal clip towards the external GPS Antenna Socket on the FreeRunner.&lt;br /&gt;
# Insert the battery into the battery compartment, aligning the electrical contacts on the battery with the electrical contacts in the battery compartment.  Insert the side with the electrical contacts first.&lt;br /&gt;
# Replace the rear cover on the FreeRunner.&lt;br /&gt;
&lt;br /&gt;
[[Image:FR_SIM_SD_open.jpg|457px|thumb|SIM and SD holders open, with cards in place|center]]&lt;br /&gt;
&lt;br /&gt;
===Charging the Neo Freerunner===&lt;br /&gt;
&lt;br /&gt;
When using the Neo Freerunner for the first time, you should charge the battery completely. The battery can be charged using the provided charger (at 1000mA) or from a powered USB port capable of providing 500mA worth of current.  Most computers will be able to charge the FreeRunner without any problems.&lt;br /&gt;
&lt;br /&gt;
Charging at 100mA takes 6-12 hours and at 500mA takes 1-2 hours. (from [http://openmoko.togaware.com/survivor/Charging.html openmoko.togaware.com])&lt;br /&gt;
&lt;br /&gt;
===The Buttons===&lt;br /&gt;
&lt;br /&gt;
====Power====&lt;br /&gt;
Tapping the power button exits the current application.&lt;br /&gt;
&lt;br /&gt;
Holding the power button brings up a menu allowing you to power on and off the gps, wifi, gsm, and bluetooth antennae, and also to shutdown the device.&lt;br /&gt;
&lt;br /&gt;
====Aux====&lt;br /&gt;
&lt;br /&gt;
Holding the aux button for a second brings up a menu allowing you&lt;br /&gt;
&lt;br /&gt;
* Toggle Fullscreen: Hide and show the title bar&lt;br /&gt;
* Swap Orientation: Rotate the screen contents for horizontal and vertical viewing&lt;br /&gt;
* Screenshot: Start an application to save an image file of the current screen contents &lt;br /&gt;
&lt;br /&gt;
===Unlocking the screen===&lt;br /&gt;
&lt;br /&gt;
When the screen is locked, you should see a Matrix-style green graphic with the Openmoko symbol in the middle of the bottom of the screen along with lock and unlock symbols.  If you drag the Openmoko symbol to the unlock symbol at the top then the screen will become unlocked.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Menus and Applications===&lt;br /&gt;
&lt;br /&gt;
''Note:'' this section describes the interface used by the &amp;quot;2007.2&amp;quot; image, which is the current default image for OpenMoko.&lt;br /&gt;
&lt;br /&gt;
====Today Page====&lt;br /&gt;
[[Image:Todaypage_reduced_false.png|right|200px|]]&lt;br /&gt;
The first thing after you boot OpenMoko should be the &amp;quot;Today&amp;quot; page.  This is your home page.  In the top row, you see icons that indicate the status of the phone.  The second row are quick links to commonly-used applications such as the dialer.  The main body of the screen is your home page, displaying a clock and other useful information.  The bottom row consists of three tabs representing Today (the page you're viewing now), Launch Task Page, and Running Tasks Page.&lt;br /&gt;
&lt;br /&gt;
See [[Today/2007.2]] for more information about the Today page and customization.&amp;lt;br clear=all /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
====Launch Task Page====&lt;br /&gt;
&lt;br /&gt;
{{stub}}&lt;br /&gt;
&lt;br /&gt;
This page displays a menu of available applications.  You may choose a category of applications to display to simplify the screen, or choose to display them all.&lt;br /&gt;
&lt;br /&gt;
Current categories are [[PIM Suite]], [[Applications]], [[Games]], [[Utilities]], and All.&lt;br /&gt;
&lt;br /&gt;
====Running Tasks Page====&lt;br /&gt;
&lt;br /&gt;
{{stub}}&lt;br /&gt;
&lt;br /&gt;
This page displays currently-running tasks.  Any individual task may be terminated by selecting it and then clicking on the garbage-can icon to close it.  All tasks may be terminated by clicking on any one of them and then clicking on the &amp;quot;folder&amp;quot; icon in the upper right (expect this to change in future releases).  Any task may be rejoined by selecting it and then selecting the &amp;quot;return&amp;quot; icon at the middle top.&lt;br /&gt;
&lt;br /&gt;
====Exiting an Application====&lt;br /&gt;
&lt;br /&gt;
Any time an application is running, you can simply click the device's power button and the application will exit, returning you to the Today page.&lt;br /&gt;
&lt;br /&gt;
Alternatively, you can switch tasks at any time by clicking the menu of tasks at the far upper-left of the screen, which will display a list of running tasks, allowing you to select one.&lt;br /&gt;
&lt;br /&gt;
(''Note:'' If the task menu is not shown, use the [[#Aux|Aux]] button to bring up the Aux menu, and select &amp;quot;Toggle Fullscreen&amp;quot;.)&lt;br /&gt;
&lt;br /&gt;
===Adjusting the Volume===&lt;br /&gt;
&lt;br /&gt;
As of this writing, there is no way to adjust the volume from the screen.&lt;br /&gt;
&lt;br /&gt;
For now, run the terminal application or [[Getting_Started_with_your_Neo_FreeRunner#Connect_to_the_Neo_FreeRunner_By_USB_Networking|log in via usb]], and run the [[alsamixer]] application.  The mixer is simpler than it looks.  Just use the left and right arrow keys to select &amp;quot;headphone&amp;quot; or &amp;quot;PCM&amp;quot; and use the up and down arrow keys to adjust the volume.  You can also adjust your microphone volume with the &amp;quot;mic2&amp;quot; adjustment.  Press ESC when finished.  Then exit the terminal application or log out of the USB login.&lt;br /&gt;
&lt;br /&gt;
You may need to update configuration files in /usr/share/openmoko/scenarios/ to make the microphone setting permanent.  Use&lt;br /&gt;
 alsactl -f ''path-to-statefile'' store&lt;br /&gt;
to do this.&lt;br /&gt;
&lt;br /&gt;
=== Accessing the microSD card ===&lt;br /&gt;
&lt;br /&gt;
Mounted at /media/card&lt;br /&gt;
&lt;br /&gt;
=== Importing contacts ===&lt;br /&gt;
&lt;br /&gt;
If you can export your contacts to VCard format, either multiple files or single file containing all of them, you may use the script on [[Import Vcf Contacts]] page to bring them to Neo.&lt;br /&gt;
&lt;br /&gt;
=== Where to go when things go wrong ===&lt;br /&gt;
&lt;br /&gt;
You may ask for help on the support mailing list : more details at https://lists.openmoko.org/mailman/listinfo/support&lt;br /&gt;
&lt;br /&gt;
[[Freerunner_Hardware_Issues]]&lt;br /&gt;
&lt;br /&gt;
==Connect to the Neo FreeRunner By USB Networking==&lt;br /&gt;
&lt;br /&gt;
Connect the Neo FreeRunner to a GNU/Linux host with the USB cable. For Mac OS X please refer to [[MacOS_X]]. For Windows XP and Vista please refer to [[Neo1973_and_Windows]] (which also works for the FreeRunner). After booting into the Openmoko image there will be a new interface, usb0, on your GNU/Linux host.&lt;br /&gt;
&lt;br /&gt;
=====Manual Method=====&lt;br /&gt;
Type in the following commands in the terminal of a GNU/Linux host:&lt;br /&gt;
&lt;br /&gt;
 ifconfig usb0 192.168.0.200 netmask 255.255.255.0&lt;br /&gt;
 ssh root@192.168.0.202&lt;br /&gt;
&lt;br /&gt;
Press Enter to get by the password.&lt;br /&gt;
&lt;br /&gt;
=====Automatic Method=====&lt;br /&gt;
*Debian and derivatives (Ubuntu, Sidux etc.)&lt;br /&gt;
Edit /etc/network/interfaces:&lt;br /&gt;
&lt;br /&gt;
 auto usb0&lt;br /&gt;
 iface usb0 inet static&lt;br /&gt;
 address 192.168.0.200&lt;br /&gt;
 netmask 255.255.255.0&lt;br /&gt;
&lt;br /&gt;
*Gentoo &lt;br /&gt;
Edit /etc/conf.d/net:&lt;br /&gt;
&lt;br /&gt;
 config_usb0=&amp;quot;192.168.0.200/24&amp;quot;&lt;br /&gt;
&lt;br /&gt;
Restart the networking service ('/etc/init.d/networking restart' for Debian-based systems) and then type the following command in the terminal of the GNU/Linux host:&lt;br /&gt;
&lt;br /&gt;
 ssh root@192.168.0.202&lt;br /&gt;
&lt;br /&gt;
Press Enter to get by the password.&lt;br /&gt;
&lt;br /&gt;
{{note|&lt;br /&gt;
If your network device is using the ip range 192.168.0.x you may have to use the following command before you are able to connect&lt;br /&gt;
&lt;br /&gt;
 route add -host 192.168.0.202 dev usb0 }}&lt;br /&gt;
&lt;br /&gt;
=====Making things even more automatic=====&lt;br /&gt;
If you don't want to remember the IP address of your phone then you can create an alias by adding the following line to your /etc/hosts:&lt;br /&gt;
&lt;br /&gt;
 192.168.0.202   openmoko&lt;br /&gt;
&lt;br /&gt;
Now it should be possible to connect to your phone using the following command:&lt;br /&gt;
&lt;br /&gt;
 ssh root@openmoko&lt;br /&gt;
&lt;br /&gt;
The above only gets you a Secure Shell connection to the Openmoko device, it does not allow the Openmoko device to connect to the Internet.  If you are interested in connecting the device to the internet then check out the [[USB_Networking]] section.&lt;br /&gt;
&lt;br /&gt;
=====Allow FreeRunner to Connect to Internet via USB=====&lt;br /&gt;
For the FreeRunner to access the internet through the USB connection, you will also need to make modifications on the PC it is connecting through.&lt;br /&gt;
&lt;br /&gt;
In Ubuntu:&lt;br /&gt;
&lt;br /&gt;
Within /etc/network/interfaces, change your interface setup to this:&lt;br /&gt;
&lt;br /&gt;
 auto usb0&lt;br /&gt;
 iface usb0 inet static&lt;br /&gt;
    address 192.168.0.200&lt;br /&gt;
    netmask 255.255.255.0&lt;br /&gt;
    network 192.168.0.0&lt;br /&gt;
    up iptables -A POSTROUTING -t nat -j MASQUERADE -s 192.168.0.0/24 &amp;amp;&lt;br /&gt;
    up echo 1 &amp;gt; /proc/sys/net/ipv4/ip_forward &amp;amp;&lt;br /&gt;
    up iptables -P FORWARD ACCEPT &amp;amp;&lt;br /&gt;
    down iptables -D POSTROUTING -t nat -j MASQUERADE -s 192.168.0.0/24 &amp;amp;&lt;br /&gt;
&lt;br /&gt;
In Fedora:&lt;br /&gt;
&lt;br /&gt;
Set /etc/sysconfig/network-scripts/ifcfg-usb0 to this:&lt;br /&gt;
 DEVICE=usb0&lt;br /&gt;
 IPADDR=192.168.0.200&lt;br /&gt;
 NETMASK=255.255.255.0&lt;br /&gt;
&lt;br /&gt;
Set /etc/sysconfig/network-scripts/ifup-usb to this:&lt;br /&gt;
 #!/bin/bash&lt;br /&gt;
 &lt;br /&gt;
 . /etc/init.d/functions&lt;br /&gt;
 &lt;br /&gt;
 cd /etc/sysconfig/network-scripts&lt;br /&gt;
 . ./network-functions&lt;br /&gt;
 &lt;br /&gt;
 [ -f ../network ] &amp;amp;&amp;amp; . ../network&lt;br /&gt;
 &lt;br /&gt;
 CONFIG=${1}&lt;br /&gt;
 &lt;br /&gt;
 need_config ${CONFIG}&lt;br /&gt;
 &lt;br /&gt;
 source_config&lt;br /&gt;
 &lt;br /&gt;
 NETBITS=`ipcalc -p ${IPADDR} ${NETMASK} | awk -F'=' '{print $2;}'`&lt;br /&gt;
 &lt;br /&gt;
 /sbin/ip addr flush dev ${DEVICE} 2&amp;gt;/dev/null&lt;br /&gt;
 /sbin/ip link set dev ${DEVICE} up&lt;br /&gt;
 /sbin/ip addr add dev ${DEVICE} ${IPADDR}/${NETBITS}&lt;br /&gt;
 &lt;br /&gt;
 /sbin/iptables -I POSTROUTING -t nat -j MASQUERADE -s ${IPADDR}/${NETBITS}&lt;br /&gt;
 /sbin/sysctl net.ipv4.ip_forward=1&lt;br /&gt;
 /sbin/iptables -I FORWARD -s ${IPADDR}/${NETBITS} -j ACCEPT&lt;br /&gt;
 /sbin/iptables -I FORWARD -d ${IPADDR}/${NETBITS} -j ACCEPT&lt;br /&gt;
&lt;br /&gt;
Set /etc/sysconfig/network-scripts/ifdown-usb to this:&lt;br /&gt;
 #!/bin/bash&lt;br /&gt;
 &lt;br /&gt;
 . /etc/init.d/functions&lt;br /&gt;
 &lt;br /&gt;
 cd /etc/sysconfig/network-scripts&lt;br /&gt;
 . ./network-functions&lt;br /&gt;
 &lt;br /&gt;
 [ -f ../network ] &amp;amp;&amp;amp; . ../network&lt;br /&gt;
 &lt;br /&gt;
 CONFIG=${1}&lt;br /&gt;
 &lt;br /&gt;
 need_config ${CONFIG}&lt;br /&gt;
 &lt;br /&gt;
 source_config&lt;br /&gt;
 &lt;br /&gt;
 NETBITS=`ipcalc -p ${IPADDR} ${NETMASK} | awk -F'=' '{print $2;}'`&lt;br /&gt;
 &lt;br /&gt;
 /sbin/iptables -D FORWARD -d ${IPADDR}/${NETBITS} -j ACCEPT&lt;br /&gt;
 /sbin/iptables -D FORWARD -s ${IPADDR}/${NETBITS} -j ACCEPT&lt;br /&gt;
 /sbin/sysctl net.ipv4.ip_forward=0&lt;br /&gt;
 /sbin/iptables -D POSTROUTING -t nat -j MASQUERADE -s ${IPADDR}/${NETBITS}&lt;br /&gt;
 &lt;br /&gt;
 /sbin/ip link set dev ${DEVICE} down&lt;br /&gt;
 /sbin/ip addr flush dev ${DEVICE} 2&amp;gt;/dev/null&lt;br /&gt;
&lt;br /&gt;
If you are using NetworkManager, restart it and enable the usb device from its menu, otherwise it will disable your connection shortly after you enable it.&lt;br /&gt;
 /sbin/service NetworkManager restart&lt;br /&gt;
&lt;br /&gt;
=====Updating DNS=====&lt;br /&gt;
&lt;br /&gt;
Once your PC is setup, then edit /etc/network/interfaces on your FreeRunner and modify the code from this:&lt;br /&gt;
&lt;br /&gt;
 iface usb0 inet static&lt;br /&gt;
        address 192.168.0.202&lt;br /&gt;
        netmask 255.255.255.0&lt;br /&gt;
        network 192.168.0.0&lt;br /&gt;
        gateway 192.168.0.200&lt;br /&gt;
        up echo nameserver 192.168.0.200 &amp;gt; /etc/resolv.conf&lt;br /&gt;
&lt;br /&gt;
to something that points to a real name server, like a public DNS system from OpenDNS, like this:&lt;br /&gt;
&lt;br /&gt;
 iface usb0 inet static&lt;br /&gt;
        address 192.168.0.202&lt;br /&gt;
        netmask 255.255.255.0&lt;br /&gt;
        network 192.168.0.0&lt;br /&gt;
        gateway 192.168.0.200&lt;br /&gt;
        up echo nameserver 208.67.222.222 &amp;gt; /etc/resolv.conf&lt;br /&gt;
        up echo nameserver 208.67.220.220 &amp;gt;&amp;gt; /etc/resolv.conf&lt;br /&gt;
&lt;br /&gt;
Note: vi appears to be the only text editor available by default.  See [http://www.cs.colostate.edu/helpdocs/vi.html basic vi commands] for help.&lt;br /&gt;
&lt;br /&gt;
On the factory loaded OM2007.2 image, run the following to restart networking for the DNS changes to take effect:&lt;br /&gt;
&lt;br /&gt;
 /etc/rc0.d/K40networking restart&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
If you are still unable to get the freerunner access to the internet, and are using Mandriva and/or happen to have your LAN on 192.168.0.0/24, [[User:Linuxpaul|this page]] may help you.&lt;br /&gt;
&lt;br /&gt;
==The Architecture==&lt;br /&gt;
&lt;br /&gt;
There are three layers to the software on the FreeRunner:&lt;br /&gt;
&lt;br /&gt;
===uBoot===&lt;br /&gt;
&lt;br /&gt;
Think of u-boot as a combination of the BIOS and Grub on a PC.&lt;br /&gt;
&lt;br /&gt;
===Kernel===&lt;br /&gt;
&lt;br /&gt;
The Linux kernel.&lt;br /&gt;
&lt;br /&gt;
===Root Filesystem===&lt;br /&gt;
&lt;br /&gt;
The rest of the system&lt;br /&gt;
&lt;br /&gt;
==Updating the software==&lt;br /&gt;
&lt;br /&gt;
In order to keep the FreeRunner up-to-date with the latest features and bug-fixes, it is advisable update the software at regular intevals. There are two main methods of doing this.&lt;br /&gt;
&lt;br /&gt;
===opkg===&lt;br /&gt;
&lt;br /&gt;
Assuming that your FreeRunner can access the internet (see above), the kernel and other packages can be updated with&lt;br /&gt;
&lt;br /&gt;
 # opkg update&lt;br /&gt;
 # opkg upgrade&lt;br /&gt;
&lt;br /&gt;
The first updates the repository information, telling opkg what packages are available. The second upgrades all packages for which a newer version is available. At the moment, some signature files are missing, which opkg complains about, but this is cosmetic.&lt;br /&gt;
&lt;br /&gt;
It will be possible in the future to update uboot with opkg, but this has not yet been implemented&lt;br /&gt;
&lt;br /&gt;
====Common Problems====&lt;br /&gt;
&lt;br /&gt;
When you run opkg update, you should see&lt;br /&gt;
 &amp;lt;nowiki&amp;gt; Downloading http://buildhost.openmoko.org/daily-feed/all/Packages.gz&lt;br /&gt;
 100% |========================================================================|&lt;br /&gt;
 Inflating http://buildhost.openmoko.org/daily-feed/all/Packages.gz&lt;br /&gt;
 Updated list of available packages in /var/lib/opkg/daily-all&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
and so forth.&lt;br /&gt;
&lt;br /&gt;
If you see&lt;br /&gt;
 &amp;lt;nowiki&amp;gt; Downloading http://buildhost.openmoko.org/daily-feed/all/Packages.gz&lt;br /&gt;
 Downloading http://buildhost.openmoko.org/daily-feed/all/Packages.sig&lt;br /&gt;
 Signature check failed&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
Then the download failed.  See [[Network Troubleshooting]] for more information.&lt;br /&gt;
&lt;br /&gt;
===Flashing===&lt;br /&gt;
&lt;br /&gt;
uboot, the kernel and the root filesystem can all be flashed to update them. See below for how. For uboot, this is the only possibility. The advantage of flashing the kernel, rather than using opkg seems to be speed.&lt;br /&gt;
&lt;br /&gt;
The disadvantage of flashing the root file system is that it wipes out all local modifications, including /home. If /home is moved to the SD disk, this is no longer a problem.&lt;br /&gt;
&lt;br /&gt;
==Un-crippling the 2007.2 image==&lt;br /&gt;
&lt;br /&gt;
The stock [[Openmoko2007.2]] image flashed onto the Neo FreeRunner is really just the bare bones. For example, you don't have the clock and the quick-launch icons showing. Here's how you can change that:&lt;br /&gt;
&lt;br /&gt;
 # dbus-launch gconftool-2 -t boolean -s /desktop/poky/interface/reduced false&lt;br /&gt;
 # /etc/init.d/xserver-nodm restart&lt;br /&gt;
&lt;br /&gt;
If you rather have a regular clock instead of the digital one, do this instead:&lt;br /&gt;
&lt;br /&gt;
 # dbus-launch gconftool-2 -t boolean -s /desktop/poky/interface/reduced false&lt;br /&gt;
 # dbus-launch gconftool-2 -t boolean -s /desktop/poky/interface/digital_clock false&lt;br /&gt;
 # /etc/init.d/xserver-nodm restart&lt;br /&gt;
&lt;br /&gt;
More information about today screen customization at [[Today/2007.2]].&lt;br /&gt;
&lt;br /&gt;
With either clock, you may wish to set the correct [[Timezone]].&lt;br /&gt;
&lt;br /&gt;
Also, if you prefer having a full keyboard, see [http://www.ginguppin.de/node/15 these instructions].&lt;br /&gt;
&lt;br /&gt;
===GPS===&lt;br /&gt;
&lt;br /&gt;
Simple guide to get going with GPS:&lt;br /&gt;
&lt;br /&gt;
 # opkg install gpsd&lt;br /&gt;
&lt;br /&gt;
On the FreeRunner,&lt;br /&gt;
&lt;br /&gt;
 # echo &amp;quot;GPS_DEV=\&amp;quot;/dev/ttySAC1\&amp;quot;&amp;quot; &amp;gt; /etc/default/gpsd&lt;br /&gt;
&lt;br /&gt;
and restart gpsd, the gps daemon, with&lt;br /&gt;
&lt;br /&gt;
 # /etc/init.d/gpsd restart&lt;br /&gt;
&lt;br /&gt;
To test GPS, you can use agpsui:&lt;br /&gt;
&lt;br /&gt;
 # opkg install openmoko-agpsui&lt;br /&gt;
&lt;br /&gt;
For a nice map, try tangoGPS:&lt;br /&gt;
&lt;br /&gt;
 # opkg install tangogps&lt;br /&gt;
&lt;br /&gt;
More information on [[GPS]] page.&lt;br /&gt;
&lt;br /&gt;
=== GPRS ===&lt;br /&gt;
&lt;br /&gt;
See [[Manually using GPRS]]. According to some [http://lists.openmoko.org/pipermail/support/2008-July/000003.html posts], GPRS might be broken currently (2007.2), though. Any updates welcome.&lt;br /&gt;
&lt;br /&gt;
=== WLAN ===&lt;br /&gt;
&lt;br /&gt;
See [[GTA02 WLAN]].&lt;br /&gt;
&lt;br /&gt;
===Recommended software===&lt;br /&gt;
&lt;br /&gt;
For a Media Player:&lt;br /&gt;
&lt;br /&gt;
 # opkg install openmoko-mediaplayer2&lt;br /&gt;
 # wget http://abraxa.dyndns.org:81/random/openmoko-mediaplayer-theme.tar.bz2&lt;br /&gt;
 # tar xjf openmoko-mediaplayer-theme.tar.bz2 -C /usr/share/themes/Moko/gtk-2.0&lt;br /&gt;
 # rm openmoko-mediaplayer-theme.tar.bz2&lt;br /&gt;
&lt;br /&gt;
If you want a basic image viewer, have a look at the one from the gpe suite:&lt;br /&gt;
&lt;br /&gt;
 # opkg install gpe-icons gpe-gallery&lt;br /&gt;
&lt;br /&gt;
To obtain the standard web browser, use:&lt;br /&gt;
&lt;br /&gt;
 # opkg install openmoko-browser2&lt;br /&gt;
&lt;br /&gt;
An alternative browser, minimo, offers many more features.  &lt;br /&gt;
First download and unpack it on your GNU/Linux host:&lt;br /&gt;
&lt;br /&gt;
 # wget http://www.ginguppin.de/files/minimo.tar.bz2&lt;br /&gt;
 # tar jvxf minimo.tar.bz2&lt;br /&gt;
&lt;br /&gt;
Copy it over to the FreeRunner:&lt;br /&gt;
 # scp minimo_* root@openmoko:/tmp&lt;br /&gt;
&lt;br /&gt;
Then on the FreeRunner:&lt;br /&gt;
 # opkg install /tmp/minimo_0.02\+cvs20070626-r0_armv4t.ipk&lt;br /&gt;
&lt;br /&gt;
There are tons more apps you can install - check out the [[Repositories]] for a list of packages.&lt;br /&gt;
&lt;br /&gt;
==Booting the Neo Freerunner==&lt;br /&gt;
&lt;br /&gt;
You can boot your Neo FreeRunner in the following ways:&lt;br /&gt;
&lt;br /&gt;
: [[Image:Circle２.gif|10px]]    You can power it up into an Openmoko image directly (default, when powered-on for the first time). &lt;br /&gt;
&lt;br /&gt;
: [[Image:Circle２.gif|10px]]    You can boot it into the [[Bootloader|U-Boot bootloader]] via [[NAND Flash]].&lt;br /&gt;
&lt;br /&gt;
: [[Image:Circle２.gif|10px]]    You can boot it into U-Boot via NOR Flash.&lt;br /&gt;
&lt;br /&gt;
Booting the device into NAND and NOR Flash allows you to update the kernel and root filesystem.&lt;br /&gt;
&lt;br /&gt;
====Start the Openmoko Image====&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div align-center&amp;gt;&lt;br /&gt;
&amp;lt;table width=&amp;quot;100%&amp;quot; style=&amp;quot;clear: both; border: 1px solid #ffffff; border-collapse: collapse; padding: 0.2em; margin: 0; font-size: 100%; margin: 0 1px;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr valign=&amp;quot;top&amp;quot; style=&amp;quot;background: #ffffff&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width: 25px; padding-left: 0.5em;&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width: 10px; white-space: nowrap; padding: 4px 1em 0 0.5em; border-right: 1px solid #ffffff;&amp;quot;&amp;gt;[[Image:Menu2.jpg|200px|right|thumb]]&amp;lt;/td&amp;gt;&amp;lt;td style=&amp;quot;padding: 1px 1em 0; background: #eeeeee;&amp;quot;&amp;gt;&lt;br /&gt;
Press and hold Power button for about 8 seconds, until the Openmoko splash screen turns up.  You may now release the Power button and the Neo FreeRunner will continue to boot into the Openmoko Image.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;/table&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
====Log into U-Boot in the NAND Flash====&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div align-center&amp;gt;&lt;br /&gt;
&amp;lt;table width=&amp;quot;100%&amp;quot; style=&amp;quot;clear: both; border: 1px solid #ffffff; border-collapse: collapse; padding: 0.2em; margin: 0; font-size: 100%; margin: 0 1px;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr valign=&amp;quot;top&amp;quot; style=&amp;quot;background: #ffffff&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width: 25px; padding-left: 0.5em;&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width: 10px; white-space: nowrap; padding: 4px 1em 0 0.5em; border-right: 1px solid #ffffff;&amp;quot;&amp;gt;[[Image:Menu7.jpg|200px|right|thumb]]&amp;lt;/td&amp;gt;&amp;lt;td style=&amp;quot;padding: 1px 1em 0; background: #eeeeee;&amp;quot;&amp;gt;&lt;br /&gt;
Press and hold Power button, then press and hold AUX button for about 5 to 8 seconds. You should see the boot menu for the NAND Flash.  Press the AUX button to select one of the options and then press the Power button to execute.&lt;br /&gt;
&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;/table&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
====Log into U-Boot in the NOR Flash====&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div align-center&amp;gt;&lt;br /&gt;
&amp;lt;table width=&amp;quot;100%&amp;quot; style=&amp;quot;clear: both; border: 1px solid #ffffff; border-collapse: collapse; padding: 0.2em; margin: 0; font-size: 100%; margin: 0 1px;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr valign=&amp;quot;top&amp;quot; style=&amp;quot;background: #ffffff&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width: 25px; padding-left: 0.5em;&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;width: 10px; white-space: nowrap; padding: 4px 1em 0 0.5em; border-right: 1px solid #ffffff;&amp;quot;&amp;gt;[[Image:Menu6.jpg|200px|right|thumb]]&amp;lt;/td&amp;gt;&amp;lt;td style=&amp;quot;padding: 1px 1em 0; background: #eeeeee;&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Press and hold the AUX button, then press and hold the Power button. Then, release the AUX button. You should see the boot menu for the NOR Flash.  This option is usually used by developers or when flashing the FreeRunner.  If you cannot log into U-Boot in NAND then you can log into U-Boot in the NOR Flash either. &lt;br /&gt;
&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;/table&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{note| There are six options you can choose when you log into the NOR Flash.&lt;br /&gt;
1. Boot&lt;br /&gt;
&lt;br /&gt;
2. [[Boot from sd card|Boot from MicroSD]]&lt;br /&gt;
&lt;br /&gt;
3. Set console to USB &lt;br /&gt;
&lt;br /&gt;
4. Set console to Serial&lt;br /&gt;
&lt;br /&gt;
5. Reset&lt;br /&gt;
&lt;br /&gt;
6. Power off}}&lt;br /&gt;
&lt;br /&gt;
{{note|The term ''Logging in'' used in this context means to turn on the device using the described method, and leaving it at the U-Boot menu. To avoid the device automatically booting, tap the AUX key to move the selector bar. Note also that the device will '''not''' automatically turn off while flashing is in progress.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Flashing the Neo FreeRunner==&lt;br /&gt;
As Openmoko development continues, Openmoko regularly releases updated versions of the Openmoko root filesystem, the kernel, and the[[Bootloader| U-Boot]]. These may be programmed into the Flash memory of Neo FreeRunner. You can use the USB cable and Openmoko provided tool to flash Neo FreeRunner.&lt;br /&gt;
&lt;br /&gt;
{{note|The Openmoko software team builds images daily. If you want to use the latest images, you can download the image from the daily build, but we recommend you download the most stable image from http://downloads.openmoko.org/releases/Freerunner/. Images here have been tested by the test team.&lt;br /&gt;
&lt;br /&gt;
More about current Images: http://wiki.openmoko.org/wiki/Latest_Images}}&lt;br /&gt;
&lt;br /&gt;
===Step 1. Download the DFU-util===&lt;br /&gt;
&lt;br /&gt;
You can download the flashing tool from: &lt;br /&gt;
http://downloads.openmoko.org/releases/Freerunner/dfu-util&lt;br /&gt;
&lt;br /&gt;
On the GNU/Linux host you can use the following command to download the dfu-util:&lt;br /&gt;
 wget http://downloads.openmoko.org/releases/Freerunner/dfu-util&lt;br /&gt;
&lt;br /&gt;
Afterwards you have to change the rights on the file:&lt;br /&gt;
 chmod a+x dfu-util&lt;br /&gt;
&lt;br /&gt;
===Step 2. Flashing the Kernel===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; cellspacing=&amp;quot;2&amp;quot; cellpadding=&amp;quot;2&amp;quot; style=&amp;quot;padding: 0%; margin:0em 0em 1em 0em; border:0px solid #ffffff; background:#ffffff; width:100%;floating=&amp;quot;center&amp;quot;; &amp;quot;&lt;br /&gt;
! style=&amp;quot;background:#ffffff;border-left:1px solid #ffffff;border-right:1px ; border-top:2px solid #ffffff; border:1px solid #ffffff; width:75% &amp;quot; |  &lt;br /&gt;
&amp;lt;div align=&amp;quot;left&amp;quot;&amp;gt;&lt;br /&gt;
[[Image:menu15.jpg|thumb|Log into U-Boot in NOR Flash, connect your Neo with Linux Host via USB cable]]&lt;br /&gt;
&lt;br /&gt;
Before you execute the following command, please log into U-Boot in the NOR Flash. The Neo FreeRunner needs to be at the NOR boot menu for flashing.  You will then need to connect your Neo with the GNU/Linux host via USB cable.&lt;br /&gt;
&lt;br /&gt;
You can download the kernel from &lt;br /&gt;
http://downloads.openmoko.org/releases/Freerunner/&lt;br /&gt;
&lt;br /&gt;
Type in the following command in the terminal on a GNU/Linux host. On some systems you need to be root before this will work and on Ubuntu you must preface the command with &amp;quot;sudo&amp;quot; or you will get the following error: &amp;quot;Cannot claim interface: could not claim interface 2: Operation not permitted&amp;quot;&lt;br /&gt;
 ./dfu-util -a (partion name) -R -D (download image file name)&lt;br /&gt;
&lt;br /&gt;
ex:&lt;br /&gt;
&lt;br /&gt;
 ./dfu-util -a kernel -R -D uImage-2.6.24+git20080424-om-gta02.bin&lt;br /&gt;
&lt;br /&gt;
Press Enter to execute the command.&lt;br /&gt;
&lt;br /&gt;
When flashing succeeds the following will be shown:&lt;br /&gt;
&lt;br /&gt;
status(0) = No error condition is present&amp;lt;br&amp;gt;&lt;br /&gt;
Done!&amp;lt;/div&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
{{note| The meaning of the parameters you specified:&lt;br /&gt;
-a  --alt alt Specify the altsetting of the DFU interface by name or by number&amp;lt;br&amp;gt;&lt;br /&gt;
-R  --reset Issue USB Reset signalling once we're finished&amp;lt;br&amp;gt;&lt;br /&gt;
-D  --download file Write firmware from&amp;lt;file&amp;gt; into device &amp;lt;br&amp;gt;&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
===Step 3. Flashing the Root Filesystem ===&lt;br /&gt;
You can download the root filesystem from:&lt;br /&gt;
http://downloads.openmoko.org/releases/Freerunner/&lt;br /&gt;
&lt;br /&gt;
Type the following command in the terminal of a GNU/Linux host. On some systems you will need to be root.&lt;br /&gt;
&lt;br /&gt;
 ./dfu-util -a rootfs -R -D openmoko-devel-image-fic-gta02.jffs2&lt;br /&gt;
&lt;br /&gt;
When flashing succeeds the following will be shown:&lt;br /&gt;
&lt;br /&gt;
status(0) = No error condition is present&amp;lt;br&amp;gt;&lt;br /&gt;
Done!&lt;br /&gt;
&lt;br /&gt;
==Appendix==&lt;br /&gt;
If you want to know more about the Neo FreeRunner then you can get more information in the following topics:&lt;br /&gt;
&lt;br /&gt;
* [[GTA02 Openness]]&lt;br /&gt;
* [[Neo FreeRunner]]&lt;br /&gt;
* [[Neo FreeRunner GTA02 Hardware]]&lt;br /&gt;
* [[FreeRunner/Buttons and LEDs]]&lt;br /&gt;
* [[Latest Images]]&lt;br /&gt;
* [[Distributions]]&lt;br /&gt;
&lt;br /&gt;
To search this wiki with Google, use the following search term:&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;search term&amp;gt; site:http://wiki.openmoko.org/wiki/&lt;br /&gt;
&lt;br /&gt;
An excellent tool for searching all the openmoko mailing lists is http://openmoko.markmail.org/&lt;br /&gt;
&lt;br /&gt;
[[Category:GTA02 Hardware]]&lt;/div&gt;</summary>
		<author><name>Ojw</name></author>	</entry>

	<entry>
		<id>http://wiki.openmoko.org/wiki/Neo_1973_GPS</id>
		<title>Neo 1973 GPS</title>
		<link rel="alternate" type="text/html" href="http://wiki.openmoko.org/wiki/Neo_1973_GPS"/>
				<updated>2008-07-08T20:55:35Z</updated>
		
		<summary type="html">&lt;p&gt;Ojw: /* Possible GPS programs */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The Neo1973 device contains an integrated GPS. The particular device&lt;br /&gt;
is marketed as an AGPS, and there is some [[Hardware:AGPS |&lt;br /&gt;
discussion]] available as to what significance that &amp;quot;A&amp;quot; might have.&lt;br /&gt;
&lt;br /&gt;
Note that the GTA02 device contains u-blox ANTARIS 4 solution, you could find more hardware related information before GTA02 hardware page.&lt;br /&gt;
&lt;br /&gt;
Assisted GPS performance requirement also defined in GSM/GPRS 3GPP TS 25.171, CDMA 3GPP2 C.S0036-0&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== GTA01 GPS driver (gllin) ===&lt;br /&gt;
''Main article - [[gllin]]''&lt;br /&gt;
&lt;br /&gt;
The GPS driver is available here: [http://3rdparty.downloads.openmoko.org/gllin/ http://3rdparty.downloads.openmoko.org/gllin/]. It is a command line tool that after starting writes the positioning data so that they can be read as if they were written to the file.&lt;br /&gt;
&lt;br /&gt;
And here the Mail from Michael Shiloh [http://lists.openmoko.org/pipermail/community/2007-November/011916.html http://lists.openmoko.org/pipermail/community/2007-November/011916.html]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
In the very early shipment to 50 Phase 1 developers, a binary-only program for talking to the the GPS was accidentally included &lt;br /&gt;
in /home/root/DM2/gps, (and presumably, the same binary would function on a P0 device).&lt;br /&gt;
This binary is called gllin and it is a oabi binary, i.e. it will only work in the 2007.1 Openmoko environment. There is now a eabi binary, which works with 2007.2. &lt;br /&gt;
&lt;br /&gt;
There was an effort to write a Free Software&lt;br /&gt;
program that could be used instead of this binary-only program, but this stalled after the decision to change GPS chips in GTA02.&lt;br /&gt;
&lt;br /&gt;
See [[Hammerhead/Protocol]] for details and the latest status.&lt;br /&gt;
&lt;br /&gt;
Some scripts for those with the binary are on [[Manually_using_GPS]]&lt;br /&gt;
&lt;br /&gt;
Please see the important information on [[Gllin]]!&lt;br /&gt;
&lt;br /&gt;
=== GTA02 GPS ===&lt;br /&gt;
&lt;br /&gt;
For detailed GTA02 u-blox 4 GPS information, please check here: [http://wiki.openmoko.org/wiki/GTA02_GPS GTA02 GPS]&lt;br /&gt;
&lt;br /&gt;
To turn on the GPS, echo 1 to the file /sys/devices/platform/s3c2440-i2c/i2c-adapter/i2c-0/0-0073/neo1973-pm-gps.0/pwron&lt;br /&gt;
&lt;br /&gt;
To read from the GPS, simply read /dev/ttySAC1.&lt;br /&gt;
&lt;br /&gt;
cat /dev/ttySAC1 will work fine.&lt;br /&gt;
&lt;br /&gt;
Before getting a fix, the GPS spits out lots of &amp;quot;$GPTXT,01,01,01,NMEA unknown msg*58&amp;quot;, though these stop once a fix is obtained. &lt;br /&gt;
A position without a fix looks like:&lt;br /&gt;
* $GPGGA,235946.99,,,,,00,00,5.0,,M,0.0001999,M,0.0020199,*57&lt;br /&gt;
One with a fix:&lt;br /&gt;
* $GPGGA,065852.00,5613.022527,N,00306.725890,W,1,05,0.5,158.0,M,0.277000,M,-0.010&lt;br /&gt;
0515,*7A&lt;br /&gt;
&lt;br /&gt;
(central Scotland)&lt;br /&gt;
&lt;br /&gt;
--[[User:Speedevil|Speedevil]] 11:52, 7 April 2008 (CEST)&lt;br /&gt;
&lt;br /&gt;
In Openmoko projects, you could find a GPS test program that could provide graphical and text dump of GPS information. This project called [http://svn.projects.openmoko.org/svnroot/openmoko-agpsui Openmoko AGPS UI project].&lt;br /&gt;
&lt;br /&gt;
=== Possible GPS programs ===&lt;br /&gt;
&lt;br /&gt;
As people develop more sophisticated GPS applications, please note them here.&lt;br /&gt;
&lt;br /&gt;
Here are some ideas for possibilities:&lt;br /&gt;
&lt;br /&gt;
* Cairo-based mapping&lt;br /&gt;
* Routing&lt;br /&gt;
* [[Openstreetmap]] a map viewer, annotation, and editing system.&lt;br /&gt;
* [http://wiki.openstreetmap.org/index.php/Pyroute Pyroute] is a routing program written in Python by Ojw, and a mobile phone GUI for maps, GPS, and routing.&lt;br /&gt;
:* [http://wiki.openstreetmap.org/index.php/Rana Ran&amp;amp;aacute;] is the new version of pyroute&lt;br /&gt;
* [[GPS-Trail]] a simple trail logger.&lt;br /&gt;
* [[GPS_Navigation#roadmap|roadmap]] mapping system using freely available maps (US census TIGER, DGLib, shapefiles).&lt;br /&gt;
* [[Geocaching]] paper chase for advanced users&lt;br /&gt;
* Set Profile (Mute, etc.) to coordinates (ex. At work)&lt;br /&gt;
* [[qpegps]] qtopia (arm PDA) based map viewer with gps features&lt;br /&gt;
* [[Navit]] a car navigation system with routing engine.&lt;br /&gt;
* [http://www.tangogps.org TangoGPS] works very well, downloads maps on demand and stores them for later use, very efficient. &lt;br /&gt;
* [[QMapControl]] Qtopia based mapping widget. Displays maps and custom data, also other widgets can be bound to coordinates. GPS parser for the gllin output included.&lt;br /&gt;
* [http://lists.openmoko.org/pipermail/community/2007-July/007252.html collection of ideas]&lt;br /&gt;
* [http://www.kflog.org/cumulus/ Cumulus] GPS software for glider pilots (and pilots in general), has a port for Qtopia and pulls (world) maps from the KFLog flight planner project. I think someone has put a project like this on the projects website [http://projects.openmoko.org/projects/openvario/ here].&lt;br /&gt;
* [http://svn.projects.openmoko.org/svnroot/openmoko-agpsui Openmoko AGPS UI project].&lt;br /&gt;
* [[GPS Sight]], a popular Openmoko project under LGPL.&lt;br /&gt;
* [[Orrery]], an unpopular Openmoko project for displaying the night sky.&lt;br /&gt;
* [http://wiki.openstreetmap.org/index.php/Gosmore Gosmore] is a routing and viewer of OSM XML data such as the planet.osm.&lt;br /&gt;
&lt;br /&gt;
== Using the Neo's GPS on a Laptop ==&lt;br /&gt;
&lt;br /&gt;
*First be sure you have gllin installed on the Neo.&lt;br /&gt;
*On host type: '''nc -vvn -l -p 5000 &amp;gt; /tmp/nmeaNP'''&lt;br /&gt;
*On the Neo type:   '''nc 192.168.0.200 5000 &amp;lt; /tmp/nmeaNP'''&lt;br /&gt;
*&lt;br /&gt;
*On the host PC install GPSD, your GPS is attached as /tmp/nmeaNP &lt;br /&gt;
*start gpsd on host with: '''gpsd -p /tmp/nmeaNP'''&lt;br /&gt;
*run your application! I used gpsdrive and it works better than my stand-alone GPS. &lt;br /&gt;
*Tested with RoadNav.Works great!&lt;br /&gt;
*&lt;br /&gt;
*With this in mind if you have an unlimited data package you could export this over the internet.&lt;br /&gt;
*the possibilities are limitless.  &lt;br /&gt;
&lt;br /&gt;
== Bluetooth GPS relay ==&lt;br /&gt;
&lt;br /&gt;
To make your neo appear like a regular bluetooth GPS:&lt;br /&gt;
&lt;br /&gt;
*Power up the bluetooth radio&lt;br /&gt;
*Run the gllin script&lt;br /&gt;
*run '''sdptool add SP'''&lt;br /&gt;
*run '''rfcomm watch 0 1 sh -c &amp;quot;cat /tmp/nmeaNP &amp;gt;/dev/rfcomm0&amp;quot; &amp;amp;'''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:GPS]]&lt;br /&gt;
&lt;br /&gt;
[[category:Documentation]]&lt;br /&gt;
[[category:Standard]]&lt;/div&gt;</summary>
		<author><name>Ojw</name></author>	</entry>

	<entry>
		<id>http://wiki.openmoko.org/wiki/Group_sales</id>
		<title>Group sales</title>
		<link rel="alternate" type="text/html" href="http://wiki.openmoko.org/wiki/Group_sales"/>
				<updated>2008-05-24T21:20:27Z</updated>
		
		<summary type="html">&lt;p&gt;Ojw: Hampshire - fix date&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Openmoko have announced a scheme to sell the forthcoming Neo Freerunner at a discount if bought in multiples of 10 (US$369, instead of 399), to be shipped in one package. Group buying will thus save money on the purchase, and on the shipping. This page is to to organise group purchases by region.&lt;br /&gt;
&lt;br /&gt;
Steve from Openmoko announced &amp;quot;Every 10 pack, will come with a box of stuff. 10 pouches and 10 head sets.&amp;quot;&lt;br /&gt;
So join us within a local group !&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style='float:right'&amp;gt;__TOC__&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Australia ==&lt;br /&gt;
&lt;br /&gt;
=== Customs And Postage ===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Because of Australian customs, it might be better to form groups of two. That way we(australians) will fall under the $1000 amount for import items and not have to pay the extra customs / taxes . &lt;br /&gt;
Customs information for Australia can be found [http://www.customs.gov.au/site/page.cfm?u=5549 here].&lt;br /&gt;
&lt;br /&gt;
[http://wiki.openmoko.org/wiki/Special:Emailuser/Monkeypanic Nick Devereaux] has worked out the per-phone cost of an Australian bulk order compared to an individual order:&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
 |'''Bulk Order'''&lt;br /&gt;
 |'''$US'''&lt;br /&gt;
 |'''$AUS'''&lt;br /&gt;
 |-&lt;br /&gt;
 |Customs Value (Cval)&lt;br /&gt;
 |$3690.00&lt;br /&gt;
 |$3960.03&lt;br /&gt;
 |-&lt;br /&gt;
 |Customs Duty (Duty) =5% of Cval&lt;br /&gt;
 |$184.50&lt;br /&gt;
 |$198.00&lt;br /&gt;
 |-&lt;br /&gt;
 |International Transport and Insurance or Postage (T&amp;amp;I)&lt;br /&gt;
 |$65.00&lt;br /&gt;
 |$69.76&lt;br /&gt;
 |-&lt;br /&gt;
 |Value Of Taxable Importation (VoTI) =Cval+Duty+T&amp;amp;I&lt;br /&gt;
 |$3939.50&lt;br /&gt;
 |$4227.79&lt;br /&gt;
 |-&lt;br /&gt;
 |Goods And Services Tax (GST) =10% of VoTI&lt;br /&gt;
 |$393.95&lt;br /&gt;
 |$422.78&lt;br /&gt;
 |-&lt;br /&gt;
 |Total Payable Duty + GST&lt;br /&gt;
 |$578.45&lt;br /&gt;
 |$620.78&lt;br /&gt;
 |- &lt;br /&gt;
 |Total Cost&lt;br /&gt;
 |$4333.45&lt;br /&gt;
 |$4650.57&lt;br /&gt;
 |-&lt;br /&gt;
 |'''Per Person'''&lt;br /&gt;
 |'''$433.35'''&lt;br /&gt;
 |'''$465.06'''&lt;br /&gt;
 |}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
 |'''Individual Order'''&lt;br /&gt;
 |'''$US'''&lt;br /&gt;
 |'''$AUS'''&lt;br /&gt;
 |-&lt;br /&gt;
 |Value&lt;br /&gt;
 |$399.00&lt;br /&gt;
 |$428.20&lt;br /&gt;
 |-&lt;br /&gt;
 |Postage&lt;br /&gt;
 | N/A&lt;br /&gt;
 | $52.65&lt;br /&gt;
 |-&lt;br /&gt;
 |'''Total Cost'''&lt;br /&gt;
 |'''N/A'''&lt;br /&gt;
 |'''$480.85'''&lt;br /&gt;
 |}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Postage quote from http://www1.auspost.com.au/pac/int_parcel.asp&lt;br /&gt;
&lt;br /&gt;
Figures accurate as of 16th May 2008, 1$ USD = $1.07 AUD.&lt;br /&gt;
&lt;br /&gt;
=== Western Australia ===&lt;br /&gt;
==== Perth ====&lt;br /&gt;
&lt;br /&gt;
Status: 10/10&lt;br /&gt;
&lt;br /&gt;
* 1x Fred Janon mailto:fjanon@yahoo.com&lt;br /&gt;
&lt;br /&gt;
* 1x Shanon Loughton [http://wiki.openmoko.org/wiki/Special:Emailuser/cgltower contact me here]&lt;br /&gt;
&lt;br /&gt;
* 1x Simon Matthews [http://wiki.openmoko.org/wiki/Special:Emailuser/simat contact me here]&lt;br /&gt;
&lt;br /&gt;
* 1x ([[Image:MokoBox.jpg]] - advanced) Msquared [http://www.msquared.id.au/ contact me here]&lt;br /&gt;
&lt;br /&gt;
* 1x Alex Wilkinson mailto:alex.wilkinson@dsto.defence.gov.au&lt;br /&gt;
&lt;br /&gt;
* 1x Daniel Foote mailto:freefoote@dview.net&lt;br /&gt;
&lt;br /&gt;
* 1x Russell Steicke mailto:russells@adelie.cx&lt;br /&gt;
&lt;br /&gt;
* 1x William Kenworthy mailto:billk@iinet.net.au&lt;br /&gt;
&lt;br /&gt;
* 1x Clare Johnstone [http://wiki.openmoko.org/wiki/Special:Emailuser/claregj contact me here]&lt;br /&gt;
&lt;br /&gt;
* 1x Justin Dinale [http://wiki.openmoko.org/wiki/Special:Emailuser/Noledil Contact me here]&lt;br /&gt;
&lt;br /&gt;
=== New South Wales  ===&lt;br /&gt;
==== Sydney ====&lt;br /&gt;
&lt;br /&gt;
status: 10/10 ( one group)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Please add an &amp;quot;I exist&amp;quot; to end of your name here. &lt;br /&gt;
&lt;br /&gt;
We now have 10 people (that seem to exist). I would to suggest like openmoko the company allow group sale deposits into accounts on behalf of groups.&lt;br /&gt;
With perhaps the package sent to sydney and then to a po box or split to finish the journey to the buyers. &lt;br /&gt;
&lt;br /&gt;
=====Confirmed=====&lt;br /&gt;
* 1 x dbmoodb ---&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/Dbmoodb contact me here] I exist.&lt;br /&gt;
* 1 x bing [http://wiki.openmoko.org/wiki/Special:Emailuser/Bingquick contact me here] I exist.&lt;br /&gt;
* 1 x Chris [http://wiki.openmoko.org/wiki/Special:Emailuser/ch0gan contact me here]. I exist.&lt;br /&gt;
* 1 x Neil Brown [http://wiki.openmoko.org/wiki/Special:Emailuser/Neilbrown contact me here] I'm wondering why I need to assert that I exist.&lt;br /&gt;
* 1 x Rob [http://wiki.openmoko.org/wiki/Special:Emailuser/Rob contact me here] Exist?  Of course I do.&lt;br /&gt;
* 1 x Tim [http://wiki.openmoko.org/wiki/Special:Emailuser/Voyd contact me here] I am almost certain I exist.&lt;br /&gt;
* 1 x porl [http://wiki.openmoko.org/wiki/Special:Emailuser/porl contact me here] I exist.&lt;br /&gt;
* 1 x tom [http://wiki.openmoko.org/wiki/Special:Emailuser/tom contact me here] I think I exist.&lt;br /&gt;
* 1 x Scott [http://wiki.openmoko.org/wiki/Special:Emailuser/Cysp wikimail]&lt;br /&gt;
&lt;br /&gt;
=====Unconfirmed=====&lt;br /&gt;
* 1 x Mark Chandler [http://wiki.openmoko.org/wiki/Special:Emailuser/Openmarko contact me here]&lt;br /&gt;
* 1 x cbaird [http://wiki.openmoko.org/wiki/Special:Emailuser/Cbaird contact me here] I exist-- but I assume someone's vetting confirmation?&lt;br /&gt;
&lt;br /&gt;
potential group 2 (0/10)&lt;br /&gt;
*&lt;br /&gt;
&lt;br /&gt;
=== Victoria ===&lt;br /&gt;
==== Melbourne ====&lt;br /&gt;
Status: 9/10&lt;br /&gt;
&lt;br /&gt;
* 4x Dennis Wollersheim, mailto: dewoller (at) gmail (dot) com&lt;br /&gt;
* 1x Nigel Cunningham, mailto: ncunningham (at) crca (dot) org (dot) au&lt;br /&gt;
  (I'm actually in Cobden, in the south-west)&lt;br /&gt;
* 1x Dale Maggee, mailto: antisol (at) earthling (dot) net&lt;br /&gt;
* 1x Matt Price: mailto: coolcat22 (at) bigpond (dot) com&lt;br /&gt;
* 1x Daniel Chandler: [http://wiki.openmoko.org/wiki/Special:Emailuser/AlphaGremlin contact me here]&lt;br /&gt;
* 1X Hugh Stephens, mailto: hughstephens &amp;lt;at&amp;gt; hughstephens &amp;lt;dot&amp;gt; com&lt;br /&gt;
&lt;br /&gt;
=== ACT ===&lt;br /&gt;
==== Canberra ====&lt;br /&gt;
Status: 1/10&lt;br /&gt;
&lt;br /&gt;
* Fergus [http://wiki.openmoko.org/wiki/Special:Emailuser/Someone Contact me here]&lt;br /&gt;
&lt;br /&gt;
=== Queensland ===&lt;br /&gt;
==== Brisbane ====&lt;br /&gt;
Status: 9/10&lt;br /&gt;
&lt;br /&gt;
* Nick Devereaux x 3 [http://wiki.openmoko.org/wiki/Special:Emailuser/Monkeypanic Contact me here]&lt;br /&gt;
* Matt Gallagher [http://wiki.openmoko.org/wiki/Special:Emailuser/mattg Contact me here]&lt;br /&gt;
* Jordan Keith [http://wiki.openmoko.org/wiki/Special:Emailuser/Zedd_D1abl0 Contact me here]&lt;br /&gt;
* Matt Blyde [http://wiki.openmoko.org/wiki/Special:Emailuser/Mattblyde Contact me here]&lt;br /&gt;
* David Baker [http://wiki.openmoko.org/wiki/Special:Emailuser/dtbaker Contact me here]&lt;br /&gt;
* Neil Davey (confirmed 1, maybe 2) [http://wiki.openmoko.org/wiki/Special:Emailuser/Ndavey Contact me here]&lt;br /&gt;
* Patrick Mahoney [http://wiki.openmoko.org/wiki/Special:Emailuser/Xanther Contact me here]&lt;br /&gt;
&lt;br /&gt;
=== South Australia ===&lt;br /&gt;
==== Adelaide ====&lt;br /&gt;
Status: 8/10&lt;br /&gt;
&lt;br /&gt;
* Adrian Billiau [http://wiki.openmoko.org/wiki/Special:Emailuser/Carcin Contact me here]&lt;br /&gt;
* John Briggs [http://wiki.openmoko.org/wiki/Special:Emailuser/Erflungued Contact me here]&lt;br /&gt;
* Daniel Sobey [http://wiki.openmoko.org/wiki/Special:Emailuser/dns Contact me here]&lt;br /&gt;
* Nicholas Steicke [http://wiki.openmoko.org/wiki/Special:Emailuser/narthollis Contact me here]&lt;br /&gt;
* Joel Stanley [http://wiki.openmoko.org/wiki/Special:Emailuser/shenki Contact me here]&lt;br /&gt;
* Karl Goetz x3 [http://wiki.openmoko.org/wiki/Special:Emailuser/kgoetz Contact me here]&lt;br /&gt;
&lt;br /&gt;
== Austria ==&lt;br /&gt;
There is a group-buy page at MetaLab, available here: http://metalab.at/wiki/OpenMoko .. we almost have the full 10 slots assigned, and its quite possible that we will order *20* phones, so please register on the Metalab pages and let us know if you're interested .. &lt;br /&gt;
&lt;br /&gt;
=== Salzburg ===&lt;br /&gt;
Status: 1/10&lt;br /&gt;
&lt;br /&gt;
* D. Kepplinger (at MetaLab)&lt;br /&gt;
&lt;br /&gt;
=== Wien ===&lt;br /&gt;
Status: 2/10&lt;br /&gt;
* M. Greifeneder [http://wiki.openmoko.org/wiki/Special:Emailuser/mikegr Contact me here]&lt;br /&gt;
* J. Vaughan (torpor) -- http://metalab.at/wiki/OpenMoko [http://wiki.openmoko.org/wiki/Special:Emailuser/torpor Contact me here]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Styria ===&lt;br /&gt;
==== Graz ====&lt;br /&gt;
Group 1: Status: 10/10&lt;br /&gt;
&lt;br /&gt;
* F Hackenberger [http://wiki.openmoko.org/wiki/Special:Emailuser/Deadman66 Contact me here]&lt;br /&gt;
* J Florineth [http://wiki.openmoko.org/wiki/Special:Emailuser/Flojoh Contact me here]&lt;br /&gt;
* G Michelitsch [http://wiki.openmoko.org/wiki/Special:Emailuser/graf_ithaka Contact me here]&lt;br /&gt;
* R Stoegbuchner [http://wiki.openmoko.org/wiki/Special:Emailuser/stoero Contact me here]&lt;br /&gt;
* M Lipp [http://wiki.openmoko.org/wiki/Special:Emailuser/Neldoreth Contact me here]&lt;br /&gt;
* M Maier [http://wiki.openmoko.org/wiki/Special:Emailuser/species Contact me here]&lt;br /&gt;
* M Konrad [http://wiki.openmoko.org/wiki/Special:Emailuser/konni Contact me here]&lt;br /&gt;
* M Schlaipfer [http://wiki.openmoko.org/wiki/Special:Emailuser/maze Contact me here]&lt;br /&gt;
* K Krammer [http://wiki.openmoko.org/wiki/Special:Emailuser/krake Contact me here]&lt;br /&gt;
* M Prokop [http://wiki.openmoko.org/wiki/Special:Emailuser/mika Contact me here]&lt;br /&gt;
&lt;br /&gt;
Group 2: Status: 2/10&lt;br /&gt;
* C Lauermann [http://wiki.openmoko.org/wiki/Special:Emailuser/cms Contact me here]&lt;br /&gt;
* S Simmer [http://wiki.openmoko.org/wiki/Special:Emailuser/StefanS Contact me here]&lt;br /&gt;
&lt;br /&gt;
== Belgium ==&lt;br /&gt;
=== Flanders ===&lt;br /&gt;
==== Brussel/Aalst/Aarschot/Gent/Brugge ====&lt;br /&gt;
Status 10/10&lt;br /&gt;
* Yorick, mailto: yorick DOT matthys AT gmail DOT com&lt;br /&gt;
* 2x Dolfje [http://wiki.openmoko.org/wiki/Special:Emailuser/Dolfje Contact me here]&lt;br /&gt;
* XVens, mailto: xavier DOT vens AT gmail DOT com&lt;br /&gt;
* Arno85, mailto: aaron DOT helin AT gmail DOT com, Kortrijk&lt;br /&gt;
* Rubenv, mailto: ruben D0T vandamme MAILAT belgacom D0T net, Kortrijk&lt;br /&gt;
* Js Op de Beeck [http://wiki.openmoko.org/wiki/Special:Emailuser/Js.opdebeeck Contact me here]&lt;br /&gt;
* Jan Keymeulen, mailto: spam@keymeulen.com&lt;br /&gt;
ps: Dolfje can bring freerunners to Brugge if needed&lt;br /&gt;
* Yvo Brasseur, mailto: yvo_brasseur@archon.be Living in Aarschot, working in Brussels.&lt;br /&gt;
* Emmanuel Mathot, mailto: aiieeee DOT gmail DOT com, Brussels&lt;br /&gt;
* Kamil Kubacki, mailto: kamil DOT kubacki AT gmail DOT com  [or kamil.kubacki@gmail.com]&lt;br /&gt;
&lt;br /&gt;
==== Antwerp ====&lt;br /&gt;
Status 9/10&lt;br /&gt;
&lt;br /&gt;
* michielv [http://wiki.openmoko.org/wiki/Special:Emailuser/Michielv Contact me here]&lt;br /&gt;
* Peter N [http://wiki.openmoko.org/wiki/Special:Emailuser/Bubsy Contact me here]&lt;br /&gt;
* Ivo [http://wiki.openmoko.org/wiki/Special:Emailuser/Ivo Contact me here]&lt;br /&gt;
* Peter Leemans, mailto: peter AT x-tend DOT be&lt;br /&gt;
* Richard B [http://wiki.openmoko.org/wiki/Special:Emailuser/richardb Contact me here]&lt;br /&gt;
* Jeroen Van Goey [http://wiki.openmoko.org/wiki/Special:Emailuser/BioGeek Contact me here]&lt;br /&gt;
* Jeroen D [http://wiki.openmoko.org/wiki/Special:Emailuser/jeroendoggen Contact me here]&lt;br /&gt;
* Diego Garcia, mailto: didac.garcia AT gmail DOT com&lt;br /&gt;
* Sam Geeraerts (Laakdal) [http://wiki.openmoko.org/wiki/Special:Emailuser/Samgee Contact me here]&lt;br /&gt;
&lt;br /&gt;
=== Wallonia ===&lt;br /&gt;
==== Walloon Brabant ====&lt;br /&gt;
* Istvan, mailto: buki DOT istvan AT gmail DOT com&lt;br /&gt;
&lt;br /&gt;
== Bulgaria ==&lt;br /&gt;
=== Sofia ===&lt;br /&gt;
==== Sofia ====&lt;br /&gt;
Status : 3/10&lt;br /&gt;
&lt;br /&gt;
* Dimitar Staykov, [http://wiki.openmoko.org/wiki/Special:Emailuser/OpenMitko Contact]&lt;br /&gt;
* Vernim, [http://wiki.openmoko.org/wiki/Special:Emailuser/Vernim Contact]&lt;br /&gt;
* Geo, [http://wiki.openmoko.org/wiki/Special:Emailuser/geomer Contact]&lt;br /&gt;
&lt;br /&gt;
== Canada ==&lt;br /&gt;
&lt;br /&gt;
=== British Columbia ===&lt;br /&gt;
Status : 9/10&lt;br /&gt;
&lt;br /&gt;
* Justin (Vancouver): mailto: stryderjzw AT gmail&lt;br /&gt;
* Dave (Vancouver) Vancouver Linux users group (unconfirmed but about 7 so far): mailto: doc AT skynet REMOVE dot REMOVE ie&lt;br /&gt;
* Steven (Victoria) - If someone in the group will remail the package for me. mailto: skurylo --&amp;gt; gmail dot com&lt;br /&gt;
&lt;br /&gt;
=== Alberta ===&lt;br /&gt;
Status : 4/10&lt;br /&gt;
&lt;br /&gt;
* [[User:Wuth|Wuth]] : [mailto:wuth@acm.org]&lt;br /&gt;
* [[User:Slm3095om|stacy]] (2 units) : slm3095om AT millions dOt ca&lt;br /&gt;
* [[User:Abnormal|Morgan]] : [mailto:lightningperf@hotmail.com]&lt;br /&gt;
&lt;br /&gt;
=== Ontario/Quebec ===&lt;br /&gt;
==== GTA (Toronto) ====&lt;br /&gt;
Status : 10/10&lt;br /&gt;
&lt;br /&gt;
* Gerald A [http://wiki.openmoko.org/wiki/Special:Emailuser/Historybuff Contact me here]&lt;br /&gt;
* MattC, mailto: quirkz AT gmail&lt;br /&gt;
* Sergey K, openmoko AT deeptown dOt org&lt;br /&gt;
* Kristin Low, kristin dot low at gmail dot com (Kingston)&lt;br /&gt;
* Daniel Lister, gmail(dan.lister)&lt;br /&gt;
* Ronnie Wong: '''3 units''' - r25wong AT ryerson dOT ca&lt;br /&gt;
* Paul V [http://wiki.openmoko.org/wiki/Special:Emailuser/Roju Contact me here]&lt;br /&gt;
* Matt Manjos, matt (AT) manjos * com&lt;br /&gt;
&lt;br /&gt;
Group 2 Status (Hamilton): 4/10&lt;br /&gt;
&lt;br /&gt;
* Gabriel D - ace AT staticwave DOT ca&lt;br /&gt;
* Richard D - rtdegelder --&amp;gt; gmail.com&lt;br /&gt;
* Steve S   - ssinger_pg AT sympatico dot ca&lt;br /&gt;
* Wolfram Kahl - kahl McMaster CA&lt;br /&gt;
&lt;br /&gt;
Group 3 Status (Montréal): 1/10&lt;br /&gt;
* Patrick Hétu - patrick AT koumbit DOT org&lt;br /&gt;
&lt;br /&gt;
== Chile ==&lt;br /&gt;
=== Santiago ===&lt;br /&gt;
Status : 4/10&lt;br /&gt;
&lt;br /&gt;
* [[User:Mankeke]] Ricardo Manríquez C., mailto: ricardo.manriquez &amp;quot;remove this and add AT&amp;quot; gmail &amp;quot;dot&amp;quot; com&lt;br /&gt;
* [[User:XKnightmareX]] Gonzalo Pesenti., mailto: mare.knight1 &amp;quot;remove this and add AT&amp;quot; gmail &amp;quot;dot&amp;quot; com&lt;br /&gt;
* [[User:Freyes]] Felipe Reyes., mailto: felipereyes &amp;quot;remove this and add AT&amp;quot; gmail &amp;quot;dot&amp;quot; com&lt;br /&gt;
* [[User:Zeus]] Jonathan Gonzalez., mailto: zeus &amp;quot;remove this and add AT&amp;quot; gnu &amp;quot;dot&amp;quot; org&lt;br /&gt;
&lt;br /&gt;
== China ==&lt;br /&gt;
=== BeiJing ===&lt;br /&gt;
Status:8/10&lt;br /&gt;
*Luther  &amp;lt;br/&amp;gt; mailto:lutherluo@qq.com &amp;lt;br/&amp;gt;  2 freerunner and 1 debug board.&lt;br /&gt;
*Gnosy &amp;lt;br/&amp;gt; mailto:gnosyhh@gmail.com &amp;lt;br/&amp;gt;   1 freerunner and 1 debug board.&lt;br /&gt;
*Bin Zong &amp;lt;br /&amp;gt; mailto:hunter_00zb@hotmail.com &amp;lt;br/&amp;gt; 1 Freerunner &amp;lt;br/&amp;gt; MSN:hunter_00zb@hotmail.com&lt;br /&gt;
*Lee zaixin&amp;lt;br /&amp;gt; mailto:shqlzx@126.com &amp;lt;br/&amp;gt; 1 Freerunner &amp;lt;br/&amp;gt;&lt;br /&gt;
*Zhuwei&amp;lt;br /&amp;gt; mailto:grissom_zhu@139.com &amp;lt;br/&amp;gt; MSN:wyh0310@hotmail.com &amp;lt;br/&amp;gt; 1 Freerunner &amp;lt;br/&amp;gt;&lt;br /&gt;
*zhaojun&amp;lt;br/&amp;gt; mailto:zhaojun1631@163.com &amp;lt;br/&amp;gt;  1 freerunner and 1 debug board&lt;br /&gt;
*Benoit Begue&amp;lt;br/&amp;gt; mailto:snk4ever@gmail.com &amp;lt;br/&amp;gt;  1 freerunner&lt;br /&gt;
&lt;br /&gt;
=== ShangHai ===&lt;br /&gt;
Status:0/10&lt;br /&gt;
&lt;br /&gt;
== Denmark ==&lt;br /&gt;
If we do not reach a total large enough, Denmark **is** a very small place - surely we could figure out a way of getting them to find their way 'round the country :)&lt;br /&gt;
&lt;br /&gt;
=== Jutland ===&lt;br /&gt;
==== Aalborg ====&lt;br /&gt;
Status: 3/10&lt;br /&gt;
&lt;br /&gt;
Should anyone need it, transportation from Aalborg to Thisted for phones can be arranged, if you don't want to pick it up in Aalborg yourself :) ~leinir&lt;br /&gt;
&lt;br /&gt;
As it looks right now, it seems that it would be cheaper and easier for us to buy through Pulster in Germany - see the following email: http://lists.openmoko.org/pipermail/community/2008-May/017778.html ~leinir&lt;br /&gt;
&lt;br /&gt;
* Dan Leinir Turthra Jensen &amp;lt;br /&amp;gt; mailto:admin@leinir.dk &amp;lt;br /&amp;gt; [[User:Leinir]]&lt;br /&gt;
* Fabian Olesen &amp;lt;br /&amp;gt; mailto:firewalkerx@gmail.com&lt;br /&gt;
* Helge Willum Larsen &amp;lt;br /&amp;gt; mailto:helge.at.helges.dk&lt;br /&gt;
&lt;br /&gt;
==== Skjern ====&lt;br /&gt;
Status: 1/10&lt;br /&gt;
&lt;br /&gt;
* [[User:Carlo]]&lt;br /&gt;
&lt;br /&gt;
==== Sønderborg ====&lt;br /&gt;
Status: 1/10&lt;br /&gt;
&lt;br /&gt;
* Theis Hjorth [http://wiki.openmoko.org/wiki/Special:Emailuser/Theis.hjorth contact me here] (1 phone + 1 devkit) &amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Fyn ===&lt;br /&gt;
Status: 4/10&lt;br /&gt;
(Unnless others join Esben and Peter will join the Copenhagen order and Peter will pick up the phones for Fyn in Copenhagen)&lt;br /&gt;
&lt;br /&gt;
* [[User:EsbenDamgaard]] (need 3 (Looney &amp;amp; Gert))&lt;br /&gt;
* [[User:apm]] (need 1 with invoice - can pick up in Copenhagen)&lt;br /&gt;
&lt;br /&gt;
=== Sjælland ===&lt;br /&gt;
==== Copenhagen ====&lt;br /&gt;
Status: 31/10 (35 including the 4 for Fyn - see above)&lt;br /&gt;
&lt;br /&gt;
* [[User:Fursund]] [http://wiki.openmoko.org/wiki/Special:Emailuser/Fursund (contact)]&lt;br /&gt;
* [[User:Rasmusjensen]] [http://wiki.openmoko.org/wiki/Special:Emailuser/Rasmusjensen (contact)]&lt;br /&gt;
* [[User:tabac | Thomas Ammitzbøll-Bach ]] [http://wiki.openmoko.org/wiki/Special:Emailuser/tabac (contact)] 1 phone&lt;br /&gt;
* [[User:chel | Christian E. Lysel ]] [http://wiki.openmoko.org/wiki/Special:Emailuser/chel (contact)]&lt;br /&gt;
* [[User:UlrikRasmussen | Ulrik Rasmussen]] [http://wiki.openmoko.org/wiki/Special:Emailuser/UlrikRasmussen (contact)]&lt;br /&gt;
* [[User:KlaymenDK | Jan Gundtofte-Bruun]]  [http://wiki.openmoko.org/wiki/Special:Emailuser/KlaymenDK (contact)] (Pending final hw, eg. low-power LEDs)&lt;br /&gt;
* [[User:OleTange | Ole Tange]] [http://wiki.openmoko.org/wiki/Special:Emailuser/OleTange (contact)] (I need 14 with invoice)&lt;br /&gt;
* [[User:Pascal | Pascal d'Hermilly]] [http://wiki.openmoko.org/wiki/Special:Emailuser/Pascal (contact)] (I need 1 with invoice)&lt;br /&gt;
* [[User:Miwer | Michael Andersen]] [http://wiki.openmoko.org/wiki/Special:Emailuser/Miwer (contact)] (2 freerunners, 1 debug board, and a copy of invoice)&lt;br /&gt;
* [[User:maha | Martin Hansen]] [http://wiki.openmoko.org/wiki/Special:Emailuser/maha (contact)] (3 with invoice)&lt;br /&gt;
* [[User:SvenneK | Svenne Krap ]] [http://wiki.openmoko.org/wiki/Special:Emailuser/SvenneK (contact)] (1+devkit with invoice)&lt;br /&gt;
* [[User:bss | Bo Stendal Sørensen]] [http://wiki.openmoko.org/wiki/Special:Emailuser/bss (contact)] (1)&lt;br /&gt;
* [[User:Glenn | Glenn Møller-Holst]] [http://wiki.openmoko.org/wiki/Special:Emailuser/Glenn (contact)] (1 + debug board)&lt;br /&gt;
* [[User:Coax | Lasse Poulsen]] [http://wiki.openmoko.org/wiki/Special:Emailuser/Coax (contact)] (1)&lt;br /&gt;
* [[User:Lord_Zalzer | Dennis Andersen]] [http://wiki.openmoko.org/wiki/Special:Emailuser/Lord_Zalzer (contact)] (1)&lt;br /&gt;
&lt;br /&gt;
== Finland ==&lt;br /&gt;
=== Uusimaa ===&lt;br /&gt;
==== Helsinki I (Full)====&lt;br /&gt;
Status : 10/10&lt;br /&gt;
&lt;br /&gt;
* Mikko Rauhala x2 [mailto:mjr@iki.fi mjr@iki.fi]&lt;br /&gt;
* Aleksi Hankalahti &amp;lt;br /&amp;gt; [mailto:aleksi.hankalahti@iki.fi aleksi.hankalahti@iki.fi]&lt;br /&gt;
* Seppo Hätönen &amp;lt;br /&amp;gt; [mailto:karrde@iki.fi karrde@iki.fi]&lt;br /&gt;
* Arttu Sund &amp;lt;br /&amp;gt; [mailto:thearttu@gmail.com thearttu@gmail.com]&lt;br /&gt;
* Ville-Pekka Vainio &amp;lt;br /&amp;gt; vpivaini AT cs.helsinki.fi&lt;br /&gt;
* Heikki Hallamaa &amp;lt;br /&amp;gt; [mailto:heikki.hallamaa@iki.fi heikki.hallamaa@iki.fi]&lt;br /&gt;
* Tomi Jylhä-Ollila &amp;lt;br /&amp;gt; tomi.jylha-ollila@helsinki.fi&lt;br /&gt;
* Richard Braakman&lt;br /&gt;
* Timo Jyrinki &amp;lt;br /&amp;gt; [mailto:timo.jyrinki@iki.fi timo.jyrinki@iki.fi]&lt;br /&gt;
&lt;br /&gt;
==== Helsinki II, Turku &amp;amp; Vaasa====&lt;br /&gt;
&lt;br /&gt;
Status : 7/10&lt;br /&gt;
&lt;br /&gt;
Helsinki:&lt;br /&gt;
&lt;br /&gt;
* Risto H. Kurppa &amp;lt;br /&amp;gt; risto AT kurppa DOT fi&lt;br /&gt;
* Aapo Rantalainen &amp;lt;br /&amp;gt; aapo DOT rantalainen AT gmail DOT com&lt;br /&gt;
* Matti Laakso &amp;lt;br /&amp;gt; matti DOT laakso AT kotiposti DOT net&lt;br /&gt;
* Ismo Haanaho &amp;lt;br /&amp;gt; ismo DOT haanaho AT gmail DOT com&lt;br /&gt;
&lt;br /&gt;
Turku:&lt;br /&gt;
&lt;br /&gt;
* Jaakko Lehtinen, jaakko dot lehtinen at gmail dot com&lt;br /&gt;
* Janne Junnila, janne dot junnila at gmail dot com&lt;br /&gt;
&lt;br /&gt;
Vaasa:&lt;br /&gt;
&lt;br /&gt;
* Mikko Niemikorpi, mikefulli ÄT gmail PISTE com&lt;br /&gt;
&lt;br /&gt;
FYI, removed from list (waiting for GTA02v6):&lt;br /&gt;
&lt;br /&gt;
* ''[[User:Piksi]], openmoko ÄT pi-xi PISTE net''&lt;br /&gt;
* ''2x Teemu Välimäki, [mailto:teemu.valimaki@iki.fi teemu.valimaki@iki.fi]''&lt;br /&gt;
&lt;br /&gt;
=== Lappi ===&lt;br /&gt;
==== Kemi ====&lt;br /&gt;
Status : 2/10&lt;br /&gt;
&lt;br /&gt;
'''[[User:Cg|Discuss the order here]]'''&lt;br /&gt;
&lt;br /&gt;
Kemi:&lt;br /&gt;
* Henri Valta &amp;lt;br /&amp;gt;henri PISTE valta ÄT kemi PISTE fi&lt;br /&gt;
* Tommi Juvonen &amp;lt;br /&amp;gt;tassi ÄT mediapumppu PISTE info&lt;br /&gt;
&lt;br /&gt;
== France ==&lt;br /&gt;
=== Bretagne ===&lt;br /&gt;
==== Brest ====&lt;br /&gt;
Status : 1/10&lt;br /&gt;
&lt;br /&gt;
* StevenLeRoux [mailto:steven@pourri.fr steven@pourri.fr] Jabber_Id:Steven@jabber.fr&lt;br /&gt;
* Acheteur potentiel #2&lt;br /&gt;
&lt;br /&gt;
==== Rennes ====&lt;br /&gt;
Status : 2/10&lt;br /&gt;
&lt;br /&gt;
* Cédric DUFOUIL (openmoko at tsleg point com)&lt;br /&gt;
* Yves MAHE (ymahe at zindep dot com)&lt;br /&gt;
&lt;br /&gt;
=== Pays de la Loire ===&lt;br /&gt;
==== La Roche sur Yon ====&lt;br /&gt;
Status : 1/10&lt;br /&gt;
&lt;br /&gt;
* [http://wiki.openmoko.org/wiki/Special:Emailuser/Vtouchar Vincent Touchard]&lt;br /&gt;
&lt;br /&gt;
==== Nantes ====&lt;br /&gt;
&lt;br /&gt;
* [[User:Yoann|Yoann ARNAUD]]. OK for a ship in Rennes if needed. [http://wiki.openmoko.org/wiki/Special:Emailuser/Yoann Contact me here]&lt;br /&gt;
&lt;br /&gt;
=== Ile de france ===&lt;br /&gt;
==== Paris ====&lt;br /&gt;
Status : 13/10&lt;br /&gt;
&lt;br /&gt;
* StevenLeRoux&lt;br /&gt;
* [[User:Phyce|Phyce]]&lt;br /&gt;
* Yann SLADEK ([http://wiki.openmoko.org/wiki/Special:Emailuser/Maveryck Contact me here])&lt;br /&gt;
* [[User:Wilk|Wilk]] [http://wiki.openmoko.org/wiki/Special:Emailuser/Wilk Contact me here]&lt;br /&gt;
* Jonathan Magano ([http://wiki.openmoko.org/wiki/Special:Emailuser/JonathanMM Contact me here])&lt;br /&gt;
* Benjamin Renard (bn8[AT]zionetrix.net)&lt;br /&gt;
* [[User:OlivierBerger|OlivierBerger]]&lt;br /&gt;
* [[User:BartGS|BartGS]] [http://wiki.openmoko.org/wiki/Special:Emailuser/BartGS Contact me here]&lt;br /&gt;
* [[User:rcoscali|Rémi Cohen-Scali]]&lt;br /&gt;
* [[User:Valos|Valéry Febvre]]&lt;br /&gt;
* [[User:Manou|Emmanuel Raviart]]&lt;br /&gt;
* Le Troll Farceur ([http://wiki.openmoko.org/wiki/Special:Emailuser/LeTrollFarceur Contact me here])&lt;br /&gt;
* [[User:mshook|Mathieu Chouquet-Stringer]]&lt;br /&gt;
You may also see :&lt;br /&gt;
http://bearstech.com/openmoko/register&lt;br /&gt;
&lt;br /&gt;
=== Lorraine ===&lt;br /&gt;
==== Nancy ====&lt;br /&gt;
Status : 1/10&lt;br /&gt;
&lt;br /&gt;
* [[User:mosan|Nicolas Salles]]&lt;br /&gt;
&lt;br /&gt;
=== Rhône-Alpes ===&lt;br /&gt;
==== Lyon ====&lt;br /&gt;
Status : 2/10&lt;br /&gt;
&lt;br /&gt;
* [http://wiki.openmoko.org/wiki/Special:Emailuser/patou Vincent MEURISSE]&lt;br /&gt;
* [http://wiki.openmoko.org/wiki/Special:Emailuser/pini Gilles FILIPPINI]&lt;br /&gt;
&lt;br /&gt;
==== Grenoble ====&lt;br /&gt;
Status : 3/10&lt;br /&gt;
&lt;br /&gt;
* [http://wiki.openmoko.org/wiki/Special:Emailuser/pbollard Philippe BOLLARD]&lt;br /&gt;
* [http://wiki.openmoko.org/wiki/Special:Emailuser/aurelien Aurelien]&lt;br /&gt;
* [http://wiki.openmoko.org/wiki/Special:Emailuser/Hey_popey Damien]&lt;br /&gt;
&lt;br /&gt;
=== Alpes de Haute Provence ===&lt;br /&gt;
==== Manosque ====&lt;br /&gt;
Status : 1/10&lt;br /&gt;
&lt;br /&gt;
* [http://wiki.openmoko.org/wiki/Special:Emailuser/cfdev Cyril]&lt;br /&gt;
&lt;br /&gt;
=== Provence Alpes Cote d'Azur ===&lt;br /&gt;
==== Sophia Antipolis ====&lt;br /&gt;
Status : 1/10&lt;br /&gt;
&lt;br /&gt;
* [http://wiki.openmoko.org/wiki/Special:Emailuser/nico.inc Nicolas HUOT]&lt;br /&gt;
&lt;br /&gt;
=== Midi-Pyrénées ===&lt;br /&gt;
==== Toulouse ====&lt;br /&gt;
&lt;br /&gt;
* [[Special:Emailuser/Ortalo|Ortalo]]&lt;br /&gt;
&lt;br /&gt;
== Germany ==&lt;br /&gt;
=== Baden-Württemberg ===&lt;br /&gt;
==== Karlsruhe ====&lt;br /&gt;
&lt;br /&gt;
* [[Special:Emailuser/Spacemarine|Spacemarine]] 2 Freerunner. -- I'm managing the communication between the groupbuyers, so please contact me if you are interested and haven't received an email from me yet. We will meet at the Kalug Meeting http://www.karlsruhe.linux.de/ on 26. 5. 2008 to discuss things further.&lt;br /&gt;
* [[Special:Emailuser/Dr.Nop|Dr.Nop]]&lt;br /&gt;
* [[Special:Emailuser/JensB|JensB]]&lt;br /&gt;
* [[Special:Emailuser/Tedo|Tedo]]&lt;br /&gt;
* [[Special:Emailuser/ZaPPaS|ZaPPaS]] 7 devices at least, maybe we start a new group in Leonberg&lt;br /&gt;
&lt;br /&gt;
* [[Special:Emailuser/Gromgull|Gromgull]] (in Kaiserslautern, but Karlsruhe is close enough, and I doubt that I'll find 10 people here.&lt;br /&gt;
* [[Special:Emailuser/Ebi|Ebi]]&lt;br /&gt;
* [[Special:Emailuser/RIdd3r|Fabian]]&lt;br /&gt;
* [[Special:Emailuser/Agon|Agon]] in Stuttgart, but Karlsruhe is close enough&lt;br /&gt;
* [[Special:Emailuser/Gollum|Gollum]] in Mannheim, ditto :)  Maybe local postal service is an option?&lt;br /&gt;
* [[Special:Emailuser/Archimedes|Sebastian]] (in Kaiserslautern on workdays and Daun/Eifel during the weekend)&lt;br /&gt;
* [[Special:Emailuser/Cc|Cc]] In Böblingen, Karlsruhe is close enough, Leonberg would be ideal.&lt;br /&gt;
&lt;br /&gt;
==== Tübingen ====&lt;br /&gt;
* [[Special:Emailuser/MiTo|MiTo]]&lt;br /&gt;
&lt;br /&gt;
=== Bayern ===&lt;br /&gt;
&lt;br /&gt;
==== Augsburg ====&lt;br /&gt;
&lt;br /&gt;
Status 4/10&lt;br /&gt;
I just want to see if there are enough people to fill up to ten. So add your name here if you are interested.&lt;br /&gt;
&lt;br /&gt;
whoever - Ich nehm eins, wenn die Münchner keines übrig haben.&lt;br /&gt;
[http://wiki.openmoko.org/wiki/Special:Emailuser/Whoever eMail]&lt;br /&gt;
&lt;br /&gt;
==== München ====&lt;br /&gt;
&lt;br /&gt;
Status 10/10&lt;br /&gt;
&lt;br /&gt;
* [[Special:Emailuser/Eriks|Eriks]]&lt;br /&gt;
* --[[User:Imitation|Imitation]] 21:42, 30 April 2008 (CEST)&lt;br /&gt;
* [[Special:Emailuser/meyerm|meyerm]] 16:25 CEST, 01. Mai 2008&lt;br /&gt;
* [[Special:Emailuser/Koebi|koebi]] 05. Mai 2008&lt;br /&gt;
* [[Special:Emailuser/wof|wof]] (2) 07. Mai 2008&lt;br /&gt;
* [[Special:Emailuser/floe|floe]] 10. Mai 2008&lt;br /&gt;
* [[Special:Emailuser/mathew muc|mathew muc]] 12. Mai 2008&lt;br /&gt;
* [[Special:Emailuser/einalex|einalex]] 13. Mai 2008&lt;br /&gt;
* [[Special:Emailuser/smurfy|smurfy]] 18. Mai 2008&lt;br /&gt;
&lt;br /&gt;
=== Berlin===&lt;br /&gt;
==== Berlin ====&lt;br /&gt;
&lt;br /&gt;
for berlin-talk: http://de.groups.yahoo.com/group/openmoko-berlin/&lt;br /&gt;
&lt;br /&gt;
* Conrad [http://wiki.openmoko.org/wiki/User:Caribu Contact me here]&lt;br /&gt;
&lt;br /&gt;
Status 15/20&lt;br /&gt;
* Stephan [http://wiki.openmoko.org/wiki/User:Fischel Contact me here]&lt;br /&gt;
* Robert [http://wiki.openmoko.org/wiki/User:Thebohemian Contact me here]&lt;br /&gt;
* Nico [http://wiki.openmoko.org/wiki/User:Nico Contact me here]&lt;br /&gt;
* Torsten [http://wiki.openmoko.org/wiki/User:Torsten_Grote Contact me here]&lt;br /&gt;
* Bastian [[User:Fries43]]&lt;br /&gt;
* Sven-Ola [http://wiki.openmoko.org/wiki/User:Sven-ola Contact]&lt;br /&gt;
* Arne [http://wiki.openmoko.org/wiki/User:arnepp Contact me here]&lt;br /&gt;
* MM [http://wiki.openmoko.org/wiki/User:MM Contact]&lt;br /&gt;
* Keks [http://wiki.openmoko.org/wiki/User:Keksdosenmann Contact]&lt;br /&gt;
* Matthias [http://wiki.openmoko.org/wiki/User:mk Contact]&lt;br /&gt;
* Norbert [http://wiki.openmoko.org/wiki/User:Noha Contact]&lt;br /&gt;
* Joscha [http://wiki.openmoko.org/wiki/User:Joka Contact]&lt;br /&gt;
* Janne [http://wiki.openmoko.org/wiki/User:Janne Contact]&lt;br /&gt;
* Robert [http://wiki.openmoko.org/wiki/Special:Emailuser/Robx Contact]&lt;br /&gt;
&lt;br /&gt;
=== Bremen ===&lt;br /&gt;
==== Bremen ====&lt;br /&gt;
Status 2/10&lt;br /&gt;
* Gero Mudersbach [http://wiki.openmoko.org/wiki/Special:Emailuser/Gero Contact me here]&lt;br /&gt;
* Hartje Bruns [http://wiki.openmoko.org/wiki/Special:Emailuser/MrBurns Contact me here]&lt;br /&gt;
&lt;br /&gt;
==== Bremerhaven ====&lt;br /&gt;
&lt;br /&gt;
=== Hamburg ===&lt;br /&gt;
==== Hamburg ====&lt;br /&gt;
Status 9-10&lt;br /&gt;
&lt;br /&gt;
* Jan 4-5[http://wiki.openmoko.org/wiki/Special:Emailuser/Jan07 Contact me here]&lt;br /&gt;
* Varacanero [http://wiki.openmoko.org/wiki/Special:Emailuser/varacanero Contact me here]&lt;br /&gt;
* Ole 3-5 pcs [http://wiki.openmoko.org/wiki/Special:Emailuser/Olemoko Contact me here]&lt;br /&gt;
* Arne [http://wiki.openmoko.org/wiki/Special:Emailuser/GuraX Contact me here]&lt;br /&gt;
* Arne.anka 1pc [http://wiki.openmoko.org/wiki/Special:Emailuser/Arne.anka Contact me here]&lt;br /&gt;
* Wasili Goutas 1pc + debug adapter [http://wiki.openmoko.org/wiki/Special:Emailuser/Laki Contact me here]&lt;br /&gt;
&lt;br /&gt;
=== Hessen ===&lt;br /&gt;
==== Frankfurt ====&lt;br /&gt;
Status 1-10&lt;br /&gt;
&lt;br /&gt;
* Blacky [http://wiki.openmoko.org/wiki/Special:Emailuser/Blacky Contact me here]&lt;br /&gt;
&lt;br /&gt;
=== Niedersachsen===&lt;br /&gt;
==== Hannover====&lt;br /&gt;
Status 1&lt;br /&gt;
&lt;br /&gt;
* Dattel83 [http://wiki.openmoko.org/wiki/Special:Emailuser/Dattel83 Contact me here]&lt;br /&gt;
&lt;br /&gt;
=== NRW ===&lt;br /&gt;
==== Aachen ====&lt;br /&gt;
Status 3/10&lt;br /&gt;
* Henrik, infos on my [[User:Henrikz|user page]], or you can [[Special:Emailuser/Henrikz|contact me here]]&lt;br /&gt;
* David, infos on my [[User:TechnoFan|user page]], or you can [[Special:Emailuser/TechnoFan|contact me here]]&lt;br /&gt;
* Stephan, infos on my [[User:chaq|user page]], or you can [[Special:Emailuser/chaq|contact me here]]&lt;br /&gt;
&lt;br /&gt;
==== Bielefeld ====&lt;br /&gt;
Status 4/10&lt;br /&gt;
&lt;br /&gt;
* David, infos on my [[User:Raven|user page]], or you can [[Special:Emailuser/Raven|contact me here]]&lt;br /&gt;
* Sebastian, infos on my [[User:Seppi|user page]], or you can [[Special:Emailuser/Seppi|contact me here]]&lt;br /&gt;
* Dackel, infos on my [[User:Killerdackel|user page]], or you can [[Special:Emailuser/Killerdackel|contact me here]]&lt;br /&gt;
* Conny&lt;br /&gt;
* Arndt, infos on my [[User:Arndot|user page]], or you can [[Special:Emailuser/Arndot|contact me here]]&lt;br /&gt;
&lt;br /&gt;
==== Bocholt ====&lt;br /&gt;
===== (Fachhochschule in Bocholt) =====&lt;br /&gt;
* 1 x adslex&lt;br /&gt;
* 1 x dg [[Special:Emailuser/dg|contact me here]]&lt;br /&gt;
&lt;br /&gt;
==== Düsseldorf ====&lt;br /&gt;
* mac2k, infos on my [[User:mac2k|user page]], or you can [[Special:Emailuser/mac2k|contact me here]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Sachsen-Anhalt ===&lt;br /&gt;
==== Stendal (evtl. Magdeburg) ====&lt;br /&gt;
Status 1/10&lt;br /&gt;
&lt;br /&gt;
* Fabian Off [http://wiki.openmoko.org/wiki/Special:Emailuser/Fabian2de Contact me here]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Thueringen ===&lt;br /&gt;
==== Weimar ====&lt;br /&gt;
Status 1/10&lt;br /&gt;
&lt;br /&gt;
* [[User:Fries43]]&lt;br /&gt;
&lt;br /&gt;
==== Ilmenau ====&lt;br /&gt;
Status 1/10&lt;br /&gt;
&lt;br /&gt;
* [[User:KimKiesel]]&lt;br /&gt;
&lt;br /&gt;
=== Sachsen ===&lt;br /&gt;
==== Chemnitz ====&lt;br /&gt;
Status 2/10&lt;br /&gt;
&lt;br /&gt;
* Tobias [http://wiki.openmoko.org/wiki/Special:Emailuser/Tobydox Contact me here]&lt;br /&gt;
* Michael [http://wiki.openmoko.org/wiki/Special:Emailuser/her Contact me here]&lt;br /&gt;
==== Dresden ====&lt;br /&gt;
Status 1/10&lt;br /&gt;
&lt;br /&gt;
* Martin [http://wiki.openmoko.org/wiki/Special:Emailuser/nodge Contact me here]&lt;br /&gt;
&lt;br /&gt;
== Hungary == &lt;br /&gt;
Good to know:&lt;br /&gt;
*discussion here: http://hup.hu/node/54588&lt;br /&gt;
*mailing list: http://groups.google.com/group/freerunner-groupsales-hungary&lt;br /&gt;
*group ordering coordinator: Dániel Vásárhelyi (see below) - please contact me on any questions&lt;br /&gt;
&lt;br /&gt;
ordering rules:&lt;br /&gt;
* anyone can add and remove him/herself on the list - new names MUST be _appended_ to the list&lt;br /&gt;
* please use real name and working e-mail address&lt;br /&gt;
* although this list is informative, please extend it _only_ if you are really serious about ordering it&lt;br /&gt;
* coordinator contacts everyone interested prior to actual buying&lt;br /&gt;
&lt;br /&gt;
=== Budapest ===&lt;br /&gt;
Status 25/30&lt;br /&gt;
&lt;br /&gt;
# Ferenc 'Lion' Veres [http://wiki.openmoko.org/wiki/Special:Emailuser/kempelen Contact]&lt;br /&gt;
# Laszlo 'rka' Szabo [http://wiki.openmoko.org/wiki/Special:Emailuser/rka Contact]&lt;br /&gt;
# tg [http://wiki.openmoko.org/wiki/Special:Emailuser/tg?wpSubject=OpenMoko%20GroupSales Contact]&lt;br /&gt;
# LiRul - lirul [KUKAC] hixsplit [PONT] hu&lt;br /&gt;
# Nyosigomboc - nyos [KUKAC] nyos [PONT] homelinux [PONT] net&lt;br /&gt;
# Ludvig Adam - hunludvig [KUKAC] gmail [PONT] com&lt;br /&gt;
# [http://wiki.openmoko.org/wiki/Special:Emailuser/asdmin?wpSubject=OpenMoko%20GroupSales Dániel 'asd' Vásárhelyi]&lt;br /&gt;
# asch, asch [KUKAC] freemail [PONT] hu&lt;br /&gt;
# btamas, [http://wiki.openmoko.org/wiki/Special:Emailuser/btamas Contact]&lt;br /&gt;
# Kovács 'ka87' András, andras [kukac] csevego [pont] net&lt;br /&gt;
# pcm, pcm [kukac] freemail [pont] hu&lt;br /&gt;
# gpiros, geza [PONT] piros [KUKAC] gmail [PONT] com&lt;br /&gt;
# Áron Preisinger, appa00 [kukac] gmail [pont] com [http://wiki.openmoko.org/wiki/Special:Emailuser/appa Contact]&lt;br /&gt;
# pierre286, [http://wiki.openmoko.org/wiki/Special:Emailuser/pierre286 Contact]&lt;br /&gt;
# Hélei Zoltán, heleiz [kukac] gmail&lt;br /&gt;
# Fenwick, [http://wiki.openmoko.org/wiki/Special:Emailuser/fenwick Contact]&lt;br /&gt;
# Radics Áron, raron @ vipmail . hu&lt;br /&gt;
# Laszlo Szomor [http://wiki.openmoko.org/wiki/Special:Emailuser/Lci Contact]&lt;br /&gt;
# tr3w [http://wiki.openmoko.org/wiki/Special:Emailuser/tr3w Contact]&lt;br /&gt;
# Ferenc Szomor [http://wiki.openmoko.org/wiki/Special:Emailuser/Lci Contact]&lt;br /&gt;
# Attila Darabos, adarabos at gmail dot com&lt;br /&gt;
# Bolyóczki Zsombor, mogorva kukac tuxworx pont hu&lt;br /&gt;
# Sütő Zoltán, suto dot zoltan at t dash online dot hu&lt;br /&gt;
# Zsolt Pittmann, pittmann dot zsolt at gmail dot com&lt;br /&gt;
# KREKACS Laszlo, laszlo {pont} krekacs {pont} list {kukacka} gmail {pont} com&lt;br /&gt;
&lt;br /&gt;
=== Kecskemét ===&lt;br /&gt;
Dániel Vásárhelyi handles transportation to Kecskemét, therefore it is not necessary to collect 10 all pieces here.&lt;br /&gt;
&lt;br /&gt;
== India ==&lt;br /&gt;
=== Delhi/NCR ===&lt;br /&gt;
Status 2/10&lt;br /&gt;
&lt;br /&gt;
* Goldwyn Rodrigues [http://wiki.openmoko.org/wiki/Special:Emailuser/goldwynr Contact]&lt;br /&gt;
* Sameer Mohamed Thahir [http://wiki.openmoko.org/wiki/Special:Emailuser/sameerthahir Contact]&lt;br /&gt;
* Pratul Kalia (lut4rp) ''pratulkalia [at] gmail [dot] com''&lt;br /&gt;
&lt;br /&gt;
== Italy == &lt;br /&gt;
For more informations and to organize groups, visit the&lt;br /&gt;
*[http://groups.google.com/group/freerunner-italian-group-sales?hl=it '''''Italian Freerunner Group Sales Google Group'''''] (ML/Web/Feeds) ([mailto:freerunner-italian-group-sales@googlegroups.com freerunner-italian-group-sales@googlegroups.com]).&lt;br /&gt;
&lt;br /&gt;
'''BUT please keep adding your name and email to the list below'''&lt;br /&gt;
&lt;br /&gt;
If we don't reach the 10 phones limit in each city, maybe we could place an order in the &amp;quot;most requested city&amp;quot;, and from shipping to other buyers. We'll have anyway a good discount although the &amp;quot;double-shipping&amp;quot;. ([http://thread.gmane.org/gmane.comp.handhelds.openmoko.community/10937/focus=10981 Read here for reference]).&lt;br /&gt;
&lt;br /&gt;
=== Toscana ===&lt;br /&gt;
==== Firenze (e dintorni) ====&lt;br /&gt;
Status 10/10&lt;br /&gt;
&lt;br /&gt;
* [[User:Treviño|Marco Trevisan (Treviño)]] - [http://blog.3v1n0.net/contatti-trevino/ Contacts here]&lt;br /&gt;
* [[User:Niccolo|Niccolo Rigacci]] - ''niccolo [AT] rigacci.org''&lt;br /&gt;
* [[User:pcav|Paolo Cavallini]] - ''cavallini [AT] faunalia.it''&lt;br /&gt;
* [[User:BiggMatt|Mattia Gentile]] - ''biggmatt@hotmail.it''&lt;br /&gt;
* Elisa ''[mailto:lab@kkk.it lab@kkk.it]'' (Empoli)&lt;br /&gt;
* [[User:Sugacapra|Sugacapra]] - ''alessio.chemeri [AT] gmail.com''&lt;br /&gt;
* [[User:tom_morello|Carlo Ascani (Morello)]] - ''carlo.ratm [AT] gmail.com''&lt;br /&gt;
* [[User:marrano|Stefano Burchietti (Marrano)]] - ''stefano [AT] nontelodiromai.it''&lt;br /&gt;
* [[User:Geli86|Matteo Gelimeri X 2 (Imola - Bologna)]] - ''gelimatteo [AT] gmail.com''&lt;br /&gt;
&lt;br /&gt;
=== Lombardia ===&lt;br /&gt;
&lt;br /&gt;
==== Milano e dintorni ====&lt;br /&gt;
Status 22/30&lt;br /&gt;
&lt;br /&gt;
[[GroupSales_Milano_e_dintorni|Organizzazione preliminare]] DEPRECATA lì 11 Maggio 2008.&lt;br /&gt;
&lt;br /&gt;
Da ora in poi usiamo il [http://groups.google.com/group/freerunner-italian-group-sales?hl=it '''Freerunner Italian Group Sales'''].&lt;br /&gt;
&lt;br /&gt;
 Ad ogni modo, per stabilire le precedenze nella prenotazione dei pacchi da 10 pezzi, '''continuate ad aggiugerVi nella lista qui sotto'''&lt;br /&gt;
&lt;br /&gt;
*'''Gruppo 1'''&lt;br /&gt;
*# Marcello Gorla [mailto:marcello.gorla@gmail.com Contacts here] (Milano città)&lt;br /&gt;
*# Maxxer [mailto:maxxer@yetopen.it maxxer@yetopen.it] (Lecco)&lt;br /&gt;
*# Pietro Montorfano [mailto:monto84@gmail.com monto84@gmail.com] (from como)&lt;br /&gt;
*# Gianluigi Belli - [http://wiki.openmoko.org/wiki/Special:Emailuser/Pulciux Contacts here] (Milano)&lt;br /&gt;
*# Michele Castellano - [http://wiki.openmoko.org/wiki/Special:Emailuser/mubumba Contacts here] (Milano)&lt;br /&gt;
*# Maurizio Lipreri -  [http://wiki.openmoko.org/wiki/Special:Emailuser/Maldido Contacts here]( Como )&lt;br /&gt;
*# Guido Conaldi - [http://wiki.openmoko.org/wiki/Special:Emailuser/skepz Contacts here] (Varese)&lt;br /&gt;
*# [[User:Furester|Igor Scabini (furester)]] - [http://wiki.openmoko.org/wiki/Special:Emailuser/Furester Contacts here] (Milano)&lt;br /&gt;
*# Dario Panico [http://wiki.openmoko.org/wiki/Special:Emailuser/Dareus Contacts here] (Busto Arsizio, VA)&lt;br /&gt;
*# Marco Zanzotera (Milano città) &lt;br /&gt;
&lt;br /&gt;
*'''Gruppo 2'''&lt;br /&gt;
*# Francesco Ricci (Milano, Dipartimento di Scienze dell'Informazione, via Comelico 39/41) - possibile punto di ricezione/distribuzione - [http://wiki.openmoko.org/wiki/Special:Emailuser/Alfa21 Contacts here]&lt;br /&gt;
*# Danilo Sia (Birdack) [http://wiki.openmoko.org/wiki/Special:Emailuser/Birdack Contacts here] (Milano città)&lt;br /&gt;
*# Federico Belvisi - [http://wiki.openmoko.org/wiki/Special:Emailuser/Armalite Contacts here] (Legnano, MI/Varese)&lt;br /&gt;
*# Francesco Leserri - [http://wiki.openmoko.org/wiki/Special:Emailuser/Francy Contacts here] (Vimercate, MI)&lt;br /&gt;
*# [[User:Cga|Callea Gaetano Andrea]] (Milano zona Forlanini) [http://wiki.openmoko.org/wiki/Special:Emailuser/Cga Contacts here]&lt;br /&gt;
*# [[User:Pietrao| Pietro Isotti]] - [mailto:isottipietro@gmail.com isottipietro@gmail.com]&lt;br /&gt;
*# Baz - [mailto:buzzi.paolo@gmail.com buzzi.paolo@gmail.com]&lt;br /&gt;
*# Mario Signorino ('''2 unità''') ([[User:Dodiesis|Dodiesis]])- [mailto:mario@sgrunt.net mario@sgrunt.net] (Milano - possibile punto di ricezione alternativo )&lt;br /&gt;
*# [[user:Stemby|Carlo Stemberger]] (Stemby) - '''carlo'''&amp;lt;small&amp;gt;dot&amp;lt;/small&amp;gt;'''stemberger'''&amp;lt;small&amp;gt;at&amp;lt;/small&amp;gt;'''gmail'''&amp;lt;small&amp;gt;dot&amp;lt;/small&amp;gt;'''com''' (Missaglia, LC)&lt;br /&gt;
&lt;br /&gt;
*Gruppo 3 - incompleto&lt;br /&gt;
*# Marco Crobu - [http://wiki.openmoko.org/wiki/Special:Emailuser/Tron.tron Contacts here] (Zogno, BG)&lt;br /&gt;
*# Maurizio [[User:Trizio!|&amp;quot;Trizio!&amp;quot;]] Ciceri (Novara)&lt;br /&gt;
&lt;br /&gt;
=== Piemonte ===&lt;br /&gt;
==== Torino (and province) ====&lt;br /&gt;
Status 10/10&lt;br /&gt;
&lt;br /&gt;
Per coordinamento [http://groups.google.com/group/freerunner-italian-group-sales?hl=it '''Freerunner Italian Group Sales'''] (Torino)&lt;br /&gt;
&lt;br /&gt;
Precedenza è stabilita in base all'ordine di aggiunta nella lista inizale&amp;lt;br&amp;gt;&lt;br /&gt;
*'''Gruppo 1''' (prime persone a fare l'ordine):&amp;lt;br&amp;gt;&lt;br /&gt;
1 x Claudio Carnino (jollyr0g3r AT gmail DOT com)&amp;lt;br&amp;gt;&lt;br /&gt;
1 x Alessandro Degano (a.degano AT gmail DOT com)&amp;lt;br&amp;gt;&lt;br /&gt;
1 x Enrico Pigozzi (videokill71 AT gmail DOT com)&amp;lt;br&amp;gt;&lt;br /&gt;
1 x Max Ciavarella - [http://wiki.openmoko.org/wiki/Special:Emailuser/Cicchetebom Contacts here]&amp;lt;br&amp;gt;&lt;br /&gt;
1 x Giuseppe Barbieri (elect86 at gmail dot com)&amp;lt;br&amp;gt;&lt;br /&gt;
1 x Riccardo Issoglio (riccardo.issoglio AT polito DOT it)&amp;lt;br&amp;gt;&lt;br /&gt;
1 x Flavio Pastore [http://wiki.openmoko.org/wiki/Special:Emailuser/Iron_Bishop Contacts here]&amp;lt;br&amp;gt;&lt;br /&gt;
1 x Michele Renda ( mic DOT renda AT email DOT it )&amp;lt;br&amp;gt;&lt;br /&gt;
2 x Katjia Mirri (gattoniglia AT gmail DOT com ) two items (ne voglio due)!!&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
*'''Gruppo 2''' (coloro che non ci stanno nel primo gruppo o che vogliono aspettare che il primo gruppo abbia ricevuto il telefono):&amp;lt;br&amp;gt;&lt;br /&gt;
1 x Giovanni Di Mingo ( pino_otto AT yahoo DOT com )&amp;lt;br&amp;gt;&lt;br /&gt;
1 x Marco Forasacco (zer0fil3 AT gmail DOT com)&amp;lt;br&amp;gt;&lt;br /&gt;
1 x Gabriele Martino (pierino DOT the DOT living DOT joke AT gmail DOT com)&amp;lt;br&amp;gt;&lt;br /&gt;
1 x Massimo Valerio (my AT massimovalerio DOT it)&amp;lt;br&amp;gt;&lt;br /&gt;
...&amp;lt;br&amp;gt;&lt;br /&gt;
(aggiungersi chi è nuovo)&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
-------------------------------------&lt;br /&gt;
LISTA ORIGINALE (24/05/08 14:48):&lt;br /&gt;
* Claudio Carnino &amp;lt;br/&amp;gt; (jollyr0g3r AT gmail DOT com)&lt;br /&gt;
* Alessandro Degano &amp;lt;br/&amp;gt; (a.degano AT gmail DOT com)&lt;br /&gt;
* Enrico Pigozzi &amp;lt;br/&amp;gt; (videokill71 AT gmail DOT com)&lt;br /&gt;
* Max Ciavarella - [http://wiki.openmoko.org/wiki/Special:Emailuser/Cicchetebom Contacts here]&lt;br /&gt;
* Giuseppe Barbieri (elect86 at gmail dot com)&lt;br /&gt;
* Riccardo Issoglio &amp;lt;br/&amp;gt; (riccardo.issoglio AT polito DOT it)&lt;br /&gt;
* Flavio Pastore [http://wiki.openmoko.org/wiki/Special:Emailuser/Iron_Bishop Contacts here]&lt;br /&gt;
* Michele Renda ( mic DOT renda AT email DOT it )&lt;br /&gt;
* Katjia Mirri (gattoniglia AT gmail DOT com ) two items (ne voglio due)!!&lt;br /&gt;
* Giovanni Di Mingo ( pino_otto AT yahoo DOT com )&lt;br /&gt;
* Marco Forasacco &amp;lt;br/&amp;gt; (zer0fil3 AT gmail DOT com)&lt;br /&gt;
* Gabriele Martino &amp;lt;br/&amp;gt; (pierino DOT the DOT living DOT joke AT gmail DOT com)&lt;br /&gt;
* Massimo Valerio &amp;lt;br/&amp;gt; (my AT massimovalerio DOT it)&lt;br /&gt;
--------------------------------------&lt;br /&gt;
&lt;br /&gt;
=== Trentino-Alto Adige ===&lt;br /&gt;
==== Trento ====&lt;br /&gt;
Status 5/10&lt;br /&gt;
&lt;br /&gt;
* [[User:Slaytanic|Gianni Costanzi]] &amp;lt;br/&amp;gt; (gianni.costanzi AT gmail DOT com)&lt;br /&gt;
* Vincenzo D'Andrea (vincenzo.dandrea AT gmail DOT com) &amp;lt;br/&amp;gt; (also Verona is OK - and I can carry others' phone VR to TN or viceversa)&lt;br /&gt;
* 1x ([[Image:MokoBox.jpg]] - advanced) [[User:Tarch|Tarcisio Fedrizzi]] (tarcisio.fedrizzi AT gmail DOT com)&lt;br /&gt;
* Emanuele Olivetti (emanuele CHIOCCIOLA relativita PUNTO com)&lt;br /&gt;
* Marco Ciampa (ciampix (*) libero (*) it)&lt;br /&gt;
&lt;br /&gt;
=== Friuli Venezia Giulia ===&lt;br /&gt;
==== Trieste ====&lt;br /&gt;
Status: 1/10&lt;br /&gt;
&lt;br /&gt;
* dorje [mailto:dorje@libero.it dorje@libero.it] - [[User:dorje|dorje]]&lt;br /&gt;
&lt;br /&gt;
=== Veneto ===&lt;br /&gt;
Status: 13/20&lt;br /&gt;
&lt;br /&gt;
==== Verona ====&lt;br /&gt;
&lt;br /&gt;
* Persegat [mailto:persegat@alice.it persegat@alice.it] - [[User:Pecce|Pecce]]&lt;br /&gt;
* Sylar91 [mailto:sylar1991@gmail.com sylar1991@gmail.com] - [[User:Sylar91|Sylar91]]&lt;br /&gt;
* Marco Franceschetti - [http://wiki.openmoko.org/wiki/Special:Emailuser/vonfritz Contacts here]&lt;br /&gt;
* AleksFalcone [mailto:aleks.falcone@gmail.com aleks.falcone@gmail.com] - [[User:AleksFalcone|AleksFalcone]]&lt;br /&gt;
* Roberto Previdi [mailto:hariseldon78(AT)gmail.com hariseldon78(AT)gmail.com] - [[User:hariseldon78|hariseldon78]] (also Milano is ok)&lt;br /&gt;
&lt;br /&gt;
==== Vicenza ====&lt;br /&gt;
&lt;br /&gt;
* Michele [mailto:michele@cooperativabiosphaera.it michele(at)cooperativabiosphaera.it] - &amp;lt;br /&amp;gt;Also Padova is okay.&lt;br /&gt;
&lt;br /&gt;
* Paolo [mailto:paolo.sartore@gmail.com paolo.sartore(at)gmail.com]&amp;lt;br /&amp;gt; Also Padova is okay.&lt;br /&gt;
&lt;br /&gt;
* Renato [mailto:wasgiventofly@gmail.com wasgiventofly AT gmail DOT com]&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* Sandro [http://wiki.openmoko.org/wiki/Special:Emailuser/vigerty contact me here]&amp;lt;br /&amp;gt; Also Padova is okay.&lt;br /&gt;
&lt;br /&gt;
* Marco [mailto:marco.napetti@linux.it marco.napetti(at)linux.it]&amp;lt;br /&amp;gt; Also Padova and Verona are ok.&lt;br /&gt;
&lt;br /&gt;
==== Venezia ====&lt;br /&gt;
&lt;br /&gt;
* Tommaso [mailto:tommaso.gardumi@gmail.com tommaso.gardumi@gmail.com] - [[User:Tobarello|Tobarello]] &amp;lt;br /&amp;gt;Also Padova, Vicenza &amp;amp; Trento are ok.&lt;br /&gt;
&lt;br /&gt;
==== Treviso ====&lt;br /&gt;
&lt;br /&gt;
* Dario [mailto:aliasbrain@gmail.com aliasbrain(at)gmail.com] - [[User:Rastafan|Rastafan]] &amp;lt;br /&amp;gt;one, maybe two.&lt;br /&gt;
&lt;br /&gt;
* Pedro [mailto:paguilar@junkerhq.net paguilar(at)junkerhq.net] - [[User:Paguilar|Paguilar]] &amp;lt;br/&amp;gt;Also Padova and Vicenza are ok.&lt;br /&gt;
&lt;br /&gt;
=== Emilia Romagna ===&lt;br /&gt;
Status : 4/10&lt;br /&gt;
==== Parma ====&lt;br /&gt;
Status : 3/10&lt;br /&gt;
&lt;br /&gt;
* [[User:Delian|Marco Albanese]] [mailto:delian2@gmail.com delian2@gmail.com] For Me, it's ok for the decentralized shipment ( Milano for example :) ).&lt;br /&gt;
&lt;br /&gt;
* [[User:Jordano|Marco Grassi]] marco.gra AT Gmail Dot com Also for me it's ok the decentralized shipping.&lt;br /&gt;
&lt;br /&gt;
* [[User:Hachreak|Leonardo Rossi]] ssj3gokou AT libero Dot it Also for me it's ok the decentralized shipping.&lt;br /&gt;
&lt;br /&gt;
==== Ravenna ====&lt;br /&gt;
&lt;br /&gt;
Status : 1/10&lt;br /&gt;
&lt;br /&gt;
* [[User:Fano|Stefano Ronconi]] fanharlok AT libero Dot it decentralized shipping is ok.&lt;br /&gt;
&lt;br /&gt;
=== Puglia ===&lt;br /&gt;
==== Lecce ====&lt;br /&gt;
Status : 2/10&lt;br /&gt;
&lt;br /&gt;
* [[User:Morpheus90|Morpheus90]] [mailto:ugopiemontese@rudiaelinux.com ugopiemontese@rudiaelinux.com]&lt;br /&gt;
* [[User:Italyanker|italyanker]] [mailto:italyanker@gmail.com italyanker@gmail.com]&lt;br /&gt;
&lt;br /&gt;
==== Bari ====&lt;br /&gt;
Status : 2/10&lt;br /&gt;
&lt;br /&gt;
* [[User:Fradeve11|Fradeve11]] [mailto:fradeve@ubuntu-it.org fradeve@ubuntu-it.org]&lt;br /&gt;
&lt;br /&gt;
=== Abruzzo ===&lt;br /&gt;
==== Pescara ====&lt;br /&gt;
Status: 1/10&lt;br /&gt;
&lt;br /&gt;
* ZarZ [mailto:zarz25@gmail.com zarz25@gmail.com]&lt;br /&gt;
&lt;br /&gt;
=== Campania ===&lt;br /&gt;
==== Caserta (and province) ====&lt;br /&gt;
Status 1/10&lt;br /&gt;
&lt;br /&gt;
* fenoxxx [mailto:fenoxxx@gmail.com] - Aversa&lt;br /&gt;
&lt;br /&gt;
=== Lazio ===&lt;br /&gt;
==== Roma ====&lt;br /&gt;
Status 9/10&lt;br /&gt;
&lt;br /&gt;
Per coordinamento [http://groups.google.com/group/freerunner-italian-group-sales?hl=it '''Freerunner Italian Group Sales'''] (Roma)&lt;br /&gt;
&lt;br /&gt;
La precedenza è stabilita in base all'ordine di aggiunta nella lista inizale&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Gruppo 1 (incompleto, manca 1 pezzo):&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* Hire X 2 [mailto:hiretto@gmail.com hiretto@gmail.com] (Roma)&lt;br /&gt;
* Darkbasic X 1 [mailto:darkbasic4(at)gmail darkbasic4(at)gmail] (Ancona)&lt;br /&gt;
* zione X 1 [mailto:alessio.filipponio@gmail.com alessio.filipponio@gmail.com](Roma)&lt;br /&gt;
* AntoMan X 1 [mailto:obe_65@yahoo.it AntoMan](Roma)&lt;br /&gt;
* Christian X 1(Gino46) [mailto:christian.marzola@alice.it] (ferrara) Qualcuno me lo dovrebbe spedire. || Ci pensa Hire a spedirli a chi non è di Roma, mettete semplicemente in conto 8/9 euro in più per la spedizione.&lt;br /&gt;
* Tempix X 1 [mailto:tempix11@gmail.com tempix11@gmail.com] (Ancona)&lt;br /&gt;
* 6xsempre X 1 [mailto:6xsempre@jumpy.it] (frosinone)&lt;br /&gt;
* lynx1673 X1 [mailto: acarfi at yahoo dot com] - lynx sei di Roma?&lt;br /&gt;
&lt;br /&gt;
=== Liguria ===&lt;br /&gt;
==== Genova ====&lt;br /&gt;
Status 8/10&lt;br /&gt;
&lt;br /&gt;
* Luca Maranzano X 1 (liuk AT linux DOT it) [[User:liuk|liuk]]&lt;br /&gt;
* Francesco Frassinelli X 1 (frafra AT autistici DOT org) [[User:Frafra|Frafra]]&lt;br /&gt;
* Lorenzo Fornara X 1 (fw1987 AT hotmail DOT it)&lt;br /&gt;
* Stefano Cutelle' X 1 (staff@ascservices.it) [[User:ascservices|ascservices]]&lt;br /&gt;
* Luca Arrigo X 1 (morph84@gmail.com) [[User:morph|morph]]&lt;br /&gt;
* Andrea De Gaetano X 1 (dega1999 AT gmail DOT com) [[User:Dega1999|Dega1999]]&lt;br /&gt;
* Salvo Schiavone X 1 (salvoschiavone AT gmail DOT com [[User:Salvador|Salvador]]&lt;br /&gt;
* Daniele Delmonte X1 (ryogazero chiocciola yahoo punto it)&lt;br /&gt;
&lt;br /&gt;
=== Sicilia ===&lt;br /&gt;
==== Palermo ====&lt;br /&gt;
Status 9/10&lt;br /&gt;
&lt;br /&gt;
* Giorgio Marciano' X 1 [mailto:giorgio.marciano@email.it giorgio]&lt;br /&gt;
* Michele Puccio X 1 [mailto:narkos@iol.it michele]&lt;br /&gt;
* Roberto Calandra X 1 [mailto:isokazi@yahoo.it roberto]&lt;br /&gt;
* Vincenzo Moreno Luna X 6 [mailto:ciop85plus@hotmail.com vincenzo]&lt;br /&gt;
&lt;br /&gt;
==== Messina ====&lt;br /&gt;
Status 5/10&lt;br /&gt;
&lt;br /&gt;
* Melug X 5 [mailto:suuuper@messinalug.org MeLug]&lt;br /&gt;
&lt;br /&gt;
=== Calabria ===&lt;br /&gt;
==== Catanzaro ====&lt;br /&gt;
Status 1/10&lt;br /&gt;
&lt;br /&gt;
* Carlo Mangani X 1 [mailto:carlo.mangani@gmail.com carlo.mangani@gmail.com] - Lamezia Terme&lt;br /&gt;
&lt;br /&gt;
=== Sardegna ===&lt;br /&gt;
==== Cagliari ====&lt;br /&gt;
Status 1/10&lt;br /&gt;
&lt;br /&gt;
* Panta x 1 [[User:Panta]]&lt;br /&gt;
Viaggio per tutta l'Isola, per cui, nel caso in cui arrivassimo a 10 utenti...&lt;br /&gt;
&lt;br /&gt;
== Macedonia ==&lt;br /&gt;
=== Skopje ===&lt;br /&gt;
Status 1/10&lt;br /&gt;
* Kristijan Krsteski 1/10 &amp;lt;br /&amp;gt; [[User:neutrino]] &amp;lt;br /&amp;gt; [mailto:kristijan.krsteski@gmail.com]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== México ==&lt;br /&gt;
=== Ciudad de México ===&lt;br /&gt;
Status 1/10&lt;br /&gt;
&lt;br /&gt;
* Kozapatista [[Special:Emailuser/User:kozapatista|Contact]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== [http://wiki.openmoko.org/wiki/Talk:GroupSales#The_Netherlands The Netherlands] ==&lt;br /&gt;
(Discuss this group sale on the [http://wiki.openmoko.org/wiki/Talk:GroupSales#The_Netherlands talk page])&lt;br /&gt;
&lt;br /&gt;
* Marijn Kruisselbrink 1 [[Special:Emailuser/User:mkruisselbrink|Contact]]&lt;br /&gt;
* Andy Powell 1/10 [[Special:Emailuser/User:ScaredyCat|Contact]]&lt;br /&gt;
* Arjan Veenstra 1/10 [[User:AVee]] [[Special:Emailuser/User:AVee|Contact]]&lt;br /&gt;
&lt;br /&gt;
=== Gelderland ===&lt;br /&gt;
&lt;br /&gt;
==== Nijkerk ====&lt;br /&gt;
* [[User:Nicolas|Nico Veenkamp]] (Nijkerk 1x) [[Special:Emailuser/User:Nicolas|Contact]]&lt;br /&gt;
&lt;br /&gt;
==== Nijmegen ====&lt;br /&gt;
* [[User:A.dre|André Disselhorst]] (Nijmegen 1x) [[Special:Emailuser/User:A.dre|Contact]]&lt;br /&gt;
&lt;br /&gt;
=== Limburg ===&lt;br /&gt;
&lt;br /&gt;
==== Griendtsveen ====&lt;br /&gt;
* [[User:KenSentMe|Jeroen van de Nieuwenhof]] (Griendtsveen 1x) [[Special:Emailuser/User:KenSentMe|Contact]]&lt;br /&gt;
&lt;br /&gt;
=== Noord-Brabant ===&lt;br /&gt;
&lt;br /&gt;
==== Bergen op Zoom ====&lt;br /&gt;
* [[User:Madjo|Marcel de Jong]] 1/10 [[Special:Emailuser/User:Madjo|Contact]]&lt;br /&gt;
&lt;br /&gt;
==== Eindhoven ====&lt;br /&gt;
* Christ van Willegen 1 [[User:ChristW]]&lt;br /&gt;
&lt;br /&gt;
=== Noord Holland ===&lt;br /&gt;
&lt;br /&gt;
==== Amsterdam ====&lt;br /&gt;
* Michel van Horssen 1/10 [[Special:Emailuser/User:mivaho|Contact]]&lt;br /&gt;
* Frank Richter 1 [[Special:Emailuser/User:res|Contact]]&lt;br /&gt;
* Eric Smith 1/10 [[User:Eric Smith]]&lt;br /&gt;
* Buddy Baars 1 [[Special:Emailuser/User:Budster|Contact]]&lt;br /&gt;
&lt;br /&gt;
==== Beverwijk ====&lt;br /&gt;
* Theo Martens 1x [[Special:Emailuser/User:T_M|Contact]]&lt;br /&gt;
&lt;br /&gt;
==== Bussum ====&lt;br /&gt;
* Remco van Zuijlen 1x [[Special:Emailuser/User:Remco|Contact]]&lt;br /&gt;
&lt;br /&gt;
=== Overijssel ===&lt;br /&gt;
&lt;br /&gt;
==== Deventer ====&lt;br /&gt;
* Jan de Haan 1/10 [[User:Jan de Haan]] [[Special:Emailuser/User:Jan de Haan|Contact]]&lt;br /&gt;
&lt;br /&gt;
==== Enschede ====&lt;br /&gt;
* Peter Hageman 1x [[Special:Emailuser/User:PingPong|Contact]]&lt;br /&gt;
&lt;br /&gt;
==== Hengelo ====&lt;br /&gt;
* Sander Hoentjen 1/10 [[Special:Emailuser/User:Tjikkun|Contact]]&lt;br /&gt;
&lt;br /&gt;
==== Zwolle ====&lt;br /&gt;
* Boudewijn 1/10 [[User:Boudewijn|empty user page]] [[Special:Emailuser/User:Boudewijn|Contact]]; possibly got a second person interested&lt;br /&gt;
&lt;br /&gt;
=== Zuid-Holland ===&lt;br /&gt;
&lt;br /&gt;
==== Rijswijk ====&lt;br /&gt;
* Fernando Martins 1x [[User:fmartins]]  [[Special:Emailuser/User:fmartins|Contact]]&lt;br /&gt;
&lt;br /&gt;
=== Utrecht ===&lt;br /&gt;
&lt;br /&gt;
==== Utrecht ====&lt;br /&gt;
* Eric Spierings 1/10 [[Special:Emailuser/User:ericsp|Contact]]&lt;br /&gt;
* Peter van de Werken 2/10 [[Special:Emailuser/User:PWerken|Contact]]&lt;br /&gt;
* Kenny van Wanrooij 1/10 [[Special:Emailuser/User:kenneth|Contact]]&lt;br /&gt;
&lt;br /&gt;
=== Status ===&lt;br /&gt;
22/30&lt;br /&gt;
&lt;br /&gt;
== New Zealand ==&lt;br /&gt;
As Telecom are using the 850MHz network for their GSM network, and Vodafone/northelia (possibly aka orcon) are using 900/1800MHz, please state which version you want. This may need more research, I'm not 100%; see [http://www.gsmworld.com/roaming/gsminfo/cou_nz.shtml] for more info&amp;lt;br&amp;gt;&lt;br /&gt;
According to jeremy list, telecom will not be rolling out GSM for four years, so the point becomes moot - no-one is likely to get an 850 gsm phone now and wait that long&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Based on info from steve (openmoko marketing) concerning weight and size, shipping via UPS will be about US$185 (NZ$23 each phone) to Auckland.&amp;lt;br&amp;gt;&lt;br /&gt;
UPS are far from the cheapest, but (again according to steve), OM have a contract with them, so this is what we are stuck with&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Someone on the community list suggested using [http://www.myus.com], a shipping company that will re-post items overseas at decent rates. They claim US$66 for a 3kg package, or NZ$8 per phone. Of course, the cost of shipping the phone from OM to the shipping company has to be added in as well.&lt;br /&gt;
&lt;br /&gt;
As of 2008-05-08, US$369 is worth NZ$477&lt;br /&gt;
&lt;br /&gt;
import duty on mobile phones is 0%[http://www.customs.govt.nz/importers/Private+Importers/Customs+Charges.htm], and GST is 12.5% so the GST added to each phone will be NZ$63; 12.5% * {477 + 23), cos we pay GST on postage too...&lt;br /&gt;
&lt;br /&gt;
So, the total cost of a Freerunner as part of a 10 pack, will be:&amp;lt;br&amp;gt;&lt;br /&gt;
477 + 23 + 63&amp;lt;br&amp;gt;&lt;br /&gt;
= '''NZ$563'''&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
+ any possible charges to get it posted elsewhere in New Zealand&lt;br /&gt;
&lt;br /&gt;
=== Auckland ===&lt;br /&gt;
==== [[Auckland group sales|Auckland]] ====&lt;br /&gt;
Status:10 phones requested, the required minimum (10 phones) is reached, but more buyers are still welcome to join.&lt;br /&gt;
*Rob Paulson [[User:Myfanwy]] [mailto:robin.paulson@gmail.com] 900MHz&lt;br /&gt;
**i'm quite happy to organise the purchase, if no-one has any objections. to ease any worries about me running off with the money, we could use an escrow service such as [http://safetrader.co.nz], or paypal. or does anyone have any other ideas?&lt;br /&gt;
*Simon Wells [[User:Swel024]] 900MHz&lt;br /&gt;
*Jeremy List [[User:Jeremy-list]] mailto:quick.dudley@gmail.com (Wellington, not Auckland, will pay for courier) 900MHz&lt;br /&gt;
*David Murrell [[User:Viddy]] - [mailto:dmurrell@waikato.ac.nz] I'm in Hamilton, either courier, or I'll drive up :) 900MHz&lt;br /&gt;
*Jeremy Gray [[User:Bogdan237]] [mailto:jgra163@ec.auckland.ac.nz] Auckland, 900MHz&lt;br /&gt;
*Glen Ogilvie [[User:Nelg]] [mailto:nelg@linuxsolutions.co.nz] Auckland, 900MHz&lt;br /&gt;
*Xuân Baldauf [[User:xbaldauf]] [mailto:xuan--2008.05--GroupSales--wiki.openmoko.org@baldauf.org] Auckland CBD, 900MHz+1800MHz GSM with an [http://www.ak2.com.tw/pd_main.asp?sg_id=11 '''EU''' charger clip] instead of an Australian one (if this is in need to be selected). This is &amp;lt;u&amp;gt;conditional&amp;lt;/u&amp;gt;: the transaction must complete by 2008-06-30, else I cannot participate, because I'm leaving the country afterwards.&lt;br /&gt;
*Paul Roe [[User:Par08]] [http://wiki.openmoko.org/wiki/Special:Emailuser/Par08 contact me here] Christchurch, 2 x 900MHz&lt;br /&gt;
*Dave Lane [[User:dangerpossum]] [http://wiki.openmoko.org/wiki/Special:Emailuser/dangerpossum contact] Christchurch, 1 x 900MHz + 1800MHz GSM&lt;br /&gt;
*Paul Hunkin [[User:paulhunkin]] [mailto:pwh4@cs.waikato.ac.nz Contact] Hamilton (I'll pay for a courier), 1 x 900MHz.&lt;br /&gt;
&lt;br /&gt;
== Norway ==&lt;br /&gt;
=== Nordland ===&lt;br /&gt;
==== Bodø ====&lt;br /&gt;
Status 2/10&lt;br /&gt;
&lt;br /&gt;
* [[User:AlecTBM|Alexander Frøyseth]] [mailto:alexander.froyseth@gmail.com alexander.froyseth@gmail.com]&lt;br /&gt;
* Ole Marius&lt;br /&gt;
* Stian Vading&lt;br /&gt;
* [[User:Kolbjorn.Dahle|Kolbjorn Dahle]][mailto:kolbjorn@dahlenett.org]&lt;br /&gt;
&lt;br /&gt;
=== Sør-Trøndelag ===&lt;br /&gt;
==== Trondheim ====&lt;br /&gt;
Status 13/20&lt;br /&gt;
&lt;br /&gt;
*[[User:andy000|Andreas Kalvå]] [mailto:andy@samfundet.no andy@samfundet.no]&lt;br /&gt;
Send mail om du er interessert.&lt;br /&gt;
&lt;br /&gt;
=== Østlandet ===&lt;br /&gt;
==== Oslo, Akershus, Buskerud, Vestfold ====&lt;br /&gt;
Status 20/20(30?)&lt;br /&gt;
&lt;br /&gt;
* [[User:Ixian|Heikki Sørum]] [mailto:heikkis@matnat.uio.no] &amp;lt;br/&amp;gt; Interessert? mail meg.&lt;br /&gt;
* [[User:Bobkare|Knut Arne Bjørndal]] [mailto:bob@cakebox.net]&lt;br /&gt;
&lt;br /&gt;
==== Østfold ====&lt;br /&gt;
Status 1/10&lt;br /&gt;
&lt;br /&gt;
* [[User:MrBlonde|Petter Nygård]] [mailto:pettnyg@frisurf.no] &amp;lt;br /&amp;gt;Interessert? -&amp;gt; Mail meg....&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Poland ==&lt;br /&gt;
&lt;br /&gt;
* Special group buy site: https://www.kumulator.pl/show/group/35 (in edition moment: 14/20)&lt;br /&gt;
&lt;br /&gt;
== Portugal ==&lt;br /&gt;
=== Aveiro ===&lt;br /&gt;
==== Aveiro ====&lt;br /&gt;
Status : 1/10&lt;br /&gt;
&lt;br /&gt;
* [[User:Ruben|Ruben Mendes]]&lt;br /&gt;
&lt;br /&gt;
=== Lisboa ===&lt;br /&gt;
==== Lisboa ====&lt;br /&gt;
Status : 3/10&lt;br /&gt;
&lt;br /&gt;
* [[User:Pedrosilva|Pedro Silva]]&lt;br /&gt;
* [http://wiki.openmoko.org/wiki/Special:Emailuser/Danielblues Daniel Branco]&lt;br /&gt;
* [http://wiki.openmoko.org/wiki/Special:Emailuser/Knuckles Ivo Anjo]&lt;br /&gt;
&lt;br /&gt;
== Sweden ==&lt;br /&gt;
If insufficient number of people, orders could be merged and remailed perhaps.&lt;br /&gt;
&lt;br /&gt;
Domestic remailing with Posten as A-class mail of a letter (criteria: length+width+height max 900 mm) weighing max 1 kg, without insurance should [http://www.posten.se/foretag/vara_tjanster/postageguide/postguideLetterDom.jspv cost 44 SEK]. 50 SEK more for insurance.&lt;br /&gt;
&lt;br /&gt;
If we end up with more than one 10-pack in Sweden, my guess is that it would probably pay to order everything in one shipment to one address in Sweden to save on the international shipping, and then remail domestically.&lt;br /&gt;
&lt;br /&gt;
=== Götaland ===&lt;br /&gt;
==== Göteborg ====&lt;br /&gt;
&lt;br /&gt;
* [[User:Fwendt|Fredrik Wendt]] [[Special:Emailuser/Fwendt|Contact]]/wendt.se&lt;br /&gt;
&lt;br /&gt;
==== Malmö ====&lt;br /&gt;
Status : 1/10&lt;br /&gt;
&lt;br /&gt;
* Lars Jarlvik &amp;lt;br /&amp;gt; mailto:lars@larsfactory.se&lt;br /&gt;
&lt;br /&gt;
=== Svealand ===&lt;br /&gt;
==== Stockholm ====&lt;br /&gt;
Status : 6/10&lt;br /&gt;
&lt;br /&gt;
* Erland Lewin &amp;lt;br /&amp;gt; mailto:erland@lewin.nu&lt;br /&gt;
* Simon Kågström &amp;lt;br /&amp;gt; mailto:simon.kagstrom@gmail.com&lt;br /&gt;
* Ingvaldur Sigurjonsson &amp;lt;br /&amp;gt; mailto:ingi@ultimalabor.se&lt;br /&gt;
* Adam Johansson &amp;lt;br /&amp;gt; mailto:adam@sollentunaholm.se&lt;br /&gt;
* Lowe Schmidt &amp;lt;br /&amp;gt; mailto:lowe.schmidt@gmail.com&lt;br /&gt;
&lt;br /&gt;
==== Örebro ====&lt;br /&gt;
Status : 1/10&lt;br /&gt;
&lt;br /&gt;
* Anders Petersson &amp;lt;br /&amp;gt; [mailto:demitar@worldforge.org demitar@worldforge.org]&lt;br /&gt;
&lt;br /&gt;
==== Västerås ====&lt;br /&gt;
Status : 1/10&lt;br /&gt;
* Jörgen Lidholm, could join the Falun/Borlänge or Stockholm group &amp;lt;br /&amp;gt; [mailto:jorgen.lidholm@gmail.com]&lt;br /&gt;
&lt;br /&gt;
==== Falun &amp;amp; Borlänge ====&lt;br /&gt;
Status : 4/10&lt;br /&gt;
&lt;br /&gt;
* [http://wiki.openstreetmap.org/index.php/User:Jth Johan Thelmén], Åke Hoff &amp;amp; a demo/backup&lt;br /&gt;
* [http://wiki.openstreetmap.org/index.php/User:eagle87 Pär Eriksson], Borlänge&lt;br /&gt;
&lt;br /&gt;
=== Norrland ===&lt;br /&gt;
==== Umeå ====&lt;br /&gt;
Status : 2/10&lt;br /&gt;
&lt;br /&gt;
* [[User:Zash|Zash]] [[Special:Emailuser/Zash|Contact]]&lt;br /&gt;
* [[User:Benjamin|Benjamin]] [[Special:Emailuser/Benjamin|Contact]]&lt;br /&gt;
&lt;br /&gt;
==== Luleå ====&lt;br /&gt;
Status : 2/10&lt;br /&gt;
&lt;br /&gt;
* [[User:Mjukis|Mjukis]] [[Special:Emailuser/Mjukis|Contact]] - 2 Units. Can also join the Malmö group order.&lt;br /&gt;
&lt;br /&gt;
== Switzerland ==&lt;br /&gt;
Gabriel Ambuehl would volunteer to order the initial 10pack.&lt;br /&gt;
Alexandre Ghisoli could organize the second 10pack.&lt;br /&gt;
Luca Capello could organize the third 10pack (mostly for French Switzerland).&lt;br /&gt;
Mathieu will probably organisze the 4th 10pack. (Lausanne)&lt;br /&gt;
All the 4 with payment in advance (a 10pack will cost approx 3'800 USD).&lt;br /&gt;
&lt;br /&gt;
Probably we will organize shipping, if we cannot all move to Zürich/Genève to get our Neo.&lt;br /&gt;
&lt;br /&gt;
How do we (the initial 10pack group) get in contact? I cannot find any contact information of Gabriel Ambuehl.&lt;br /&gt;
--[[User:Magbeat|Magbeat]] 09:31, 22 May 2008 (UTC)&lt;br /&gt;
&lt;br /&gt;
==== Shipping ====&lt;br /&gt;
If we would ship Neos, here is the Swiss PostPac prices :&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot; cellspacing=&amp;quot;0&amp;quot; cellpadding=&amp;quot;2&amp;quot;&lt;br /&gt;
! Description&lt;br /&gt;
! Size [cm]&lt;br /&gt;
! Price CHF TTC&lt;br /&gt;
|-&lt;br /&gt;
| Size 1&lt;br /&gt;
| 22.9 x 14.7 x 9.9&lt;br /&gt;
| 2.20&lt;br /&gt;
|-&lt;br /&gt;
| Size 2&lt;br /&gt;
| 31.5 x 22.5 x 12.5&lt;br /&gt;
| 2.40&lt;br /&gt;
|-&lt;br /&gt;
| Shipping Priority&lt;br /&gt;
| up to 2Kg&lt;br /&gt;
| 8.-&lt;br /&gt;
|-&lt;br /&gt;
| Shipping Economy&lt;br /&gt;
| up to 2Kg&lt;br /&gt;
| 6.-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Steve posted informations about boxes that will be out with Neo :&lt;br /&gt;
&lt;br /&gt;
* 10 pack : 435mm x 371mm x 119mm, approx 3kg, UPS will charge 160USD (need to be verified)&lt;br /&gt;
* Individual pack : 178mm  x 104mm x 84mm, 237 grams&lt;br /&gt;
&lt;br /&gt;
So size 1 will fit ! Local delivery in Switzerland will cost 8.20 for Economy or 10.20 Priority.&lt;br /&gt;
&lt;br /&gt;
==== Zurich ====&lt;br /&gt;
Status : 20/20&lt;br /&gt;
&lt;br /&gt;
WARNING, this list already contains 20 people! -- LucaCapello&lt;br /&gt;
&lt;br /&gt;
* Simon Wenner &amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/Nowic Contact]&lt;br /&gt;
* Simon Schreiber &amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/Magbeat Contact]&lt;br /&gt;
* Markus Huggler &amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/Magbeat Contact]&lt;br /&gt;
* Andre Timmermann &amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/darktim Contact]&lt;br /&gt;
* Raffael Schmid &amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/darktim Contact]&lt;br /&gt;
* Pascal Weller &amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/darktim Contact]&lt;br /&gt;
* Nick Zbinden (Luzern)&amp;lt;br /&amp;gt; [mailto:nickik@gmx.ch] oder [http://wiki.openmoko.org/wiki/Special:Emailuser/nickik Contact]&lt;br /&gt;
* Marcel Wirth &amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/Skarhand Contact]&lt;br /&gt;
* Marcel Lütolf (Luzern)&amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/NeRo Contact]&lt;br /&gt;
* Christian Corrodi &amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/Matto Contact]&lt;br /&gt;
* Mirko Klingauf &amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/RealAtaman Contact]&lt;br /&gt;
* Marcel Jost (Bern) &amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/Onsonic Contact]&lt;br /&gt;
* Marc Andre Tanner (Biel)&amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/mat Contact]&lt;br /&gt;
* Tobias Kündig (2 Geräte) (Luzern)&amp;lt;br /&amp;gt; [mailto:info@it-media.ch]&lt;br /&gt;
* Peter Salvisberg&amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/Psal Contact]&lt;br /&gt;
* Martin Kos &amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/KoS Contact]&lt;br /&gt;
* Lorenz Schori (Bern) &amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/Znerol Contact]&lt;br /&gt;
* Matthias Cramer (Zürich) &amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/cramer Contact]&lt;br /&gt;
* Pascal Mages (Bern/Zürich) &amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/FreeMind Contact]&lt;br /&gt;
&lt;br /&gt;
==== Geneve ====&lt;br /&gt;
Status : 10/10&lt;br /&gt;
&lt;br /&gt;
WARNING, this list already contains 10 people! -- LucaCapello&lt;br /&gt;
&lt;br /&gt;
* Diego Abelenda&amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/Aelia Contact]&lt;br /&gt;
* Luca Capello&amp;lt;br /&amp;gt; [mailto:luca@pca.it]&lt;br /&gt;
* Nicolas Produit&amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/Produit Contact]&lt;br /&gt;
* Sebastien Nanchen &amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/Sn Contact]&lt;br /&gt;
* Jonas Schwarz (Lausanne) &amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/jnsc Contact]&lt;br /&gt;
* Robin Farine (Auvernier)&amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/rfarine Contact]&lt;br /&gt;
* Alexandre Ghisoli (Yverdon)&amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/Agh Contact]&lt;br /&gt;
* Raphael Studer (Thurgau) &amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/Tschudder Contact]&lt;br /&gt;
* Christian Wäckerlin &amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/boognu Contact]&lt;br /&gt;
* Michael Stähli (Lausanne EPFL) &amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/adler Contact]&lt;br /&gt;
&lt;br /&gt;
==== Lausanne (EPFL) ====&lt;br /&gt;
Status : 10/10&lt;br /&gt;
&lt;br /&gt;
WARNING, this list already contains 10 people! -- LucaCapello&lt;br /&gt;
&lt;br /&gt;
* Mathieu Habegger (EPFL) &amp;lt;br /&amp;gt;[http://wiki.openmoko.org/wiki/Special:Emailuser/Habi Contact]&lt;br /&gt;
* Matthias Brändli (EPFL) &amp;lt;br /&amp;gt;[http://wiki.openmoko.org/wiki/Special:Emailuser/hb9egm Contact]&lt;br /&gt;
* Yorick Brunet (EPFL) &amp;lt;br /&amp;gt;[mailto:yorick.brunet@epfl.ch Contact]&lt;br /&gt;
* Frédéric Fokan(Lausanne) &amp;lt;br /&amp;gt;[mailto:fredericfokan@gmail.com Contact]&lt;br /&gt;
* Gulu (Lausanne) &amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/Gulu Contact]&lt;br /&gt;
* Edomaur (Lausanne, with Gulu) &amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/Edomaur Contact]&lt;br /&gt;
* Layx (Lausanne) &amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/Layx Contact]&lt;br /&gt;
* Mélanie Baumann (EPFL) &amp;lt;br /&amp;gt;[http://wiki.openmoko.org/wiki/Special:Emailuser/calis Contact]&lt;br /&gt;
* Laurent Fasnacht (EPFL) &amp;lt;br /&amp;gt;[http://gnugeneration.epfl.ch/users/fasnacht Contact]&lt;br /&gt;
* Urs Blaser (UNIL) &amp;lt;br /&amp;gt;[http://wiki.openmoko.org/wiki/Special:Emailuser/arctus Contact]&lt;br /&gt;
&lt;br /&gt;
== Spain ==&lt;br /&gt;
=== Spain (Country Group Sale) ===&lt;br /&gt;
Status: 11/10&lt;br /&gt;
&lt;br /&gt;
=== Madrid ===&lt;br /&gt;
==== Madrid ====&lt;br /&gt;
Status : 3/10&lt;br /&gt;
&lt;br /&gt;
* Rafael Campos [http://wiki.openmoko.org/wiki/Special:Emailuser/Methril Contact] &amp;lt;br /&amp;gt;1x ([[Image:MokoBox.jpg]] - advanced) &amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* 1x ([[Image:MokoBox.jpg]] - advanced) Pablo Ruiz Múzquiz [http://wiki.openmoko.org/wiki/User_talk:Pabloruiz contact me here]&lt;br /&gt;
&lt;br /&gt;
* 1x ([[Image:MokoBox.jpg]] - advanced) Carlos Padilla Sorbas [http://wiki.openmoko.org/wiki/User_talk:cymonline contact me here]&lt;br /&gt;
&lt;br /&gt;
=== Zaragoza ===&lt;br /&gt;
==== Zaragoza ====&lt;br /&gt;
Status : 2/10&lt;br /&gt;
&lt;br /&gt;
* Alejandro R. Mosteo &amp;lt;br /&amp;gt; alejandro AT mosteo · com&lt;br /&gt;
* Arturo Giner&amp;lt;br/&amp;gt;[[Special:Emailuser/artginer|Contact]]&lt;br /&gt;
&lt;br /&gt;
=== Barcelona ===&lt;br /&gt;
==== Barcelona ====&lt;br /&gt;
Status : 5/10&lt;br /&gt;
&lt;br /&gt;
* José Luis Pérez &amp;lt;br/&amp;gt;[[Special:Emailuser/jluis|Contact]]&lt;br /&gt;
* David Reyes Samblas Martinez&amp;lt;br/&amp;gt;[[Special:Emailuser/mutrox|Contact]]&lt;br /&gt;
* Sergio Arias &amp;lt;br/&amp;gt;[[Special:Emailuser/saerguio|Contact]]&lt;br /&gt;
* Alex Muntada &amp;lt;br/&amp;gt;[[Special:Emailuser/alexm|Contact]]&lt;br /&gt;
* Pascal co &amp;lt;br/&amp;gt;[[Special:Emailuser/pascalco|Contact]]&lt;br /&gt;
&lt;br /&gt;
=== Valencia ===&lt;br /&gt;
==== Valencia ====&lt;br /&gt;
Status : 1/10&lt;br /&gt;
&lt;br /&gt;
* Pau Gaspar Díaz &amp;lt;br/&amp;gt;[[Special:Emailuser/pau|Contact]]&lt;br /&gt;
&lt;br /&gt;
== UAE ==&lt;br /&gt;
Status: 1/10&lt;br /&gt;
* Yaser Ammar &amp;lt;br /&amp;gt; [[Special:Emailuser/Waraqa|Contact]]&lt;br /&gt;
&lt;br /&gt;
== USA ==&lt;br /&gt;
=== Arizona ===&lt;br /&gt;
==== Tucson ====&lt;br /&gt;
''' willing to reship to nonlocal people within the US (cheaper if you're closer), or get absorbed into another group that's willing to reship '''&lt;br /&gt;
&lt;br /&gt;
Status: 1/10&lt;br /&gt;
* [mailto:wes.shull@gmail.com wesshull]&lt;br /&gt;
&lt;br /&gt;
=== Colorado ===&lt;br /&gt;
==== Boulder ====&lt;br /&gt;
Status: 5/10&lt;br /&gt;
* Vinc Duran x2 (I can purchase and distribute locally) &amp;lt;br /&amp;gt; [mailto:uberpfloyd@gmail.com?subject=Openmoko%20group%20sales Pfloyd]  [http://wiki.openmoko.org/wiki/Special:Emailuser/Pfloyd Contact]&lt;br /&gt;
* Vlad Seghete &amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/vloodo vloodo]&lt;br /&gt;
* John Miller &amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/jwm jwm]&lt;br /&gt;
* D Padilla &amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== Denver (Full) ====&lt;br /&gt;
Status: 10/10 (includes the gentleman from Utah)&lt;br /&gt;
* Shawn Sullivan &amp;lt;br /&amp;gt; [[mailto:shelbydz87@yahoo.com shelbydz87@yahoo.com]]&lt;br /&gt;
* Peter Abplanalp &amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/alderion Contact]&lt;br /&gt;
* Ben Burdette &amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/Ansible Contact]&lt;br /&gt;
* Tom Russell &amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/tazbert Contact]&lt;br /&gt;
* Trace &amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/gnork Contact]&lt;br /&gt;
&lt;br /&gt;
=== California ===&lt;br /&gt;
==== Los Angeles ====&lt;br /&gt;
Status: 6/10&lt;br /&gt;
&lt;br /&gt;
* Ian Douglas &amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/Iandouglas Contact me here]&lt;br /&gt;
* Matthew &amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/Wetmoko Contact]&lt;br /&gt;
* Daniel &amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/Beaker82 Contact]&lt;br /&gt;
* James Robertson &amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/JamesRobertson Contact]&lt;br /&gt;
* Bill Sun &amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/DancingSun Contact]&lt;br /&gt;
* Michael &amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/Bstudios Contact]&lt;br /&gt;
&lt;br /&gt;
==== San Diego ====&lt;br /&gt;
'''(inc. San Diego county and surrounding areas)'''&lt;br /&gt;
&lt;br /&gt;
Status: 2/10&lt;br /&gt;
&lt;br /&gt;
Will combine with LA if too few.&lt;br /&gt;
&lt;br /&gt;
* Peter Naulls &amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/Pnaulls Contact]&lt;br /&gt;
* Tracy Reed &amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/treed Contact]&lt;br /&gt;
&lt;br /&gt;
==== San Francisco Bay Area ====&lt;br /&gt;
Status: 8/10&lt;br /&gt;
&lt;br /&gt;
* Ajit Natarajan - [http://wiki.openmoko.org/wiki/Special:Emailuser/ajitk Contact]&lt;br /&gt;
&lt;br /&gt;
* Dirk Bergstrom - [http://wiki.openmoko.org/wiki/Special:Emailuser/krid Contact]&lt;br /&gt;
&lt;br /&gt;
* Tupshin Harper - [http://wiki.openmoko.org/wiki/Special:Emailuser/tupshin Contact]&lt;br /&gt;
&lt;br /&gt;
* Lothar Werzinger (900MHz) - [http://wiki.openmoko.org/wiki/Special:Emailuser/Elektrolott Contact]&lt;br /&gt;
&lt;br /&gt;
* William Ray Yeager - [http://wiki.openmoko.org/wiki/Special:Emailuser/wyeager Contact]&lt;br /&gt;
&lt;br /&gt;
* Sebastian Coe - [http://wiki.openmoko.org/wiki/Special:Emailuser/savari Contact]&lt;br /&gt;
&lt;br /&gt;
* Jim Morris - [http://wiki.openmoko.org/wiki/Special:Emailuser/wolfmanjm Contact]&lt;br /&gt;
&lt;br /&gt;
* Brian Carver - [http://wiki.openmoko.org/wiki/Special:Emailuser/brianwc Contact]&lt;br /&gt;
&lt;br /&gt;
==== Monterey ====&lt;br /&gt;
Status: 2/10&lt;br /&gt;
&lt;br /&gt;
* Cry Regarder &amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/Cry_Regarder Contact]&lt;br /&gt;
&lt;br /&gt;
=== Idaho ===&lt;br /&gt;
==== Southwestern Idaho ====&lt;br /&gt;
Status 1/10&lt;br /&gt;
* 1 × Eugene Kravtsov [[Special:Emailuser/theUg|Contact]], Garden City (Boise).&lt;br /&gt;
&lt;br /&gt;
=== Midwest ===&lt;br /&gt;
'''(combine Illinois / Indiana / Iowa / Kentucky / Tennesee / Texas)'''&lt;br /&gt;
Status: 7/10&lt;br /&gt;
* Geoff Ruscoe    [[Special:Emailuser/Geocode|Contact]] - Louisville, KY&lt;br /&gt;
* Steven M  [[Special:Emailuser/Montgoss|Contact]] - Cedar Rapids, IA&lt;br /&gt;
* Joseph Booker [[Special:Emailuser/Sargas|Contact]] - Chicago, IL&lt;br /&gt;
* Matt McCormick [[Special:Emailuser/Thewtex|Contact]] - Madison, WI&lt;br /&gt;
* Charles Hill [mailto:charles.e.hill@gmail.com email] - Chicago, IL&lt;br /&gt;
* Greg Bonett [mailto:greg@bonett.org email] - Iowa City, IA&lt;br /&gt;
* Tushar Dayal [mailto:tdayal@gmail.com Contact] - Ames, IA&lt;br /&gt;
&lt;br /&gt;
=== Indiana / Kentucky ===&lt;br /&gt;
Status: 5/10&lt;br /&gt;
* Dan Staley      [[Special:Emailuser/Pyrasi|Contact]] (Kentucky)&lt;br /&gt;
* Donnie Jones    [[Special:Emailuser/Donniejones18|Contact]] (Lexington, KY)&lt;br /&gt;
* John Sterling   [[Special:Emailuser/Sterling|Contact]] (Lexington, KY)&lt;br /&gt;
* James MacLachlan [[Special:Emailuser/Jmaclachlan|Contact]] (Louisville, KY)&lt;br /&gt;
* John Askew [[Special:Emailuser/Johnaskyou|Contact]] (Lexington, KY)&lt;br /&gt;
&lt;br /&gt;
=== Ohio / Michigan ===&lt;br /&gt;
Status: 4/10&lt;br /&gt;
* David Pais (Unknown City) [mailto:davioh2001@yahoo.com email]&lt;br /&gt;
* Dave Ludlow (Toledo) (I can purchase and distribute) [[Special:Emailuser/adsllc|Contact]]&lt;br /&gt;
* Adam Steele (Cincinnati) [mailto:adam@laurasteele.net Contact]&lt;br /&gt;
* Elliot Bailey (Canton) [mailto:elliot.bailey@yahoo.com Contact]&lt;br /&gt;
* Richard Rowell (Grand Rapids) [mailto:richard.rowell@gmail.com Contact]&lt;br /&gt;
&lt;br /&gt;
=== Washington ===&lt;br /&gt;
==== Seattle ====&lt;br /&gt;
Status: 1/10&lt;br /&gt;
* Jon Pomeroy [[Special:Emailuser/Jepomeroy|Contact]]&lt;br /&gt;
&lt;br /&gt;
=== Tennessee ===&lt;br /&gt;
==== Memphis ====&lt;br /&gt;
Status: 1/10&lt;br /&gt;
* Peter O'Connor &amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/poconnor Contact]&lt;br /&gt;
&lt;br /&gt;
=== Texas ===&lt;br /&gt;
==== Austin (12/10) ====&lt;br /&gt;
* Dale Schumacher [[Special:Emailuser/dalnefre|Contact]]&lt;br /&gt;
* Michael Cosby [[Special:Emailuser/mcosby|Contact]]&lt;br /&gt;
* Paul Jimenez [[Special:Emailuser/pj|Contact]]&lt;br /&gt;
* Charles [[Special:Emailuser/rbn|Contact]]&lt;br /&gt;
* Anthony Kitchin [[Special:Emailuser/akitchin|Contact]]&lt;br /&gt;
* Carl (x2) [[Special:Emailuser/texatopia|Contact]]&lt;br /&gt;
* Robert (+Debug Board) [[Special:Emailuser/SHaRK|Contact]] (Houston)&lt;br /&gt;
* Bryan DeLuca [[Special: Emailuser/Stupkid|Contact]] (Fort Worth)&lt;br /&gt;
* Dennis Parker [[Special: Emailuser/dparker|Contact]]&lt;br /&gt;
* Chip Rosenthal [[Special: Emailuser/chip|Contact]]&lt;br /&gt;
* Brad Mouring [[Special: Emailuser/Bmouring|Contact]] (Moving to Austin by mid-June, likely earlier)&lt;br /&gt;
* Joel Greenberg [[Special: Emailuser/joelg|Contact]]&lt;br /&gt;
&lt;br /&gt;
==== Dallas (3/10) ====&lt;br /&gt;
* Philip White [[Special:Emailuser/pmw|Contact]]&lt;br /&gt;
* Stephen Shelton [[Special:Emailuser/stephenashelton|Contact]]&lt;br /&gt;
* Mark Rinaudo [[Special:Emailuser/Mrinaudo|Contact]]&lt;br /&gt;
&lt;br /&gt;
=== Mid-Atlantic ===&lt;br /&gt;
==== Virginia====&lt;br /&gt;
===== Virginia Tech (1/10) =====&lt;br /&gt;
* Lally Singh [[Special:Emailuser/lally|email]] -- yeah, if you're ordering anywhere in VA, lemme know.&amp;lt;br /&amp;gt;&lt;br /&gt;
===== Richmond (2/10)=====&lt;br /&gt;
* Philippe Gerard [[Special:Emailuser/feydreva|Contact]]&amp;lt;br/&amp;gt;&lt;br /&gt;
*Steve Watson mailto:ssw0213@gmail.com&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== New York ====&lt;br /&gt;
Status: 3/10 or 4/10&lt;br /&gt;
&lt;br /&gt;
* Bert Hartmann [http://wiki.openmoko.org/wiki/Special:Emailuser/BertHartm Contact me here] &amp;lt;br /&amp;gt;&lt;br /&gt;
* Michael Cole mailto:mjcole137@gmail.com &amp;lt;br /&amp;gt;&lt;br /&gt;
* Jake Thebault-Spieker (probably, may not be able to afford it) [http://wiki.openmoko.org/Spcial:Emailuser/Summatusmentis Contact me here] &amp;lt;br /&amp;gt;&lt;br /&gt;
* Remy Frerebeau  [http://wiki.openmoko.org/wiki/Special:Emailuser/Rfrerebe Contact me here] &amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== Maryland (2/10)====&lt;br /&gt;
* Paul Buede mailto:paul@buede.com &amp;lt;br /&amp;gt;&lt;br /&gt;
* Charles Lohr&lt;br /&gt;
* Alex (DC/Rosslyn; not 100% sure that will be able to afford it) [[Special:Emailuser/rakukin|Contact]]&lt;br /&gt;
&lt;br /&gt;
==== North Carolina (1/10)====&lt;br /&gt;
* Jason Sharpee [[Special:Emailuser/zonyl|Contact]] - Charlotte Metro area &amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Massachusetts ===&lt;br /&gt;
Status: 11/20&lt;br /&gt;
* Benjamin Moody [[Special:Emailuser/FloppusMaximus|Contact]]&lt;br /&gt;
&lt;br /&gt;
* Ken Young, Cambridge (Note, if we're not up to 10/10 on the day the Freerunner is announced, I'm going to drop out and order individually).[[Special:Emailuser/Dolson|Contact]]&lt;br /&gt;
&lt;br /&gt;
* Chris White (for 2) [[Special:Emailuser/Safire|Contact]]&lt;br /&gt;
&lt;br /&gt;
* Nick Dube - Pembroke, NH (Will also drop out if we do not have 10 by Freerunner release.) [http://wiki.openmoko.org/wiki/Special:Emailuser/Doobe01 Contact]&lt;br /&gt;
&lt;br /&gt;
* Justin Brzozoski - Worcester, MA area [[Special:Emailuser/Jabski|Contact]]&lt;br /&gt;
&lt;br /&gt;
* John Nicholson - Amherst, MA (Will also drop out if we do not have 10 by Freerunner release.) [[Special:Emailuser/nicklogan|Contact]]&lt;br /&gt;
&lt;br /&gt;
* Matthew Campbell - Worcester, MA [[Special:Emailuser/lifeisafractal|Contact]]&lt;br /&gt;
&lt;br /&gt;
* 1x Nathan Perry - Derry, NH [[Special:Emailuser/Servel333|Contact]]&lt;br /&gt;
&lt;br /&gt;
* Jeff Gold [[Special:Emailuser/jgold|Contact]]&lt;br /&gt;
&lt;br /&gt;
* Craig Allen [[Special:Emailuser/knodalyte|Contact]]&lt;br /&gt;
&lt;br /&gt;
=== Nevada ===&lt;br /&gt;
==== Reno/Sparks ====&lt;br /&gt;
Including Northwestern Nevada/ Northeastern California&lt;br /&gt;
Status: 1/10&lt;br /&gt;
* Tyrell Berry [[Special:Emailuser/Alawatsakima|Contact]]&lt;br /&gt;
&lt;br /&gt;
== UK ==&lt;br /&gt;
&lt;br /&gt;
* Stroller (Milton Keynes, can travel) &amp;lt;br /&amp;gt;mailto:stroller@stellar.eclipse.co.uk 01908 663 513. &amp;lt;br /&amp;gt;Thinks that breaking the UK up into regions - at least outside London - is silly. There are unlikely to be 10 people in $your_town who want a Freerunner, so some posting of Freerunners will surely be required; see [http://wiki.openmoko.org/wiki/Talk:GroupSales#Oxford the talk page]. This is the same cost anywhere in the UK.&lt;br /&gt;
&lt;br /&gt;
=== Scotland ===&lt;br /&gt;
==== Edinburgh ====&lt;br /&gt;
Status : 3/10&lt;br /&gt;
&lt;br /&gt;
* Joe Wells (Edinburgh) [http://wiki.openmoko.org/wiki/Special:Emailuser/jbw Contact]&lt;br /&gt;
* Dave Ball (Edinburgh) [http://wiki.openmoko.org/wiki/Special:Emailuser/Daveb Contact]&lt;br /&gt;
* Stuart MacKinnon(Livingston) &amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/hoagster Contact]&lt;br /&gt;
&lt;br /&gt;
=== England ===&lt;br /&gt;
&lt;br /&gt;
==== Hampshire ====&lt;br /&gt;
&lt;br /&gt;
Status: 16/20 at 2008-05-24&lt;br /&gt;
&lt;br /&gt;
http://www.hants.lug.org.uk/cgi-bin/wiki.pl?FreerunnerBulkBuy&lt;br /&gt;
&lt;br /&gt;
Willing to re-ship within the UK.&lt;br /&gt;
&lt;br /&gt;
(Sorry, we set up the page before we knew about this one)&lt;br /&gt;
&lt;br /&gt;
==== London ====&lt;br /&gt;
&lt;br /&gt;
Status : 11/10&lt;br /&gt;
&lt;br /&gt;
* Juergen Schinker &amp;lt;br /&amp;gt; mailto:ba1020@homie.homelinux.net&lt;br /&gt;
* aled &amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/aled Contact]&lt;br /&gt;
* Robert Piasek (actually in Southampton)&amp;lt;br /&amp;gt;  [http://wiki.openmoko.org/wiki/Special:Emailuser/Queen6 Contact]&lt;br /&gt;
* Tom Scholl (Cambridge, travel to London now and then anyway so could pick up) &amp;lt;br /&amp;gt; [mailto:thomasscholl@gmail.com]&lt;br /&gt;
* Weiss (Cambridge, could collect from London) &amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/Weiss Contact]&lt;br /&gt;
* Neil Bentley (in Wiltshire) [http://wiki.openmoko.org/wiki/Special:Emailuser/Ohnez Contact]&lt;br /&gt;
* rhn (one or two sets) &amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/rhn Contact]&lt;br /&gt;
* Tim Coggins&amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/sonicated Contact]&lt;br /&gt;
* Michele Mattioni (I'm based in Cambridge too, but if Tom can go to London I can grab the phone in Cambridge) &amp;lt;br /&amp;gt;[mailto:mattions@gmail.com]&lt;br /&gt;
* Johan Badenhorst (London - Can't believe it's almost here!) &amp;lt;br /&amp;gt;[mailto:ezuall@gmail.com]&lt;br /&gt;
* Ben F-W (Fulham, London) [http://wiki.openmoko.org/wiki/Special:Emailuser/benfw Contact]&lt;br /&gt;
&lt;br /&gt;
==== Oxford ====&lt;br /&gt;
&lt;br /&gt;
Idea to re-ship within the UK, see [http://wiki.openmoko.org/wiki/Talk:GroupSales#Oxford talk]&lt;br /&gt;
&lt;br /&gt;
Status : 2/10&lt;br /&gt;
&lt;br /&gt;
* James Olney &amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/Webjames Contact]&lt;br /&gt;
* David Pottage (actually in Reading)&amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/chrestomanci Contact]&lt;br /&gt;
&lt;br /&gt;
==== West Midlands ====&lt;br /&gt;
Status : 2/10&lt;br /&gt;
&lt;br /&gt;
* Mo Abrahams (Walsall) &amp;lt;br /&amp;gt; mailto:moabrahams@dashavoo.com&lt;br /&gt;
* Jonathan Spooner (Walsall)&lt;br /&gt;
&lt;br /&gt;
== Latvia ==&lt;br /&gt;
=== Riga ===&lt;br /&gt;
==== Riga ====&lt;br /&gt;
Status : 1/10&lt;br /&gt;
* Ilya &amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/VRGhost Contact]&lt;br /&gt;
&lt;br /&gt;
== Singapore ==&lt;br /&gt;
Status : 2/10&lt;br /&gt;
* Wee Kiam Peng [http://wiki.openmoko.org/wiki/Special:Emailuser/Jipi Contact]&lt;br /&gt;
* Chen Ruo Fei [http://wiki.openmoko.org/wiki/Special:Emailuser/Crf Contact]&lt;br /&gt;
&lt;br /&gt;
== Israel==&lt;br /&gt;
Status : 3/10&lt;br /&gt;
* Ofer Herman &amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/oferhe Contact]&lt;br /&gt;
* [http://wiki.openmoko.org/wiki/Special:Emailuser/Talba Talba]&lt;br /&gt;
* Dan &amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/Da-x Contact]&lt;br /&gt;
&lt;br /&gt;
== Czech Republic ==&lt;br /&gt;
&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Brněnská větev:''' Koordinátorem objednávání je Martin Šenkeřík [[User:Ohin | Kontakty na mě]]&lt;br /&gt;
&lt;br /&gt;
'''Pražská větev:''' Koordinátorem objednávání je Jan Mareš [[User:iVir | Kontakty na mě]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Základní informace ===&lt;br /&gt;
Jedná se o hromadnou objednávku Neo FreeRunner do České republiky, vzhledem k tomu, že balení po 10kusech je za $369 USD oproti $399 USD za kus a navíc přijde 10 obalů a sluchátek a ušetří se za poštovné '''A TO SE VYPLATÍ'''.&lt;br /&gt;
&lt;br /&gt;
=== Postup registrace a objednání ===&lt;br /&gt;
&amp;lt;center&amp;gt;'''Platí pro obě větve!'''&amp;lt;/center&amp;gt;&lt;br /&gt;
Zatím se provádí jenom krok 1, v okamžiku kdy budou známy konkrétnější informace o termínu zahájení prodeje, přejde se na body 2 a 3.&lt;br /&gt;
# Registraci provedete zápisem svého jména a kontaktu do patřičné větve odpovídající místu vašeho osobního převzítí telefonu. Můžete nabídnout distribuci do míst, které ještě nikdo neposkytuje.&lt;br /&gt;
# stanoví se lehce nadhodnocená částka (zatím to vypadá na 7800Kč za telefon, s debug boardem na 9800Kč), na bezpečné pokrytí očekávaných i neočekávaných výdajů spojených s objednávkou&lt;br /&gt;
# každý zájemce odešle tuto sumu na účet svého koordinátora, identifikuje se svým jménem a příjmením&lt;br /&gt;
# jakmile budou peníze nashromážděny, provede koordinátor objednávku tolika telefonů, kolik zájemců mu zašle peníze&lt;br /&gt;
# po obdržení balíku s telefony se vypočte finální částka za telefon, a případný přeplatek bude vrácen každému osobně při převzetí telefonu (lokální distributoři samozřejmě obdrží patřičný počet telefonů a peněz, aby mohly být předány dále)&lt;br /&gt;
# všem se dítko šťastně dopraví do rukou&lt;br /&gt;
*Stále přetrvává otazník nad objednávkou množství nedělitelného desíti.&lt;br /&gt;
&lt;br /&gt;
*[[Talk:GroupSales#Diskuze | Diskuse]]&lt;br /&gt;
*[[Talk:GroupSales#Dopl.C5.88uj.C3.ADc.C3.AD_informace | Doplňující informace]]&lt;br /&gt;
&lt;br /&gt;
=== Brno ===&lt;br /&gt;
&lt;br /&gt;
==== Distribuční schéma ====&lt;br /&gt;
&lt;br /&gt;
 '''[n]'''  n je počet kusů, bez n 1 kus&lt;br /&gt;
 '''[nD]''' [[Neo1973_Debug_Board_v3|debug board]] $99 USD + DPH (n počet kusů, bez n 1 kus)&amp;lt;br&amp;gt;&lt;br /&gt;
 ''Jednotlivé volby píšeme za jméno v [] a více voleb oddělujeme čárkou''&lt;br /&gt;
&lt;br /&gt;
&amp;lt;center&amp;gt;'''&amp;lt;font size=&amp;quot;3&amp;quot; color=&amp;quot;green&amp;quot;&amp;gt;Status : 18/2X10&amp;lt;/font&amp;gt;'''&amp;lt;/center&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*'''Martin Šenkeřík''' - [[User:Ohin | Kontakty na mě]]&lt;br /&gt;
**'''&amp;lt;span style=&amp;quot;color: blue&amp;quot;&amp;gt;Brno&amp;lt;/span&amp;gt;''':&lt;br /&gt;
***'''Radek Bartoň''' - [[Special:Emailuser/Blackhex|Contact]]&lt;br /&gt;
****'''&amp;lt;span style=&amp;quot;color: blue&amp;quot;&amp;gt;Frýdek-Místek&amp;lt;/span&amp;gt;''':&lt;br /&gt;
*****-&lt;br /&gt;
***'''Radek Machulka''' - [[Special:Emailuser/Werty|Contact]]&lt;br /&gt;
***'''Aleš Dvořák''' - [[Special:Emailuser/Setr|Contact]]&lt;br /&gt;
***'''Jozef Mlich [2, 1D]''' - [[Special:Emailuser/joejoe|Contact]]&lt;br /&gt;
***'''Martin Faltičko''' - [[Special:Emailuser/MafRaf|Contact]]&lt;br /&gt;
***'''Karel Volný''' - [[Special:Emailuser/kavol|Contact]]&lt;br /&gt;
****'''&amp;lt;span style=&amp;quot;color: blue&amp;quot;&amp;gt;Bratislava&amp;lt;/span&amp;gt;''':&lt;br /&gt;
*****'''František Horínek''' - [[Special:Emailuser/PipBoy2000|Contact]]&lt;br /&gt;
*****'''Martin Vyšný''' - [mailto:vysny@baka.sk Contact]&lt;br /&gt;
*****'''Tomáš Sirný''' - [[Special:Emailuser/Junckritter|Contact]]&lt;br /&gt;
*****'''Ján Janech''' - [[Special:Emailuser/Janik|Contact]]&lt;br /&gt;
******'''&amp;lt;span style=&amp;quot;color: blue&amp;quot;&amp;gt;SK/Žilina&amp;lt;/span&amp;gt;''':&lt;br /&gt;
******'''&amp;lt;span style=&amp;quot;color: blue&amp;quot;&amp;gt;SK/Piešťany&amp;lt;/span&amp;gt;''':&lt;br /&gt;
***'''Tom Varga''' - [[Special:Emailuser/Varg|Contact]]&lt;br /&gt;
***'''Petr Ondo [2]''' - [[Special:Emailuser/Votik|Contact]]&lt;br /&gt;
**'''&amp;lt;span style=&amp;quot;color: blue&amp;quot;&amp;gt;Zlín&amp;lt;/span&amp;gt;''':&lt;br /&gt;
***'''Martin Holec''' - [[Special:Emailuser/Martix|Contact]]&lt;br /&gt;
***'''Pavel Kovář''' - [[Special:Emailuser/Fox|Contact]]&lt;br /&gt;
****'''&amp;lt;span style=&amp;quot;color: blue&amp;quot;&amp;gt;Ostrava&amp;lt;/span&amp;gt;''':&lt;br /&gt;
*****'''Marian Krucina [D]''' - [[Special:Emailuser/oak|Contact]]&lt;br /&gt;
&lt;br /&gt;
=== Praha ===&lt;br /&gt;
&lt;br /&gt;
==== Distribuční schéma ====&lt;br /&gt;
&lt;br /&gt;
 '''[n]'''  n je počet kusů, bez n 1 kus&lt;br /&gt;
 '''[nD]''' [[Neo1973_Debug_Board_v3|debug board]] $99 USD + DPH (n počet kusů, bez n 1 kus)&amp;lt;br&amp;gt;&lt;br /&gt;
 ''Jednotlivé volby píšeme za jméno v [] a více voleb oddělujeme čárkou''&lt;br /&gt;
&lt;br /&gt;
&amp;lt;center&amp;gt;'''&amp;lt;font size=&amp;quot;3&amp;quot;&amp;gt;Status : 11&amp;lt;/font&amp;gt;'''&amp;lt;/center&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*'''Jan Mareš''' - [http://wiki.openmoko.org/wiki/User:iVir Contact]&lt;br /&gt;
**'''&amp;lt;span style=&amp;quot;color: blue&amp;quot;&amp;gt;Praha&amp;lt;/span&amp;gt;''':&lt;br /&gt;
***'''Martin Dvořák''' - [[Special:Emailuser/masca|Contact]]&lt;br /&gt;
***'''Roman Dergam [2]''' - [[Special:Emailuser/Dergam|Contact]](do poloviny června)&lt;br /&gt;
***'''Michal Bořek [D]''' - [http://wiki.openmoko.org/wiki/User:Mibo Kontakt]&lt;br /&gt;
****'''&amp;lt;span style=&amp;quot;color: blue&amp;quot;&amp;gt;Plzeň&amp;lt;/span&amp;gt;''':&lt;br /&gt;
*****-&lt;br /&gt;
***'''Michal Pěnka''' - [http://michal.penka.name/kontakt Contact]&lt;br /&gt;
****'''&amp;lt;span style=&amp;quot;color: blue&amp;quot;&amp;gt;Kolín&amp;lt;/span&amp;gt;''':&lt;br /&gt;
***'''Miloslav Machotka''' - [[Special:Emailuser/Machy|Contact]]&lt;br /&gt;
***'''David Kozub [D]''' - [[Special:Emailuser/Zub|Contact]] (Kdyby z Prahy seslo, volim Zlin jako fallback.)&lt;br /&gt;
***'''Milan Vontorčík''' - [[Special:Emailuser/Mvontorcik|Contact]]&lt;br /&gt;
***'''Vojtěch Vozáb''' - [mailto:vojtav@centrum.cz Contact]&lt;br /&gt;
**'''&amp;lt;span style=&amp;quot;color: blue&amp;quot;&amp;gt;Písek&amp;lt;/span&amp;gt;''':&lt;br /&gt;
***''' Luboš Podrázský''' - [[Special:Emailuser/zsman|Contact]]&lt;br /&gt;
&lt;br /&gt;
== Slovak Republic ==&lt;br /&gt;
[http://wiki.openmoko.org/wiki/GroupSales#Czech_Republic Spojeno s Czech Republic]&lt;br /&gt;
&lt;br /&gt;
== Croatia ==&lt;br /&gt;
Status : 10/10&lt;br /&gt;
* w00t - [[Special:Emailuser/W00t|Contact]]&lt;br /&gt;
* matija - [[Special:Emailuser/Matija.z|Contact]]&lt;br /&gt;
* valajbeg - [[Special:Emailuser/valajbeg|Contact]]&lt;br /&gt;
* kost - [[Special:Emailuser/kost|Contact]]&lt;br /&gt;
* mnalis - [[Special:Emailuser/mnalis|Contact]]&lt;br /&gt;
* tcavrag - [[Special:Emailuser/tcavrag|Contact]]&lt;br /&gt;
* slavus - [[Special:Emailuser/slavus|Contact]]&lt;br /&gt;
* bsevo - [[Special:Emailuser/bsevo|Contact]]&lt;br /&gt;
* amd64 - [[Special:Emailuser/SilverSpace|Contact]]&lt;br /&gt;
* v-v - [[Special:Emailuser/v-v|Contact]]&lt;br /&gt;
(maybe we should make one group for bosnia, croatia &amp;amp; serbia together?) [http://wiki.openmoko.org/index.php/Talk:GroupSales#Croatia the talk page]&lt;br /&gt;
&lt;br /&gt;
== Russia ==&lt;br /&gt;
=== Moscow ===&lt;br /&gt;
Status : 10/10&lt;br /&gt;
* 1x sinister - [[Special:Emailuser/sinister|Contact]]&lt;br /&gt;
* 1x ([[Image:MokoBox.jpg]] - advanced) shallburn - [[Special:Emailuser/shallburn|Contact]]&lt;br /&gt;
* 1x ([[Image:MokoBox.jpg]] - advanced) cracatau - [[Special:Emailuser/cracatau|Contact]] (actual location - Saint-Petersburg)&lt;br /&gt;
* 1x ([[Image:MokoBox.jpg]] - advanced) vadson - [[Special:Emailuser/vadson|Contact]]&lt;br /&gt;
* 1x ([[Image:MokoBox.jpg]] - advanced) Tallex - [[Special:Emailuser/tallex|Contact]]&lt;br /&gt;
* 1x ([[Image:MokoBox.jpg]] - advanced) mex3 - [[Special:Emailuser/mex3|Contact]]&lt;br /&gt;
* 1x Alexxy (with debug board if possible) - [[Special:Emailuser/Alexxy|Contact]] (Actual location - Saint-Petersburg)&lt;br /&gt;
* 1x pva (with debug board if possible) - [[Special:Emailuser/Pva|Contact]] (Moscow if matters)&lt;br /&gt;
* 2x (1x [[Image:MokoBox.jpg]] - advanced + 1x Base) cbou (Moscow) - [[Special:Emailuser/cbou|Contact]]&lt;br /&gt;
[[Category:Community]]&lt;br /&gt;
&lt;br /&gt;
== Belarus ==&lt;br /&gt;
=== Minsk ===&lt;br /&gt;
Status : 1/10&lt;br /&gt;
* 1x ([[Image:MokoBox.jpg]] - advanced) Const - [[Special:Emailuser/Const|Contact]]&lt;br /&gt;
[[Category:Community]]&lt;br /&gt;
&lt;br /&gt;
== Taiwan ==&lt;br /&gt;
=== Taipei ===&lt;br /&gt;
Status : 1/10&lt;br /&gt;
&lt;br /&gt;
* Cruz [http://wiki.openmoko.org/wiki/Special:Emailuser/cruz Contact]&lt;/div&gt;</summary>
		<author><name>Ojw</name></author>	</entry>

	<entry>
		<id>http://wiki.openmoko.org/wiki/Group_sales</id>
		<title>Group sales</title>
		<link rel="alternate" type="text/html" href="http://wiki.openmoko.org/wiki/Group_sales"/>
				<updated>2008-05-24T21:19:54Z</updated>
		
		<summary type="html">&lt;p&gt;Ojw: Hampshire - 16/20&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Openmoko have announced a scheme to sell the forthcoming Neo Freerunner at a discount if bought in multiples of 10 (US$369, instead of 399), to be shipped in one package. Group buying will thus save money on the purchase, and on the shipping. This page is to to organise group purchases by region.&lt;br /&gt;
&lt;br /&gt;
Steve from Openmoko announced &amp;quot;Every 10 pack, will come with a box of stuff. 10 pouches and 10 head sets.&amp;quot;&lt;br /&gt;
So join us within a local group !&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style='float:right'&amp;gt;__TOC__&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Australia ==&lt;br /&gt;
&lt;br /&gt;
=== Customs And Postage ===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Because of Australian customs, it might be better to form groups of two. That way we(australians) will fall under the $1000 amount for import items and not have to pay the extra customs / taxes . &lt;br /&gt;
Customs information for Australia can be found [http://www.customs.gov.au/site/page.cfm?u=5549 here].&lt;br /&gt;
&lt;br /&gt;
[http://wiki.openmoko.org/wiki/Special:Emailuser/Monkeypanic Nick Devereaux] has worked out the per-phone cost of an Australian bulk order compared to an individual order:&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
 |'''Bulk Order'''&lt;br /&gt;
 |'''$US'''&lt;br /&gt;
 |'''$AUS'''&lt;br /&gt;
 |-&lt;br /&gt;
 |Customs Value (Cval)&lt;br /&gt;
 |$3690.00&lt;br /&gt;
 |$3960.03&lt;br /&gt;
 |-&lt;br /&gt;
 |Customs Duty (Duty) =5% of Cval&lt;br /&gt;
 |$184.50&lt;br /&gt;
 |$198.00&lt;br /&gt;
 |-&lt;br /&gt;
 |International Transport and Insurance or Postage (T&amp;amp;I)&lt;br /&gt;
 |$65.00&lt;br /&gt;
 |$69.76&lt;br /&gt;
 |-&lt;br /&gt;
 |Value Of Taxable Importation (VoTI) =Cval+Duty+T&amp;amp;I&lt;br /&gt;
 |$3939.50&lt;br /&gt;
 |$4227.79&lt;br /&gt;
 |-&lt;br /&gt;
 |Goods And Services Tax (GST) =10% of VoTI&lt;br /&gt;
 |$393.95&lt;br /&gt;
 |$422.78&lt;br /&gt;
 |-&lt;br /&gt;
 |Total Payable Duty + GST&lt;br /&gt;
 |$578.45&lt;br /&gt;
 |$620.78&lt;br /&gt;
 |- &lt;br /&gt;
 |Total Cost&lt;br /&gt;
 |$4333.45&lt;br /&gt;
 |$4650.57&lt;br /&gt;
 |-&lt;br /&gt;
 |'''Per Person'''&lt;br /&gt;
 |'''$433.35'''&lt;br /&gt;
 |'''$465.06'''&lt;br /&gt;
 |}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
 |'''Individual Order'''&lt;br /&gt;
 |'''$US'''&lt;br /&gt;
 |'''$AUS'''&lt;br /&gt;
 |-&lt;br /&gt;
 |Value&lt;br /&gt;
 |$399.00&lt;br /&gt;
 |$428.20&lt;br /&gt;
 |-&lt;br /&gt;
 |Postage&lt;br /&gt;
 | N/A&lt;br /&gt;
 | $52.65&lt;br /&gt;
 |-&lt;br /&gt;
 |'''Total Cost'''&lt;br /&gt;
 |'''N/A'''&lt;br /&gt;
 |'''$480.85'''&lt;br /&gt;
 |}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Postage quote from http://www1.auspost.com.au/pac/int_parcel.asp&lt;br /&gt;
&lt;br /&gt;
Figures accurate as of 16th May 2008, 1$ USD = $1.07 AUD.&lt;br /&gt;
&lt;br /&gt;
=== Western Australia ===&lt;br /&gt;
==== Perth ====&lt;br /&gt;
&lt;br /&gt;
Status: 10/10&lt;br /&gt;
&lt;br /&gt;
* 1x Fred Janon mailto:fjanon@yahoo.com&lt;br /&gt;
&lt;br /&gt;
* 1x Shanon Loughton [http://wiki.openmoko.org/wiki/Special:Emailuser/cgltower contact me here]&lt;br /&gt;
&lt;br /&gt;
* 1x Simon Matthews [http://wiki.openmoko.org/wiki/Special:Emailuser/simat contact me here]&lt;br /&gt;
&lt;br /&gt;
* 1x ([[Image:MokoBox.jpg]] - advanced) Msquared [http://www.msquared.id.au/ contact me here]&lt;br /&gt;
&lt;br /&gt;
* 1x Alex Wilkinson mailto:alex.wilkinson@dsto.defence.gov.au&lt;br /&gt;
&lt;br /&gt;
* 1x Daniel Foote mailto:freefoote@dview.net&lt;br /&gt;
&lt;br /&gt;
* 1x Russell Steicke mailto:russells@adelie.cx&lt;br /&gt;
&lt;br /&gt;
* 1x William Kenworthy mailto:billk@iinet.net.au&lt;br /&gt;
&lt;br /&gt;
* 1x Clare Johnstone [http://wiki.openmoko.org/wiki/Special:Emailuser/claregj contact me here]&lt;br /&gt;
&lt;br /&gt;
* 1x Justin Dinale [http://wiki.openmoko.org/wiki/Special:Emailuser/Noledil Contact me here]&lt;br /&gt;
&lt;br /&gt;
=== New South Wales  ===&lt;br /&gt;
==== Sydney ====&lt;br /&gt;
&lt;br /&gt;
status: 10/10 ( one group)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Please add an &amp;quot;I exist&amp;quot; to end of your name here. &lt;br /&gt;
&lt;br /&gt;
We now have 10 people (that seem to exist). I would to suggest like openmoko the company allow group sale deposits into accounts on behalf of groups.&lt;br /&gt;
With perhaps the package sent to sydney and then to a po box or split to finish the journey to the buyers. &lt;br /&gt;
&lt;br /&gt;
=====Confirmed=====&lt;br /&gt;
* 1 x dbmoodb ---&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/Dbmoodb contact me here] I exist.&lt;br /&gt;
* 1 x bing [http://wiki.openmoko.org/wiki/Special:Emailuser/Bingquick contact me here] I exist.&lt;br /&gt;
* 1 x Chris [http://wiki.openmoko.org/wiki/Special:Emailuser/ch0gan contact me here]. I exist.&lt;br /&gt;
* 1 x Neil Brown [http://wiki.openmoko.org/wiki/Special:Emailuser/Neilbrown contact me here] I'm wondering why I need to assert that I exist.&lt;br /&gt;
* 1 x Rob [http://wiki.openmoko.org/wiki/Special:Emailuser/Rob contact me here] Exist?  Of course I do.&lt;br /&gt;
* 1 x Tim [http://wiki.openmoko.org/wiki/Special:Emailuser/Voyd contact me here] I am almost certain I exist.&lt;br /&gt;
* 1 x porl [http://wiki.openmoko.org/wiki/Special:Emailuser/porl contact me here] I exist.&lt;br /&gt;
* 1 x tom [http://wiki.openmoko.org/wiki/Special:Emailuser/tom contact me here] I think I exist.&lt;br /&gt;
* 1 x Scott [http://wiki.openmoko.org/wiki/Special:Emailuser/Cysp wikimail]&lt;br /&gt;
&lt;br /&gt;
=====Unconfirmed=====&lt;br /&gt;
* 1 x Mark Chandler [http://wiki.openmoko.org/wiki/Special:Emailuser/Openmarko contact me here]&lt;br /&gt;
* 1 x cbaird [http://wiki.openmoko.org/wiki/Special:Emailuser/Cbaird contact me here] I exist-- but I assume someone's vetting confirmation?&lt;br /&gt;
&lt;br /&gt;
potential group 2 (0/10)&lt;br /&gt;
*&lt;br /&gt;
&lt;br /&gt;
=== Victoria ===&lt;br /&gt;
==== Melbourne ====&lt;br /&gt;
Status: 9/10&lt;br /&gt;
&lt;br /&gt;
* 4x Dennis Wollersheim, mailto: dewoller (at) gmail (dot) com&lt;br /&gt;
* 1x Nigel Cunningham, mailto: ncunningham (at) crca (dot) org (dot) au&lt;br /&gt;
  (I'm actually in Cobden, in the south-west)&lt;br /&gt;
* 1x Dale Maggee, mailto: antisol (at) earthling (dot) net&lt;br /&gt;
* 1x Matt Price: mailto: coolcat22 (at) bigpond (dot) com&lt;br /&gt;
* 1x Daniel Chandler: [http://wiki.openmoko.org/wiki/Special:Emailuser/AlphaGremlin contact me here]&lt;br /&gt;
* 1X Hugh Stephens, mailto: hughstephens &amp;lt;at&amp;gt; hughstephens &amp;lt;dot&amp;gt; com&lt;br /&gt;
&lt;br /&gt;
=== ACT ===&lt;br /&gt;
==== Canberra ====&lt;br /&gt;
Status: 1/10&lt;br /&gt;
&lt;br /&gt;
* Fergus [http://wiki.openmoko.org/wiki/Special:Emailuser/Someone Contact me here]&lt;br /&gt;
&lt;br /&gt;
=== Queensland ===&lt;br /&gt;
==== Brisbane ====&lt;br /&gt;
Status: 9/10&lt;br /&gt;
&lt;br /&gt;
* Nick Devereaux x 3 [http://wiki.openmoko.org/wiki/Special:Emailuser/Monkeypanic Contact me here]&lt;br /&gt;
* Matt Gallagher [http://wiki.openmoko.org/wiki/Special:Emailuser/mattg Contact me here]&lt;br /&gt;
* Jordan Keith [http://wiki.openmoko.org/wiki/Special:Emailuser/Zedd_D1abl0 Contact me here]&lt;br /&gt;
* Matt Blyde [http://wiki.openmoko.org/wiki/Special:Emailuser/Mattblyde Contact me here]&lt;br /&gt;
* David Baker [http://wiki.openmoko.org/wiki/Special:Emailuser/dtbaker Contact me here]&lt;br /&gt;
* Neil Davey (confirmed 1, maybe 2) [http://wiki.openmoko.org/wiki/Special:Emailuser/Ndavey Contact me here]&lt;br /&gt;
* Patrick Mahoney [http://wiki.openmoko.org/wiki/Special:Emailuser/Xanther Contact me here]&lt;br /&gt;
&lt;br /&gt;
=== South Australia ===&lt;br /&gt;
==== Adelaide ====&lt;br /&gt;
Status: 8/10&lt;br /&gt;
&lt;br /&gt;
* Adrian Billiau [http://wiki.openmoko.org/wiki/Special:Emailuser/Carcin Contact me here]&lt;br /&gt;
* John Briggs [http://wiki.openmoko.org/wiki/Special:Emailuser/Erflungued Contact me here]&lt;br /&gt;
* Daniel Sobey [http://wiki.openmoko.org/wiki/Special:Emailuser/dns Contact me here]&lt;br /&gt;
* Nicholas Steicke [http://wiki.openmoko.org/wiki/Special:Emailuser/narthollis Contact me here]&lt;br /&gt;
* Joel Stanley [http://wiki.openmoko.org/wiki/Special:Emailuser/shenki Contact me here]&lt;br /&gt;
* Karl Goetz x3 [http://wiki.openmoko.org/wiki/Special:Emailuser/kgoetz Contact me here]&lt;br /&gt;
&lt;br /&gt;
== Austria ==&lt;br /&gt;
There is a group-buy page at MetaLab, available here: http://metalab.at/wiki/OpenMoko .. we almost have the full 10 slots assigned, and its quite possible that we will order *20* phones, so please register on the Metalab pages and let us know if you're interested .. &lt;br /&gt;
&lt;br /&gt;
=== Salzburg ===&lt;br /&gt;
Status: 1/10&lt;br /&gt;
&lt;br /&gt;
* D. Kepplinger (at MetaLab)&lt;br /&gt;
&lt;br /&gt;
=== Wien ===&lt;br /&gt;
Status: 2/10&lt;br /&gt;
* M. Greifeneder [http://wiki.openmoko.org/wiki/Special:Emailuser/mikegr Contact me here]&lt;br /&gt;
* J. Vaughan (torpor) -- http://metalab.at/wiki/OpenMoko [http://wiki.openmoko.org/wiki/Special:Emailuser/torpor Contact me here]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Styria ===&lt;br /&gt;
==== Graz ====&lt;br /&gt;
Group 1: Status: 10/10&lt;br /&gt;
&lt;br /&gt;
* F Hackenberger [http://wiki.openmoko.org/wiki/Special:Emailuser/Deadman66 Contact me here]&lt;br /&gt;
* J Florineth [http://wiki.openmoko.org/wiki/Special:Emailuser/Flojoh Contact me here]&lt;br /&gt;
* G Michelitsch [http://wiki.openmoko.org/wiki/Special:Emailuser/graf_ithaka Contact me here]&lt;br /&gt;
* R Stoegbuchner [http://wiki.openmoko.org/wiki/Special:Emailuser/stoero Contact me here]&lt;br /&gt;
* M Lipp [http://wiki.openmoko.org/wiki/Special:Emailuser/Neldoreth Contact me here]&lt;br /&gt;
* M Maier [http://wiki.openmoko.org/wiki/Special:Emailuser/species Contact me here]&lt;br /&gt;
* M Konrad [http://wiki.openmoko.org/wiki/Special:Emailuser/konni Contact me here]&lt;br /&gt;
* M Schlaipfer [http://wiki.openmoko.org/wiki/Special:Emailuser/maze Contact me here]&lt;br /&gt;
* K Krammer [http://wiki.openmoko.org/wiki/Special:Emailuser/krake Contact me here]&lt;br /&gt;
* M Prokop [http://wiki.openmoko.org/wiki/Special:Emailuser/mika Contact me here]&lt;br /&gt;
&lt;br /&gt;
Group 2: Status: 2/10&lt;br /&gt;
* C Lauermann [http://wiki.openmoko.org/wiki/Special:Emailuser/cms Contact me here]&lt;br /&gt;
* S Simmer [http://wiki.openmoko.org/wiki/Special:Emailuser/StefanS Contact me here]&lt;br /&gt;
&lt;br /&gt;
== Belgium ==&lt;br /&gt;
=== Flanders ===&lt;br /&gt;
==== Brussel/Aalst/Aarschot/Gent/Brugge ====&lt;br /&gt;
Status 10/10&lt;br /&gt;
* Yorick, mailto: yorick DOT matthys AT gmail DOT com&lt;br /&gt;
* 2x Dolfje [http://wiki.openmoko.org/wiki/Special:Emailuser/Dolfje Contact me here]&lt;br /&gt;
* XVens, mailto: xavier DOT vens AT gmail DOT com&lt;br /&gt;
* Arno85, mailto: aaron DOT helin AT gmail DOT com, Kortrijk&lt;br /&gt;
* Rubenv, mailto: ruben D0T vandamme MAILAT belgacom D0T net, Kortrijk&lt;br /&gt;
* Js Op de Beeck [http://wiki.openmoko.org/wiki/Special:Emailuser/Js.opdebeeck Contact me here]&lt;br /&gt;
* Jan Keymeulen, mailto: spam@keymeulen.com&lt;br /&gt;
ps: Dolfje can bring freerunners to Brugge if needed&lt;br /&gt;
* Yvo Brasseur, mailto: yvo_brasseur@archon.be Living in Aarschot, working in Brussels.&lt;br /&gt;
* Emmanuel Mathot, mailto: aiieeee DOT gmail DOT com, Brussels&lt;br /&gt;
* Kamil Kubacki, mailto: kamil DOT kubacki AT gmail DOT com  [or kamil.kubacki@gmail.com]&lt;br /&gt;
&lt;br /&gt;
==== Antwerp ====&lt;br /&gt;
Status 9/10&lt;br /&gt;
&lt;br /&gt;
* michielv [http://wiki.openmoko.org/wiki/Special:Emailuser/Michielv Contact me here]&lt;br /&gt;
* Peter N [http://wiki.openmoko.org/wiki/Special:Emailuser/Bubsy Contact me here]&lt;br /&gt;
* Ivo [http://wiki.openmoko.org/wiki/Special:Emailuser/Ivo Contact me here]&lt;br /&gt;
* Peter Leemans, mailto: peter AT x-tend DOT be&lt;br /&gt;
* Richard B [http://wiki.openmoko.org/wiki/Special:Emailuser/richardb Contact me here]&lt;br /&gt;
* Jeroen Van Goey [http://wiki.openmoko.org/wiki/Special:Emailuser/BioGeek Contact me here]&lt;br /&gt;
* Jeroen D [http://wiki.openmoko.org/wiki/Special:Emailuser/jeroendoggen Contact me here]&lt;br /&gt;
* Diego Garcia, mailto: didac.garcia AT gmail DOT com&lt;br /&gt;
* Sam Geeraerts (Laakdal) [http://wiki.openmoko.org/wiki/Special:Emailuser/Samgee Contact me here]&lt;br /&gt;
&lt;br /&gt;
=== Wallonia ===&lt;br /&gt;
==== Walloon Brabant ====&lt;br /&gt;
* Istvan, mailto: buki DOT istvan AT gmail DOT com&lt;br /&gt;
&lt;br /&gt;
== Bulgaria ==&lt;br /&gt;
=== Sofia ===&lt;br /&gt;
==== Sofia ====&lt;br /&gt;
Status : 3/10&lt;br /&gt;
&lt;br /&gt;
* Dimitar Staykov, [http://wiki.openmoko.org/wiki/Special:Emailuser/OpenMitko Contact]&lt;br /&gt;
* Vernim, [http://wiki.openmoko.org/wiki/Special:Emailuser/Vernim Contact]&lt;br /&gt;
* Geo, [http://wiki.openmoko.org/wiki/Special:Emailuser/geomer Contact]&lt;br /&gt;
&lt;br /&gt;
== Canada ==&lt;br /&gt;
&lt;br /&gt;
=== British Columbia ===&lt;br /&gt;
Status : 9/10&lt;br /&gt;
&lt;br /&gt;
* Justin (Vancouver): mailto: stryderjzw AT gmail&lt;br /&gt;
* Dave (Vancouver) Vancouver Linux users group (unconfirmed but about 7 so far): mailto: doc AT skynet REMOVE dot REMOVE ie&lt;br /&gt;
* Steven (Victoria) - If someone in the group will remail the package for me. mailto: skurylo --&amp;gt; gmail dot com&lt;br /&gt;
&lt;br /&gt;
=== Alberta ===&lt;br /&gt;
Status : 4/10&lt;br /&gt;
&lt;br /&gt;
* [[User:Wuth|Wuth]] : [mailto:wuth@acm.org]&lt;br /&gt;
* [[User:Slm3095om|stacy]] (2 units) : slm3095om AT millions dOt ca&lt;br /&gt;
* [[User:Abnormal|Morgan]] : [mailto:lightningperf@hotmail.com]&lt;br /&gt;
&lt;br /&gt;
=== Ontario/Quebec ===&lt;br /&gt;
==== GTA (Toronto) ====&lt;br /&gt;
Status : 10/10&lt;br /&gt;
&lt;br /&gt;
* Gerald A [http://wiki.openmoko.org/wiki/Special:Emailuser/Historybuff Contact me here]&lt;br /&gt;
* MattC, mailto: quirkz AT gmail&lt;br /&gt;
* Sergey K, openmoko AT deeptown dOt org&lt;br /&gt;
* Kristin Low, kristin dot low at gmail dot com (Kingston)&lt;br /&gt;
* Daniel Lister, gmail(dan.lister)&lt;br /&gt;
* Ronnie Wong: '''3 units''' - r25wong AT ryerson dOT ca&lt;br /&gt;
* Paul V [http://wiki.openmoko.org/wiki/Special:Emailuser/Roju Contact me here]&lt;br /&gt;
* Matt Manjos, matt (AT) manjos * com&lt;br /&gt;
&lt;br /&gt;
Group 2 Status (Hamilton): 4/10&lt;br /&gt;
&lt;br /&gt;
* Gabriel D - ace AT staticwave DOT ca&lt;br /&gt;
* Richard D - rtdegelder --&amp;gt; gmail.com&lt;br /&gt;
* Steve S   - ssinger_pg AT sympatico dot ca&lt;br /&gt;
* Wolfram Kahl - kahl McMaster CA&lt;br /&gt;
&lt;br /&gt;
Group 3 Status (Montréal): 1/10&lt;br /&gt;
* Patrick Hétu - patrick AT koumbit DOT org&lt;br /&gt;
&lt;br /&gt;
== Chile ==&lt;br /&gt;
=== Santiago ===&lt;br /&gt;
Status : 4/10&lt;br /&gt;
&lt;br /&gt;
* [[User:Mankeke]] Ricardo Manríquez C., mailto: ricardo.manriquez &amp;quot;remove this and add AT&amp;quot; gmail &amp;quot;dot&amp;quot; com&lt;br /&gt;
* [[User:XKnightmareX]] Gonzalo Pesenti., mailto: mare.knight1 &amp;quot;remove this and add AT&amp;quot; gmail &amp;quot;dot&amp;quot; com&lt;br /&gt;
* [[User:Freyes]] Felipe Reyes., mailto: felipereyes &amp;quot;remove this and add AT&amp;quot; gmail &amp;quot;dot&amp;quot; com&lt;br /&gt;
* [[User:Zeus]] Jonathan Gonzalez., mailto: zeus &amp;quot;remove this and add AT&amp;quot; gnu &amp;quot;dot&amp;quot; org&lt;br /&gt;
&lt;br /&gt;
== China ==&lt;br /&gt;
=== BeiJing ===&lt;br /&gt;
Status:8/10&lt;br /&gt;
*Luther  &amp;lt;br/&amp;gt; mailto:lutherluo@qq.com &amp;lt;br/&amp;gt;  2 freerunner and 1 debug board.&lt;br /&gt;
*Gnosy &amp;lt;br/&amp;gt; mailto:gnosyhh@gmail.com &amp;lt;br/&amp;gt;   1 freerunner and 1 debug board.&lt;br /&gt;
*Bin Zong &amp;lt;br /&amp;gt; mailto:hunter_00zb@hotmail.com &amp;lt;br/&amp;gt; 1 Freerunner &amp;lt;br/&amp;gt; MSN:hunter_00zb@hotmail.com&lt;br /&gt;
*Lee zaixin&amp;lt;br /&amp;gt; mailto:shqlzx@126.com &amp;lt;br/&amp;gt; 1 Freerunner &amp;lt;br/&amp;gt;&lt;br /&gt;
*Zhuwei&amp;lt;br /&amp;gt; mailto:grissom_zhu@139.com &amp;lt;br/&amp;gt; MSN:wyh0310@hotmail.com &amp;lt;br/&amp;gt; 1 Freerunner &amp;lt;br/&amp;gt;&lt;br /&gt;
*zhaojun&amp;lt;br/&amp;gt; mailto:zhaojun1631@163.com &amp;lt;br/&amp;gt;  1 freerunner and 1 debug board&lt;br /&gt;
*Benoit Begue&amp;lt;br/&amp;gt; mailto:snk4ever@gmail.com &amp;lt;br/&amp;gt;  1 freerunner&lt;br /&gt;
&lt;br /&gt;
=== ShangHai ===&lt;br /&gt;
Status:0/10&lt;br /&gt;
&lt;br /&gt;
== Denmark ==&lt;br /&gt;
If we do not reach a total large enough, Denmark **is** a very small place - surely we could figure out a way of getting them to find their way 'round the country :)&lt;br /&gt;
&lt;br /&gt;
=== Jutland ===&lt;br /&gt;
==== Aalborg ====&lt;br /&gt;
Status: 3/10&lt;br /&gt;
&lt;br /&gt;
Should anyone need it, transportation from Aalborg to Thisted for phones can be arranged, if you don't want to pick it up in Aalborg yourself :) ~leinir&lt;br /&gt;
&lt;br /&gt;
As it looks right now, it seems that it would be cheaper and easier for us to buy through Pulster in Germany - see the following email: http://lists.openmoko.org/pipermail/community/2008-May/017778.html ~leinir&lt;br /&gt;
&lt;br /&gt;
* Dan Leinir Turthra Jensen &amp;lt;br /&amp;gt; mailto:admin@leinir.dk &amp;lt;br /&amp;gt; [[User:Leinir]]&lt;br /&gt;
* Fabian Olesen &amp;lt;br /&amp;gt; mailto:firewalkerx@gmail.com&lt;br /&gt;
* Helge Willum Larsen &amp;lt;br /&amp;gt; mailto:helge.at.helges.dk&lt;br /&gt;
&lt;br /&gt;
==== Skjern ====&lt;br /&gt;
Status: 1/10&lt;br /&gt;
&lt;br /&gt;
* [[User:Carlo]]&lt;br /&gt;
&lt;br /&gt;
==== Sønderborg ====&lt;br /&gt;
Status: 1/10&lt;br /&gt;
&lt;br /&gt;
* Theis Hjorth [http://wiki.openmoko.org/wiki/Special:Emailuser/Theis.hjorth contact me here] (1 phone + 1 devkit) &amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Fyn ===&lt;br /&gt;
Status: 4/10&lt;br /&gt;
(Unnless others join Esben and Peter will join the Copenhagen order and Peter will pick up the phones for Fyn in Copenhagen)&lt;br /&gt;
&lt;br /&gt;
* [[User:EsbenDamgaard]] (need 3 (Looney &amp;amp; Gert))&lt;br /&gt;
* [[User:apm]] (need 1 with invoice - can pick up in Copenhagen)&lt;br /&gt;
&lt;br /&gt;
=== Sjælland ===&lt;br /&gt;
==== Copenhagen ====&lt;br /&gt;
Status: 31/10 (35 including the 4 for Fyn - see above)&lt;br /&gt;
&lt;br /&gt;
* [[User:Fursund]] [http://wiki.openmoko.org/wiki/Special:Emailuser/Fursund (contact)]&lt;br /&gt;
* [[User:Rasmusjensen]] [http://wiki.openmoko.org/wiki/Special:Emailuser/Rasmusjensen (contact)]&lt;br /&gt;
* [[User:tabac | Thomas Ammitzbøll-Bach ]] [http://wiki.openmoko.org/wiki/Special:Emailuser/tabac (contact)] 1 phone&lt;br /&gt;
* [[User:chel | Christian E. Lysel ]] [http://wiki.openmoko.org/wiki/Special:Emailuser/chel (contact)]&lt;br /&gt;
* [[User:UlrikRasmussen | Ulrik Rasmussen]] [http://wiki.openmoko.org/wiki/Special:Emailuser/UlrikRasmussen (contact)]&lt;br /&gt;
* [[User:KlaymenDK | Jan Gundtofte-Bruun]]  [http://wiki.openmoko.org/wiki/Special:Emailuser/KlaymenDK (contact)] (Pending final hw, eg. low-power LEDs)&lt;br /&gt;
* [[User:OleTange | Ole Tange]] [http://wiki.openmoko.org/wiki/Special:Emailuser/OleTange (contact)] (I need 14 with invoice)&lt;br /&gt;
* [[User:Pascal | Pascal d'Hermilly]] [http://wiki.openmoko.org/wiki/Special:Emailuser/Pascal (contact)] (I need 1 with invoice)&lt;br /&gt;
* [[User:Miwer | Michael Andersen]] [http://wiki.openmoko.org/wiki/Special:Emailuser/Miwer (contact)] (2 freerunners, 1 debug board, and a copy of invoice)&lt;br /&gt;
* [[User:maha | Martin Hansen]] [http://wiki.openmoko.org/wiki/Special:Emailuser/maha (contact)] (3 with invoice)&lt;br /&gt;
* [[User:SvenneK | Svenne Krap ]] [http://wiki.openmoko.org/wiki/Special:Emailuser/SvenneK (contact)] (1+devkit with invoice)&lt;br /&gt;
* [[User:bss | Bo Stendal Sørensen]] [http://wiki.openmoko.org/wiki/Special:Emailuser/bss (contact)] (1)&lt;br /&gt;
* [[User:Glenn | Glenn Møller-Holst]] [http://wiki.openmoko.org/wiki/Special:Emailuser/Glenn (contact)] (1 + debug board)&lt;br /&gt;
* [[User:Coax | Lasse Poulsen]] [http://wiki.openmoko.org/wiki/Special:Emailuser/Coax (contact)] (1)&lt;br /&gt;
* [[User:Lord_Zalzer | Dennis Andersen]] [http://wiki.openmoko.org/wiki/Special:Emailuser/Lord_Zalzer (contact)] (1)&lt;br /&gt;
&lt;br /&gt;
== Finland ==&lt;br /&gt;
=== Uusimaa ===&lt;br /&gt;
==== Helsinki I (Full)====&lt;br /&gt;
Status : 10/10&lt;br /&gt;
&lt;br /&gt;
* Mikko Rauhala x2 [mailto:mjr@iki.fi mjr@iki.fi]&lt;br /&gt;
* Aleksi Hankalahti &amp;lt;br /&amp;gt; [mailto:aleksi.hankalahti@iki.fi aleksi.hankalahti@iki.fi]&lt;br /&gt;
* Seppo Hätönen &amp;lt;br /&amp;gt; [mailto:karrde@iki.fi karrde@iki.fi]&lt;br /&gt;
* Arttu Sund &amp;lt;br /&amp;gt; [mailto:thearttu@gmail.com thearttu@gmail.com]&lt;br /&gt;
* Ville-Pekka Vainio &amp;lt;br /&amp;gt; vpivaini AT cs.helsinki.fi&lt;br /&gt;
* Heikki Hallamaa &amp;lt;br /&amp;gt; [mailto:heikki.hallamaa@iki.fi heikki.hallamaa@iki.fi]&lt;br /&gt;
* Tomi Jylhä-Ollila &amp;lt;br /&amp;gt; tomi.jylha-ollila@helsinki.fi&lt;br /&gt;
* Richard Braakman&lt;br /&gt;
* Timo Jyrinki &amp;lt;br /&amp;gt; [mailto:timo.jyrinki@iki.fi timo.jyrinki@iki.fi]&lt;br /&gt;
&lt;br /&gt;
==== Helsinki II, Turku &amp;amp; Vaasa====&lt;br /&gt;
&lt;br /&gt;
Status : 7/10&lt;br /&gt;
&lt;br /&gt;
Helsinki:&lt;br /&gt;
&lt;br /&gt;
* Risto H. Kurppa &amp;lt;br /&amp;gt; risto AT kurppa DOT fi&lt;br /&gt;
* Aapo Rantalainen &amp;lt;br /&amp;gt; aapo DOT rantalainen AT gmail DOT com&lt;br /&gt;
* Matti Laakso &amp;lt;br /&amp;gt; matti DOT laakso AT kotiposti DOT net&lt;br /&gt;
* Ismo Haanaho &amp;lt;br /&amp;gt; ismo DOT haanaho AT gmail DOT com&lt;br /&gt;
&lt;br /&gt;
Turku:&lt;br /&gt;
&lt;br /&gt;
* Jaakko Lehtinen, jaakko dot lehtinen at gmail dot com&lt;br /&gt;
* Janne Junnila, janne dot junnila at gmail dot com&lt;br /&gt;
&lt;br /&gt;
Vaasa:&lt;br /&gt;
&lt;br /&gt;
* Mikko Niemikorpi, mikefulli ÄT gmail PISTE com&lt;br /&gt;
&lt;br /&gt;
FYI, removed from list (waiting for GTA02v6):&lt;br /&gt;
&lt;br /&gt;
* ''[[User:Piksi]], openmoko ÄT pi-xi PISTE net''&lt;br /&gt;
* ''2x Teemu Välimäki, [mailto:teemu.valimaki@iki.fi teemu.valimaki@iki.fi]''&lt;br /&gt;
&lt;br /&gt;
=== Lappi ===&lt;br /&gt;
==== Kemi ====&lt;br /&gt;
Status : 2/10&lt;br /&gt;
&lt;br /&gt;
'''[[User:Cg|Discuss the order here]]'''&lt;br /&gt;
&lt;br /&gt;
Kemi:&lt;br /&gt;
* Henri Valta &amp;lt;br /&amp;gt;henri PISTE valta ÄT kemi PISTE fi&lt;br /&gt;
* Tommi Juvonen &amp;lt;br /&amp;gt;tassi ÄT mediapumppu PISTE info&lt;br /&gt;
&lt;br /&gt;
== France ==&lt;br /&gt;
=== Bretagne ===&lt;br /&gt;
==== Brest ====&lt;br /&gt;
Status : 1/10&lt;br /&gt;
&lt;br /&gt;
* StevenLeRoux [mailto:steven@pourri.fr steven@pourri.fr] Jabber_Id:Steven@jabber.fr&lt;br /&gt;
* Acheteur potentiel #2&lt;br /&gt;
&lt;br /&gt;
==== Rennes ====&lt;br /&gt;
Status : 2/10&lt;br /&gt;
&lt;br /&gt;
* Cédric DUFOUIL (openmoko at tsleg point com)&lt;br /&gt;
* Yves MAHE (ymahe at zindep dot com)&lt;br /&gt;
&lt;br /&gt;
=== Pays de la Loire ===&lt;br /&gt;
==== La Roche sur Yon ====&lt;br /&gt;
Status : 1/10&lt;br /&gt;
&lt;br /&gt;
* [http://wiki.openmoko.org/wiki/Special:Emailuser/Vtouchar Vincent Touchard]&lt;br /&gt;
&lt;br /&gt;
==== Nantes ====&lt;br /&gt;
&lt;br /&gt;
* [[User:Yoann|Yoann ARNAUD]]. OK for a ship in Rennes if needed. [http://wiki.openmoko.org/wiki/Special:Emailuser/Yoann Contact me here]&lt;br /&gt;
&lt;br /&gt;
=== Ile de france ===&lt;br /&gt;
==== Paris ====&lt;br /&gt;
Status : 13/10&lt;br /&gt;
&lt;br /&gt;
* StevenLeRoux&lt;br /&gt;
* [[User:Phyce|Phyce]]&lt;br /&gt;
* Yann SLADEK ([http://wiki.openmoko.org/wiki/Special:Emailuser/Maveryck Contact me here])&lt;br /&gt;
* [[User:Wilk|Wilk]] [http://wiki.openmoko.org/wiki/Special:Emailuser/Wilk Contact me here]&lt;br /&gt;
* Jonathan Magano ([http://wiki.openmoko.org/wiki/Special:Emailuser/JonathanMM Contact me here])&lt;br /&gt;
* Benjamin Renard (bn8[AT]zionetrix.net)&lt;br /&gt;
* [[User:OlivierBerger|OlivierBerger]]&lt;br /&gt;
* [[User:BartGS|BartGS]] [http://wiki.openmoko.org/wiki/Special:Emailuser/BartGS Contact me here]&lt;br /&gt;
* [[User:rcoscali|Rémi Cohen-Scali]]&lt;br /&gt;
* [[User:Valos|Valéry Febvre]]&lt;br /&gt;
* [[User:Manou|Emmanuel Raviart]]&lt;br /&gt;
* Le Troll Farceur ([http://wiki.openmoko.org/wiki/Special:Emailuser/LeTrollFarceur Contact me here])&lt;br /&gt;
* [[User:mshook|Mathieu Chouquet-Stringer]]&lt;br /&gt;
You may also see :&lt;br /&gt;
http://bearstech.com/openmoko/register&lt;br /&gt;
&lt;br /&gt;
=== Lorraine ===&lt;br /&gt;
==== Nancy ====&lt;br /&gt;
Status : 1/10&lt;br /&gt;
&lt;br /&gt;
* [[User:mosan|Nicolas Salles]]&lt;br /&gt;
&lt;br /&gt;
=== Rhône-Alpes ===&lt;br /&gt;
==== Lyon ====&lt;br /&gt;
Status : 2/10&lt;br /&gt;
&lt;br /&gt;
* [http://wiki.openmoko.org/wiki/Special:Emailuser/patou Vincent MEURISSE]&lt;br /&gt;
* [http://wiki.openmoko.org/wiki/Special:Emailuser/pini Gilles FILIPPINI]&lt;br /&gt;
&lt;br /&gt;
==== Grenoble ====&lt;br /&gt;
Status : 3/10&lt;br /&gt;
&lt;br /&gt;
* [http://wiki.openmoko.org/wiki/Special:Emailuser/pbollard Philippe BOLLARD]&lt;br /&gt;
* [http://wiki.openmoko.org/wiki/Special:Emailuser/aurelien Aurelien]&lt;br /&gt;
* [http://wiki.openmoko.org/wiki/Special:Emailuser/Hey_popey Damien]&lt;br /&gt;
&lt;br /&gt;
=== Alpes de Haute Provence ===&lt;br /&gt;
==== Manosque ====&lt;br /&gt;
Status : 1/10&lt;br /&gt;
&lt;br /&gt;
* [http://wiki.openmoko.org/wiki/Special:Emailuser/cfdev Cyril]&lt;br /&gt;
&lt;br /&gt;
=== Provence Alpes Cote d'Azur ===&lt;br /&gt;
==== Sophia Antipolis ====&lt;br /&gt;
Status : 1/10&lt;br /&gt;
&lt;br /&gt;
* [http://wiki.openmoko.org/wiki/Special:Emailuser/nico.inc Nicolas HUOT]&lt;br /&gt;
&lt;br /&gt;
=== Midi-Pyrénées ===&lt;br /&gt;
==== Toulouse ====&lt;br /&gt;
&lt;br /&gt;
* [[Special:Emailuser/Ortalo|Ortalo]]&lt;br /&gt;
&lt;br /&gt;
== Germany ==&lt;br /&gt;
=== Baden-Württemberg ===&lt;br /&gt;
==== Karlsruhe ====&lt;br /&gt;
&lt;br /&gt;
* [[Special:Emailuser/Spacemarine|Spacemarine]] 2 Freerunner. -- I'm managing the communication between the groupbuyers, so please contact me if you are interested and haven't received an email from me yet. We will meet at the Kalug Meeting http://www.karlsruhe.linux.de/ on 26. 5. 2008 to discuss things further.&lt;br /&gt;
* [[Special:Emailuser/Dr.Nop|Dr.Nop]]&lt;br /&gt;
* [[Special:Emailuser/JensB|JensB]]&lt;br /&gt;
* [[Special:Emailuser/Tedo|Tedo]]&lt;br /&gt;
* [[Special:Emailuser/ZaPPaS|ZaPPaS]] 7 devices at least, maybe we start a new group in Leonberg&lt;br /&gt;
&lt;br /&gt;
* [[Special:Emailuser/Gromgull|Gromgull]] (in Kaiserslautern, but Karlsruhe is close enough, and I doubt that I'll find 10 people here.&lt;br /&gt;
* [[Special:Emailuser/Ebi|Ebi]]&lt;br /&gt;
* [[Special:Emailuser/RIdd3r|Fabian]]&lt;br /&gt;
* [[Special:Emailuser/Agon|Agon]] in Stuttgart, but Karlsruhe is close enough&lt;br /&gt;
* [[Special:Emailuser/Gollum|Gollum]] in Mannheim, ditto :)  Maybe local postal service is an option?&lt;br /&gt;
* [[Special:Emailuser/Archimedes|Sebastian]] (in Kaiserslautern on workdays and Daun/Eifel during the weekend)&lt;br /&gt;
* [[Special:Emailuser/Cc|Cc]] In Böblingen, Karlsruhe is close enough, Leonberg would be ideal.&lt;br /&gt;
&lt;br /&gt;
==== Tübingen ====&lt;br /&gt;
* [[Special:Emailuser/MiTo|MiTo]]&lt;br /&gt;
&lt;br /&gt;
=== Bayern ===&lt;br /&gt;
&lt;br /&gt;
==== Augsburg ====&lt;br /&gt;
&lt;br /&gt;
Status 4/10&lt;br /&gt;
I just want to see if there are enough people to fill up to ten. So add your name here if you are interested.&lt;br /&gt;
&lt;br /&gt;
whoever - Ich nehm eins, wenn die Münchner keines übrig haben.&lt;br /&gt;
[http://wiki.openmoko.org/wiki/Special:Emailuser/Whoever eMail]&lt;br /&gt;
&lt;br /&gt;
==== München ====&lt;br /&gt;
&lt;br /&gt;
Status 10/10&lt;br /&gt;
&lt;br /&gt;
* [[Special:Emailuser/Eriks|Eriks]]&lt;br /&gt;
* --[[User:Imitation|Imitation]] 21:42, 30 April 2008 (CEST)&lt;br /&gt;
* [[Special:Emailuser/meyerm|meyerm]] 16:25 CEST, 01. Mai 2008&lt;br /&gt;
* [[Special:Emailuser/Koebi|koebi]] 05. Mai 2008&lt;br /&gt;
* [[Special:Emailuser/wof|wof]] (2) 07. Mai 2008&lt;br /&gt;
* [[Special:Emailuser/floe|floe]] 10. Mai 2008&lt;br /&gt;
* [[Special:Emailuser/mathew muc|mathew muc]] 12. Mai 2008&lt;br /&gt;
* [[Special:Emailuser/einalex|einalex]] 13. Mai 2008&lt;br /&gt;
* [[Special:Emailuser/smurfy|smurfy]] 18. Mai 2008&lt;br /&gt;
&lt;br /&gt;
=== Berlin===&lt;br /&gt;
==== Berlin ====&lt;br /&gt;
&lt;br /&gt;
for berlin-talk: http://de.groups.yahoo.com/group/openmoko-berlin/&lt;br /&gt;
&lt;br /&gt;
* Conrad [http://wiki.openmoko.org/wiki/User:Caribu Contact me here]&lt;br /&gt;
&lt;br /&gt;
Status 15/20&lt;br /&gt;
* Stephan [http://wiki.openmoko.org/wiki/User:Fischel Contact me here]&lt;br /&gt;
* Robert [http://wiki.openmoko.org/wiki/User:Thebohemian Contact me here]&lt;br /&gt;
* Nico [http://wiki.openmoko.org/wiki/User:Nico Contact me here]&lt;br /&gt;
* Torsten [http://wiki.openmoko.org/wiki/User:Torsten_Grote Contact me here]&lt;br /&gt;
* Bastian [[User:Fries43]]&lt;br /&gt;
* Sven-Ola [http://wiki.openmoko.org/wiki/User:Sven-ola Contact]&lt;br /&gt;
* Arne [http://wiki.openmoko.org/wiki/User:arnepp Contact me here]&lt;br /&gt;
* MM [http://wiki.openmoko.org/wiki/User:MM Contact]&lt;br /&gt;
* Keks [http://wiki.openmoko.org/wiki/User:Keksdosenmann Contact]&lt;br /&gt;
* Matthias [http://wiki.openmoko.org/wiki/User:mk Contact]&lt;br /&gt;
* Norbert [http://wiki.openmoko.org/wiki/User:Noha Contact]&lt;br /&gt;
* Joscha [http://wiki.openmoko.org/wiki/User:Joka Contact]&lt;br /&gt;
* Janne [http://wiki.openmoko.org/wiki/User:Janne Contact]&lt;br /&gt;
* Robert [http://wiki.openmoko.org/wiki/Special:Emailuser/Robx Contact]&lt;br /&gt;
&lt;br /&gt;
=== Bremen ===&lt;br /&gt;
==== Bremen ====&lt;br /&gt;
Status 2/10&lt;br /&gt;
* Gero Mudersbach [http://wiki.openmoko.org/wiki/Special:Emailuser/Gero Contact me here]&lt;br /&gt;
* Hartje Bruns [http://wiki.openmoko.org/wiki/Special:Emailuser/MrBurns Contact me here]&lt;br /&gt;
&lt;br /&gt;
==== Bremerhaven ====&lt;br /&gt;
&lt;br /&gt;
=== Hamburg ===&lt;br /&gt;
==== Hamburg ====&lt;br /&gt;
Status 9-10&lt;br /&gt;
&lt;br /&gt;
* Jan 4-5[http://wiki.openmoko.org/wiki/Special:Emailuser/Jan07 Contact me here]&lt;br /&gt;
* Varacanero [http://wiki.openmoko.org/wiki/Special:Emailuser/varacanero Contact me here]&lt;br /&gt;
* Ole 3-5 pcs [http://wiki.openmoko.org/wiki/Special:Emailuser/Olemoko Contact me here]&lt;br /&gt;
* Arne [http://wiki.openmoko.org/wiki/Special:Emailuser/GuraX Contact me here]&lt;br /&gt;
* Arne.anka 1pc [http://wiki.openmoko.org/wiki/Special:Emailuser/Arne.anka Contact me here]&lt;br /&gt;
* Wasili Goutas 1pc + debug adapter [http://wiki.openmoko.org/wiki/Special:Emailuser/Laki Contact me here]&lt;br /&gt;
&lt;br /&gt;
=== Hessen ===&lt;br /&gt;
==== Frankfurt ====&lt;br /&gt;
Status 1-10&lt;br /&gt;
&lt;br /&gt;
* Blacky [http://wiki.openmoko.org/wiki/Special:Emailuser/Blacky Contact me here]&lt;br /&gt;
&lt;br /&gt;
=== Niedersachsen===&lt;br /&gt;
==== Hannover====&lt;br /&gt;
Status 1&lt;br /&gt;
&lt;br /&gt;
* Dattel83 [http://wiki.openmoko.org/wiki/Special:Emailuser/Dattel83 Contact me here]&lt;br /&gt;
&lt;br /&gt;
=== NRW ===&lt;br /&gt;
==== Aachen ====&lt;br /&gt;
Status 3/10&lt;br /&gt;
* Henrik, infos on my [[User:Henrikz|user page]], or you can [[Special:Emailuser/Henrikz|contact me here]]&lt;br /&gt;
* David, infos on my [[User:TechnoFan|user page]], or you can [[Special:Emailuser/TechnoFan|contact me here]]&lt;br /&gt;
* Stephan, infos on my [[User:chaq|user page]], or you can [[Special:Emailuser/chaq|contact me here]]&lt;br /&gt;
&lt;br /&gt;
==== Bielefeld ====&lt;br /&gt;
Status 4/10&lt;br /&gt;
&lt;br /&gt;
* David, infos on my [[User:Raven|user page]], or you can [[Special:Emailuser/Raven|contact me here]]&lt;br /&gt;
* Sebastian, infos on my [[User:Seppi|user page]], or you can [[Special:Emailuser/Seppi|contact me here]]&lt;br /&gt;
* Dackel, infos on my [[User:Killerdackel|user page]], or you can [[Special:Emailuser/Killerdackel|contact me here]]&lt;br /&gt;
* Conny&lt;br /&gt;
* Arndt, infos on my [[User:Arndot|user page]], or you can [[Special:Emailuser/Arndot|contact me here]]&lt;br /&gt;
&lt;br /&gt;
==== Bocholt ====&lt;br /&gt;
===== (Fachhochschule in Bocholt) =====&lt;br /&gt;
* 1 x adslex&lt;br /&gt;
* 1 x dg [[Special:Emailuser/dg|contact me here]]&lt;br /&gt;
&lt;br /&gt;
==== Düsseldorf ====&lt;br /&gt;
* mac2k, infos on my [[User:mac2k|user page]], or you can [[Special:Emailuser/mac2k|contact me here]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Sachsen-Anhalt ===&lt;br /&gt;
==== Stendal (evtl. Magdeburg) ====&lt;br /&gt;
Status 1/10&lt;br /&gt;
&lt;br /&gt;
* Fabian Off [http://wiki.openmoko.org/wiki/Special:Emailuser/Fabian2de Contact me here]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Thueringen ===&lt;br /&gt;
==== Weimar ====&lt;br /&gt;
Status 1/10&lt;br /&gt;
&lt;br /&gt;
* [[User:Fries43]]&lt;br /&gt;
&lt;br /&gt;
==== Ilmenau ====&lt;br /&gt;
Status 1/10&lt;br /&gt;
&lt;br /&gt;
* [[User:KimKiesel]]&lt;br /&gt;
&lt;br /&gt;
=== Sachsen ===&lt;br /&gt;
==== Chemnitz ====&lt;br /&gt;
Status 2/10&lt;br /&gt;
&lt;br /&gt;
* Tobias [http://wiki.openmoko.org/wiki/Special:Emailuser/Tobydox Contact me here]&lt;br /&gt;
* Michael [http://wiki.openmoko.org/wiki/Special:Emailuser/her Contact me here]&lt;br /&gt;
==== Dresden ====&lt;br /&gt;
Status 1/10&lt;br /&gt;
&lt;br /&gt;
* Martin [http://wiki.openmoko.org/wiki/Special:Emailuser/nodge Contact me here]&lt;br /&gt;
&lt;br /&gt;
== Hungary == &lt;br /&gt;
Good to know:&lt;br /&gt;
*discussion here: http://hup.hu/node/54588&lt;br /&gt;
*mailing list: http://groups.google.com/group/freerunner-groupsales-hungary&lt;br /&gt;
*group ordering coordinator: Dániel Vásárhelyi (see below) - please contact me on any questions&lt;br /&gt;
&lt;br /&gt;
ordering rules:&lt;br /&gt;
* anyone can add and remove him/herself on the list - new names MUST be _appended_ to the list&lt;br /&gt;
* please use real name and working e-mail address&lt;br /&gt;
* although this list is informative, please extend it _only_ if you are really serious about ordering it&lt;br /&gt;
* coordinator contacts everyone interested prior to actual buying&lt;br /&gt;
&lt;br /&gt;
=== Budapest ===&lt;br /&gt;
Status 25/30&lt;br /&gt;
&lt;br /&gt;
# Ferenc 'Lion' Veres [http://wiki.openmoko.org/wiki/Special:Emailuser/kempelen Contact]&lt;br /&gt;
# Laszlo 'rka' Szabo [http://wiki.openmoko.org/wiki/Special:Emailuser/rka Contact]&lt;br /&gt;
# tg [http://wiki.openmoko.org/wiki/Special:Emailuser/tg?wpSubject=OpenMoko%20GroupSales Contact]&lt;br /&gt;
# LiRul - lirul [KUKAC] hixsplit [PONT] hu&lt;br /&gt;
# Nyosigomboc - nyos [KUKAC] nyos [PONT] homelinux [PONT] net&lt;br /&gt;
# Ludvig Adam - hunludvig [KUKAC] gmail [PONT] com&lt;br /&gt;
# [http://wiki.openmoko.org/wiki/Special:Emailuser/asdmin?wpSubject=OpenMoko%20GroupSales Dániel 'asd' Vásárhelyi]&lt;br /&gt;
# asch, asch [KUKAC] freemail [PONT] hu&lt;br /&gt;
# btamas, [http://wiki.openmoko.org/wiki/Special:Emailuser/btamas Contact]&lt;br /&gt;
# Kovács 'ka87' András, andras [kukac] csevego [pont] net&lt;br /&gt;
# pcm, pcm [kukac] freemail [pont] hu&lt;br /&gt;
# gpiros, geza [PONT] piros [KUKAC] gmail [PONT] com&lt;br /&gt;
# Áron Preisinger, appa00 [kukac] gmail [pont] com [http://wiki.openmoko.org/wiki/Special:Emailuser/appa Contact]&lt;br /&gt;
# pierre286, [http://wiki.openmoko.org/wiki/Special:Emailuser/pierre286 Contact]&lt;br /&gt;
# Hélei Zoltán, heleiz [kukac] gmail&lt;br /&gt;
# Fenwick, [http://wiki.openmoko.org/wiki/Special:Emailuser/fenwick Contact]&lt;br /&gt;
# Radics Áron, raron @ vipmail . hu&lt;br /&gt;
# Laszlo Szomor [http://wiki.openmoko.org/wiki/Special:Emailuser/Lci Contact]&lt;br /&gt;
# tr3w [http://wiki.openmoko.org/wiki/Special:Emailuser/tr3w Contact]&lt;br /&gt;
# Ferenc Szomor [http://wiki.openmoko.org/wiki/Special:Emailuser/Lci Contact]&lt;br /&gt;
# Attila Darabos, adarabos at gmail dot com&lt;br /&gt;
# Bolyóczki Zsombor, mogorva kukac tuxworx pont hu&lt;br /&gt;
# Sütő Zoltán, suto dot zoltan at t dash online dot hu&lt;br /&gt;
# Zsolt Pittmann, pittmann dot zsolt at gmail dot com&lt;br /&gt;
# KREKACS Laszlo, laszlo {pont} krekacs {pont} list {kukacka} gmail {pont} com&lt;br /&gt;
&lt;br /&gt;
=== Kecskemét ===&lt;br /&gt;
Dániel Vásárhelyi handles transportation to Kecskemét, therefore it is not necessary to collect 10 all pieces here.&lt;br /&gt;
&lt;br /&gt;
== India ==&lt;br /&gt;
=== Delhi/NCR ===&lt;br /&gt;
Status 2/10&lt;br /&gt;
&lt;br /&gt;
* Goldwyn Rodrigues [http://wiki.openmoko.org/wiki/Special:Emailuser/goldwynr Contact]&lt;br /&gt;
* Sameer Mohamed Thahir [http://wiki.openmoko.org/wiki/Special:Emailuser/sameerthahir Contact]&lt;br /&gt;
* Pratul Kalia (lut4rp) ''pratulkalia [at] gmail [dot] com''&lt;br /&gt;
&lt;br /&gt;
== Italy == &lt;br /&gt;
For more informations and to organize groups, visit the&lt;br /&gt;
*[http://groups.google.com/group/freerunner-italian-group-sales?hl=it '''''Italian Freerunner Group Sales Google Group'''''] (ML/Web/Feeds) ([mailto:freerunner-italian-group-sales@googlegroups.com freerunner-italian-group-sales@googlegroups.com]).&lt;br /&gt;
&lt;br /&gt;
'''BUT please keep adding your name and email to the list below'''&lt;br /&gt;
&lt;br /&gt;
If we don't reach the 10 phones limit in each city, maybe we could place an order in the &amp;quot;most requested city&amp;quot;, and from shipping to other buyers. We'll have anyway a good discount although the &amp;quot;double-shipping&amp;quot;. ([http://thread.gmane.org/gmane.comp.handhelds.openmoko.community/10937/focus=10981 Read here for reference]).&lt;br /&gt;
&lt;br /&gt;
=== Toscana ===&lt;br /&gt;
==== Firenze (e dintorni) ====&lt;br /&gt;
Status 10/10&lt;br /&gt;
&lt;br /&gt;
* [[User:Treviño|Marco Trevisan (Treviño)]] - [http://blog.3v1n0.net/contatti-trevino/ Contacts here]&lt;br /&gt;
* [[User:Niccolo|Niccolo Rigacci]] - ''niccolo [AT] rigacci.org''&lt;br /&gt;
* [[User:pcav|Paolo Cavallini]] - ''cavallini [AT] faunalia.it''&lt;br /&gt;
* [[User:BiggMatt|Mattia Gentile]] - ''biggmatt@hotmail.it''&lt;br /&gt;
* Elisa ''[mailto:lab@kkk.it lab@kkk.it]'' (Empoli)&lt;br /&gt;
* [[User:Sugacapra|Sugacapra]] - ''alessio.chemeri [AT] gmail.com''&lt;br /&gt;
* [[User:tom_morello|Carlo Ascani (Morello)]] - ''carlo.ratm [AT] gmail.com''&lt;br /&gt;
* [[User:marrano|Stefano Burchietti (Marrano)]] - ''stefano [AT] nontelodiromai.it''&lt;br /&gt;
* [[User:Geli86|Matteo Gelimeri X 2 (Imola - Bologna)]] - ''gelimatteo [AT] gmail.com''&lt;br /&gt;
&lt;br /&gt;
=== Lombardia ===&lt;br /&gt;
&lt;br /&gt;
==== Milano e dintorni ====&lt;br /&gt;
Status 22/30&lt;br /&gt;
&lt;br /&gt;
[[GroupSales_Milano_e_dintorni|Organizzazione preliminare]] DEPRECATA lì 11 Maggio 2008.&lt;br /&gt;
&lt;br /&gt;
Da ora in poi usiamo il [http://groups.google.com/group/freerunner-italian-group-sales?hl=it '''Freerunner Italian Group Sales'''].&lt;br /&gt;
&lt;br /&gt;
 Ad ogni modo, per stabilire le precedenze nella prenotazione dei pacchi da 10 pezzi, '''continuate ad aggiugerVi nella lista qui sotto'''&lt;br /&gt;
&lt;br /&gt;
*'''Gruppo 1'''&lt;br /&gt;
*# Marcello Gorla [mailto:marcello.gorla@gmail.com Contacts here] (Milano città)&lt;br /&gt;
*# Maxxer [mailto:maxxer@yetopen.it maxxer@yetopen.it] (Lecco)&lt;br /&gt;
*# Pietro Montorfano [mailto:monto84@gmail.com monto84@gmail.com] (from como)&lt;br /&gt;
*# Gianluigi Belli - [http://wiki.openmoko.org/wiki/Special:Emailuser/Pulciux Contacts here] (Milano)&lt;br /&gt;
*# Michele Castellano - [http://wiki.openmoko.org/wiki/Special:Emailuser/mubumba Contacts here] (Milano)&lt;br /&gt;
*# Maurizio Lipreri -  [http://wiki.openmoko.org/wiki/Special:Emailuser/Maldido Contacts here]( Como )&lt;br /&gt;
*# Guido Conaldi - [http://wiki.openmoko.org/wiki/Special:Emailuser/skepz Contacts here] (Varese)&lt;br /&gt;
*# [[User:Furester|Igor Scabini (furester)]] - [http://wiki.openmoko.org/wiki/Special:Emailuser/Furester Contacts here] (Milano)&lt;br /&gt;
*# Dario Panico [http://wiki.openmoko.org/wiki/Special:Emailuser/Dareus Contacts here] (Busto Arsizio, VA)&lt;br /&gt;
*# Marco Zanzotera (Milano città) &lt;br /&gt;
&lt;br /&gt;
*'''Gruppo 2'''&lt;br /&gt;
*# Francesco Ricci (Milano, Dipartimento di Scienze dell'Informazione, via Comelico 39/41) - possibile punto di ricezione/distribuzione - [http://wiki.openmoko.org/wiki/Special:Emailuser/Alfa21 Contacts here]&lt;br /&gt;
*# Danilo Sia (Birdack) [http://wiki.openmoko.org/wiki/Special:Emailuser/Birdack Contacts here] (Milano città)&lt;br /&gt;
*# Federico Belvisi - [http://wiki.openmoko.org/wiki/Special:Emailuser/Armalite Contacts here] (Legnano, MI/Varese)&lt;br /&gt;
*# Francesco Leserri - [http://wiki.openmoko.org/wiki/Special:Emailuser/Francy Contacts here] (Vimercate, MI)&lt;br /&gt;
*# [[User:Cga|Callea Gaetano Andrea]] (Milano zona Forlanini) [http://wiki.openmoko.org/wiki/Special:Emailuser/Cga Contacts here]&lt;br /&gt;
*# [[User:Pietrao| Pietro Isotti]] - [mailto:isottipietro@gmail.com isottipietro@gmail.com]&lt;br /&gt;
*# Baz - [mailto:buzzi.paolo@gmail.com buzzi.paolo@gmail.com]&lt;br /&gt;
*# Mario Signorino ('''2 unità''') ([[User:Dodiesis|Dodiesis]])- [mailto:mario@sgrunt.net mario@sgrunt.net] (Milano - possibile punto di ricezione alternativo )&lt;br /&gt;
*# [[user:Stemby|Carlo Stemberger]] (Stemby) - '''carlo'''&amp;lt;small&amp;gt;dot&amp;lt;/small&amp;gt;'''stemberger'''&amp;lt;small&amp;gt;at&amp;lt;/small&amp;gt;'''gmail'''&amp;lt;small&amp;gt;dot&amp;lt;/small&amp;gt;'''com''' (Missaglia, LC)&lt;br /&gt;
&lt;br /&gt;
*Gruppo 3 - incompleto&lt;br /&gt;
*# Marco Crobu - [http://wiki.openmoko.org/wiki/Special:Emailuser/Tron.tron Contacts here] (Zogno, BG)&lt;br /&gt;
*# Maurizio [[User:Trizio!|&amp;quot;Trizio!&amp;quot;]] Ciceri (Novara)&lt;br /&gt;
&lt;br /&gt;
=== Piemonte ===&lt;br /&gt;
==== Torino (and province) ====&lt;br /&gt;
Status 10/10&lt;br /&gt;
&lt;br /&gt;
Per coordinamento [http://groups.google.com/group/freerunner-italian-group-sales?hl=it '''Freerunner Italian Group Sales'''] (Torino)&lt;br /&gt;
&lt;br /&gt;
Precedenza è stabilita in base all'ordine di aggiunta nella lista inizale&amp;lt;br&amp;gt;&lt;br /&gt;
*'''Gruppo 1''' (prime persone a fare l'ordine):&amp;lt;br&amp;gt;&lt;br /&gt;
1 x Claudio Carnino (jollyr0g3r AT gmail DOT com)&amp;lt;br&amp;gt;&lt;br /&gt;
1 x Alessandro Degano (a.degano AT gmail DOT com)&amp;lt;br&amp;gt;&lt;br /&gt;
1 x Enrico Pigozzi (videokill71 AT gmail DOT com)&amp;lt;br&amp;gt;&lt;br /&gt;
1 x Max Ciavarella - [http://wiki.openmoko.org/wiki/Special:Emailuser/Cicchetebom Contacts here]&amp;lt;br&amp;gt;&lt;br /&gt;
1 x Giuseppe Barbieri (elect86 at gmail dot com)&amp;lt;br&amp;gt;&lt;br /&gt;
1 x Riccardo Issoglio (riccardo.issoglio AT polito DOT it)&amp;lt;br&amp;gt;&lt;br /&gt;
1 x Flavio Pastore [http://wiki.openmoko.org/wiki/Special:Emailuser/Iron_Bishop Contacts here]&amp;lt;br&amp;gt;&lt;br /&gt;
1 x Michele Renda ( mic DOT renda AT email DOT it )&amp;lt;br&amp;gt;&lt;br /&gt;
2 x Katjia Mirri (gattoniglia AT gmail DOT com ) two items (ne voglio due)!!&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
*'''Gruppo 2''' (coloro che non ci stanno nel primo gruppo o che vogliono aspettare che il primo gruppo abbia ricevuto il telefono):&amp;lt;br&amp;gt;&lt;br /&gt;
1 x Giovanni Di Mingo ( pino_otto AT yahoo DOT com )&amp;lt;br&amp;gt;&lt;br /&gt;
1 x Marco Forasacco (zer0fil3 AT gmail DOT com)&amp;lt;br&amp;gt;&lt;br /&gt;
1 x Gabriele Martino (pierino DOT the DOT living DOT joke AT gmail DOT com)&amp;lt;br&amp;gt;&lt;br /&gt;
1 x Massimo Valerio (my AT massimovalerio DOT it)&amp;lt;br&amp;gt;&lt;br /&gt;
...&amp;lt;br&amp;gt;&lt;br /&gt;
(aggiungersi chi è nuovo)&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
-------------------------------------&lt;br /&gt;
LISTA ORIGINALE (24/05/08 14:48):&lt;br /&gt;
* Claudio Carnino &amp;lt;br/&amp;gt; (jollyr0g3r AT gmail DOT com)&lt;br /&gt;
* Alessandro Degano &amp;lt;br/&amp;gt; (a.degano AT gmail DOT com)&lt;br /&gt;
* Enrico Pigozzi &amp;lt;br/&amp;gt; (videokill71 AT gmail DOT com)&lt;br /&gt;
* Max Ciavarella - [http://wiki.openmoko.org/wiki/Special:Emailuser/Cicchetebom Contacts here]&lt;br /&gt;
* Giuseppe Barbieri (elect86 at gmail dot com)&lt;br /&gt;
* Riccardo Issoglio &amp;lt;br/&amp;gt; (riccardo.issoglio AT polito DOT it)&lt;br /&gt;
* Flavio Pastore [http://wiki.openmoko.org/wiki/Special:Emailuser/Iron_Bishop Contacts here]&lt;br /&gt;
* Michele Renda ( mic DOT renda AT email DOT it )&lt;br /&gt;
* Katjia Mirri (gattoniglia AT gmail DOT com ) two items (ne voglio due)!!&lt;br /&gt;
* Giovanni Di Mingo ( pino_otto AT yahoo DOT com )&lt;br /&gt;
* Marco Forasacco &amp;lt;br/&amp;gt; (zer0fil3 AT gmail DOT com)&lt;br /&gt;
* Gabriele Martino &amp;lt;br/&amp;gt; (pierino DOT the DOT living DOT joke AT gmail DOT com)&lt;br /&gt;
* Massimo Valerio &amp;lt;br/&amp;gt; (my AT massimovalerio DOT it)&lt;br /&gt;
--------------------------------------&lt;br /&gt;
&lt;br /&gt;
=== Trentino-Alto Adige ===&lt;br /&gt;
==== Trento ====&lt;br /&gt;
Status 5/10&lt;br /&gt;
&lt;br /&gt;
* [[User:Slaytanic|Gianni Costanzi]] &amp;lt;br/&amp;gt; (gianni.costanzi AT gmail DOT com)&lt;br /&gt;
* Vincenzo D'Andrea (vincenzo.dandrea AT gmail DOT com) &amp;lt;br/&amp;gt; (also Verona is OK - and I can carry others' phone VR to TN or viceversa)&lt;br /&gt;
* 1x ([[Image:MokoBox.jpg]] - advanced) [[User:Tarch|Tarcisio Fedrizzi]] (tarcisio.fedrizzi AT gmail DOT com)&lt;br /&gt;
* Emanuele Olivetti (emanuele CHIOCCIOLA relativita PUNTO com)&lt;br /&gt;
* Marco Ciampa (ciampix (*) libero (*) it)&lt;br /&gt;
&lt;br /&gt;
=== Friuli Venezia Giulia ===&lt;br /&gt;
==== Trieste ====&lt;br /&gt;
Status: 1/10&lt;br /&gt;
&lt;br /&gt;
* dorje [mailto:dorje@libero.it dorje@libero.it] - [[User:dorje|dorje]]&lt;br /&gt;
&lt;br /&gt;
=== Veneto ===&lt;br /&gt;
Status: 13/20&lt;br /&gt;
&lt;br /&gt;
==== Verona ====&lt;br /&gt;
&lt;br /&gt;
* Persegat [mailto:persegat@alice.it persegat@alice.it] - [[User:Pecce|Pecce]]&lt;br /&gt;
* Sylar91 [mailto:sylar1991@gmail.com sylar1991@gmail.com] - [[User:Sylar91|Sylar91]]&lt;br /&gt;
* Marco Franceschetti - [http://wiki.openmoko.org/wiki/Special:Emailuser/vonfritz Contacts here]&lt;br /&gt;
* AleksFalcone [mailto:aleks.falcone@gmail.com aleks.falcone@gmail.com] - [[User:AleksFalcone|AleksFalcone]]&lt;br /&gt;
* Roberto Previdi [mailto:hariseldon78(AT)gmail.com hariseldon78(AT)gmail.com] - [[User:hariseldon78|hariseldon78]] (also Milano is ok)&lt;br /&gt;
&lt;br /&gt;
==== Vicenza ====&lt;br /&gt;
&lt;br /&gt;
* Michele [mailto:michele@cooperativabiosphaera.it michele(at)cooperativabiosphaera.it] - &amp;lt;br /&amp;gt;Also Padova is okay.&lt;br /&gt;
&lt;br /&gt;
* Paolo [mailto:paolo.sartore@gmail.com paolo.sartore(at)gmail.com]&amp;lt;br /&amp;gt; Also Padova is okay.&lt;br /&gt;
&lt;br /&gt;
* Renato [mailto:wasgiventofly@gmail.com wasgiventofly AT gmail DOT com]&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* Sandro [http://wiki.openmoko.org/wiki/Special:Emailuser/vigerty contact me here]&amp;lt;br /&amp;gt; Also Padova is okay.&lt;br /&gt;
&lt;br /&gt;
* Marco [mailto:marco.napetti@linux.it marco.napetti(at)linux.it]&amp;lt;br /&amp;gt; Also Padova and Verona are ok.&lt;br /&gt;
&lt;br /&gt;
==== Venezia ====&lt;br /&gt;
&lt;br /&gt;
* Tommaso [mailto:tommaso.gardumi@gmail.com tommaso.gardumi@gmail.com] - [[User:Tobarello|Tobarello]] &amp;lt;br /&amp;gt;Also Padova, Vicenza &amp;amp; Trento are ok.&lt;br /&gt;
&lt;br /&gt;
==== Treviso ====&lt;br /&gt;
&lt;br /&gt;
* Dario [mailto:aliasbrain@gmail.com aliasbrain(at)gmail.com] - [[User:Rastafan|Rastafan]] &amp;lt;br /&amp;gt;one, maybe two.&lt;br /&gt;
&lt;br /&gt;
* Pedro [mailto:paguilar@junkerhq.net paguilar(at)junkerhq.net] - [[User:Paguilar|Paguilar]] &amp;lt;br/&amp;gt;Also Padova and Vicenza are ok.&lt;br /&gt;
&lt;br /&gt;
=== Emilia Romagna ===&lt;br /&gt;
Status : 4/10&lt;br /&gt;
==== Parma ====&lt;br /&gt;
Status : 3/10&lt;br /&gt;
&lt;br /&gt;
* [[User:Delian|Marco Albanese]] [mailto:delian2@gmail.com delian2@gmail.com] For Me, it's ok for the decentralized shipment ( Milano for example :) ).&lt;br /&gt;
&lt;br /&gt;
* [[User:Jordano|Marco Grassi]] marco.gra AT Gmail Dot com Also for me it's ok the decentralized shipping.&lt;br /&gt;
&lt;br /&gt;
* [[User:Hachreak|Leonardo Rossi]] ssj3gokou AT libero Dot it Also for me it's ok the decentralized shipping.&lt;br /&gt;
&lt;br /&gt;
==== Ravenna ====&lt;br /&gt;
&lt;br /&gt;
Status : 1/10&lt;br /&gt;
&lt;br /&gt;
* [[User:Fano|Stefano Ronconi]] fanharlok AT libero Dot it decentralized shipping is ok.&lt;br /&gt;
&lt;br /&gt;
=== Puglia ===&lt;br /&gt;
==== Lecce ====&lt;br /&gt;
Status : 2/10&lt;br /&gt;
&lt;br /&gt;
* [[User:Morpheus90|Morpheus90]] [mailto:ugopiemontese@rudiaelinux.com ugopiemontese@rudiaelinux.com]&lt;br /&gt;
* [[User:Italyanker|italyanker]] [mailto:italyanker@gmail.com italyanker@gmail.com]&lt;br /&gt;
&lt;br /&gt;
==== Bari ====&lt;br /&gt;
Status : 2/10&lt;br /&gt;
&lt;br /&gt;
* [[User:Fradeve11|Fradeve11]] [mailto:fradeve@ubuntu-it.org fradeve@ubuntu-it.org]&lt;br /&gt;
&lt;br /&gt;
=== Abruzzo ===&lt;br /&gt;
==== Pescara ====&lt;br /&gt;
Status: 1/10&lt;br /&gt;
&lt;br /&gt;
* ZarZ [mailto:zarz25@gmail.com zarz25@gmail.com]&lt;br /&gt;
&lt;br /&gt;
=== Campania ===&lt;br /&gt;
==== Caserta (and province) ====&lt;br /&gt;
Status 1/10&lt;br /&gt;
&lt;br /&gt;
* fenoxxx [mailto:fenoxxx@gmail.com] - Aversa&lt;br /&gt;
&lt;br /&gt;
=== Lazio ===&lt;br /&gt;
==== Roma ====&lt;br /&gt;
Status 9/10&lt;br /&gt;
&lt;br /&gt;
Per coordinamento [http://groups.google.com/group/freerunner-italian-group-sales?hl=it '''Freerunner Italian Group Sales'''] (Roma)&lt;br /&gt;
&lt;br /&gt;
La precedenza è stabilita in base all'ordine di aggiunta nella lista inizale&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Gruppo 1 (incompleto, manca 1 pezzo):&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* Hire X 2 [mailto:hiretto@gmail.com hiretto@gmail.com] (Roma)&lt;br /&gt;
* Darkbasic X 1 [mailto:darkbasic4(at)gmail darkbasic4(at)gmail] (Ancona)&lt;br /&gt;
* zione X 1 [mailto:alessio.filipponio@gmail.com alessio.filipponio@gmail.com](Roma)&lt;br /&gt;
* AntoMan X 1 [mailto:obe_65@yahoo.it AntoMan](Roma)&lt;br /&gt;
* Christian X 1(Gino46) [mailto:christian.marzola@alice.it] (ferrara) Qualcuno me lo dovrebbe spedire. || Ci pensa Hire a spedirli a chi non è di Roma, mettete semplicemente in conto 8/9 euro in più per la spedizione.&lt;br /&gt;
* Tempix X 1 [mailto:tempix11@gmail.com tempix11@gmail.com] (Ancona)&lt;br /&gt;
* 6xsempre X 1 [mailto:6xsempre@jumpy.it] (frosinone)&lt;br /&gt;
* lynx1673 X1 [mailto: acarfi at yahoo dot com] - lynx sei di Roma?&lt;br /&gt;
&lt;br /&gt;
=== Liguria ===&lt;br /&gt;
==== Genova ====&lt;br /&gt;
Status 8/10&lt;br /&gt;
&lt;br /&gt;
* Luca Maranzano X 1 (liuk AT linux DOT it) [[User:liuk|liuk]]&lt;br /&gt;
* Francesco Frassinelli X 1 (frafra AT autistici DOT org) [[User:Frafra|Frafra]]&lt;br /&gt;
* Lorenzo Fornara X 1 (fw1987 AT hotmail DOT it)&lt;br /&gt;
* Stefano Cutelle' X 1 (staff@ascservices.it) [[User:ascservices|ascservices]]&lt;br /&gt;
* Luca Arrigo X 1 (morph84@gmail.com) [[User:morph|morph]]&lt;br /&gt;
* Andrea De Gaetano X 1 (dega1999 AT gmail DOT com) [[User:Dega1999|Dega1999]]&lt;br /&gt;
* Salvo Schiavone X 1 (salvoschiavone AT gmail DOT com [[User:Salvador|Salvador]]&lt;br /&gt;
* Daniele Delmonte X1 (ryogazero chiocciola yahoo punto it)&lt;br /&gt;
&lt;br /&gt;
=== Sicilia ===&lt;br /&gt;
==== Palermo ====&lt;br /&gt;
Status 9/10&lt;br /&gt;
&lt;br /&gt;
* Giorgio Marciano' X 1 [mailto:giorgio.marciano@email.it giorgio]&lt;br /&gt;
* Michele Puccio X 1 [mailto:narkos@iol.it michele]&lt;br /&gt;
* Roberto Calandra X 1 [mailto:isokazi@yahoo.it roberto]&lt;br /&gt;
* Vincenzo Moreno Luna X 6 [mailto:ciop85plus@hotmail.com vincenzo]&lt;br /&gt;
&lt;br /&gt;
==== Messina ====&lt;br /&gt;
Status 5/10&lt;br /&gt;
&lt;br /&gt;
* Melug X 5 [mailto:suuuper@messinalug.org MeLug]&lt;br /&gt;
&lt;br /&gt;
=== Calabria ===&lt;br /&gt;
==== Catanzaro ====&lt;br /&gt;
Status 1/10&lt;br /&gt;
&lt;br /&gt;
* Carlo Mangani X 1 [mailto:carlo.mangani@gmail.com carlo.mangani@gmail.com] - Lamezia Terme&lt;br /&gt;
&lt;br /&gt;
=== Sardegna ===&lt;br /&gt;
==== Cagliari ====&lt;br /&gt;
Status 1/10&lt;br /&gt;
&lt;br /&gt;
* Panta x 1 [[User:Panta]]&lt;br /&gt;
Viaggio per tutta l'Isola, per cui, nel caso in cui arrivassimo a 10 utenti...&lt;br /&gt;
&lt;br /&gt;
== Macedonia ==&lt;br /&gt;
=== Skopje ===&lt;br /&gt;
Status 1/10&lt;br /&gt;
* Kristijan Krsteski 1/10 &amp;lt;br /&amp;gt; [[User:neutrino]] &amp;lt;br /&amp;gt; [mailto:kristijan.krsteski@gmail.com]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== México ==&lt;br /&gt;
=== Ciudad de México ===&lt;br /&gt;
Status 1/10&lt;br /&gt;
&lt;br /&gt;
* Kozapatista [[Special:Emailuser/User:kozapatista|Contact]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== [http://wiki.openmoko.org/wiki/Talk:GroupSales#The_Netherlands The Netherlands] ==&lt;br /&gt;
(Discuss this group sale on the [http://wiki.openmoko.org/wiki/Talk:GroupSales#The_Netherlands talk page])&lt;br /&gt;
&lt;br /&gt;
* Marijn Kruisselbrink 1 [[Special:Emailuser/User:mkruisselbrink|Contact]]&lt;br /&gt;
* Andy Powell 1/10 [[Special:Emailuser/User:ScaredyCat|Contact]]&lt;br /&gt;
* Arjan Veenstra 1/10 [[User:AVee]] [[Special:Emailuser/User:AVee|Contact]]&lt;br /&gt;
&lt;br /&gt;
=== Gelderland ===&lt;br /&gt;
&lt;br /&gt;
==== Nijkerk ====&lt;br /&gt;
* [[User:Nicolas|Nico Veenkamp]] (Nijkerk 1x) [[Special:Emailuser/User:Nicolas|Contact]]&lt;br /&gt;
&lt;br /&gt;
==== Nijmegen ====&lt;br /&gt;
* [[User:A.dre|André Disselhorst]] (Nijmegen 1x) [[Special:Emailuser/User:A.dre|Contact]]&lt;br /&gt;
&lt;br /&gt;
=== Limburg ===&lt;br /&gt;
&lt;br /&gt;
==== Griendtsveen ====&lt;br /&gt;
* [[User:KenSentMe|Jeroen van de Nieuwenhof]] (Griendtsveen 1x) [[Special:Emailuser/User:KenSentMe|Contact]]&lt;br /&gt;
&lt;br /&gt;
=== Noord-Brabant ===&lt;br /&gt;
&lt;br /&gt;
==== Bergen op Zoom ====&lt;br /&gt;
* [[User:Madjo|Marcel de Jong]] 1/10 [[Special:Emailuser/User:Madjo|Contact]]&lt;br /&gt;
&lt;br /&gt;
==== Eindhoven ====&lt;br /&gt;
* Christ van Willegen 1 [[User:ChristW]]&lt;br /&gt;
&lt;br /&gt;
=== Noord Holland ===&lt;br /&gt;
&lt;br /&gt;
==== Amsterdam ====&lt;br /&gt;
* Michel van Horssen 1/10 [[Special:Emailuser/User:mivaho|Contact]]&lt;br /&gt;
* Frank Richter 1 [[Special:Emailuser/User:res|Contact]]&lt;br /&gt;
* Eric Smith 1/10 [[User:Eric Smith]]&lt;br /&gt;
* Buddy Baars 1 [[Special:Emailuser/User:Budster|Contact]]&lt;br /&gt;
&lt;br /&gt;
==== Beverwijk ====&lt;br /&gt;
* Theo Martens 1x [[Special:Emailuser/User:T_M|Contact]]&lt;br /&gt;
&lt;br /&gt;
==== Bussum ====&lt;br /&gt;
* Remco van Zuijlen 1x [[Special:Emailuser/User:Remco|Contact]]&lt;br /&gt;
&lt;br /&gt;
=== Overijssel ===&lt;br /&gt;
&lt;br /&gt;
==== Deventer ====&lt;br /&gt;
* Jan de Haan 1/10 [[User:Jan de Haan]] [[Special:Emailuser/User:Jan de Haan|Contact]]&lt;br /&gt;
&lt;br /&gt;
==== Enschede ====&lt;br /&gt;
* Peter Hageman 1x [[Special:Emailuser/User:PingPong|Contact]]&lt;br /&gt;
&lt;br /&gt;
==== Hengelo ====&lt;br /&gt;
* Sander Hoentjen 1/10 [[Special:Emailuser/User:Tjikkun|Contact]]&lt;br /&gt;
&lt;br /&gt;
==== Zwolle ====&lt;br /&gt;
* Boudewijn 1/10 [[User:Boudewijn|empty user page]] [[Special:Emailuser/User:Boudewijn|Contact]]; possibly got a second person interested&lt;br /&gt;
&lt;br /&gt;
=== Zuid-Holland ===&lt;br /&gt;
&lt;br /&gt;
==== Rijswijk ====&lt;br /&gt;
* Fernando Martins 1x [[User:fmartins]]  [[Special:Emailuser/User:fmartins|Contact]]&lt;br /&gt;
&lt;br /&gt;
=== Utrecht ===&lt;br /&gt;
&lt;br /&gt;
==== Utrecht ====&lt;br /&gt;
* Eric Spierings 1/10 [[Special:Emailuser/User:ericsp|Contact]]&lt;br /&gt;
* Peter van de Werken 2/10 [[Special:Emailuser/User:PWerken|Contact]]&lt;br /&gt;
* Kenny van Wanrooij 1/10 [[Special:Emailuser/User:kenneth|Contact]]&lt;br /&gt;
&lt;br /&gt;
=== Status ===&lt;br /&gt;
22/30&lt;br /&gt;
&lt;br /&gt;
== New Zealand ==&lt;br /&gt;
As Telecom are using the 850MHz network for their GSM network, and Vodafone/northelia (possibly aka orcon) are using 900/1800MHz, please state which version you want. This may need more research, I'm not 100%; see [http://www.gsmworld.com/roaming/gsminfo/cou_nz.shtml] for more info&amp;lt;br&amp;gt;&lt;br /&gt;
According to jeremy list, telecom will not be rolling out GSM for four years, so the point becomes moot - no-one is likely to get an 850 gsm phone now and wait that long&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Based on info from steve (openmoko marketing) concerning weight and size, shipping via UPS will be about US$185 (NZ$23 each phone) to Auckland.&amp;lt;br&amp;gt;&lt;br /&gt;
UPS are far from the cheapest, but (again according to steve), OM have a contract with them, so this is what we are stuck with&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Someone on the community list suggested using [http://www.myus.com], a shipping company that will re-post items overseas at decent rates. They claim US$66 for a 3kg package, or NZ$8 per phone. Of course, the cost of shipping the phone from OM to the shipping company has to be added in as well.&lt;br /&gt;
&lt;br /&gt;
As of 2008-05-08, US$369 is worth NZ$477&lt;br /&gt;
&lt;br /&gt;
import duty on mobile phones is 0%[http://www.customs.govt.nz/importers/Private+Importers/Customs+Charges.htm], and GST is 12.5% so the GST added to each phone will be NZ$63; 12.5% * {477 + 23), cos we pay GST on postage too...&lt;br /&gt;
&lt;br /&gt;
So, the total cost of a Freerunner as part of a 10 pack, will be:&amp;lt;br&amp;gt;&lt;br /&gt;
477 + 23 + 63&amp;lt;br&amp;gt;&lt;br /&gt;
= '''NZ$563'''&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
+ any possible charges to get it posted elsewhere in New Zealand&lt;br /&gt;
&lt;br /&gt;
=== Auckland ===&lt;br /&gt;
==== [[Auckland group sales|Auckland]] ====&lt;br /&gt;
Status:10 phones requested, the required minimum (10 phones) is reached, but more buyers are still welcome to join.&lt;br /&gt;
*Rob Paulson [[User:Myfanwy]] [mailto:robin.paulson@gmail.com] 900MHz&lt;br /&gt;
**i'm quite happy to organise the purchase, if no-one has any objections. to ease any worries about me running off with the money, we could use an escrow service such as [http://safetrader.co.nz], or paypal. or does anyone have any other ideas?&lt;br /&gt;
*Simon Wells [[User:Swel024]] 900MHz&lt;br /&gt;
*Jeremy List [[User:Jeremy-list]] mailto:quick.dudley@gmail.com (Wellington, not Auckland, will pay for courier) 900MHz&lt;br /&gt;
*David Murrell [[User:Viddy]] - [mailto:dmurrell@waikato.ac.nz] I'm in Hamilton, either courier, or I'll drive up :) 900MHz&lt;br /&gt;
*Jeremy Gray [[User:Bogdan237]] [mailto:jgra163@ec.auckland.ac.nz] Auckland, 900MHz&lt;br /&gt;
*Glen Ogilvie [[User:Nelg]] [mailto:nelg@linuxsolutions.co.nz] Auckland, 900MHz&lt;br /&gt;
*Xuân Baldauf [[User:xbaldauf]] [mailto:xuan--2008.05--GroupSales--wiki.openmoko.org@baldauf.org] Auckland CBD, 900MHz+1800MHz GSM with an [http://www.ak2.com.tw/pd_main.asp?sg_id=11 '''EU''' charger clip] instead of an Australian one (if this is in need to be selected). This is &amp;lt;u&amp;gt;conditional&amp;lt;/u&amp;gt;: the transaction must complete by 2008-06-30, else I cannot participate, because I'm leaving the country afterwards.&lt;br /&gt;
*Paul Roe [[User:Par08]] [http://wiki.openmoko.org/wiki/Special:Emailuser/Par08 contact me here] Christchurch, 2 x 900MHz&lt;br /&gt;
*Dave Lane [[User:dangerpossum]] [http://wiki.openmoko.org/wiki/Special:Emailuser/dangerpossum contact] Christchurch, 1 x 900MHz + 1800MHz GSM&lt;br /&gt;
*Paul Hunkin [[User:paulhunkin]] [mailto:pwh4@cs.waikato.ac.nz Contact] Hamilton (I'll pay for a courier), 1 x 900MHz.&lt;br /&gt;
&lt;br /&gt;
== Norway ==&lt;br /&gt;
=== Nordland ===&lt;br /&gt;
==== Bodø ====&lt;br /&gt;
Status 2/10&lt;br /&gt;
&lt;br /&gt;
* [[User:AlecTBM|Alexander Frøyseth]] [mailto:alexander.froyseth@gmail.com alexander.froyseth@gmail.com]&lt;br /&gt;
* Ole Marius&lt;br /&gt;
* Stian Vading&lt;br /&gt;
* [[User:Kolbjorn.Dahle|Kolbjorn Dahle]][mailto:kolbjorn@dahlenett.org]&lt;br /&gt;
&lt;br /&gt;
=== Sør-Trøndelag ===&lt;br /&gt;
==== Trondheim ====&lt;br /&gt;
Status 13/20&lt;br /&gt;
&lt;br /&gt;
*[[User:andy000|Andreas Kalvå]] [mailto:andy@samfundet.no andy@samfundet.no]&lt;br /&gt;
Send mail om du er interessert.&lt;br /&gt;
&lt;br /&gt;
=== Østlandet ===&lt;br /&gt;
==== Oslo, Akershus, Buskerud, Vestfold ====&lt;br /&gt;
Status 20/20(30?)&lt;br /&gt;
&lt;br /&gt;
* [[User:Ixian|Heikki Sørum]] [mailto:heikkis@matnat.uio.no] &amp;lt;br/&amp;gt; Interessert? mail meg.&lt;br /&gt;
* [[User:Bobkare|Knut Arne Bjørndal]] [mailto:bob@cakebox.net]&lt;br /&gt;
&lt;br /&gt;
==== Østfold ====&lt;br /&gt;
Status 1/10&lt;br /&gt;
&lt;br /&gt;
* [[User:MrBlonde|Petter Nygård]] [mailto:pettnyg@frisurf.no] &amp;lt;br /&amp;gt;Interessert? -&amp;gt; Mail meg....&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Poland ==&lt;br /&gt;
&lt;br /&gt;
* Special group buy site: https://www.kumulator.pl/show/group/35 (in edition moment: 14/20)&lt;br /&gt;
&lt;br /&gt;
== Portugal ==&lt;br /&gt;
=== Aveiro ===&lt;br /&gt;
==== Aveiro ====&lt;br /&gt;
Status : 1/10&lt;br /&gt;
&lt;br /&gt;
* [[User:Ruben|Ruben Mendes]]&lt;br /&gt;
&lt;br /&gt;
=== Lisboa ===&lt;br /&gt;
==== Lisboa ====&lt;br /&gt;
Status : 3/10&lt;br /&gt;
&lt;br /&gt;
* [[User:Pedrosilva|Pedro Silva]]&lt;br /&gt;
* [http://wiki.openmoko.org/wiki/Special:Emailuser/Danielblues Daniel Branco]&lt;br /&gt;
* [http://wiki.openmoko.org/wiki/Special:Emailuser/Knuckles Ivo Anjo]&lt;br /&gt;
&lt;br /&gt;
== Sweden ==&lt;br /&gt;
If insufficient number of people, orders could be merged and remailed perhaps.&lt;br /&gt;
&lt;br /&gt;
Domestic remailing with Posten as A-class mail of a letter (criteria: length+width+height max 900 mm) weighing max 1 kg, without insurance should [http://www.posten.se/foretag/vara_tjanster/postageguide/postguideLetterDom.jspv cost 44 SEK]. 50 SEK more for insurance.&lt;br /&gt;
&lt;br /&gt;
If we end up with more than one 10-pack in Sweden, my guess is that it would probably pay to order everything in one shipment to one address in Sweden to save on the international shipping, and then remail domestically.&lt;br /&gt;
&lt;br /&gt;
=== Götaland ===&lt;br /&gt;
==== Göteborg ====&lt;br /&gt;
&lt;br /&gt;
* [[User:Fwendt|Fredrik Wendt]] [[Special:Emailuser/Fwendt|Contact]]/wendt.se&lt;br /&gt;
&lt;br /&gt;
==== Malmö ====&lt;br /&gt;
Status : 1/10&lt;br /&gt;
&lt;br /&gt;
* Lars Jarlvik &amp;lt;br /&amp;gt; mailto:lars@larsfactory.se&lt;br /&gt;
&lt;br /&gt;
=== Svealand ===&lt;br /&gt;
==== Stockholm ====&lt;br /&gt;
Status : 6/10&lt;br /&gt;
&lt;br /&gt;
* Erland Lewin &amp;lt;br /&amp;gt; mailto:erland@lewin.nu&lt;br /&gt;
* Simon Kågström &amp;lt;br /&amp;gt; mailto:simon.kagstrom@gmail.com&lt;br /&gt;
* Ingvaldur Sigurjonsson &amp;lt;br /&amp;gt; mailto:ingi@ultimalabor.se&lt;br /&gt;
* Adam Johansson &amp;lt;br /&amp;gt; mailto:adam@sollentunaholm.se&lt;br /&gt;
* Lowe Schmidt &amp;lt;br /&amp;gt; mailto:lowe.schmidt@gmail.com&lt;br /&gt;
&lt;br /&gt;
==== Örebro ====&lt;br /&gt;
Status : 1/10&lt;br /&gt;
&lt;br /&gt;
* Anders Petersson &amp;lt;br /&amp;gt; [mailto:demitar@worldforge.org demitar@worldforge.org]&lt;br /&gt;
&lt;br /&gt;
==== Västerås ====&lt;br /&gt;
Status : 1/10&lt;br /&gt;
* Jörgen Lidholm, could join the Falun/Borlänge or Stockholm group &amp;lt;br /&amp;gt; [mailto:jorgen.lidholm@gmail.com]&lt;br /&gt;
&lt;br /&gt;
==== Falun &amp;amp; Borlänge ====&lt;br /&gt;
Status : 4/10&lt;br /&gt;
&lt;br /&gt;
* [http://wiki.openstreetmap.org/index.php/User:Jth Johan Thelmén], Åke Hoff &amp;amp; a demo/backup&lt;br /&gt;
* [http://wiki.openstreetmap.org/index.php/User:eagle87 Pär Eriksson], Borlänge&lt;br /&gt;
&lt;br /&gt;
=== Norrland ===&lt;br /&gt;
==== Umeå ====&lt;br /&gt;
Status : 2/10&lt;br /&gt;
&lt;br /&gt;
* [[User:Zash|Zash]] [[Special:Emailuser/Zash|Contact]]&lt;br /&gt;
* [[User:Benjamin|Benjamin]] [[Special:Emailuser/Benjamin|Contact]]&lt;br /&gt;
&lt;br /&gt;
==== Luleå ====&lt;br /&gt;
Status : 2/10&lt;br /&gt;
&lt;br /&gt;
* [[User:Mjukis|Mjukis]] [[Special:Emailuser/Mjukis|Contact]] - 2 Units. Can also join the Malmö group order.&lt;br /&gt;
&lt;br /&gt;
== Switzerland ==&lt;br /&gt;
Gabriel Ambuehl would volunteer to order the initial 10pack.&lt;br /&gt;
Alexandre Ghisoli could organize the second 10pack.&lt;br /&gt;
Luca Capello could organize the third 10pack (mostly for French Switzerland).&lt;br /&gt;
Mathieu will probably organisze the 4th 10pack. (Lausanne)&lt;br /&gt;
All the 4 with payment in advance (a 10pack will cost approx 3'800 USD).&lt;br /&gt;
&lt;br /&gt;
Probably we will organize shipping, if we cannot all move to Zürich/Genève to get our Neo.&lt;br /&gt;
&lt;br /&gt;
How do we (the initial 10pack group) get in contact? I cannot find any contact information of Gabriel Ambuehl.&lt;br /&gt;
--[[User:Magbeat|Magbeat]] 09:31, 22 May 2008 (UTC)&lt;br /&gt;
&lt;br /&gt;
==== Shipping ====&lt;br /&gt;
If we would ship Neos, here is the Swiss PostPac prices :&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot; cellspacing=&amp;quot;0&amp;quot; cellpadding=&amp;quot;2&amp;quot;&lt;br /&gt;
! Description&lt;br /&gt;
! Size [cm]&lt;br /&gt;
! Price CHF TTC&lt;br /&gt;
|-&lt;br /&gt;
| Size 1&lt;br /&gt;
| 22.9 x 14.7 x 9.9&lt;br /&gt;
| 2.20&lt;br /&gt;
|-&lt;br /&gt;
| Size 2&lt;br /&gt;
| 31.5 x 22.5 x 12.5&lt;br /&gt;
| 2.40&lt;br /&gt;
|-&lt;br /&gt;
| Shipping Priority&lt;br /&gt;
| up to 2Kg&lt;br /&gt;
| 8.-&lt;br /&gt;
|-&lt;br /&gt;
| Shipping Economy&lt;br /&gt;
| up to 2Kg&lt;br /&gt;
| 6.-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Steve posted informations about boxes that will be out with Neo :&lt;br /&gt;
&lt;br /&gt;
* 10 pack : 435mm x 371mm x 119mm, approx 3kg, UPS will charge 160USD (need to be verified)&lt;br /&gt;
* Individual pack : 178mm  x 104mm x 84mm, 237 grams&lt;br /&gt;
&lt;br /&gt;
So size 1 will fit ! Local delivery in Switzerland will cost 8.20 for Economy or 10.20 Priority.&lt;br /&gt;
&lt;br /&gt;
==== Zurich ====&lt;br /&gt;
Status : 20/20&lt;br /&gt;
&lt;br /&gt;
WARNING, this list already contains 20 people! -- LucaCapello&lt;br /&gt;
&lt;br /&gt;
* Simon Wenner &amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/Nowic Contact]&lt;br /&gt;
* Simon Schreiber &amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/Magbeat Contact]&lt;br /&gt;
* Markus Huggler &amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/Magbeat Contact]&lt;br /&gt;
* Andre Timmermann &amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/darktim Contact]&lt;br /&gt;
* Raffael Schmid &amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/darktim Contact]&lt;br /&gt;
* Pascal Weller &amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/darktim Contact]&lt;br /&gt;
* Nick Zbinden (Luzern)&amp;lt;br /&amp;gt; [mailto:nickik@gmx.ch] oder [http://wiki.openmoko.org/wiki/Special:Emailuser/nickik Contact]&lt;br /&gt;
* Marcel Wirth &amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/Skarhand Contact]&lt;br /&gt;
* Marcel Lütolf (Luzern)&amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/NeRo Contact]&lt;br /&gt;
* Christian Corrodi &amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/Matto Contact]&lt;br /&gt;
* Mirko Klingauf &amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/RealAtaman Contact]&lt;br /&gt;
* Marcel Jost (Bern) &amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/Onsonic Contact]&lt;br /&gt;
* Marc Andre Tanner (Biel)&amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/mat Contact]&lt;br /&gt;
* Tobias Kündig (2 Geräte) (Luzern)&amp;lt;br /&amp;gt; [mailto:info@it-media.ch]&lt;br /&gt;
* Peter Salvisberg&amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/Psal Contact]&lt;br /&gt;
* Martin Kos &amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/KoS Contact]&lt;br /&gt;
* Lorenz Schori (Bern) &amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/Znerol Contact]&lt;br /&gt;
* Matthias Cramer (Zürich) &amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/cramer Contact]&lt;br /&gt;
* Pascal Mages (Bern/Zürich) &amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/FreeMind Contact]&lt;br /&gt;
&lt;br /&gt;
==== Geneve ====&lt;br /&gt;
Status : 10/10&lt;br /&gt;
&lt;br /&gt;
WARNING, this list already contains 10 people! -- LucaCapello&lt;br /&gt;
&lt;br /&gt;
* Diego Abelenda&amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/Aelia Contact]&lt;br /&gt;
* Luca Capello&amp;lt;br /&amp;gt; [mailto:luca@pca.it]&lt;br /&gt;
* Nicolas Produit&amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/Produit Contact]&lt;br /&gt;
* Sebastien Nanchen &amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/Sn Contact]&lt;br /&gt;
* Jonas Schwarz (Lausanne) &amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/jnsc Contact]&lt;br /&gt;
* Robin Farine (Auvernier)&amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/rfarine Contact]&lt;br /&gt;
* Alexandre Ghisoli (Yverdon)&amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/Agh Contact]&lt;br /&gt;
* Raphael Studer (Thurgau) &amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/Tschudder Contact]&lt;br /&gt;
* Christian Wäckerlin &amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/boognu Contact]&lt;br /&gt;
* Michael Stähli (Lausanne EPFL) &amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/adler Contact]&lt;br /&gt;
&lt;br /&gt;
==== Lausanne (EPFL) ====&lt;br /&gt;
Status : 10/10&lt;br /&gt;
&lt;br /&gt;
WARNING, this list already contains 10 people! -- LucaCapello&lt;br /&gt;
&lt;br /&gt;
* Mathieu Habegger (EPFL) &amp;lt;br /&amp;gt;[http://wiki.openmoko.org/wiki/Special:Emailuser/Habi Contact]&lt;br /&gt;
* Matthias Brändli (EPFL) &amp;lt;br /&amp;gt;[http://wiki.openmoko.org/wiki/Special:Emailuser/hb9egm Contact]&lt;br /&gt;
* Yorick Brunet (EPFL) &amp;lt;br /&amp;gt;[mailto:yorick.brunet@epfl.ch Contact]&lt;br /&gt;
* Frédéric Fokan(Lausanne) &amp;lt;br /&amp;gt;[mailto:fredericfokan@gmail.com Contact]&lt;br /&gt;
* Gulu (Lausanne) &amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/Gulu Contact]&lt;br /&gt;
* Edomaur (Lausanne, with Gulu) &amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/Edomaur Contact]&lt;br /&gt;
* Layx (Lausanne) &amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/Layx Contact]&lt;br /&gt;
* Mélanie Baumann (EPFL) &amp;lt;br /&amp;gt;[http://wiki.openmoko.org/wiki/Special:Emailuser/calis Contact]&lt;br /&gt;
* Laurent Fasnacht (EPFL) &amp;lt;br /&amp;gt;[http://gnugeneration.epfl.ch/users/fasnacht Contact]&lt;br /&gt;
* Urs Blaser (UNIL) &amp;lt;br /&amp;gt;[http://wiki.openmoko.org/wiki/Special:Emailuser/arctus Contact]&lt;br /&gt;
&lt;br /&gt;
== Spain ==&lt;br /&gt;
=== Spain (Country Group Sale) ===&lt;br /&gt;
Status: 11/10&lt;br /&gt;
&lt;br /&gt;
=== Madrid ===&lt;br /&gt;
==== Madrid ====&lt;br /&gt;
Status : 3/10&lt;br /&gt;
&lt;br /&gt;
* Rafael Campos [http://wiki.openmoko.org/wiki/Special:Emailuser/Methril Contact] &amp;lt;br /&amp;gt;1x ([[Image:MokoBox.jpg]] - advanced) &amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* 1x ([[Image:MokoBox.jpg]] - advanced) Pablo Ruiz Múzquiz [http://wiki.openmoko.org/wiki/User_talk:Pabloruiz contact me here]&lt;br /&gt;
&lt;br /&gt;
* 1x ([[Image:MokoBox.jpg]] - advanced) Carlos Padilla Sorbas [http://wiki.openmoko.org/wiki/User_talk:cymonline contact me here]&lt;br /&gt;
&lt;br /&gt;
=== Zaragoza ===&lt;br /&gt;
==== Zaragoza ====&lt;br /&gt;
Status : 2/10&lt;br /&gt;
&lt;br /&gt;
* Alejandro R. Mosteo &amp;lt;br /&amp;gt; alejandro AT mosteo · com&lt;br /&gt;
* Arturo Giner&amp;lt;br/&amp;gt;[[Special:Emailuser/artginer|Contact]]&lt;br /&gt;
&lt;br /&gt;
=== Barcelona ===&lt;br /&gt;
==== Barcelona ====&lt;br /&gt;
Status : 5/10&lt;br /&gt;
&lt;br /&gt;
* José Luis Pérez &amp;lt;br/&amp;gt;[[Special:Emailuser/jluis|Contact]]&lt;br /&gt;
* David Reyes Samblas Martinez&amp;lt;br/&amp;gt;[[Special:Emailuser/mutrox|Contact]]&lt;br /&gt;
* Sergio Arias &amp;lt;br/&amp;gt;[[Special:Emailuser/saerguio|Contact]]&lt;br /&gt;
* Alex Muntada &amp;lt;br/&amp;gt;[[Special:Emailuser/alexm|Contact]]&lt;br /&gt;
* Pascal co &amp;lt;br/&amp;gt;[[Special:Emailuser/pascalco|Contact]]&lt;br /&gt;
&lt;br /&gt;
=== Valencia ===&lt;br /&gt;
==== Valencia ====&lt;br /&gt;
Status : 1/10&lt;br /&gt;
&lt;br /&gt;
* Pau Gaspar Díaz &amp;lt;br/&amp;gt;[[Special:Emailuser/pau|Contact]]&lt;br /&gt;
&lt;br /&gt;
== UAE ==&lt;br /&gt;
Status: 1/10&lt;br /&gt;
* Yaser Ammar &amp;lt;br /&amp;gt; [[Special:Emailuser/Waraqa|Contact]]&lt;br /&gt;
&lt;br /&gt;
== USA ==&lt;br /&gt;
=== Arizona ===&lt;br /&gt;
==== Tucson ====&lt;br /&gt;
''' willing to reship to nonlocal people within the US (cheaper if you're closer), or get absorbed into another group that's willing to reship '''&lt;br /&gt;
&lt;br /&gt;
Status: 1/10&lt;br /&gt;
* [mailto:wes.shull@gmail.com wesshull]&lt;br /&gt;
&lt;br /&gt;
=== Colorado ===&lt;br /&gt;
==== Boulder ====&lt;br /&gt;
Status: 5/10&lt;br /&gt;
* Vinc Duran x2 (I can purchase and distribute locally) &amp;lt;br /&amp;gt; [mailto:uberpfloyd@gmail.com?subject=Openmoko%20group%20sales Pfloyd]  [http://wiki.openmoko.org/wiki/Special:Emailuser/Pfloyd Contact]&lt;br /&gt;
* Vlad Seghete &amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/vloodo vloodo]&lt;br /&gt;
* John Miller &amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/jwm jwm]&lt;br /&gt;
* D Padilla &amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== Denver (Full) ====&lt;br /&gt;
Status: 10/10 (includes the gentleman from Utah)&lt;br /&gt;
* Shawn Sullivan &amp;lt;br /&amp;gt; [[mailto:shelbydz87@yahoo.com shelbydz87@yahoo.com]]&lt;br /&gt;
* Peter Abplanalp &amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/alderion Contact]&lt;br /&gt;
* Ben Burdette &amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/Ansible Contact]&lt;br /&gt;
* Tom Russell &amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/tazbert Contact]&lt;br /&gt;
* Trace &amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/gnork Contact]&lt;br /&gt;
&lt;br /&gt;
=== California ===&lt;br /&gt;
==== Los Angeles ====&lt;br /&gt;
Status: 6/10&lt;br /&gt;
&lt;br /&gt;
* Ian Douglas &amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/Iandouglas Contact me here]&lt;br /&gt;
* Matthew &amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/Wetmoko Contact]&lt;br /&gt;
* Daniel &amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/Beaker82 Contact]&lt;br /&gt;
* James Robertson &amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/JamesRobertson Contact]&lt;br /&gt;
* Bill Sun &amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/DancingSun Contact]&lt;br /&gt;
* Michael &amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/Bstudios Contact]&lt;br /&gt;
&lt;br /&gt;
==== San Diego ====&lt;br /&gt;
'''(inc. San Diego county and surrounding areas)'''&lt;br /&gt;
&lt;br /&gt;
Status: 2/10&lt;br /&gt;
&lt;br /&gt;
Will combine with LA if too few.&lt;br /&gt;
&lt;br /&gt;
* Peter Naulls &amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/Pnaulls Contact]&lt;br /&gt;
* Tracy Reed &amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/treed Contact]&lt;br /&gt;
&lt;br /&gt;
==== San Francisco Bay Area ====&lt;br /&gt;
Status: 8/10&lt;br /&gt;
&lt;br /&gt;
* Ajit Natarajan - [http://wiki.openmoko.org/wiki/Special:Emailuser/ajitk Contact]&lt;br /&gt;
&lt;br /&gt;
* Dirk Bergstrom - [http://wiki.openmoko.org/wiki/Special:Emailuser/krid Contact]&lt;br /&gt;
&lt;br /&gt;
* Tupshin Harper - [http://wiki.openmoko.org/wiki/Special:Emailuser/tupshin Contact]&lt;br /&gt;
&lt;br /&gt;
* Lothar Werzinger (900MHz) - [http://wiki.openmoko.org/wiki/Special:Emailuser/Elektrolott Contact]&lt;br /&gt;
&lt;br /&gt;
* William Ray Yeager - [http://wiki.openmoko.org/wiki/Special:Emailuser/wyeager Contact]&lt;br /&gt;
&lt;br /&gt;
* Sebastian Coe - [http://wiki.openmoko.org/wiki/Special:Emailuser/savari Contact]&lt;br /&gt;
&lt;br /&gt;
* Jim Morris - [http://wiki.openmoko.org/wiki/Special:Emailuser/wolfmanjm Contact]&lt;br /&gt;
&lt;br /&gt;
* Brian Carver - [http://wiki.openmoko.org/wiki/Special:Emailuser/brianwc Contact]&lt;br /&gt;
&lt;br /&gt;
==== Monterey ====&lt;br /&gt;
Status: 2/10&lt;br /&gt;
&lt;br /&gt;
* Cry Regarder &amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/Cry_Regarder Contact]&lt;br /&gt;
&lt;br /&gt;
=== Idaho ===&lt;br /&gt;
==== Southwestern Idaho ====&lt;br /&gt;
Status 1/10&lt;br /&gt;
* 1 × Eugene Kravtsov [[Special:Emailuser/theUg|Contact]], Garden City (Boise).&lt;br /&gt;
&lt;br /&gt;
=== Midwest ===&lt;br /&gt;
'''(combine Illinois / Indiana / Iowa / Kentucky / Tennesee / Texas)'''&lt;br /&gt;
Status: 7/10&lt;br /&gt;
* Geoff Ruscoe    [[Special:Emailuser/Geocode|Contact]] - Louisville, KY&lt;br /&gt;
* Steven M  [[Special:Emailuser/Montgoss|Contact]] - Cedar Rapids, IA&lt;br /&gt;
* Joseph Booker [[Special:Emailuser/Sargas|Contact]] - Chicago, IL&lt;br /&gt;
* Matt McCormick [[Special:Emailuser/Thewtex|Contact]] - Madison, WI&lt;br /&gt;
* Charles Hill [mailto:charles.e.hill@gmail.com email] - Chicago, IL&lt;br /&gt;
* Greg Bonett [mailto:greg@bonett.org email] - Iowa City, IA&lt;br /&gt;
* Tushar Dayal [mailto:tdayal@gmail.com Contact] - Ames, IA&lt;br /&gt;
&lt;br /&gt;
=== Indiana / Kentucky ===&lt;br /&gt;
Status: 5/10&lt;br /&gt;
* Dan Staley      [[Special:Emailuser/Pyrasi|Contact]] (Kentucky)&lt;br /&gt;
* Donnie Jones    [[Special:Emailuser/Donniejones18|Contact]] (Lexington, KY)&lt;br /&gt;
* John Sterling   [[Special:Emailuser/Sterling|Contact]] (Lexington, KY)&lt;br /&gt;
* James MacLachlan [[Special:Emailuser/Jmaclachlan|Contact]] (Louisville, KY)&lt;br /&gt;
* John Askew [[Special:Emailuser/Johnaskyou|Contact]] (Lexington, KY)&lt;br /&gt;
&lt;br /&gt;
=== Ohio / Michigan ===&lt;br /&gt;
Status: 4/10&lt;br /&gt;
* David Pais (Unknown City) [mailto:davioh2001@yahoo.com email]&lt;br /&gt;
* Dave Ludlow (Toledo) (I can purchase and distribute) [[Special:Emailuser/adsllc|Contact]]&lt;br /&gt;
* Adam Steele (Cincinnati) [mailto:adam@laurasteele.net Contact]&lt;br /&gt;
* Elliot Bailey (Canton) [mailto:elliot.bailey@yahoo.com Contact]&lt;br /&gt;
* Richard Rowell (Grand Rapids) [mailto:richard.rowell@gmail.com Contact]&lt;br /&gt;
&lt;br /&gt;
=== Washington ===&lt;br /&gt;
==== Seattle ====&lt;br /&gt;
Status: 1/10&lt;br /&gt;
* Jon Pomeroy [[Special:Emailuser/Jepomeroy|Contact]]&lt;br /&gt;
&lt;br /&gt;
=== Tennessee ===&lt;br /&gt;
==== Memphis ====&lt;br /&gt;
Status: 1/10&lt;br /&gt;
* Peter O'Connor &amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/poconnor Contact]&lt;br /&gt;
&lt;br /&gt;
=== Texas ===&lt;br /&gt;
==== Austin (12/10) ====&lt;br /&gt;
* Dale Schumacher [[Special:Emailuser/dalnefre|Contact]]&lt;br /&gt;
* Michael Cosby [[Special:Emailuser/mcosby|Contact]]&lt;br /&gt;
* Paul Jimenez [[Special:Emailuser/pj|Contact]]&lt;br /&gt;
* Charles [[Special:Emailuser/rbn|Contact]]&lt;br /&gt;
* Anthony Kitchin [[Special:Emailuser/akitchin|Contact]]&lt;br /&gt;
* Carl (x2) [[Special:Emailuser/texatopia|Contact]]&lt;br /&gt;
* Robert (+Debug Board) [[Special:Emailuser/SHaRK|Contact]] (Houston)&lt;br /&gt;
* Bryan DeLuca [[Special: Emailuser/Stupkid|Contact]] (Fort Worth)&lt;br /&gt;
* Dennis Parker [[Special: Emailuser/dparker|Contact]]&lt;br /&gt;
* Chip Rosenthal [[Special: Emailuser/chip|Contact]]&lt;br /&gt;
* Brad Mouring [[Special: Emailuser/Bmouring|Contact]] (Moving to Austin by mid-June, likely earlier)&lt;br /&gt;
* Joel Greenberg [[Special: Emailuser/joelg|Contact]]&lt;br /&gt;
&lt;br /&gt;
==== Dallas (3/10) ====&lt;br /&gt;
* Philip White [[Special:Emailuser/pmw|Contact]]&lt;br /&gt;
* Stephen Shelton [[Special:Emailuser/stephenashelton|Contact]]&lt;br /&gt;
* Mark Rinaudo [[Special:Emailuser/Mrinaudo|Contact]]&lt;br /&gt;
&lt;br /&gt;
=== Mid-Atlantic ===&lt;br /&gt;
==== Virginia====&lt;br /&gt;
===== Virginia Tech (1/10) =====&lt;br /&gt;
* Lally Singh [[Special:Emailuser/lally|email]] -- yeah, if you're ordering anywhere in VA, lemme know.&amp;lt;br /&amp;gt;&lt;br /&gt;
===== Richmond (2/10)=====&lt;br /&gt;
* Philippe Gerard [[Special:Emailuser/feydreva|Contact]]&amp;lt;br/&amp;gt;&lt;br /&gt;
*Steve Watson mailto:ssw0213@gmail.com&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== New York ====&lt;br /&gt;
Status: 3/10 or 4/10&lt;br /&gt;
&lt;br /&gt;
* Bert Hartmann [http://wiki.openmoko.org/wiki/Special:Emailuser/BertHartm Contact me here] &amp;lt;br /&amp;gt;&lt;br /&gt;
* Michael Cole mailto:mjcole137@gmail.com &amp;lt;br /&amp;gt;&lt;br /&gt;
* Jake Thebault-Spieker (probably, may not be able to afford it) [http://wiki.openmoko.org/Spcial:Emailuser/Summatusmentis Contact me here] &amp;lt;br /&amp;gt;&lt;br /&gt;
* Remy Frerebeau  [http://wiki.openmoko.org/wiki/Special:Emailuser/Rfrerebe Contact me here] &amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== Maryland (2/10)====&lt;br /&gt;
* Paul Buede mailto:paul@buede.com &amp;lt;br /&amp;gt;&lt;br /&gt;
* Charles Lohr&lt;br /&gt;
* Alex (DC/Rosslyn; not 100% sure that will be able to afford it) [[Special:Emailuser/rakukin|Contact]]&lt;br /&gt;
&lt;br /&gt;
==== North Carolina (1/10)====&lt;br /&gt;
* Jason Sharpee [[Special:Emailuser/zonyl|Contact]] - Charlotte Metro area &amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Massachusetts ===&lt;br /&gt;
Status: 11/20&lt;br /&gt;
* Benjamin Moody [[Special:Emailuser/FloppusMaximus|Contact]]&lt;br /&gt;
&lt;br /&gt;
* Ken Young, Cambridge (Note, if we're not up to 10/10 on the day the Freerunner is announced, I'm going to drop out and order individually).[[Special:Emailuser/Dolson|Contact]]&lt;br /&gt;
&lt;br /&gt;
* Chris White (for 2) [[Special:Emailuser/Safire|Contact]]&lt;br /&gt;
&lt;br /&gt;
* Nick Dube - Pembroke, NH (Will also drop out if we do not have 10 by Freerunner release.) [http://wiki.openmoko.org/wiki/Special:Emailuser/Doobe01 Contact]&lt;br /&gt;
&lt;br /&gt;
* Justin Brzozoski - Worcester, MA area [[Special:Emailuser/Jabski|Contact]]&lt;br /&gt;
&lt;br /&gt;
* John Nicholson - Amherst, MA (Will also drop out if we do not have 10 by Freerunner release.) [[Special:Emailuser/nicklogan|Contact]]&lt;br /&gt;
&lt;br /&gt;
* Matthew Campbell - Worcester, MA [[Special:Emailuser/lifeisafractal|Contact]]&lt;br /&gt;
&lt;br /&gt;
* 1x Nathan Perry - Derry, NH [[Special:Emailuser/Servel333|Contact]]&lt;br /&gt;
&lt;br /&gt;
* Jeff Gold [[Special:Emailuser/jgold|Contact]]&lt;br /&gt;
&lt;br /&gt;
* Craig Allen [[Special:Emailuser/knodalyte|Contact]]&lt;br /&gt;
&lt;br /&gt;
=== Nevada ===&lt;br /&gt;
==== Reno/Sparks ====&lt;br /&gt;
Including Northwestern Nevada/ Northeastern California&lt;br /&gt;
Status: 1/10&lt;br /&gt;
* Tyrell Berry [[Special:Emailuser/Alawatsakima|Contact]]&lt;br /&gt;
&lt;br /&gt;
== UK ==&lt;br /&gt;
&lt;br /&gt;
* Stroller (Milton Keynes, can travel) &amp;lt;br /&amp;gt;mailto:stroller@stellar.eclipse.co.uk 01908 663 513. &amp;lt;br /&amp;gt;Thinks that breaking the UK up into regions - at least outside London - is silly. There are unlikely to be 10 people in $your_town who want a Freerunner, so some posting of Freerunners will surely be required; see [http://wiki.openmoko.org/wiki/Talk:GroupSales#Oxford the talk page]. This is the same cost anywhere in the UK.&lt;br /&gt;
&lt;br /&gt;
=== Scotland ===&lt;br /&gt;
==== Edinburgh ====&lt;br /&gt;
Status : 3/10&lt;br /&gt;
&lt;br /&gt;
* Joe Wells (Edinburgh) [http://wiki.openmoko.org/wiki/Special:Emailuser/jbw Contact]&lt;br /&gt;
* Dave Ball (Edinburgh) [http://wiki.openmoko.org/wiki/Special:Emailuser/Daveb Contact]&lt;br /&gt;
* Stuart MacKinnon(Livingston) &amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/hoagster Contact]&lt;br /&gt;
&lt;br /&gt;
=== England ===&lt;br /&gt;
&lt;br /&gt;
==== Hampshire ====&lt;br /&gt;
&lt;br /&gt;
Status: 16/20 at 2008-05-12&lt;br /&gt;
&lt;br /&gt;
http://www.hants.lug.org.uk/cgi-bin/wiki.pl?FreerunnerBulkBuy&lt;br /&gt;
&lt;br /&gt;
Willing to re-ship within the UK.&lt;br /&gt;
&lt;br /&gt;
(Sorry, we set up the page before we knew about this one)&lt;br /&gt;
&lt;br /&gt;
==== London ====&lt;br /&gt;
&lt;br /&gt;
Status : 11/10&lt;br /&gt;
&lt;br /&gt;
* Juergen Schinker &amp;lt;br /&amp;gt; mailto:ba1020@homie.homelinux.net&lt;br /&gt;
* aled &amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/aled Contact]&lt;br /&gt;
* Robert Piasek (actually in Southampton)&amp;lt;br /&amp;gt;  [http://wiki.openmoko.org/wiki/Special:Emailuser/Queen6 Contact]&lt;br /&gt;
* Tom Scholl (Cambridge, travel to London now and then anyway so could pick up) &amp;lt;br /&amp;gt; [mailto:thomasscholl@gmail.com]&lt;br /&gt;
* Weiss (Cambridge, could collect from London) &amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/Weiss Contact]&lt;br /&gt;
* Neil Bentley (in Wiltshire) [http://wiki.openmoko.org/wiki/Special:Emailuser/Ohnez Contact]&lt;br /&gt;
* rhn (one or two sets) &amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/rhn Contact]&lt;br /&gt;
* Tim Coggins&amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/sonicated Contact]&lt;br /&gt;
* Michele Mattioni (I'm based in Cambridge too, but if Tom can go to London I can grab the phone in Cambridge) &amp;lt;br /&amp;gt;[mailto:mattions@gmail.com]&lt;br /&gt;
* Johan Badenhorst (London - Can't believe it's almost here!) &amp;lt;br /&amp;gt;[mailto:ezuall@gmail.com]&lt;br /&gt;
* Ben F-W (Fulham, London) [http://wiki.openmoko.org/wiki/Special:Emailuser/benfw Contact]&lt;br /&gt;
&lt;br /&gt;
==== Oxford ====&lt;br /&gt;
&lt;br /&gt;
Idea to re-ship within the UK, see [http://wiki.openmoko.org/wiki/Talk:GroupSales#Oxford talk]&lt;br /&gt;
&lt;br /&gt;
Status : 2/10&lt;br /&gt;
&lt;br /&gt;
* James Olney &amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/Webjames Contact]&lt;br /&gt;
* David Pottage (actually in Reading)&amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/chrestomanci Contact]&lt;br /&gt;
&lt;br /&gt;
==== West Midlands ====&lt;br /&gt;
Status : 2/10&lt;br /&gt;
&lt;br /&gt;
* Mo Abrahams (Walsall) &amp;lt;br /&amp;gt; mailto:moabrahams@dashavoo.com&lt;br /&gt;
* Jonathan Spooner (Walsall)&lt;br /&gt;
&lt;br /&gt;
== Latvia ==&lt;br /&gt;
=== Riga ===&lt;br /&gt;
==== Riga ====&lt;br /&gt;
Status : 1/10&lt;br /&gt;
* Ilya &amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/VRGhost Contact]&lt;br /&gt;
&lt;br /&gt;
== Singapore ==&lt;br /&gt;
Status : 2/10&lt;br /&gt;
* Wee Kiam Peng [http://wiki.openmoko.org/wiki/Special:Emailuser/Jipi Contact]&lt;br /&gt;
* Chen Ruo Fei [http://wiki.openmoko.org/wiki/Special:Emailuser/Crf Contact]&lt;br /&gt;
&lt;br /&gt;
== Israel==&lt;br /&gt;
Status : 3/10&lt;br /&gt;
* Ofer Herman &amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/oferhe Contact]&lt;br /&gt;
* [http://wiki.openmoko.org/wiki/Special:Emailuser/Talba Talba]&lt;br /&gt;
* Dan &amp;lt;br /&amp;gt; [http://wiki.openmoko.org/wiki/Special:Emailuser/Da-x Contact]&lt;br /&gt;
&lt;br /&gt;
== Czech Republic ==&lt;br /&gt;
&amp;lt;div style=&amp;quot;text-align: center;&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Brněnská větev:''' Koordinátorem objednávání je Martin Šenkeřík [[User:Ohin | Kontakty na mě]]&lt;br /&gt;
&lt;br /&gt;
'''Pražská větev:''' Koordinátorem objednávání je Jan Mareš [[User:iVir | Kontakty na mě]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Základní informace ===&lt;br /&gt;
Jedná se o hromadnou objednávku Neo FreeRunner do České republiky, vzhledem k tomu, že balení po 10kusech je za $369 USD oproti $399 USD za kus a navíc přijde 10 obalů a sluchátek a ušetří se za poštovné '''A TO SE VYPLATÍ'''.&lt;br /&gt;
&lt;br /&gt;
=== Postup registrace a objednání ===&lt;br /&gt;
&amp;lt;center&amp;gt;'''Platí pro obě větve!'''&amp;lt;/center&amp;gt;&lt;br /&gt;
Zatím se provádí jenom krok 1, v okamžiku kdy budou známy konkrétnější informace o termínu zahájení prodeje, přejde se na body 2 a 3.&lt;br /&gt;
# Registraci provedete zápisem svého jména a kontaktu do patřičné větve odpovídající místu vašeho osobního převzítí telefonu. Můžete nabídnout distribuci do míst, které ještě nikdo neposkytuje.&lt;br /&gt;
# stanoví se lehce nadhodnocená částka (zatím to vypadá na 7800Kč za telefon, s debug boardem na 9800Kč), na bezpečné pokrytí očekávaných i neočekávaných výdajů spojených s objednávkou&lt;br /&gt;
# každý zájemce odešle tuto sumu na účet svého koordinátora, identifikuje se svým jménem a příjmením&lt;br /&gt;
# jakmile budou peníze nashromážděny, provede koordinátor objednávku tolika telefonů, kolik zájemců mu zašle peníze&lt;br /&gt;
# po obdržení balíku s telefony se vypočte finální částka za telefon, a případný přeplatek bude vrácen každému osobně při převzetí telefonu (lokální distributoři samozřejmě obdrží patřičný počet telefonů a peněz, aby mohly být předány dále)&lt;br /&gt;
# všem se dítko šťastně dopraví do rukou&lt;br /&gt;
*Stále přetrvává otazník nad objednávkou množství nedělitelného desíti.&lt;br /&gt;
&lt;br /&gt;
*[[Talk:GroupSales#Diskuze | Diskuse]]&lt;br /&gt;
*[[Talk:GroupSales#Dopl.C5.88uj.C3.ADc.C3.AD_informace | Doplňující informace]]&lt;br /&gt;
&lt;br /&gt;
=== Brno ===&lt;br /&gt;
&lt;br /&gt;
==== Distribuční schéma ====&lt;br /&gt;
&lt;br /&gt;
 '''[n]'''  n je počet kusů, bez n 1 kus&lt;br /&gt;
 '''[nD]''' [[Neo1973_Debug_Board_v3|debug board]] $99 USD + DPH (n počet kusů, bez n 1 kus)&amp;lt;br&amp;gt;&lt;br /&gt;
 ''Jednotlivé volby píšeme za jméno v [] a více voleb oddělujeme čárkou''&lt;br /&gt;
&lt;br /&gt;
&amp;lt;center&amp;gt;'''&amp;lt;font size=&amp;quot;3&amp;quot; color=&amp;quot;green&amp;quot;&amp;gt;Status : 18/2X10&amp;lt;/font&amp;gt;'''&amp;lt;/center&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*'''Martin Šenkeřík''' - [[User:Ohin | Kontakty na mě]]&lt;br /&gt;
**'''&amp;lt;span style=&amp;quot;color: blue&amp;quot;&amp;gt;Brno&amp;lt;/span&amp;gt;''':&lt;br /&gt;
***'''Radek Bartoň''' - [[Special:Emailuser/Blackhex|Contact]]&lt;br /&gt;
****'''&amp;lt;span style=&amp;quot;color: blue&amp;quot;&amp;gt;Frýdek-Místek&amp;lt;/span&amp;gt;''':&lt;br /&gt;
*****-&lt;br /&gt;
***'''Radek Machulka''' - [[Special:Emailuser/Werty|Contact]]&lt;br /&gt;
***'''Aleš Dvořák''' - [[Special:Emailuser/Setr|Contact]]&lt;br /&gt;
***'''Jozef Mlich [2, 1D]''' - [[Special:Emailuser/joejoe|Contact]]&lt;br /&gt;
***'''Martin Faltičko''' - [[Special:Emailuser/MafRaf|Contact]]&lt;br /&gt;
***'''Karel Volný''' - [[Special:Emailuser/kavol|Contact]]&lt;br /&gt;
****'''&amp;lt;span style=&amp;quot;color: blue&amp;quot;&amp;gt;Bratislava&amp;lt;/span&amp;gt;''':&lt;br /&gt;
*****'''František Horínek''' - [[Special:Emailuser/PipBoy2000|Contact]]&lt;br /&gt;
*****'''Martin Vyšný''' - [mailto:vysny@baka.sk Contact]&lt;br /&gt;
*****'''Tomáš Sirný''' - [[Special:Emailuser/Junckritter|Contact]]&lt;br /&gt;
*****'''Ján Janech''' - [[Special:Emailuser/Janik|Contact]]&lt;br /&gt;
******'''&amp;lt;span style=&amp;quot;color: blue&amp;quot;&amp;gt;SK/Žilina&amp;lt;/span&amp;gt;''':&lt;br /&gt;
******'''&amp;lt;span style=&amp;quot;color: blue&amp;quot;&amp;gt;SK/Piešťany&amp;lt;/span&amp;gt;''':&lt;br /&gt;
***'''Tom Varga''' - [[Special:Emailuser/Varg|Contact]]&lt;br /&gt;
***'''Petr Ondo [2]''' - [[Special:Emailuser/Votik|Contact]]&lt;br /&gt;
**'''&amp;lt;span style=&amp;quot;color: blue&amp;quot;&amp;gt;Zlín&amp;lt;/span&amp;gt;''':&lt;br /&gt;
***'''Martin Holec''' - [[Special:Emailuser/Martix|Contact]]&lt;br /&gt;
***'''Pavel Kovář''' - [[Special:Emailuser/Fox|Contact]]&lt;br /&gt;
****'''&amp;lt;span style=&amp;quot;color: blue&amp;quot;&amp;gt;Ostrava&amp;lt;/span&amp;gt;''':&lt;br /&gt;
*****'''Marian Krucina [D]''' - [[Special:Emailuser/oak|Contact]]&lt;br /&gt;
&lt;br /&gt;
=== Praha ===&lt;br /&gt;
&lt;br /&gt;
==== Distribuční schéma ====&lt;br /&gt;
&lt;br /&gt;
 '''[n]'''  n je počet kusů, bez n 1 kus&lt;br /&gt;
 '''[nD]''' [[Neo1973_Debug_Board_v3|debug board]] $99 USD + DPH (n počet kusů, bez n 1 kus)&amp;lt;br&amp;gt;&lt;br /&gt;
 ''Jednotlivé volby píšeme za jméno v [] a více voleb oddělujeme čárkou''&lt;br /&gt;
&lt;br /&gt;
&amp;lt;center&amp;gt;'''&amp;lt;font size=&amp;quot;3&amp;quot;&amp;gt;Status : 11&amp;lt;/font&amp;gt;'''&amp;lt;/center&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*'''Jan Mareš''' - [http://wiki.openmoko.org/wiki/User:iVir Contact]&lt;br /&gt;
**'''&amp;lt;span style=&amp;quot;color: blue&amp;quot;&amp;gt;Praha&amp;lt;/span&amp;gt;''':&lt;br /&gt;
***'''Martin Dvořák''' - [[Special:Emailuser/masca|Contact]]&lt;br /&gt;
***'''Roman Dergam [2]''' - [[Special:Emailuser/Dergam|Contact]](do poloviny června)&lt;br /&gt;
***'''Michal Bořek [D]''' - [http://wiki.openmoko.org/wiki/User:Mibo Kontakt]&lt;br /&gt;
****'''&amp;lt;span style=&amp;quot;color: blue&amp;quot;&amp;gt;Plzeň&amp;lt;/span&amp;gt;''':&lt;br /&gt;
*****-&lt;br /&gt;
***'''Michal Pěnka''' - [http://michal.penka.name/kontakt Contact]&lt;br /&gt;
****'''&amp;lt;span style=&amp;quot;color: blue&amp;quot;&amp;gt;Kolín&amp;lt;/span&amp;gt;''':&lt;br /&gt;
***'''Miloslav Machotka''' - [[Special:Emailuser/Machy|Contact]]&lt;br /&gt;
***'''David Kozub [D]''' - [[Special:Emailuser/Zub|Contact]] (Kdyby z Prahy seslo, volim Zlin jako fallback.)&lt;br /&gt;
***'''Milan Vontorčík''' - [[Special:Emailuser/Mvontorcik|Contact]]&lt;br /&gt;
***'''Vojtěch Vozáb''' - [mailto:vojtav@centrum.cz Contact]&lt;br /&gt;
**'''&amp;lt;span style=&amp;quot;color: blue&amp;quot;&amp;gt;Písek&amp;lt;/span&amp;gt;''':&lt;br /&gt;
***''' Luboš Podrázský''' - [[Special:Emailuser/zsman|Contact]]&lt;br /&gt;
&lt;br /&gt;
== Slovak Republic ==&lt;br /&gt;
[http://wiki.openmoko.org/wiki/GroupSales#Czech_Republic Spojeno s Czech Republic]&lt;br /&gt;
&lt;br /&gt;
== Croatia ==&lt;br /&gt;
Status : 10/10&lt;br /&gt;
* w00t - [[Special:Emailuser/W00t|Contact]]&lt;br /&gt;
* matija - [[Special:Emailuser/Matija.z|Contact]]&lt;br /&gt;
* valajbeg - [[Special:Emailuser/valajbeg|Contact]]&lt;br /&gt;
* kost - [[Special:Emailuser/kost|Contact]]&lt;br /&gt;
* mnalis - [[Special:Emailuser/mnalis|Contact]]&lt;br /&gt;
* tcavrag - [[Special:Emailuser/tcavrag|Contact]]&lt;br /&gt;
* slavus - [[Special:Emailuser/slavus|Contact]]&lt;br /&gt;
* bsevo - [[Special:Emailuser/bsevo|Contact]]&lt;br /&gt;
* amd64 - [[Special:Emailuser/SilverSpace|Contact]]&lt;br /&gt;
* v-v - [[Special:Emailuser/v-v|Contact]]&lt;br /&gt;
(maybe we should make one group for bosnia, croatia &amp;amp; serbia together?) [http://wiki.openmoko.org/index.php/Talk:GroupSales#Croatia the talk page]&lt;br /&gt;
&lt;br /&gt;
== Russia ==&lt;br /&gt;
=== Moscow ===&lt;br /&gt;
Status : 10/10&lt;br /&gt;
* 1x sinister - [[Special:Emailuser/sinister|Contact]]&lt;br /&gt;
* 1x ([[Image:MokoBox.jpg]] - advanced) shallburn - [[Special:Emailuser/shallburn|Contact]]&lt;br /&gt;
* 1x ([[Image:MokoBox.jpg]] - advanced) cracatau - [[Special:Emailuser/cracatau|Contact]] (actual location - Saint-Petersburg)&lt;br /&gt;
* 1x ([[Image:MokoBox.jpg]] - advanced) vadson - [[Special:Emailuser/vadson|Contact]]&lt;br /&gt;
* 1x ([[Image:MokoBox.jpg]] - advanced) Tallex - [[Special:Emailuser/tallex|Contact]]&lt;br /&gt;
* 1x ([[Image:MokoBox.jpg]] - advanced) mex3 - [[Special:Emailuser/mex3|Contact]]&lt;br /&gt;
* 1x Alexxy (with debug board if possible) - [[Special:Emailuser/Alexxy|Contact]] (Actual location - Saint-Petersburg)&lt;br /&gt;
* 1x pva (with debug board if possible) - [[Special:Emailuser/Pva|Contact]] (Moscow if matters)&lt;br /&gt;
* 2x (1x [[Image:MokoBox.jpg]] - advanced + 1x Base) cbou (Moscow) - [[Special:Emailuser/cbou|Contact]]&lt;br /&gt;
[[Category:Community]]&lt;br /&gt;
&lt;br /&gt;
== Belarus ==&lt;br /&gt;
=== Minsk ===&lt;br /&gt;
Status : 1/10&lt;br /&gt;
* 1x ([[Image:MokoBox.jpg]] - advanced) Const - [[Special:Emailuser/Const|Contact]]&lt;br /&gt;
[[Category:Community]]&lt;br /&gt;
&lt;br /&gt;
== Taiwan ==&lt;br /&gt;
=== Taipei ===&lt;br /&gt;
Status : 1/10&lt;br /&gt;
&lt;br /&gt;
* Cruz [http://wiki.openmoko.org/wiki/Special:Emailuser/cruz Contact]&lt;/div&gt;</summary>
		<author><name>Ojw</name></author>	</entry>

	<entry>
		<id>http://wiki.openmoko.org/wiki/Wishlist/Text_Input</id>
		<title>Wishlist/Text Input</title>
		<link rel="alternate" type="text/html" href="http://wiki.openmoko.org/wiki/Wishlist/Text_Input"/>
				<updated>2007-09-13T22:00:35Z</updated>
		
		<summary type="html">&lt;p&gt;Ojw: /* New input methods */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Current version supports input using [[Input Method|on screen keyboard]].&lt;br /&gt;
You can also use Bluetooth keyboards and with (battery) powered USB hub can also use USB keyboards.&lt;br /&gt;
&lt;br /&gt;
Near computer can also use networking over Bluetooth or USB and then ssh into device or run X11 programs remotely and thus use whatever input possibilities other computer supports.&lt;br /&gt;
&lt;br /&gt;
For further predictive text input information see: [http://en.wikipedia.org/wiki/Predictive_text Predictive text wikipedia]&lt;br /&gt;
&lt;br /&gt;
{{Wishlist}}&lt;br /&gt;
&lt;br /&gt;
===== New input methods =====&lt;br /&gt;
* [http://en.wikipedia.org/wiki/Dvorak_Simplified_Keyboard Dvorak] layout -- basically a 'skin' for the existing on-screen keyboard with a different key mapping&lt;br /&gt;
* [http://patrickbaudisch.com/publications/2007-Vogel-CHI07-Shift.pdf Shift]&lt;br /&gt;
* [http://www.inf.ufsc.br/~guy/text_input.html Another text input]&lt;br /&gt;
* [http://www.inference.phy.cam.ac.uk/dasher/ Dasher] ([http://en.wikipedia.org/wiki/Dasher Wikipedia link]): A side-scrolling probabalistic text entry method that's well suited to stylus use. One disadvantage is that it makes little use of muscle memory so you need to pay close attention to the screen while entering text. An andvatage is that it is not limeted to english text, but can be used with any language/alphabet. A video presentation is also [http://video.google.com/videoplay?docid=5078334075080674416 available]&lt;br /&gt;
* [http://www.micropp.se/openmoko/ Finger splash] (Idea presented on [http://lists.openmoko.org/pipermail/community/2007-March/003984.html OpenMoko community mailing list])&lt;br /&gt;
* [http://www.strout.net/info/ideas/hexinput.html HexInput]: A keyboard-style input method optimized for stylus use.&lt;br /&gt;
* [http://www.exideas.com/ME/faq.html MessagEaseST] ([http://www.youtube.com/watch?v=zFf9Mw3nlsY YouTube demo])&lt;br /&gt;
* [http://en.wikipedia.org/wiki/Morse_code Morse Code]&lt;br /&gt;
* [http://mrl.nyu.edu/projects/quikwriting/ Quikwriting]&lt;br /&gt;
* [http://www.shapewriter.com/ Shape Writing]&lt;br /&gt;
* [http://lists.openmoko.org/pipermail/openmoko-devel/2007-May/000912.html Werner Almesberger's finger input suggestion] ([http://www.acc.umu.se/~cm/inw.pdf Draft layout as pdf] [http://www.almesberger.net/misc/openmoko/inwheel-1.tar.gz Prototype])&lt;br /&gt;
* [http://www.hellkvist.org/software/ XMerlin]&lt;br /&gt;
* [http://img.qj.net/uploads/articles_module/23876/12433_newkey1.jpg Danzeff Keyboard] A Keyboard designed for PSP, using the analog-stick&lt;br /&gt;
* [http://almien.co.uk/Keypad/ Keypad] - drawing letter shapes on a 9-way keypad&lt;br /&gt;
&lt;br /&gt;
===== Patented input methods =====&lt;br /&gt;
* [http://depts.washington.edu/ewrite/ EdgeWrite], a unistroke character/word input method (reminiscent of Palm's Graffiti)&lt;br /&gt;
* [http://www.fitaly.com/wince/pocketpcfitaly.htm Fitaly Keyboard]&lt;br /&gt;
* [http://images.overstock.com/f/102/3117/8h/www.overstock.com/images/products/L10480944.jpg Input method used by Garmin] (Maybe patented?)&lt;br /&gt;
* [http://www.speedscript.biz/ SpeedScript]&lt;br /&gt;
* [http://en.wikipedia.org/wiki/T9_%28predictive_text%29 T9] See http://www.tegic.com/about/patent-list.asp for legally addability for users in some countries. &lt;br /&gt;
* [http://www.tengo.net/ TenGO]&lt;br /&gt;
* [http://www.agiletext.com/ AgileText]&lt;br /&gt;
&lt;br /&gt;
===== Text input method surveys =====&lt;br /&gt;
&lt;br /&gt;
Here are some surveys / overviews of text entry methods that I turned up using Google:&lt;br /&gt;
* [http://www.dcs.gla.ac.uk/~jhw/text.html Text entry] A web page with a survey of text entry methods by John Williamson&lt;br /&gt;
* Poika Isokoski, [http://www.cs.uta.fi/~poika/g/g.html A Minimal Device-Independent Text Input Method], has a chapter listing existing approaches ca. 1999&lt;br /&gt;
* Trevor's Trinkets, [http://trevors-trinkets.blogspot.com/2007/07/five-finger-keyboards.html Five Finger Keyboards]&lt;br /&gt;
&lt;br /&gt;
===== Other ways to enter text =====&lt;br /&gt;
* Once there is hardware with multi-touch screen support, [[Wishlist:Spell weaving|gesturing with 2-3 fingers]] might offer interesting possibilities.&lt;br /&gt;
* Use [[VoiceText|voice to dictate text]]&lt;br /&gt;
* Use [[Optical Character Recognition]] and [[Barcode Recognition]] on an image that exists on the file system or via a picture that has just been taken (even if it is a temporary picture only for this purpose).&lt;br /&gt;
* [http://en.wikipedia.org/wiki/Speedwords Dutton Speedwords]&lt;br /&gt;
* I thought long and hard how to make a keyboard fit on the Neo's screen with keys big enough for fingertips.  My idea was to split the keyboard in half similar to how a Natural keyboard does, and use the Aux button to switch between the current displayed half.  I will prepare a sample when I have time.&lt;br /&gt;
&lt;br /&gt;
===== Interesting hardware input devices =====&lt;br /&gt;
* [http://mobilitysite.com/2007/02/small-compact-bluetooth-keyboard/ Credit-card sized bluetooth keyboard] (Note: apparently supports only Bluetooth Serial Port Profile and not HID; supportable, of course, perhaps using existing user space daemon [http://handhelds.org/moin/moin.cgi/kbdd kbdd] Link Fixed)&lt;br /&gt;
* [http://www.thinkgeek.com/computing/input/8193/ Bluetooth laser virtual keyboard] eventually could be built into the phone once more miniaturized.&lt;br /&gt;
* [http://www.thinkgeek.com/computing/input/6c82/ Frogpad]&lt;br /&gt;
* [http://www.spartechnik.de/start.htm?d_Keyb_Mini_Mini_Bluetooth_Keyboard_im_Scheckkartenformat.htm Freedom Mini], apparently not manufactured anymore but still sold and works out of the box with Bluez' hidd. Has a spring-loaded hinge for squeezing a phone/PDA against the keyboard; seems like a Neo could attach nicely but don't have one to actually test. --[[User:Mjr|Mjr]] 10:30, 15 May 2007 (CEST)&lt;br /&gt;
* [http://www.3pointd.com/20070518/finger-mounted-3d-mouse-from-undergrads/ experimental ring-mouse]&lt;br /&gt;
* Livescribe's [http://www.livescribe.com/sneakpeek/index.html smartpen]; could act as touchscreen pen + laser + regular pen + &amp;quot;intelligent&amp;quot; pen + OCR device. See [http://www.pikesoft.com/blog/index.php?itemid=189 this] blog post.&lt;br /&gt;
&lt;br /&gt;
[[Category:User Interfaces]]&lt;/div&gt;</summary>
		<author><name>Ojw</name></author>	</entry>

	<entry>
		<id>http://wiki.openmoko.org/wiki/Talk:GPS-Trail</id>
		<title>Talk:GPS-Trail</title>
		<link rel="alternate" type="text/html" href="http://wiki.openmoko.org/wiki/Talk:GPS-Trail"/>
				<updated>2007-08-02T10:34:23Z</updated>
		
		<summary type="html">&lt;p&gt;Ojw: /* Few different ideas. */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The Openstreetmap page talks about anonymizing results, but I don't see how this can happen. OSM currently requires a login to upload data, and it is necessary that they be able to prove who uploaded what. If they don't have this transparency, they will not survive the first lawsuit from any mapping company that wants to shut them down (and I imagine they probably all do). --ldarwin&lt;br /&gt;
&lt;br /&gt;
What I'd like to see is to have the routing application using OSM data(Maybe something based on navit) ask you if you want to start logging when you go off of a known road. Maybe even have you touch the screen everytime you switch roads after that. With that feature I could see OSM growing very quickly. --dcsmith&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
An anonymising proxy would simply work by having all the GPS tracklogs uploaded to it, from users wishing to stay anonymous.&lt;br /&gt;
These would already have the tracks anonymised by chopping off the ends at a user-configurable random distance from 'home/...'.&lt;br /&gt;
Then, up to a month later (randomly), under its own username the proxy would connect to OSM, and upload each track.&lt;br /&gt;
&lt;br /&gt;
These are _not_ roads. They are merely collections of GPS points.&lt;br /&gt;
&lt;br /&gt;
There would need to be some way to track back GPS points to the originator - it would probably be around the right balance to have the OSM administrators able to see psuedonymised IDs - which would let them see a group of tracks, and then the proxy admin could be contacted by them if they needed to contact the original sender for some reason. --[[User:Speedevil|Speedevil]] 12:10, 8 June 2007 (CEST)&lt;br /&gt;
&lt;br /&gt;
== Few different ideas. ==&lt;br /&gt;
&lt;br /&gt;
First, I see OpenMoko as an easy way to get information about routes. If we could have it record a track, and allow you to annotate it by voice, that would be very useful. If we can get this to be seamless, it definitely makes the map creating job so much easier.&lt;br /&gt;
&lt;br /&gt;
Second, I can see Navigating and mapping as being something that should be fairly straight forward. Maps should be simple image displays, which will be amazing; but the neat thing will be true navigation, and I'm not sure how much power this takes.&lt;br /&gt;
&lt;br /&gt;
I've joined OSM and have started to map streets in areas that I know of my city. I hope to help out with software on the OpenMoko side too, so that we can really get good use out of the device. [[User:Historybuff|Historybuff]] 20:55, 28 July 2007 (CEST)&lt;br /&gt;
&lt;br /&gt;
The idea is for the OpenStreetMap application to be a minimal, small application with very low resource usages, that the user who does not want a mapping program installed uses.&lt;br /&gt;
&lt;br /&gt;
If hundreds, or thousands of users can be convinced simply to leave it running in the background, uploading GPS trails anonymously when they plug into a network, this helps openstreetmap lots.&lt;br /&gt;
&lt;br /&gt;
Having a very small, lean logging application in the background all the time using 0.5M probably won't be a problem for most users. Having a full-featured mapper using 5M or more of memory may get killed as a resource hog.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
There also needs to be a seperate Mapping program.&lt;br /&gt;
This will support displaying maps (OSM and any other available), displaying track logs from this program, and perhaps even optionally being able to upload data entered on streets and streetnames, ... to OSM.&lt;br /&gt;
&lt;br /&gt;
This would be considerably larger than the OpenStreetMap application - this probably needs renamed.&lt;br /&gt;
Navigation isn't the problem.&lt;br /&gt;
Data is the problem.&lt;br /&gt;
Also there is a very small portion of the world (at the moment) where OSM data is suitable for routing.&lt;br /&gt;
&lt;br /&gt;
--[[User:Speedevil|Speedevil]] 22:32, 28 July 2007 (CEST)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
How would the anonymous application for getting data know that the user is on the road and not simply walking in a building or a mall?&lt;br /&gt;
&lt;br /&gt;
Also, I'd like to be able to map bike trails and other outdoor walking trails and have them identified as such.&lt;br /&gt;
&lt;br /&gt;
--[[User:Gtkp|Gtkp]] 07:06, 29 July 2007 (CEST)&lt;br /&gt;
&lt;br /&gt;
: How about:&lt;br /&gt;
:* Put the device into &amp;quot;bike&amp;quot; mode when you're on the bike, &amp;quot;car&amp;quot; mode when you're driving, etc. &lt;br /&gt;
:* It shows you a map specific to your mode -- so in bike mode, it shows cycle paths and cycle parking on the map, and the routing software doesn't try to use motorways&lt;br /&gt;
:* Stored the mode in tracklogs -- the logfile then shows that a particular route can be traversed by a bike in a particular direction (without having to do any further tagging of the street)&lt;br /&gt;
:* If someone later travels that route in a different mode of transport, different direction, etc., the route can be upgraded to show that it's usable by both classes of vehicle&lt;br /&gt;
: [[User:Ojw|Ojw]] 12:34, 2 August 2007 (CEST)&lt;/div&gt;</summary>
		<author><name>Ojw</name></author>	</entry>

	</feed>