<?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=David+Hicks&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=David+Hicks&amp;feedformat=atom"/>
		<link rel="alternate" type="text/html" href="http://wiki.openmoko.org/wiki/Special:Contributions/David_Hicks"/>
		<updated>2013-05-25T20:18:14Z</updated>
		<subtitle>User contributions</subtitle>
		<generator>MediaWiki 1.19.6</generator>

	<entry>
		<id>http://wiki.openmoko.org/wiki/Import_Vcf_Contacts</id>
		<title>Import Vcf Contacts</title>
		<link rel="alternate" type="text/html" href="http://wiki.openmoko.org/wiki/Import_Vcf_Contacts"/>
				<updated>2008-09-10T14:33:46Z</updated>
		
		<summary type="html">&lt;p&gt;David Hicks: Add ASU addressbook purging details&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Import for 2007.2 ==&lt;br /&gt;
=== Basic Information ===&lt;br /&gt;
&lt;br /&gt;
Neo FreeRunner uses Evolution data server (eds) to save contacts. &lt;br /&gt;
However, the specific version used differs from what is probably used on your desktop (if you have Evolution installed).&lt;br /&gt;
&lt;br /&gt;
You ''cannot'' copy your addressbook.db from your desktop to Neo ([http://docs.openmoko.org/trac/ticket/1119 bug 1119]).&lt;br /&gt;
&lt;br /&gt;
=== Import and Manage Scripts ===&lt;br /&gt;
&lt;br /&gt;
If you want to import your old contacts to the Neo you could use this script:&lt;br /&gt;
&lt;br /&gt;
[http://www.smurfy.de/files/neo/manage-contacts Manage Contacts script] [http://www.placard.fr.eu.org/~roland/tmp/manage-contacts.py mirror]&lt;br /&gt;
&lt;br /&gt;
If you first want to remove all existing contacts you could use this script.&lt;br /&gt;
&lt;br /&gt;
[http://www.smurfy.de/files/neo/remove_all_contacts remove all script]&lt;br /&gt;
&lt;br /&gt;
If you have all contacts in seperate vcf files and just want to import all at once:&lt;br /&gt;
&lt;br /&gt;
[http://www.smurfy.de/files/neo/ac Simple script]&lt;br /&gt;
&lt;br /&gt;
[http://www.smurfy.de/files/neo/import_contacts Simple script for one big contactsfile]&lt;br /&gt;
&lt;br /&gt;
(please add a .py after the filename, sorry my hoster gives an error if i link to .py files, even .py.txt)&lt;br /&gt;
&lt;br /&gt;
In the simple scripts you need to add the following lines&lt;br /&gt;
 ps = os.popen ('ps auxwwwwe | grep -m 1 DBUS_SESSION_BUS_ADDRESS')&lt;br /&gt;
 l = ps.read ()&lt;br /&gt;
 r = re.compile ('DBUS_SESSION_BUS_ADDRESS=(\S+)')&lt;br /&gt;
 m = r.search (l)&lt;br /&gt;
 a = m.expand ('\\1')&lt;br /&gt;
 os.environ ['DBUS_SESSION_BUS_ADDRESS'] = a&lt;br /&gt;
&lt;br /&gt;
=== Exporting old contacts to VCard format ===&lt;br /&gt;
&lt;br /&gt;
To use the manage Script you need your Contacts in VCF format.&lt;br /&gt;
&lt;br /&gt;
# on nokia phones i used the nokia phone manager (long time ago)&lt;br /&gt;
# on windows mobile phones you could use active sync to sync with Outlook and then use a Outlook export plugin to export as vcf&lt;br /&gt;
# on lg phones the backup function to memory card creates one file with multiple VCards.&lt;br /&gt;
&lt;br /&gt;
=== Exporting from Outlook / ActiveSync to VCF ===&lt;br /&gt;
&lt;br /&gt;
Doing a quick google I was unable to find a free export plugin for outlook (they all seem to want between $19.95 and $49), so I put together some quick-and-dirty VB code to do it. To use it, Open Outlook, then open the VB editor by pressing ALT-F11, Insert a module, and paste in the following. Change &amp;quot;Z:\Openmoko\contacts&amp;quot; to wherever you want your vcf files saved (should be an existing, empty directory), and press F5 to run it.&lt;br /&gt;
&lt;br /&gt;
'''Code:'''&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Sub ExportContactsToVCF()&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
    'Cheap and nasty way to export All Contacts to VCF files. &lt;br /&gt;
    'By Dale Maggee, antisol (at) earthling (dot) net&lt;br /&gt;
&lt;br /&gt;
    Dim CN As ContactItem&lt;br /&gt;
    Dim NS As NameSpace&lt;br /&gt;
    Dim Fld As MAPIFolder    &lt;br /&gt;
&lt;br /&gt;
    Set NS = Application.GetNamespace(&amp;quot;MAPI&amp;quot;)&lt;br /&gt;
    Set Fld = NS.GetDefaultFolder(olFolderContacts)     &lt;br /&gt;
&lt;br /&gt;
    For Each CN In Fld.Items&lt;br /&gt;
        Debug.Print CN.FullName&lt;br /&gt;
        CN.SaveAs &amp;quot;z:\Openmoko\contacts\&amp;quot; &amp;amp; CN.FullName &amp;amp; &amp;quot;.vcf&amp;quot;, olVCard&lt;br /&gt;
    Next CN&lt;br /&gt;
&lt;br /&gt;
    MsgBox &amp;quot;Done!&amp;quot;&lt;br /&gt;
&lt;br /&gt;
End Sub&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
voila! you now have multiple VCF files in whatever directory you chose, suitable to be imported by the python script below.&lt;br /&gt;
&lt;br /&gt;
=== Usage ===&lt;br /&gt;
&lt;br /&gt;
The script is for the 2007.2 Version (default install on Neo FreeRunner), not for Qtopia&lt;br /&gt;
&lt;br /&gt;
You need Python to use this script so do a&lt;br /&gt;
&lt;br /&gt;
 opkg install python-dbus&lt;br /&gt;
&lt;br /&gt;
to install python and the python dbus module&lt;br /&gt;
&lt;br /&gt;
==== Manage Contacts Script ====&lt;br /&gt;
&lt;br /&gt;
'''This script needs all contacts in one big file'''&lt;br /&gt;
&lt;br /&gt;
'''You also could run this script on a ssh session!'''&lt;br /&gt;
&lt;br /&gt;
# Copy your big contacts file (contacts.txt) to your Neo&lt;br /&gt;
# Copy script to your Neo&lt;br /&gt;
# Connect via ssh to your Neo&lt;br /&gt;
# Fix special chars in your contacts file with you favorite text editor&lt;br /&gt;
# To import the file run on the SSH shell:&lt;br /&gt;
&lt;br /&gt;
 python manage-contacts.py load &amp;lt; contacts.txt&lt;br /&gt;
&lt;br /&gt;
# For a backup your existing contacts on the Neo&lt;br /&gt;
&lt;br /&gt;
 python manage-contacts.py dump &amp;gt; contacts.txt&lt;br /&gt;
&lt;br /&gt;
==== Simple Script ====&lt;br /&gt;
&lt;br /&gt;
'''You must run the script in the OM Terminal, not over ssh'''&lt;br /&gt;
&lt;br /&gt;
The script does a listdir and imports ALL files it found in that dir. (i'm a bad python programmer)&lt;br /&gt;
&lt;br /&gt;
# Copy all vcf files to a separate directory on my freerunner&lt;br /&gt;
# Copy the ac script to the parent directory also on my freerunner&lt;br /&gt;
# Have the contacts program running (so you have eds running too)&lt;br /&gt;
# Go to the terminal on the freerunner and type in the vcf directory: &amp;quot;python ../ac&amp;quot; (root@om-gta02:~/vcf# python ../ac)&lt;br /&gt;
## Note: '''You must call the script in the OM terminal''' not via Bluetooth or USB or you get a dbus error. Using &amp;quot;dbus-launch python ../ac&amp;quot; doesn't work either.&lt;br /&gt;
# Done :D&lt;br /&gt;
&lt;br /&gt;
==== Troubleshooting ====&lt;br /&gt;
* Make sure you have python and python-dbus installed&lt;br /&gt;
* Make sure you have no illegal chars (utf) in the filename and inside the vcf files. (I had problems with Ü,Ä etc)&lt;br /&gt;
** The characters seem to work if you convert them from =C3=A4 type of format to proper UTF-8, and the vcards also specify UTF-8 charset. you cannot use other charsets besides UTF-8 since they are delivered via DBus which does not allow others.&lt;br /&gt;
* Only vcf files should be in your current directory so do a ../ac.&lt;br /&gt;
* You must call the script in the OM terminal not via Bluetooth or USB. If you do so a dbus error occur&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Authors ===&lt;br /&gt;
* Simple script by smurfy - phil &amp;lt;openmoko at smurfy.de&amp;gt;&lt;br /&gt;
* Manage Contacts script by Roland Mas &amp;lt;lolando at debian.org&amp;gt;&lt;br /&gt;
* Remove all Contacts script / simple script for one big file by Andreas Dalsgaard &amp;lt;andreas.dalsgaard at gmail.com&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Thanks to [[Import_Sim_Contacts]] for the original Python Script.&lt;br /&gt;
&lt;br /&gt;
== Import for ASU/Qtopia ==&lt;br /&gt;
The Qtopia addressbook application supports import of VCF files out of the box. However, since there is a bug, if there are non-ASCII characters in your contacts you cannot use the version 3 format, otherwise you get multibyte UTF-8 characters mangled. Use the version 2.1 to get the encoding stated explicitly and thus characters imported correctly. But because there is another bug, when using version 2.1 vCards, the addressbook eats up all memory (and potentionally crashes the system) on ''some'' vCards with multiline entries.&lt;br /&gt;
&lt;br /&gt;
If you're connected via SSH, run the following command first:&lt;br /&gt;
  export DISPLAY=:0&lt;br /&gt;
&lt;br /&gt;
''(So that the addressbook will show on your phone. If you do not that and try to run addressbook locally on your computer display, you won't be able to use the application since the needed buttons will not show.)''&lt;br /&gt;
&lt;br /&gt;
Then you can simply run:&lt;br /&gt;
  addressbook path_to_vCards_file_to_import.vcf&lt;br /&gt;
&lt;br /&gt;
You will be asked if you want to import the contacts form addressbook.vcf (the contact name will be taken from the &amp;quot;N:&amp;quot; vCard field).&lt;br /&gt;
&lt;br /&gt;
To import a huge number of contacts, single .vcf files can be merged together using cat *.vcf &amp;gt; all.vcf, than import all.vcf&lt;br /&gt;
&lt;br /&gt;
''Tip: If you want to prevent crashing your system if the memory leak occurs, set some limit on memory available to use, so that only the addressbook application dies after reaching the limit. I.e. prior to running the import, do something like:''&lt;br /&gt;
  ulimit -v 50000&lt;br /&gt;
&lt;br /&gt;
If the above does not work, here are the original import guidelines:&lt;br /&gt;
&lt;br /&gt;
To import your address book from VCard format (ASU/&amp;lt;=Qtopia 4.3.2-080808 snapshot):&lt;br /&gt;
  LD_LIBRARY_PATH=/opt/Qtopia/lib /opt/Qtopia/bin/addressbook /home/root/addressbook.vcf&lt;br /&gt;
&lt;br /&gt;
To import your address book from VCard format (&amp;gt;=Qtopia 4.3.2 stable):&lt;br /&gt;
  LD_LIBRARY_PATH=/opt/Nokia/Qtopia/lib /opt/Nokia/Qtopia/bin/addressbook /home/root/addressbook.vcf&lt;br /&gt;
&lt;br /&gt;
===Mass Delete===&lt;br /&gt;
&lt;br /&gt;
The Qtopia addressbook doesn't seem to have a delete all function, which means that botching a vcf import is a painful process to undo through the phone gui.&lt;br /&gt;
&lt;br /&gt;
If you want to delete your entire addressbook or do other mass edits then you'll need access to a command line or GUI SQLite client (SQLite Database Browser seems to be a good, free one, though the SQLite command line client should be fine). Shutdown Qtopia and use the client you have chosen to open up /home/root/Applications/qtopia_sqlite.db&lt;br /&gt;
&lt;br /&gt;
Important tables - &lt;br /&gt;
{|cellspacing=&amp;quot;0&amp;quot; border=&amp;quot;1&amp;quot; cellpadding=&amp;quot;5&amp;quot;&lt;br /&gt;
| contacts&lt;br /&gt;
| Contact names and other descriptive information, plus a unique id (recid)&lt;br /&gt;
|-&lt;br /&gt;
| contactphonenumbers&lt;br /&gt;
| A list of contact phone numbers matched to recid&lt;br /&gt;
|-&lt;br /&gt;
| contactaddresses&lt;br /&gt;
| Links address information to recid&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
Restart Qtopia when you're done and you should have a reset addressbook.&lt;br /&gt;
[[Category:Advanced End User]]&lt;/div&gt;</summary>
		<author><name>David Hicks</name></author>	</entry>

	<entry>
		<id>http://wiki.openmoko.org/wiki/Talk:Import_Vcf_Contacts</id>
		<title>Talk:Import Vcf Contacts</title>
		<link rel="alternate" type="text/html" href="http://wiki.openmoko.org/wiki/Talk:Import_Vcf_Contacts"/>
				<updated>2008-09-10T14:14:24Z</updated>
		
		<summary type="html">&lt;p&gt;David Hicks: /* Delete all script for ASU? */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''Exporting your contacts from Thunderbird'''&lt;br /&gt;
&lt;br /&gt;
Get &amp;quot;MoreFunctionsForAddressBook&amp;quot; from &lt;br /&gt;
http://nic-nac-project.de/~kaosmos/morecols-en.html&lt;br /&gt;
&lt;br /&gt;
Install the downloaded *.xpi file in Thunderbird.&lt;br /&gt;
Export your address books to a file in Vcf format.&lt;br /&gt;
&amp;quot;scp&amp;quot; the text file containing your contacts to somewhere in your phone.&lt;br /&gt;
run phyton script. &lt;br /&gt;
Works beautifully!.&lt;br /&gt;
&lt;br /&gt;
This can be expanded to a howto. Let me know what you think.&lt;br /&gt;
Cheers, Saul&lt;br /&gt;
&lt;br /&gt;
== Import for ASU/Qtopia ==&lt;br /&gt;
&lt;br /&gt;
If Contacts loads but no confirm dialogue appears try renaming the file to .vcf.&amp;lt;br&amp;gt; &lt;br /&gt;
I was trying to do this with a .txt file and changing it to .vcf made it work as described.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Delete all script for ASU? ==&lt;br /&gt;
&lt;br /&gt;
The remove all script returns an error on ASU - &lt;br /&gt;
dbus.exceptions.DBusException: org.freedesktop.DBus.Error.Spawn.ExecFailed: dbus-launch failed to autolaunch D-Bus session: Autolaunch requested, but X11 support not compiled in.&lt;br /&gt;
&lt;br /&gt;
is there an ASU friendly version?&lt;br /&gt;
&lt;br /&gt;
Edit - Qtopia uses an SQLite database and that should be edited to achieve this.&lt;/div&gt;</summary>
		<author><name>David Hicks</name></author>	</entry>

	<entry>
		<id>http://wiki.openmoko.org/wiki/Talk:Import_Vcf_Contacts</id>
		<title>Talk:Import Vcf Contacts</title>
		<link rel="alternate" type="text/html" href="http://wiki.openmoko.org/wiki/Talk:Import_Vcf_Contacts"/>
				<updated>2008-09-08T15:19:49Z</updated>
		
		<summary type="html">&lt;p&gt;David Hicks: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''Exporting your contacts from Thunderbird'''&lt;br /&gt;
&lt;br /&gt;
Get &amp;quot;MoreFunctionsForAddressBook&amp;quot; from &lt;br /&gt;
http://nic-nac-project.de/~kaosmos/morecols-en.html&lt;br /&gt;
&lt;br /&gt;
Install the downloaded *.xpi file in Thunderbird.&lt;br /&gt;
Export your address books to a file in Vcf format.&lt;br /&gt;
&amp;quot;scp&amp;quot; the text file containing your contacts to somewhere in your phone.&lt;br /&gt;
run phyton script. &lt;br /&gt;
Works beautifully!.&lt;br /&gt;
&lt;br /&gt;
This can be expanded to a howto. Let me know what you think.&lt;br /&gt;
Cheers, Saul&lt;br /&gt;
&lt;br /&gt;
== Import for ASU/Qtopia ==&lt;br /&gt;
&lt;br /&gt;
If Contacts loads but no confirm dialogue appears try renaming the file to .vcf.&amp;lt;br&amp;gt; &lt;br /&gt;
I was trying to do this with a .txt file and changing it to .vcf made it work as described.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Delete all script for ASU? ==&lt;br /&gt;
&lt;br /&gt;
The remove all script returns an error on ASU - &lt;br /&gt;
dbus.exceptions.DBusException: org.freedesktop.DBus.Error.Spawn.ExecFailed: dbus-launch failed to autolaunch D-Bus session: Autolaunch requested, but X11 support not compiled in.&lt;br /&gt;
&lt;br /&gt;
is there an ASU friendly version?&lt;/div&gt;</summary>
		<author><name>David Hicks</name></author>	</entry>

	<entry>
		<id>http://wiki.openmoko.org/wiki/Openmoko_Local_Groups:_London</id>
		<title>Openmoko Local Groups: London</title>
		<link rel="alternate" type="text/html" href="http://wiki.openmoko.org/wiki/Openmoko_Local_Groups:_London"/>
				<updated>2008-08-01T11:11:57Z</updated>
		
		<summary type="html">&lt;p&gt;David Hicks: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Welcome to OpenMoko London!&lt;br /&gt;
&lt;br /&gt;
Beer and Neo anyone?&lt;br /&gt;
&lt;br /&gt;
{|border=1&lt;br /&gt;
!Name (IRC nick)&lt;br /&gt;
!Skills&lt;br /&gt;
!Interest&lt;br /&gt;
!Location&lt;br /&gt;
!Device owned&lt;br /&gt;
|-&lt;br /&gt;
|[[User:jptmoore|John Moore]]&lt;br /&gt;
|C/Scheme&lt;br /&gt;
|Application development&lt;br /&gt;
|Pinner&lt;br /&gt;
|[[Image: Moko.jpg|center]]&lt;br /&gt;
|-&lt;br /&gt;
|Alex&lt;br /&gt;
|Java,Perl,Python&lt;br /&gt;
|User &amp;amp; developer&lt;br /&gt;
|Hampshire&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|[[User:Phlash|Phil Ashby]]&lt;br /&gt;
|C/C++/Java /Embedded/Hardware&lt;br /&gt;
|Kernel &amp;amp; Application development&lt;br /&gt;
|Felixstowe&lt;br /&gt;
|[[Image: Moko.jpg|center]]&lt;br /&gt;
|-&lt;br /&gt;
|John Cass&lt;br /&gt;
|Java,C&lt;br /&gt;
|User &amp;amp; developer&lt;br /&gt;
|London&lt;br /&gt;
|[[Image: Moko.jpg|center]]&lt;br /&gt;
|-&lt;br /&gt;
|[[User:TonyGarnockJones|Tony Garnock-Jones]] (tonyg)&lt;br /&gt;
|C, assembly, Erlang, Scheme, ML, Haskell, Smalltalk, ...&lt;br /&gt;
|User &amp;amp; developer&lt;br /&gt;
|London&lt;br /&gt;
|[[Image: Moko.jpg|center]]&lt;br /&gt;
|-&lt;br /&gt;
|[[User:ThomasWood|Thomas Wood/OpenedHand]]&lt;br /&gt;
|C, GTK+ developer&lt;br /&gt;
|User &amp;amp; developer&lt;br /&gt;
|London&lt;br /&gt;
|[[Image: Moko.jpg|center]] [[Image: MokoBox.jpg|center]] + GTA02 (FreeRunner Prototype)&lt;br /&gt;
|-&lt;br /&gt;
|[[User:Stephmw|Steph Meslin-Weber]]&lt;br /&gt;
|Java (J2ME), C, User Experience, Interface prototyping&lt;br /&gt;
|User, developer and general busybody&lt;br /&gt;
|London&lt;br /&gt;
|-&lt;br /&gt;
|[[User:WebJames|James Olney]]&lt;br /&gt;
|General experience&lt;br /&gt;
|User&lt;br /&gt;
|Oxford&lt;br /&gt;
|Wanted Freerunner perhaps get into a 10pack group]&lt;br /&gt;
|-&lt;br /&gt;
|[[User:chrestomanci|David Pottage]]&lt;br /&gt;
|Perl, Java (J2se), C&lt;br /&gt;
|User &amp;amp; developer&lt;br /&gt;
|Reading&lt;br /&gt;
|Freerunner&lt;br /&gt;
|-&lt;br /&gt;
|[[User:vermoos|Michael Nandris]]&lt;br /&gt;
|Python/Plone ethusiast, interest in DPA (1998)&lt;br /&gt;
|User, developer&lt;br /&gt;
|London, Camden&lt;br /&gt;
|Wanted Freerunner perhaps get into a 10pack group]&lt;br /&gt;
|-&lt;br /&gt;
|[[User:Weiss|Weiss]]&lt;br /&gt;
|C, GTK+, ARM Assembly, Perl, TCL&lt;br /&gt;
|User, developer&lt;br /&gt;
|Cambridge&lt;br /&gt;
|Wanted Freerunner [perhaps get into a 10pack group]&lt;br /&gt;
|-&lt;br /&gt;
|[[User:TimW|TimW]]&lt;br /&gt;
|C++&lt;br /&gt;
|User, developer&lt;br /&gt;
|Pinner&lt;br /&gt;
|Freerunner&lt;br /&gt;
|-&lt;br /&gt;
|[[User:Menno|Menno Smits]]&lt;br /&gt;
|Python, C, GTK+&lt;br /&gt;
|User, apps development &lt;br /&gt;
|London&lt;br /&gt;
|Freerunner&lt;br /&gt;
|-&lt;br /&gt;
|[[User:David_Hicks|Dave]]&lt;br /&gt;
|C, SSL/TLS, POSIX threading&lt;br /&gt;
|User, apps development &lt;br /&gt;
|London&lt;br /&gt;
|Freerunner&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Key:&lt;br /&gt;
 [[Image: Moko.jpg]] = GTA01&lt;br /&gt;
 [[Image: MokoBox.jpg]] = Debug board&lt;br /&gt;
&lt;br /&gt;
See [[Talk:OpenMoko_Local_Groups:_London|discussion]]&lt;br /&gt;
[[Category:Community]]&lt;br /&gt;
[[Category:Openmoko Local Groups]]&lt;/div&gt;</summary>
		<author><name>David Hicks</name></author>	</entry>

	<entry>
		<id>http://wiki.openmoko.org/wiki/User:David_Hicks</id>
		<title>User:David Hicks</title>
		<link rel="alternate" type="text/html" href="http://wiki.openmoko.org/wiki/User:David_Hicks"/>
				<updated>2008-08-01T11:11:37Z</updated>
		
		<summary type="html">&lt;p&gt;David Hicks: About me&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Hullo.&lt;br /&gt;
&lt;br /&gt;
I'm Dave and I 'm a Linux user.&lt;br /&gt;
&lt;br /&gt;
I think I have a problem, the Freerunner is now the 10th Linux device I own or look after. I'm hooked. I even have a Debianised NSLU2 under the bed.&lt;br /&gt;
&lt;br /&gt;
And now I'll have linux with me everywhere I go. Just what I needed....&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Techie Stuff ==&lt;br /&gt;
&lt;br /&gt;
I'm a Software Engineer with CS degree, been working in C (with bits of C++, Python, Java etc) since 2000.&lt;br /&gt;
&lt;br /&gt;
I've worked mostly on server software of various sizes and purposes, though also on point-of-sale EMV card transaction processing. The things that bring me most joy in programming are cryptography, secure comms (SSL/TLS) and multithreaded programming.&lt;br /&gt;
&lt;br /&gt;
I don't know exactly what I can bring to Openmoko as I'm not the most GUI oriented kind of guy, but we'll see eh?&lt;/div&gt;</summary>
		<author><name>David Hicks</name></author>	</entry>

	<entry>
		<id>http://wiki.openmoko.org/wiki/User:David_Hicks</id>
		<title>User:David Hicks</title>
		<link rel="alternate" type="text/html" href="http://wiki.openmoko.org/wiki/User:David_Hicks"/>
				<updated>2008-08-01T11:03:27Z</updated>
		
		<summary type="html">&lt;p&gt;David Hicks: Initial version&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Hullo.&lt;br /&gt;
&lt;br /&gt;
I'm Dave and I 'm a Linux user.&lt;br /&gt;
&lt;br /&gt;
I think I have a problem, the Freerunner is now the 10th Linux device I own or look after. I'm hooked. I even have a Debianised NSLU2 under the bed.&lt;br /&gt;
&lt;br /&gt;
And now I'll have linux with me everywhere I go.&lt;/div&gt;</summary>
		<author><name>David Hicks</name></author>	</entry>

	</feed>