<?xml version="1.0"?>
<?xml-stylesheet type="text/css" href="http://wiki.meego.com/skins/common/feed.css?270"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
		<id>http://wiki.meego.com/index.php?title=Special:Contributions/Epage&amp;feed=atom&amp;limit=50&amp;target=Epage&amp;year=&amp;month=</id>
		<title>MeeGo wiki - User contributions [en]</title>
		<link rel="self" type="application/atom+xml" href="http://wiki.meego.com/index.php?title=Special:Contributions/Epage&amp;feed=atom&amp;limit=50&amp;target=Epage&amp;year=&amp;month="/>
		<link rel="alternate" type="text/html" href="http://wiki.meego.com/Special:Contributions/Epage"/>
		<updated>2013-05-19T09:57:19Z</updated>
		<subtitle>From MeeGo wiki</subtitle>
		<generator>MediaWiki 1.16.2</generator>

	<entry>
		<id>http://wiki.meego.com/Migrating_from_N900_to_N950</id>
		<title>Migrating from N900 to N950</title>
		<link rel="alternate" type="text/html" href="http://wiki.meego.com/Migrating_from_N900_to_N950"/>
				<updated>2011-11-01T23:59:40Z</updated>
		
		<summary type="html">&lt;p&gt;Epage: Adding info from http://www.mwkn.net/2011/44/apps.html&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Introduction ==&lt;br /&gt;
Lots of developers will be transitioning from an N900 to an N950 as their primary device as part of the [[Community Office/Community device program/Nokia|device programme]]. This transition allows people to get a feel for Harmattan and work out what itches they need to scratch.&lt;br /&gt;
&lt;br /&gt;
The following is a small list of points which helped the author(s) get started. '''It is not indicative of steps necessary on the N9, and is based on the initial steps taken by the author when he received his pre-production, developer device.'''&lt;br /&gt;
&lt;br /&gt;
Other channels: IRC:freenode.net #harmattan&lt;br /&gt;
&lt;br /&gt;
== Developing apps ==&lt;br /&gt;
&lt;br /&gt;
If you have done this before, check out [[Porting Fremantle Applications to Harmattan]].&lt;br /&gt;
&lt;br /&gt;
If you are starting from scratch, use QML, not QWidgets (unfortunately the QtCreator tutorials are outdated and show use of QWidgets).  Get started reading about the [http://library.developer.nokia.com/index.jsp?topic=/MeeGo_1.2_Harmattan_API/html/guide/html/Developer_Library_Application_development_framework_ebcf.html MeeGo 1.2 Harmattan API] and be sure to digest the [http://library.developer.nokia.com/topic/MeeGo_1.2_Harmattan_API/html/guide/html/Developer_Library_Best_practices_for_application_development_fc5f.html Best Practices] section.&lt;br /&gt;
&lt;br /&gt;
== Building packages in Scratchbox ==&lt;br /&gt;
&lt;br /&gt;
An excellent example of how to build a package was written by [[User:ph5]] in [http://forum.meego.com/showpost.php?p=27796&amp;amp;postcount=5 this forum post].&lt;br /&gt;
Follow the instructions in [http://www.developer.nokia.com/Community/Wiki/Harmattan:Platform_Guide/Publishing_with_Harmattan_Platform_SDK/Packaging_your_application_with_Harmattan_Platform_SDK the official Harmattan Platform Guide page] on packaging.&lt;br /&gt;
&lt;br /&gt;
A hint for the experienced: if you have a source deb for a different platform then it's just a matter of unpacking it with dpkg -x *.dsc, cd'ing inside package-version/ and running:&lt;br /&gt;
&lt;br /&gt;
 dpkg-buildpackage -us -uc -b -rfakeroot&lt;br /&gt;
&lt;br /&gt;
Another protip: 'debuild' tends to fail with fakeroot-related problems where dpkg-buildpackage succeeds.&lt;br /&gt;
&lt;br /&gt;
== Events feed ==&lt;br /&gt;
1.2011.22-6 is a pre-production, developer edition. It only has Facebook integration for chat and events, no Google Talk or Twitter. RSS feeds can be set, in the ''Feeds'' application, to appear here.&lt;br /&gt;
&lt;br /&gt;
'''As of Beta2:''' Facebook, Twitter, RSS and Associated Press shows up on Events feed. Some 3rd party apps (Foursquare) are also using it.&lt;br /&gt;
&lt;br /&gt;
== Contact Import ==&lt;br /&gt;
&lt;br /&gt;
=== Import from N900 ===&lt;br /&gt;
&lt;br /&gt;
Some N900s are unreliable with Bluetooth connections. To transfer all the contacts from your N900 to your Harmattan device, including avatars:&lt;br /&gt;
&lt;br /&gt;
* Delete any Facebook accounts on your Harmattan device&lt;br /&gt;
* Delete all contacts&lt;br /&gt;
* Do ''not'' try to use the &amp;quot;sync your phone&amp;quot; feature from the N950 (if you've tried it, delete the channel on both the N950 and N900)&lt;br /&gt;
* ''N900:'' go to Settings &amp;gt; Transfer &amp;amp; sync &amp;gt; New. Define a new send-only, contacts-only channel to the N950 (which should have Bluetooth switched on and visible)&lt;br /&gt;
&lt;br /&gt;
This method does NOT transfer any IM-only contacts.&lt;br /&gt;
&lt;br /&gt;
=== Import From VCF files ===&lt;br /&gt;
&lt;br /&gt;
The content manager has never provided the proper API, so they do not allow the vcard file filtering in that sense. Hence you can only display all objects, which allows the user to try to import anything into contacts. Unfortunately, importing the browser application into the contacts does not work that well. It is a bit sad since all the code is ready on the contacts side.&lt;br /&gt;
&lt;br /&gt;
As of 32-4 firmware, vcardconverter still pukes on contact filenames with umlauts in them. Busybox doesn't though, so we'll do a cp tmpfile operation in the for loop.&lt;br /&gt;
&lt;br /&gt;
Hence here is the workaround:&lt;br /&gt;
 1) copy all your vcf files to a dir&lt;br /&gt;
 2) ssh into the device&lt;br /&gt;
 3) go into the directory containing the vcf files&lt;br /&gt;
 4) for i in *.vcf; do cp &amp;quot;$i&amp;quot; ._temp.vcf; vcardconverter &amp;quot;._temp.vcf&amp;quot;; done; rm ._temp.vcf&lt;br /&gt;
&lt;br /&gt;
=== Import From N950 ===&lt;br /&gt;
&lt;br /&gt;
Bluetooth (BT) sync from the N950 can be used; there has been at least one report of it working without any issues (from lardman)&lt;br /&gt;
&lt;br /&gt;
== Contact Export ==&lt;br /&gt;
&lt;br /&gt;
The Contact application will fail (as of beta 1, at least) to export any contacts with a '/'&lt;br /&gt;
(forward slash) in them.  There is no workaround, but there is an alternative way to export contacts: install the [http://blog.zx2c4.com/660 vcardexport] command-line program.&lt;br /&gt;
&lt;br /&gt;
== Email ==&lt;br /&gt;
Replying/quoting is FUBAR in 1.2011.22-6 (no ability to edit quote, forced top posting). With Gmail over IMAP, ''Delete'' now deletes messages, rather than archiving them (as it did in Modest). To &amp;quot;archive&amp;quot; email, move it to the ''All mail'' folder.(There's definitely an opportunity for someone to write a good Gmail client!)&lt;br /&gt;
&lt;br /&gt;
=== Hotmail ===&lt;br /&gt;
&lt;br /&gt;
If you want your folders &amp;amp; state to appear on the device, use '''Mail for Exchange''' for your Hotmail account. [http://windowsteamblog.com/windows_live/b/windowslive/archive/2010/08/30/hotmail-now-supports-push-email-calendar-and-contacts-with-exchange-activesync.aspx The settings can be found here.]&lt;br /&gt;
&lt;br /&gt;
== Syncing multiple Google Calendars ==&lt;br /&gt;
This Harmattan build supports multiple Mail for Exchange and multiple CalDAV accounts. For Google Calendar:&lt;br /&gt;
&lt;br /&gt;
Single CalDAV Calendar&lt;br /&gt;
&lt;br /&gt;
* [https://www.google.com/calendar/iphoneselect Configure] the calendars to be synced&lt;br /&gt;
* Go to Accounts &amp;gt; Add accounts &amp;gt; CalDAV&lt;br /&gt;
* Username should be your full Google Calendar username (e.g. jbloggs@gmail.com) and password.&lt;br /&gt;
* The URL is: &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;https://www.google.com/&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Individual CalDAV Calendars&lt;br /&gt;
&lt;br /&gt;
* Go to Accounts &amp;gt; Add accounts &amp;gt; CalDAV&lt;br /&gt;
* Username should be your full Google Calendar username (e.g. jbloggs@gmail.com) and password.&lt;br /&gt;
* The URL is:&lt;br /&gt;
** For your primary calendar: &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;https://www.google.com/calendar/dav/&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
** For other calendars: &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;https://www.google.com/calendar/dav/uuid@group.calendar.google.com/&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
** For some users, the primary calendar will only work with, supposing your e-mail is jbloggs@gmail.com: &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;https://www.google.com/calendar/dav/jbloggs@gmail.com/&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
The ''uuid'' can be found on the calendar settings page within Google Calendar, and is a long string of characters &amp;amp; numbers.&amp;lt;br /&amp;gt;&lt;br /&gt;
The trailing slashes are ''crucial'' for Google.&lt;br /&gt;
&lt;br /&gt;
MfE&lt;br /&gt;
&lt;br /&gt;
* The primary calendar claimed to sync, but no events showed up. So I deleted the CalDAV entry for my primary calendar and set up Mail for Exchange:&lt;br /&gt;
** Username is your full Google Calendar username and password&lt;br /&gt;
** Server: &amp;lt;code&amp;gt;m.google.com&amp;lt;/code&amp;gt;&lt;br /&gt;
* I synced [[User:Vitaminj|my]] primary calendar using the syntax of the second URL (with my Google login email instead of uuid@google) and it worked great. YMMV.&lt;br /&gt;
&lt;br /&gt;
* Note: for me the sync button only worked once you go back out after creating the entry, and then back into it again.&lt;br /&gt;
&lt;br /&gt;
== Conversations ==&lt;br /&gt;
Preliminary code for importing conversations from N900 can be obtained from this [https://gitorious.org/n900-comhist-import/ git repository].&lt;br /&gt;
&lt;br /&gt;
== Map loader ==&lt;br /&gt;
&lt;br /&gt;
'''Beta 1 firmware'''&lt;br /&gt;
&lt;br /&gt;
Maps contains a ''Manage Maps'' feature which downloads, but doesn't expand. It is possible to do it manually, though:&lt;br /&gt;
&lt;br /&gt;
# Connect your device as USB mass storage&lt;br /&gt;
# Open &amp;lt;code&amp;gt;cities/MapLoader/catalog-....xml&amp;lt;/code&amp;gt;&lt;br /&gt;
# Find the region you want to download&lt;br /&gt;
# Take the &amp;lt;code&amp;gt;Link&amp;lt;/code&amp;gt; element and append it to &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;http://static.s2g.gate5.de/map5/&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;. For example, the UK maps are at http://static.s2g.gate5.de/map5/maploaderzip-00.02.42.122/48210.zip&lt;br /&gt;
# Copy the contents of the zip file to &amp;lt;code&amp;gt;cities/diskcache/&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
If you have a newer version of the catalog, the previous link for downloading may not work. You should try &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;http://static.maploader.maps.svc.ovi.com/map5/&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;. For example, the UK maps are at http://static.maploader.maps.svc.ovi.com/map5/maploaderzip-00.02.43.117/58210.zip&lt;br /&gt;
&lt;br /&gt;
'''Beta 2 firmware'''&lt;br /&gt;
The built-in maps downloader now works.&lt;br /&gt;
&lt;br /&gt;
== Music ==&lt;br /&gt;
Hopefully this is a bug in 1.2011.22-6: ringtones and gPodder podcasts appear in the ''Music'' app; and will play on an all songs shuffle. This can be fixed by editing Tracker configuration:&lt;br /&gt;
&lt;br /&gt;
== Tracker ==&lt;br /&gt;
Tracker config file can be found at: &lt;br /&gt;
 /home/user/.config/tracker/tracker-miner-fs.cfg&lt;br /&gt;
&lt;br /&gt;
Edit the file as regular &amp;lt;code&amp;gt;user&amp;lt;/code&amp;gt; and add to the semi-colon separated &amp;lt;code&amp;gt;IgnoredDirectories&amp;lt;/code&amp;gt; list.&lt;br /&gt;
&lt;br /&gt;
See https://live.gnome.org/Tracker/Documentation for the documentation.&lt;br /&gt;
&lt;br /&gt;
== Notification light ==&lt;br /&gt;
N950 has only single white led instead of N900's RGB LED. The led is driven with same config file:&lt;br /&gt;
 /etc/mce/mce.ini&lt;br /&gt;
&lt;br /&gt;
It seems that you can also modify the functionality of power button with &amp;lt;code&amp;gt;mce.ini&amp;lt;/code&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
Don't know if the services you must restart are the same than in N900 though.&lt;br /&gt;
&lt;br /&gt;
== root ==&lt;br /&gt;
The default root password is &amp;lt;code&amp;gt;rootme&amp;lt;/code&amp;gt; (as in the 770 days ;-)). You can get root to change it (using &amp;lt;code&amp;gt;passwd&amp;lt;/code&amp;gt;) using:&lt;br /&gt;
&lt;br /&gt;
  devel-su&lt;br /&gt;
&lt;br /&gt;
Note that the OTA update from 19 Oct 2011 disables ssh'ing as root (see /etc/init/ssh.conf).&lt;br /&gt;
So the only way to ssh into the device is as &amp;quot;developer&amp;quot;, using the password given by the &amp;quot;SDK connect tool&amp;quot; app.&lt;br /&gt;
&lt;br /&gt;
== Security framework ==&lt;br /&gt;
&lt;br /&gt;
Aegis is the name of the platform security system.  If you understand POSIX file ownership-based security, '''this is not that'''.  Forget that root can read from or write to all files (it cannot on the N950).&lt;br /&gt;
&lt;br /&gt;
N950s given to developers have '''Aegis turned on'''.&lt;br /&gt;
&lt;br /&gt;
If you edit protected files, like some config files or some shell scripts, '''you may have to re-flash the device'''!  Don't do this.&lt;br /&gt;
&lt;br /&gt;
You can enable running of arbitrary binaries by running:&lt;br /&gt;
&lt;br /&gt;
 develsh&lt;br /&gt;
 aegis-developer-mode --relaxed-exec&lt;br /&gt;
&lt;br /&gt;
...and then '''reboot'''ing.&lt;br /&gt;
&lt;br /&gt;
found useful for root (runs commands that otherwise wouldn't run):&lt;br /&gt;
 devel-su -c bash&lt;br /&gt;
&lt;br /&gt;
As a temporary workaround, liberal use of &amp;lt;code&amp;gt;chmod 777 ...&amp;lt;/code&amp;gt; for a moment before &amp;lt;code&amp;gt;cp ...&amp;lt;/code&amp;gt; and then &amp;lt;code&amp;gt;chmod 700 ...&amp;lt;/code&amp;gt; after (as user) can work; &amp;lt;code&amp;gt;su -c user chmod&amp;lt;/code&amp;gt; will work as root too.&lt;br /&gt;
&lt;br /&gt;
=== Harmattan Security FAQ ===&lt;br /&gt;
&lt;br /&gt;
There is an [http://library.developer.nokia.com/index.jsp?topic=/MeeGo_1.2_Harmattan_API/html/guide/html/Developer_Library_Developing_for_Harmattan_Harmattan_security_Security_guide_Harmattan_security_FAQ_3358.html Harmattan Security FAQ] that has very useful tips.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Further reading ===&lt;br /&gt;
&lt;br /&gt;
* http://www.developer.nokia.com/Community/Discussion/showthread.php?226594-Running-console-apps-on-n950-Operation-not-permitted&lt;br /&gt;
* http://forum.meego.com/showthread.php?t=3827&lt;br /&gt;
* http://pastebin.com/C5jbvj7N&lt;br /&gt;
* http://lwn.net/Articles/372937/&lt;br /&gt;
* http://fruct.org/conf7/Kasatkin_Maemo_6_Security_Framework.pdf&lt;br /&gt;
* http://www.developer.nokia.com/Community/Wiki/Harmattan:Developer_Library/Developing_for_Harmattan/Harmattan_security/Security_guide#Overview_of_application_security&lt;br /&gt;
* http://www.slideshare.net/reshetov/maemo-platform-security-fosdem&lt;br /&gt;
* http://www.developer.nokia.com/Community/Wiki/Harmattan:Platform_Guide/Harmattan_platform_and_Platform_SDK_overview/Security_domain_overview&lt;br /&gt;
&lt;br /&gt;
== Screenshots ==&lt;br /&gt;
Launch ''Boosted Widget Gallery'' from the applications list, and select ''Debug tools &amp;gt; Take a screenshot''. Ctrl-Shift-P also works, as on N900, but only in stock (MTF?) screens.&lt;br /&gt;
&lt;br /&gt;
They can be shared from ''Gallery'' (they are stored in ~/MyDocs/.images)&lt;br /&gt;
&lt;br /&gt;
== Task switching ==&lt;br /&gt;
=== Accesssing ===&lt;br /&gt;
In addition to the swipe, the up-right arrow &amp;amp; backspace shortcut works almost similarly to Ctrl-Backspace on the N900.&lt;br /&gt;
&lt;br /&gt;
=== Rotation ===&lt;br /&gt;
Out of the box, applications which use Qt Components and lock themselves to landscape, still get rerendered in portrait in the task switcher if the keyboard is closed. [http://www.developer.nokia.com/bugs/show_bug.cgi?id=231 Bug #231] has been reported.&lt;br /&gt;
&lt;br /&gt;
It is possible to modify the themes for the [http://forum.meego.com/showpost.php?p=24933&amp;amp;postcount=14 home screens] and [http://forum.meego.com/showpost.php?p=25070&amp;amp;postcount=19 lock screen] to support portrait, but this is obviously only a developer-only workaround.&lt;br /&gt;
&lt;br /&gt;
== Keyboard layout ==&lt;br /&gt;
You can easily change the hardware keyboard's layout with setxkbmap:&lt;br /&gt;
 setxkbmap -rules evdev -model nokiarm680 -layout fi&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
It is possible to set two layouts with Ctrl+Shift switching:&lt;br /&gt;
 setxkbmap -model nokiarm680 -layout us,ru -variant ,cyrillic -option &amp;quot;grp:ctrl_shift_toggle&amp;quot;&lt;br /&gt;
&lt;br /&gt;
=== Manual key mapping ===&lt;br /&gt;
Like for the N900, you also can remap it yourself.&lt;br /&gt;
See http://dragly.org/2011/08/06/norwegian-keyboard-on-the-n950/comment-page-1/ for some examples.&lt;br /&gt;
The file to be edited is /usr/share/X11/xkb/symbols/nokia_vndr/rm-680&lt;br /&gt;
&lt;br /&gt;
Also have a look here: http://wiki.maemo.org/Remapping_keyboard&lt;br /&gt;
&lt;br /&gt;
== Keyboard shortcuts ==&lt;br /&gt;
Sh = shift, Ctrl = control, Fn = Function (lower left key), BS = backspace (upper right key), CR = CarriageReturn/Enter (right 2nd from top)&lt;br /&gt;
* Fn+BS : jump back to last screen - usually either taskswitcher or applauncher&lt;br /&gt;
(none of the following seem to work in non-MTF apps)&lt;br /&gt;
* Ctrl+Q : close current screen and back to last, like Fn+BS&lt;br /&gt;
* Ctrl+Sh+P : take -&amp;gt;screenshots&lt;br /&gt;
* Ctrl+Sh+T : switch on/off positions(?)&lt;br /&gt;
* Ctrl+Sh+S : switch on/off dimensions(?)&lt;br /&gt;
* Ctrl+Sh+L : cycle through some languages&lt;br /&gt;
* Ctrl+Sh+F : switch on/off frames-per-second&lt;br /&gt;
* Ctrl+Sh+B : switch on/off borders(?)&lt;br /&gt;
* Ctrl+Sh+M : switch on/off margins(?)&lt;br /&gt;
* Ctrl+Sh+N : switch on/off some writing that shows up when scrolling applauncher(?)&lt;br /&gt;
* start typing in any of the 3 basic screens : start Search&lt;br /&gt;
&lt;br /&gt;
== Hardware related bits ==&lt;br /&gt;
The N950 comes with a quick start guide, USB cable and device. To charge, the N900 wallwart fastcharger works like a charm. Device charges from non standard (missing D+- short) USB chargers with a maximum current of 100mA. The USB receptacle seems to be pretty sturdily mounted to the PCB, should not come off like some of N900.&lt;br /&gt;
&lt;br /&gt;
OPENING BATTERY COVER: The screws holding the battery cover are Torx TX4, unscrew, don't lose! Then pry off the '''complete''' cover with your fingernails sliding between cover and body starting at speaker (I.E. one of the &amp;quot;lower end&amp;quot; corners) both directions to the other end, and &amp;quot;hinge&amp;quot; around USB and then off. The cover is simply snap-on type and will click to open, seems there are just 2 or 3 latches that click open when you pry ~1mm&lt;br /&gt;
&lt;br /&gt;
== Migrating from beta 1 to beta 2 ==&lt;br /&gt;
&lt;br /&gt;
Restoring a beta 1 backup into beta 2 will lose data and disable the built-in Twitter app. Follow these steps to keep as much data as possible:&lt;br /&gt;
* Push your contacts to an N900 - restore from backup won't work. Export/Backup the contacts on the N900 just to be sure. A more involved (but N900-free) [[Migrating_from_N900_to_N950#Contact_Import|vcard-based transfer]] is also possible.&lt;br /&gt;
* Be aware that your SMS history will be lost. Ovi Suite will at least back it up for you in a human-readable way.&lt;br /&gt;
* Perform a backup from &amp;quot;Backup and Sync&amp;quot; in &amp;quot;Settings&amp;quot; on your N950.&lt;br /&gt;
* Connect to your PC and move the whole .backups directory off, and also any other files you want to keep (DCIM, etc). Everything on your N950 will be wiped.&lt;br /&gt;
* Unmount the N950, turn it off and follow the flashing instructions (~15m of &amp;quot;erasing&amp;quot; + ~5m install).  If you see errors about &amp;quot;bb5_rdc_cert_read&amp;quot; on Linux, [http://www.martindengler.com/proj/n950-flasher-beta1/ use the beta1 flasher].&lt;br /&gt;
* While it's flashing, on your PC, edit the settings.zip file inside the backup directory and remove Root/home/user/MyDocs (this contains your gconf settings which, if restored, will break Twitter logon). Delete contacts.zip and messaging.zip entirely - they won't restore successfully if you try.&lt;br /&gt;
* Once your N950 starts with the beta 2 firmware, reattach it to USB and move everything back across.&lt;br /&gt;
* Restore the contacts from the N900 [[Migrating_from_N900_to_N950#Contact_Import|in the normal way]]&lt;br /&gt;
* Go to the backup applet and restore the backup.&lt;br /&gt;
* On reboot, go through the settings applet and restore your settings manually, including enabling developer mode (packages will auto-install) under &amp;quot;security&amp;quot;.&lt;br /&gt;
* For each account in the account manager, you must invoke the relevant program that uses each account and re-enter the password. Some syncs may have also become disabled. Be sure to check. POP/IMAP email accounts seem to be in limbo - you may need to delete and recreate them.&lt;br /&gt;
&lt;br /&gt;
Done.&lt;br /&gt;
&lt;br /&gt;
== Migrating from beta1 to PR1.1 ==&lt;br /&gt;
&lt;br /&gt;
This is not supported.  Please migrate to beta2 first, and only then to PR1.1.&lt;br /&gt;
&lt;br /&gt;
== Migrating from beta2 to PR1.1 ==&lt;br /&gt;
&lt;br /&gt;
This can only be done over-the-air (OTA) right now, according to the [http://www.developer.nokia.com/Community/Blogs/blog/n9-developer/2011/10/19/n950-software-update-available-over-the-air release announcement].&lt;br /&gt;
&lt;br /&gt;
== Tricks ==&lt;br /&gt;
&lt;br /&gt;
=== Harmattan home screens in landscape mode ===&lt;br /&gt;
&lt;br /&gt;
Get root:&lt;br /&gt;
&amp;lt;pre&amp;gt;ssh root@localhost&amp;lt;/pre&amp;gt;&lt;br /&gt;
then:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
mkdir /usr/share/themes/blanco/meegotouch/meegotouchhome/&lt;br /&gt;
mkdir /usr/share/themes/blanco/meegotouch/meegotouchhome/style/&lt;br /&gt;
&lt;br /&gt;
echo 'MainWindowStyle {&lt;br /&gt;
    locked-orientation: &amp;quot;&amp;quot;;&lt;br /&gt;
}' &amp;gt; /usr/share/themes/blanco/meegotouch/meegotouchhome/style/meegotouchhome.css&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
[http://forum.meego.com/showpost.php?p=24933&amp;amp;postcount=14 source]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Harmattan lock screen in landscape mode ===&lt;br /&gt;
To fix the lock-screen:&lt;br /&gt;
&amp;lt;pre&amp;gt;nano /usr/share/themes/blanco/meegotouch/sysuid/style/sysuid.css&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Scroll down until you find &amp;lt;pre&amp;gt;locked-orientation: &amp;quot;portrait&amp;quot;;&amp;lt;/pre&amp;gt; and change it to &amp;lt;pre&amp;gt;locked-orientation: &amp;quot;&amp;quot;;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Hold the Ctrl on-screen key (not the physical one) and press X on the keyboard. If it just types an 'x' then backspace and do it again. Press 'Y' to save, then 'Enter'. Reboot or run:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
/sbin/initctl restart xsession/mthome&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;br /&gt;
[http://forum.meego.com/showpost.php?p=26219&amp;amp;postcount=28 source]&lt;br /&gt;
&lt;br /&gt;
This makes the lock-screen orientation aware, but only just after boot. It seems there is something elsewhere locking its orientation once you have actually used any apps and from then on the lock-screen is fixed in the last orientation you used before locking it. &lt;br /&gt;
[http://forum.meego.com/showpost.php?p=25070&amp;amp;postcount=19 source]&lt;br /&gt;
&lt;br /&gt;
=== GTalk and Skype account setup ===&lt;br /&gt;
&lt;br /&gt;
Note that this is a temporary hack as these services will be properly integrated in future firmware.&lt;br /&gt;
&lt;br /&gt;
GTalk: From Terminal as user, run:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
mc-tool add gabble/jabber gmail string:account=gmailusernamehere@gmail.com string:password=secretpasswordhere&lt;br /&gt;
mc-tool list&lt;br /&gt;
mc-tool enable gabble/jabber/gmailusernamehere_40gmail_2ecom0&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Skype: From Terminal as user, run:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
mc-tool add spirit/skype skype string:account=skypename string:password=secretpasswordhere&lt;br /&gt;
mc-tool list&lt;br /&gt;
mc-tool enable spirit/skype/skypename0&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Substitute skypename and gmailusername with your own usernames. The enable command should match one of the entries in the mc-tool list command.&lt;br /&gt;
&lt;br /&gt;
Integration with the contacts is not fully working so you can't see the accounts in the contact profile properly, you can still use the services in the following way:&lt;br /&gt;
*To initiate chat just go to messaging and choose who you want to chat with.&lt;br /&gt;
*To initiate a call, go to the phone app and choose contact from the list (press the user button to get to contacts). You can then click on the selected service for call.&lt;br /&gt;
&lt;br /&gt;
You can also install Peregrin (Ovi Store). It will give you an ui for outgoing chat and calls. If you are using same e-mail for both GMail and Facebook the name of the service you added second will have the number 1 at the end instead of 0.&lt;br /&gt;
[[Category:N900]]&lt;br /&gt;
[[Category:N950]]&lt;/div&gt;</summary>
		<author><name>Epage</name></author>	</entry>

	<entry>
		<id>http://wiki.meego.com/Community_Office/Community_device_program/Nokia</id>
		<title>Community Office/Community device program/Nokia</title>
		<link rel="alternate" type="text/html" href="http://wiki.meego.com/Community_Office/Community_device_program/Nokia"/>
				<updated>2011-07-29T22:11:26Z</updated>
		
		<summary type="html">&lt;p&gt;Epage: Putting myselfc in the completed section&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Nokia Participation Details =&lt;br /&gt;
* Program Contact: [[User:qgil|Quim Gil]]&lt;br /&gt;
Update: Nokia N950 handsets are ready!  https://meego.com/community/device-program/devices/nokia-n9-devkit&lt;br /&gt;
&lt;br /&gt;
== N950 Devkit Program Details ==&lt;br /&gt;
* Device: Nokia N950 loaded with MeeGo 1.2 Harmattan &lt;br /&gt;
* Quantity: 250&lt;br /&gt;
* Additional Criteria / Terms: &lt;br /&gt;
** One submission per developer please&lt;br /&gt;
** Device to be loaned to participant for [period unspecified].&lt;br /&gt;
** May not be able to ship to certain countries / locations.&lt;br /&gt;
** Nokia employees are not eligible.&lt;br /&gt;
* Timeframe: distribution active.&lt;br /&gt;
&lt;br /&gt;
 '''QUESTIONS / ANSWERS &amp;amp; UPDATES:''' http://forum.meego.com/showthread.php?t=3597&lt;br /&gt;
&lt;br /&gt;
 '''[[N950 landing page]]'''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Results ==&lt;br /&gt;
&lt;br /&gt;
 '''WORK IN PROGRESS'''&lt;br /&gt;
&lt;br /&gt;
 For the sake of transparency and collaboration:&lt;br /&gt;
 * Please link your name to a page describing your Nokia N950 related work e.g. a wiki page.&lt;br /&gt;
 * Add here one line of text summarizing the project(s) and feature(s) you are concentrating. &lt;br /&gt;
 * We haven't done the 'Nokia employee' check yet. If you happen to be one, contact Quim Gil.&lt;br /&gt;
&lt;br /&gt;
=== Still pending ===&lt;br /&gt;
Participants accepted that still haven't received the N950.&lt;br /&gt;
&lt;br /&gt;
==== Still haven't ordered the N950 ====&lt;br /&gt;
You haven't completed the first steps at Nokia Developer and therefore they can't send you an N950. Please move fast before it's too late. You risk losing your chances of getting the device at all.&lt;br /&gt;
&lt;br /&gt;
* Willem Liu '''ID Sent, applied to Launchpad'''&lt;br /&gt;
* Si Howard&lt;br /&gt;
* Piotr Pokora (piotras) - I am core developer of Midgard Content Repository which (as library) is used by different Maemo apps: Conboy, MaeCalories, Tablet of Adventure, Qaikuclient. Also I am maintainer of libgda and midgard packages (debs and rpms). From date of birth, I am interested in unified and simplified data access. And such, I am also going to develop for N950.&lt;br /&gt;
* Damion Yates '''ID sent'''. '''Applied for the Nokia Developer Launchpad programme''' &lt;br /&gt;
** Video streaming for multiple desktops to receive the video from your phone.&lt;br /&gt;
** New in 2.6.32+ kernel's wifi 80211 Infrastructure AP rather than Ad-Hoc for tethering.&lt;br /&gt;
** qemu x86 chroot for wine and arbitrary x86 X11 binaries&lt;br /&gt;
** tun/tap network interface for dns tunnelling with iodine&lt;br /&gt;
** usb-storage usage monitor with idle umount &amp;amp;&amp;amp; rsync and remount&lt;br /&gt;
** turn phone in to bluetooth dongle&lt;br /&gt;
* Luke Bratch&lt;br /&gt;
&lt;br /&gt;
==== N950 ordered, waiting to be sent ====&lt;br /&gt;
Please move your entry from the sections below if this is your case. Sort yourselves by country since this is most likely the reason why you haven't got the device yet.&lt;br /&gt;
&lt;br /&gt;
* Brazil - this is a special case, issue known.&lt;br /&gt;
** [[User:Lizardo|Anderson Lizardo Gomes]] (user: lizardo): ID sent, Accepted for the Nokia Developer Launchpad program (06-Jul-2011–06-Jul-2012), device ordered (07-Jul), waiting for DHL tracking number.&lt;br /&gt;
** [[User:Briglia|Anderson Briglia]] (user: briglia), ID sent | Launchpad:Accepted | Ordered:Yes(7th-July-2011) | Received/Sent:'''No'''&amp;lt;br/&amp;gt;&lt;br /&gt;
** [[User:Lfelipe|Luis Felipe Strano Moraes]] '''ID sent''', '''Launchpad accepted''' &amp;lt;br/&amp;gt;&lt;br /&gt;
** [[User:Rafael2k|Rafael Diniz]] '''ID sent''', '''Launchpad for individuals account active ''' &amp;lt;br&amp;gt;&lt;br /&gt;
*** I plan to develop FM RDS applications with focus in the new standards from RadioDNS like the RadioVIS (partly based in the already existent the N900-fmvis  http://code.google.com/p/n900-fmvis/).&lt;br /&gt;
*** I'm a member of a university radio station (Radio Muda FM, 88.5MHz) and my plan is to develop &amp;quot;real life&amp;quot; radio station applications.&amp;lt;br&amp;gt;&lt;br /&gt;
*** I'll also write one audio and one audio/video icecast2 clients. I can provide icecast2 server access for beta testers at radiolivre.org. I'll take ideas from softwares I already wrote for this purpose, like darknow (a gui for darkice, http://darksnow.radiolivre.org) and theorur, an audio/video icecast2 client (a gui for ffmpeg2theora, http://theorur.sarava.org), all using QT.&lt;br /&gt;
** [[User:vivijim|Rodrigo Vivi]] (user: vivijim), ID sent | Launchpad:Accepted | Ordered:Yes(7th-July-2011) | Received/Sent:'''No'''&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*Maldives&lt;br /&gt;
**Hussain Shafiu(demonreeper) ID sent | Launchpad:Accepted | N950eMail:Yes | Ordered:Yes(7th-July-2011) | Received/Sent:'''No'''&lt;br /&gt;
&lt;br /&gt;
*New Zealand&lt;br /&gt;
**[http://wiki.meego.com/User:Mohannad Mohannad Hammadeh] '''Ordered N950 (July 8, 8:30am NZST) | N950SentEmail:No'''&lt;br /&gt;
*** Porting mPrayerTime to Meego-Harmattan, updating the UI and adding more features.&lt;br /&gt;
*** Writing new application ''Spotter'' - exercise tracking app&lt;br /&gt;
&lt;br /&gt;
*Norway&lt;br /&gt;
**[[User:karljohang|Karl Johan Grøttum]] '''Order: OID-053015''' | '''Device: Nokia N950''' | Porting [http://trac.itek.norut.no/n4c/wiki Hiker's app] from '''EU WP7''' project [http://www.n4c.eu/N4C-open-source-code.php N4C (open source code)]. Hiker's app runs on N810 and N900, and integrates [http://sourceforge.net/projects/dtn/ DTN2] (or [http://garage.maemo.org/projects/dtn/ DTN2 for Maemo]).&lt;br /&gt;
&lt;br /&gt;
*USA&lt;br /&gt;
** [[user:n8willis|Nathan Willis]] '''New Order'''&lt;br /&gt;
*** Font packaging, porting DIN 1451 designs to open font license&lt;br /&gt;
&lt;br /&gt;
* Finland&lt;br /&gt;
**[[User:Vranki|Ville Ranki]] '''ID sent, applied for Nokia Launchpad, Ordered device '''&amp;lt;br /&amp;gt;&lt;br /&gt;
[http://www.siilihai.com Siilihai web forum reader], [http://www.youtube.com/watch?v=erTAMOzdf0Y&amp;amp;feature=related Drone Taxi], PPCards.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* $country&lt;br /&gt;
** $entry.&lt;br /&gt;
&lt;br /&gt;
==== N950 shipped, waiting to get it ====&lt;br /&gt;
Please list yourselves keeping the list by countries in order to see the geographical progress in ''real time''.  :)&lt;br /&gt;
&lt;br /&gt;
* $country&lt;br /&gt;
** $entry.&lt;br /&gt;
&lt;br /&gt;
* Serbia (Devices were sent to Moscow by accident, reordered them to an address in Hungary)&lt;br /&gt;
** [[User:Blackwicked|Edvin Rab]], '''Developer ID sent''', '''Applied for Launchpad''', '''Device Ordered''', '''Waiting for Arrival'''. [http://t.co/4Os8iIh EvidenceHunt Game]&lt;br /&gt;
** Robert Marki - '''Developer ID sent, Applied for Launchpad, Device Ordered, Waiting for Arrival.''' Developing an application called [https://projects.developer.nokia.com/feed_reader FeedReader], it's a universal feed reader with support for podcasts. More info on the project's website. Would like to develop image processing related applications like: Image translation application, Image gallery with face recognition, Porting control software of a hexapod robot.&lt;br /&gt;
&lt;br /&gt;
* Israel&lt;br /&gt;
** Assaf Paz (damagedspline) '''ID sent''', '''applied for Nokia Launchpad, Launchpad for individuals (06-Jul-2011–06-Jul-2012)''','''Order committed (7-Jul-2011)''', '''Device Sent (29-Jul-2011)''', '''Not Received Yet'''&amp;lt;br /&amp;gt;Adapting [http://code.google.com/p/qwazer/ Qwazer] to also work on Meego, hopefully create an Exchange Webmail client in pure QML (N900 was the initial target), Hebrew support&lt;br /&gt;
&lt;br /&gt;
* Russia&lt;br /&gt;
** Roman Deninberg([http://maemo.team16.ru/ Bonapart]) - ''applied for Nokia Launchpad, Launchpad for individuals (28-Jul-2011–28-Jul-2012)''','''New Order (28.7.2011)''', '''Not Received Yet'''&amp;lt;br /&amp;gt;Psx4m\PCSX-rearmed\Psx4m-gui projects basically&lt;br /&gt;
&lt;br /&gt;
==== FIXME Unclear cases &amp;amp; lazy wiki editors ====&lt;br /&gt;
&lt;br /&gt;
 '''Let's clean this section, please! Move your entry wherever appropriate. Thanks!'''&lt;br /&gt;
&lt;br /&gt;
Adam Pigg '''ID sent''', '''applied for Nokia Launchpad''', '''waiting for reply'''&amp;lt;br /&amp;gt;&lt;br /&gt;
Porting my Qt/QML apps/games from maemo, and further work on Kexi and some more QML games&lt;br /&gt;
[http://www.piggz.co.uk My Site]&lt;br /&gt;
&lt;br /&gt;
Oleg Bodnarchuk(bloody)'''ID sent''', '''applied for Nokia Launchpad'''&amp;lt;br /&amp;gt;&lt;br /&gt;
Developing Wiki-based offline database.&lt;br /&gt;
&lt;br /&gt;
[[User:Bart-cerneels|Bart Cerneels]](Stecchino) '''ID sent, applied for Nokia Launchpad, waiting for reply'''&amp;lt;br /&amp;gt;&lt;br /&gt;
Mobile UX' for Amarok using QML. [http://amarok.kde.org Amarok website]&lt;br /&gt;
&lt;br /&gt;
[[User:khertan|Benoît HERVIER]] (Khertan) '''ID sent''' | '''Launchpad:Accepted''' | '''N950eMail:Yes''' | ''' Ordered:Yes(07-Jul-2011) ''' | '''Received:Yes'''&amp;lt;br /&amp;gt;&lt;br /&gt;
Porting [http://khertan.net/khteditor KhtEditor] a source code editor, [http://khertan.net/khweeteur Khweeteur] a twitter/identi.ca client, [http://khertan.net/python_sdist_maemo Sdist_maemo] and developping KhtSync a automated file synchronization application, and KhtDrive an app to measure car and driver performances for eco driving.&lt;br /&gt;
&lt;br /&gt;
[[User:Termana|Bradley Smith]] (Termana) '''ID sent,  Launchpad: Accepted, N950 Email: Received, Ordered: Yes, Shipped: Yes 27/July, Received Device: No'''&amp;lt;br /&amp;gt;&lt;br /&gt;
Developing a karaoke game with built-in pitch correction.&lt;br /&gt;
&lt;br /&gt;
[[User:arfoll|Brendan Le Foll]], '''ID sent''', '''applied for Nokia Launchpad'''&amp;lt;br /&amp;gt;&lt;br /&gt;
Porting XBMC + MeeGo TV stuff + doing audio continuums using pulseaudio.&lt;br /&gt;
&lt;br /&gt;
Daniel Martin Yerga '''ID sent''' | '''Launchpad:Accepted(05-Jul-2011)''' | '''N950eMail:No''' | ''' Ordered:No ''' | '''Received:No'''&amp;lt;br/&amp;gt;&lt;br /&gt;
Porting my Maemo applications: [http://maemo-wordpy.garage.maemo.org/ MaStory], [http://cusl4-cservices.forja.rediris.es/ CasualServices], [http://pyrecipe.garage.maemo.org/ Pyrecipe], [http://maemo.org/downloads/product/Maemo5/copernicium/ Copernicium], [http://stockthis.garage.maemo.org/ StockThis], and developing new ones, like [https://gitorious.org/r-dmobiley R&amp;amp;DMobiley].&lt;br /&gt;
&lt;br /&gt;
David Galindo&lt;br /&gt;
&lt;br /&gt;
[[User:Lbt|David Greaves]] '''ID sent''',  '''Applied for the Nokia Developer Launchpad program'''&amp;lt;br /&amp;gt;&lt;br /&gt;
Mainly CE, Harmattan and Apps to start with. Hopefully Surrounds later.&lt;br /&gt;
&lt;br /&gt;
Diego Marcos '''ID sent''' | '''Launchpad:Accepted(05-Jul-2011)''' | '''N950eMail:Yes''' | ''' Ordered:Yes ''' | '''Received:No'''&amp;lt;br/&amp;gt;&lt;br /&gt;
The goal is porting to mobile devices open source data visualization tools of astronomical data aimed at outreach and science communication.  I've been previously working on Qt/QML desktop applications based on stellarium.org&lt;br /&gt;
http://www.youtube.com/watch?v=COkwscvTnnM&amp;amp;feature=youtube_gdata_player&lt;br /&gt;
&lt;br /&gt;
Frank Sievertsen '''ID Sent, Launchpad member now'''&amp;lt;br/&amp;gt;&lt;br /&gt;
Open-Source Spideroak Mobile Client and other apps&lt;br /&gt;
&lt;br /&gt;
George Ruinelli '''Ordered my device, got account for launchpad and OBS'''&amp;lt;br&amp;gt;&lt;br /&gt;
Porting my [http://maemo.org/packages/view/sleepanalyser/ SleepAnalyser] from MAEMO as well as other smaller apps I wrote/ported. See [http://wiki.maemo.org/User:Caco3] for details.&lt;br /&gt;
&lt;br /&gt;
[[User:gbraad | Gerard 'gbraad' Braad]] '''ID sent''' | '''Launchpad: waiting''' | '''N950eMail: Yes''' | ''' Ordered: Yes ''' |  '''Sent: Yes (28 Jul)''' | '''Received: Not yet'''&amp;lt;br /&amp;gt;&lt;br /&gt;
Porting of of Node.JS, phonegap, unhosted and a mobile org-mode editor. Aiming for good integration with the MeeGo API and Qt Mobility. Code will be published on [https://github.com/gbraad github] and described on my [http://gbraad.nl/ blog]. Small [https://github.com/gbraad/meego-pomodoro PomodoroTimer] app has been created: &lt;br /&gt;
&lt;br /&gt;
Hiemanshu Sharma '''Completed ''' &amp;lt;br/&amp;gt;&lt;br /&gt;
Currently working on porting [[http://forum.meego.com/showthread.php?t=3660|Komedia]]. More apps in the pipeline including Quassel (IRC Client), a Google Reader (name suggestions are welcome) and a 'Line of the day' kind of app (a glorified version of cowsay). Also working on getting an opencv port to give way for Face Detection/Facial recognition APIs.&lt;br /&gt;
&lt;br /&gt;
[[User:kemargrant | kemargrant]], '''ID sent''',  '''Applied for the Nokia Developer Launchpad program,(Ordered N950:Phone recieved)'''&amp;lt;br /&amp;gt;&lt;br /&gt;
My goal is to bring Screen Mirroring to Meego along with playing local files&lt;br /&gt;
easily to a desktop. The app is called groundwork and it is opensource. Code will be shifted to Launchpad once I can begin testing on a meego device.&lt;br /&gt;
http://code.google.com/p/groundwork/&lt;br /&gt;
&lt;br /&gt;
[[User:Kulakov|Kirill Kulakov]], '''ID sent''', '''Submitted credentials to Nokia Launchpad'''&amp;lt;br /&amp;gt;&lt;br /&gt;
MySocials project - clients, libraries and plugins for frameworks and platforms for social networks&lt;br /&gt;
&lt;br /&gt;
Lasse Kärkkäinen '''Device received'''&amp;lt;br /&amp;gt;&lt;br /&gt;
Porting [http://performous.org/ Performous] singing/band game from PC to N900 and MeeGo&lt;br /&gt;
&lt;br /&gt;
Lasse Stenberg, '''ID sent''', '''applied for Nokia Launchpad''' &amp;lt;br /&amp;gt;&lt;br /&gt;
Porting and further developing [http://talk.maemo.org/showthread.php?t=72982 Mapsi]&lt;br /&gt;
&lt;br /&gt;
Laszlo Papp (Already got one earlier, thus I do not need a new one ;) )&lt;br /&gt;
&lt;br /&gt;
liang wei (foolegg), '''ID sent:Yes''' | '''Launchpad Accepted:Yes''' | ''' Ordered:Yes ''' | '''Received:Yes'''&amp;lt;br/&amp;gt;&lt;br /&gt;
[[Cuteinputmethod]] is a Chinese Input Method, designed for handset device.&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Luiz Augusto von Dentz&lt;br /&gt;
&lt;br /&gt;
[http://wiki.meego.com/User:Martink Martin Kolman] (MartinK)  '''ID sent''', '''applied for the Nokia Launchpad''' | '''N950eMail:Yes''' | '''Ordered:Yes''' | '''Received:Yes'''&amp;lt;br&amp;gt;&lt;br /&gt;
Porting the modRana GPS navigation system and Mieru manga and comic book reader.&lt;br /&gt;
&lt;br /&gt;
Michele Tameni ( netvandal ) '''ID sent''',   '''Launchpad: Accepted, N950 Email: Received, Ordered: Yes, Received Device: No'''&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
- Luca's Mirror:  It’s a simple app that transform your phone into a hand-held mirror with some other cool addictions.&lt;br /&gt;
&lt;br /&gt;
- Semantic experiment : Experiment with Notification Area mixed with the semantic information stored in tracker, reacting to user action with usefull notification&lt;br /&gt;
More info  [http://michele.tameni.it/project/meego/ Here]&lt;br /&gt;
&lt;br /&gt;
Mikko Vartiainen '''OK'''&lt;br /&gt;
http://forum.meego.com/showthread.php?t=3607&lt;br /&gt;
&lt;br /&gt;
Mures Andone '''ID sent'''. '''Waiting answer from Nokia Developer Launchpad program'''&amp;lt;br /&amp;gt;&lt;br /&gt;
Develop location-aware apps with Qt/QML, an enhanced e-book reader based on FBReader engine.&lt;br /&gt;
Also an enhanced video player with this main feature: start playing video on desktop/laptop, pause, resume playing from device (with output to device screen), continue playing, pause, switch to tv-out, resume, play, pause, switch back to desktop and so on. Current project: Maemo Application Launcher: http://sourceforge.net/p/maplau/code/&lt;br /&gt;
&lt;br /&gt;
Ray Donnelly&lt;br /&gt;
&lt;br /&gt;
Sam Bristow&lt;br /&gt;
&lt;br /&gt;
[[User:Seif|Seif Lotfy]], '''ID sent''', '''Device received'''&amp;lt;br /&amp;gt;&lt;br /&gt;
My goal is to port the Zeitgeist to MeeGo with all the fun stuff with it. I already have a Qt port for &amp;quot;El Loco&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
Sergey Ivanov '''ID sent, waiting reply of Launchpad program'''&amp;lt;br /&amp;gt;&lt;br /&gt;
Developing software for the mobile operating system MeeGo, associated with the processing of audio and video streams.&lt;br /&gt;
&lt;br /&gt;
Susanna Huhtanen&lt;br /&gt;
&lt;br /&gt;
Tadej Novak '''ID sent''',  '''Launchpad:Accepted(06-Jul-2011)''' | '''N950eMail: No''' | ''' Ordered: No ''' | '''Received: No''' &amp;lt;br&amp;gt;&lt;br /&gt;
Porting my desktop IP TV player and schedule to Meego&lt;br /&gt;
&lt;br /&gt;
[http://wiki.meego.com/User:Kenya888 Takahiro Hashimoto(kenya888)] '''ID sent, accepted into Nokia Launchpad, device ordered'''&amp;lt;br&amp;gt;&lt;br /&gt;
porting qimsys/mozc to Harmattan/MeeGo, developing streaming multimedia player with QML&lt;br /&gt;
&lt;br /&gt;
Tasuku Suzuki&lt;br /&gt;
&lt;br /&gt;
Teemu Hukkanen&lt;br /&gt;
&lt;br /&gt;
Thomas Cherryhomes - Lead Developer for LinuxMCE - '''ID and Launchpad ID sent'''&lt;br /&gt;
* LinuxMCE is a next generation smart home platform encompassing media, home automation, telecom, and security features. http://www.linuxmce.org/&lt;br /&gt;
* A 25 min demo of the software can be seen here: http://video.google.com/videoplay?docid=2176025602905109829&lt;br /&gt;
* Nokia N950 will be used as a test platform for the new QML/Qt Quick based qOrbiter we are writing to replace our existing Orbiter software, qOrbiter videos here: &lt;br /&gt;
** http://www.youtube.com/watch?v=NDGagn3EciA&lt;br /&gt;
** http://www.youtube.com/watch?v=oUHrCdBgoyQ&lt;br /&gt;
&lt;br /&gt;
Tom Swindell&lt;br /&gt;
* [[User:Tswindell/CommunityApplicationDevelopment]]: Columbus Navigation Toolkit, Media IM Status Updater.&lt;br /&gt;
&lt;br /&gt;
[[User:tlaukkanen|Tommi Laukkanen]] '''Device received'''&lt;br /&gt;
* Facebook client [http://kasvopus.com Kasvopus], Twitter client [http://twimgo.com TwimGo], Google Reader client [http://newsflow.mobi NewsFlow], FourSquare client [http://nelisquare.com Nelisquare]&lt;br /&gt;
&lt;br /&gt;
[[User:toninikkanen|Toni Nikkanen]] '''ID sent''', '''applied for Nokia Launchpad''', '''order sent'''&lt;br /&gt;
&lt;br /&gt;
Zap Andersson '''Device Received - YAY'''&lt;br /&gt;
* Porting [http://maemo.org/packages/view/zaploc/ ZapLoc] app to Qt/Meego (currently pygame/Maemo)&lt;br /&gt;
* Porting game &amp;quot;Slightly Annoyed Rodents&amp;quot; (yet to be released) to Qt/Meego (currently pygame/Maemo)&lt;br /&gt;
&lt;br /&gt;
[[User:leafjohn|Lifu Zhang(leafjohn)]] '''ID sent, applied for Nokia Launchpad (request submitted, waiting for review) '''&lt;br /&gt;
* Create an opensource Qt astrology app for handset, Project Page: [https://github.com/cardmaster/qastro/tree/develop qastro hosting by github]&lt;br /&gt;
* Porting apps on our company page ([http://store.ovi.com.cn/publisher/EB EB OVI Page]) to MeeGo&lt;br /&gt;
&lt;br /&gt;
[https://meego.com/users/antman8969 Anthony Naddeo] (antman8969 here on meego.com, but antman8069 on developer.nokia.com) '''id sent, applied for launch program''' &lt;br /&gt;
* [http://umcs.maine.edu/~naddeoa/profile/linkedup-project.html Linkedup] - LinkedIn client for Maemo, Meego, Harmattan..... anything Qt&lt;br /&gt;
* [http://umcs.maine.edu/~naddeoa/profile/qtweather-project.html QtWeather] - United States National Weather Service application&lt;br /&gt;
Leaf Johnson&lt;br /&gt;
&lt;br /&gt;
William Su (sony123) '''ID sent, Launchpad program approved, device ordered, not yet shipped''' &amp;lt;br /&amp;gt;&lt;br /&gt;
[http://talk.maemo.org/showthread.php?p=1019939#post1019939 Stockona] - a google finance client. &lt;br /&gt;
Currently working on:&lt;br /&gt;
* Local portfolio creation.&lt;br /&gt;
* Webview integration: Make in-app news feed reading possible.&lt;br /&gt;
&lt;br /&gt;
Anthony Day '''ID sent''', '''Device received'''&lt;br /&gt;
* Porting and extending [http://talk.maemo.org/showthread.php?t=72951 inner-spin] game&lt;br /&gt;
* Porting and extending [http://talk.maemo.org/showthread.php?t=73942 Take it away Marco] N900 drum machine&lt;br /&gt;
* writing new game and realtime music Apps content for the N9/950   &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[User:mattaustin|Matt Austin]]  '''Device ordered (07/07/11), waiting for dispatch notification or tracking code.'''&amp;lt;br /&amp;gt;&lt;br /&gt;
Transperth trains live departure boards app, Player numbers AFL footy app, Amazon S3 bucket &amp;amp; file browser&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[http://maemo.org/profile/view/rm_you/ Adam Harwell] '''Device Received'''&amp;lt;br /&amp;gt;&lt;br /&gt;
* Porting [http://maemo.org/downloads/product/OS2008/advanced-backlight/ Advanced Backlight] from Maemo, adding new features&lt;br /&gt;
* Helping with photo utility suite project (SnapGo, with GeneralAntilles and others)&lt;br /&gt;
* Will help beta test apps for people on IRC&lt;br /&gt;
&lt;br /&gt;
Boris Pohler (emanymton) '''ID sent'''| '''Launchpad: Accepted(07-Jul-2011)''' | '''N950eMail: Yes''' | ''' Ordered: Yes ''' | '''Received: No'''&amp;lt;br /&amp;gt;&lt;br /&gt;
* porting Zeitkonto and HandsOff (not yet released) from Maemo to Meego, maybe a rewrite with QML&lt;br /&gt;
* other ideas in pipeline (remote for mythtv, live sports-ticker, ...)&lt;br /&gt;
* Helping other users at the german side meego.de (there known as Cermit) &lt;br /&gt;
&lt;br /&gt;
Eike Hein&lt;br /&gt;
&lt;br /&gt;
[[User:Theonehumble|Stephan Bulgin]] '''COMPLETED'''&amp;lt;br /&amp;gt;&lt;br /&gt;
- I will be porting NXEngine http://nxengine.sourceforge.net/ to MeeGo/Harmattan. My previews work for Maemo can be found here http://talk.maemo.org/showpost.php?p=971709&amp;amp;postcount=1&lt;br /&gt;
  Description: A clone/engine-rewrite of the classic jump-and-run platformer Cave Story.&lt;br /&gt;
- Right now Im in the process of re-writing DonQt for MeeGo/Harmattan. Previews work for Maemo here  http://www.forums.internettablettalk.com/showpost.php?p=976671&amp;amp;postcount=1 (will most likely be a name change and better code.)&lt;br /&gt;
  Description: Don is a &amp;quot;SDK installer&amp;quot; for developers to compile on the go.&lt;br /&gt;
- More ports and some original stuff and looking forward to collaborations. &lt;br /&gt;
&lt;br /&gt;
Nilanjan Chakravorty - '''ID sent, Already applied for the Nokia Developer Launchpad program''' - '''Ordered Device (8-Jul-2011)'''&lt;br /&gt;
* Leverage my financial background with IT to develop&lt;br /&gt;
- Portfolio management application   - Bloomberg Pricing data application&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--David Perlow '''ID sent, Applied for the Nokia Developer Launchpad program [UPDATE: 110706] Accepted into the Launchpad program [UPDATE: 110707] Ordered device and received order confirmation [UPDATE: 110718] Device arrived'''--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[User:Rnazarov|Ruslan Nazarov]] '''ID sent''' | '''Launchpad:Accepted(06-Jul-2011–06-Jul-2012)''' | '''N950eMail:No''' |''' Ordered:Yes (07-Jul-2011)''' | '''Received:No''' &amp;lt;br /&amp;gt;&lt;br /&gt;
Porting [https://gitorious.org/titanim TitanIM] (Vkontakte instant messenger)&lt;br /&gt;
&lt;br /&gt;
Moritz Mühlenhoff&lt;br /&gt;
&lt;br /&gt;
[[User:milliams|Matt Williams]] (milliams) '''Device Sent (28/7/2011)'''&amp;lt;br/&amp;gt;&lt;br /&gt;
Creation of a Particle Physics information database (from [http://pdg.lbl.gov/ PDG]) application. Porting of [http://games.kde.org/game.php?game=ksquares KSquares] to pure Qt for MeeGo and creation of other similar simple games. Porting of [http://thermite3d.org PolyVox] to MeeGo and port games built on it when they are ready. Port the [http://falconpl.org Falcon] programming language to MeeGo.&lt;br /&gt;
&lt;br /&gt;
[[User:Asys3|Uwe Koch]] '''ID sent, Applied for the Nokia Developer Launchpad program'''&amp;lt;br&amp;gt;&lt;br /&gt;
* Port hopefully all of my games Lineo,Q,TwinDistress,Sokoban and Jooleem&lt;br /&gt;
&lt;br /&gt;
Felipe Erias Morandeira '''ID sent, Applied for the Nokia Developer Launchpad program'''&lt;br /&gt;
* Design user interfaces using QML and collaborate with the MeeGoTouch project.&lt;br /&gt;
&lt;br /&gt;
Mohammad Abu-Garbeyyeh '''Device Ordered, Waiting for Arrival''' &amp;lt;br /&amp;gt;&lt;br /&gt;
Planning a wiki page with a todo list, main project here: http://bt-messenger.com&lt;br /&gt;
&lt;br /&gt;
[[User:sebas|Sebastian Kügler]] (sebas) '''device has arrived...'''&lt;br /&gt;
* Bringing Plasma Active ( http://community.kde.org/Plasma/Active )to MeeGo &lt;br /&gt;
&lt;br /&gt;
Juha Ristolainen '''ID sent, already a Launchpad member''' &amp;lt;br /&amp;gt;&lt;br /&gt;
Heiaheia fitness-service application for MeeGo. Untappd.com client for MeeGo.&lt;br /&gt;
&lt;br /&gt;
[[User:Bemasc/N950_Project|Benjamin Schwartz]] '''Received. Appears to be in working order.''' &amp;lt;br /&amp;gt;&lt;br /&gt;
I will attempt to convert [http://sugarlabs.org Sugar] [http://activities.sugarlabs.org Activities] into MeeGo apps, and hopefully in the process acquire some insight into the potential for MeeGo to form the basis of future Sugar revisions&lt;br /&gt;
&lt;br /&gt;
Shan Yafeng '''ID sent''', '''Applied for the Nokia Developer Launchpad program''' &amp;lt;br /&amp;gt;&lt;br /&gt;
An education program for exchange information between students and teacher in class. And port some programs to the nokia N900/N950 device. The progress can be found here : http://cuckoohello.wordpress.com&lt;br /&gt;
&lt;br /&gt;
Reggie Suplido '''ID sent''',  '''Launchpad accepted. Device ordered.'''&amp;lt;br /&amp;gt;&lt;br /&gt;
Custom MeeGo web development related to meego.com and forum.meego.com.&lt;br /&gt;
&lt;br /&gt;
Koos Vriezen '''Device Received'''&amp;lt;br/&amp;gt;&lt;br /&gt;
Will port the popular [http://maemo.org/downloads/product/Maemo5/kmplayer/  kmplayer] application from maemo5.&amp;lt;br/&amp;gt;&lt;br /&gt;
For now sources are found at [https://garage.maemo.org/plugins/scmsvn/viewcvs.php/branches/harmattan/?root=kmplayer maemo garage]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Aigars Mahinovs&lt;br /&gt;
&lt;br /&gt;
Andreas Schildbach (Goonie) '''ID sent''', '''Applied for the Nokia Developer Launchpad program''' &amp;lt;br /&amp;gt;&lt;br /&gt;
Porting of [http://code.google.com/p/public-transport-enabler/ Public-Transport-Enabler] and [https://market.android.com/details?id=de.schildbach.oeffi Öffi] to Meego.&lt;br /&gt;
&lt;br /&gt;
Ilya Paramonov '''Device received''' &amp;lt;br /&amp;gt;&lt;br /&gt;
Development of collaborative mind mapping application [http://yar.fruct.org/projects/hivemind HiveMind] for mobile and desktop platforms and sophisticated GTD-style personal time management application [http://yar.fruct.org/projects/octotask Octotask].&lt;br /&gt;
&lt;br /&gt;
Daniele Maio '''Device Ordered, Waiting for Arrival'''&amp;lt;br /&amp;gt;&lt;br /&gt;
Porting maemo5 apps to meego.&lt;br /&gt;
&lt;br /&gt;
Philford Barrett (sevla) '''ID sent, Applied for the Nokia Developer Launchpad program'''&lt;br /&gt;
* Swipe Style/Swypr/SwipeMe - Allows the user to assign swiping from the outside of the screen to specific actions i.e. swiping from the top jumps to the multi-tasking view while swiping from the bottom jumps to the Feeds View.  Each side of the screen (Top/Left/Bottom/Right) can have a max of 4 zones.  Each zone can be assigned to an action thereby giving the user the ability to configure 16 &amp;quot;invisible&amp;quot; shortcuts.  Each of which will be available at all times, regardless of what the user is doing in the current app/view.&lt;br /&gt;
* Drop Box Integration - Integrate downloading/uploading data to and from an existing Drop Box account.  Wherever possible, existing apps will be modified to show this data. i.e. photos in the users drop box account can be (meaning this will be configurable) displayed from the n9 picture viewer.&lt;br /&gt;
* Audio Galaxy Integration - Enable streaming of your audio galaxy library to your device through the n9 media player.&lt;br /&gt;
* Feeds++ - Feeds++, an enhanced feeds view, extends the functionality of the feeds view by allowing multiple views and enabling the ability to assign specific data to each view.  i.e. Show Facebook only data in View A and Twitter only data in View B.  Feeds++ will also allow the user to reply directly to events without having to opening the corresponding app.&lt;br /&gt;
[[user:jukey|Uwe Kaminski]] ('''Device Received''')&lt;br /&gt;
&lt;br /&gt;
Kyösti Ranto '''Nokia Developer ID sent. Launchpad accepted. Device ordered.''' &lt;br /&gt;
* [https://gitorious.org/meego-developer-edition-for-n900/mg-package-manager mg-package-manager]&lt;br /&gt;
&lt;br /&gt;
Stuart Howarth (marxian) - '''ID sent. Accepted for Nokia Launchpad program 06/07/11. Device ordered 07/07/11 - OID-052785'''&lt;br /&gt;
* Porting my [https://garage.maemo.org/projects/qmltube cuteTube] application (QML version).&lt;br /&gt;
* MythTV controller/recording scheduler (similar to the Android XBMC application)&lt;br /&gt;
&lt;br /&gt;
[[User:hardaker|Wes Hardaker]] '''ID sent, Launchpad application submitted'''&lt;br /&gt;
I'm continually developing applications for multitudes of devices, including many Qt applications at [http://www.dnssec-tools.org/ dnssec-tools] as well as personal projects, my favorite being my [http://www.hamtools.org/cutecw/ Morse Code Training Software], which is what I want to port immediately.  See my [[User:hardaker|User Page]] for a more complete list.&lt;br /&gt;
&lt;br /&gt;
[[User:kkv|Kirill Krinkin]] '''ID sent, already a Nokia Launchpad member'''. &amp;lt;br /&amp;gt;&lt;br /&gt;
I'm working on clients for open [https://github.com/OSLL/geo2tag Location Base Platform ]. Project tracker and progress can be found [[http://osll.spb.ru/projects/geo2tag/issues here]]. &lt;br /&gt;
&lt;br /&gt;
William Stephenson (wstephenson) '''Device Received''',  '''Applied for the Nokia Developer Launchpad program'''&lt;br /&gt;
I'm working on a high level toolkit for the creation of branded RSS based apps, in order to facilitate the creation of these simple apps.&lt;br /&gt;
&lt;br /&gt;
pancake&lt;br /&gt;
&lt;br /&gt;
[[User:pancake|pancake]] '''&lt;br /&gt;
I'm the author of radare2, a reverse engineering framework for disassembling, debugging, hexediting binaries and doing some forensics-related tasks. I already wrote a GTK frontend for Maemo (n770,n810,n900) and my plan is to write a QT/QML ui for it.&lt;br /&gt;
I will also port other programs of mine like tokipona language learning tools, simple games (but addictive!) to QT (from commandline).&lt;br /&gt;
In the future I would like to work on Vala and Gtk3/gtkaml (multitouch) support for MeeGo based devices.&lt;br /&gt;
&lt;br /&gt;
[[User:lamikr|Mika Laitio]]&lt;br /&gt;
* kernel&lt;br /&gt;
* MeeGo CE edition&lt;br /&gt;
* VDR linux tv client&lt;br /&gt;
&lt;br /&gt;
 * kernel&lt;br /&gt;
 * Meego CE edition&lt;br /&gt;
&lt;br /&gt;
Sebastian Pawluś - '''Device Received'''&amp;lt;br/&amp;gt;&lt;br /&gt;
LocIt is a location aware system, able to put on screen information about objects near device. Right now works with: Youtube, Wikipedia, Panoramio layers.&amp;lt;br/&amp;gt;&lt;br /&gt;
Plans are: port it from Maemo to MeeGo device, and move from client server architecture to single client architecture.&amp;lt;br/&amp;gt;&lt;br /&gt;
More: [https://github.com/xando/thesis/tree/master/locit-client source], [https://github.com/xando/thesis/blob/master/thesis/Obrazki/UiFlowDiagram.pdf?raw=true screenshots]&lt;br /&gt;
&lt;br /&gt;
Christos Zamantzas ([[User:Saturn|Saturn]]) - '''ID sent, Applied for the Nokia Developer Launchpad program'''&lt;br /&gt;
&lt;br /&gt;
Sivan Greenberg--&amp;gt; Nokia Developer Champion ID: &amp;lt;b&amp;gt;sivang&amp;lt;/b&amp;gt; , Applied for individual Nokia Developer Launchpad Membership. Working on [[http://developer.qt.nokia.com/groups/qt_contributors_summit/wiki/pdf/CrowdQuick CrowdQuick]] and some platform stuff, as evident by the talks I had given in 2010/2011 begin_of_the_skype_highlighting              2010/2011      end_of_the_skype_highlighting begin_of_the_skype_highlighting              2010/2011      end_of_the_skype_highlighting begin_of_the_skype_highlighting              2010/2011      end_of_the_skype_highlighting MeeGo conferences.&lt;br /&gt;
&lt;br /&gt;
Tapio Pyrhönen '''Device ordered 2011-07-11 and arrived on 2011-07-16!!! Getting busy now.'''&amp;lt;br /&amp;gt;&lt;br /&gt;
Porting my old Nintendo DS apps/games and making new ones too.&lt;br /&gt;
[http://tapsa.bitmagick.com/nds My Site]&lt;br /&gt;
&lt;br /&gt;
Michael Schloh von Bennewitz (MSvB) '''- Got &amp;quot;A Nokia N950 is waiting for you&amp;quot; but... after going to the order URL an error appears &amp;quot;Support Center, Unexpected error has occured. Please try again.&amp;quot; This since three days now.''' Using the device for a MeeGo lecture series in the fall, giving demos. Application development includes LDAP client, and a chess clock. I've ported a number of network and security packages as well, will begin to get them over to the MeeGo repos.&lt;br /&gt;
&lt;br /&gt;
Svetozar Belic ([[User:trx|trx]]) '''- Got &amp;quot;A Nokia N950 is waiting for you&amp;quot;, Device ordered (2011-07-07) ''', Port TxPad, TxMySQL Explorer, libQt4Pas library, etc.. Will create a list of apps to port/create&lt;br /&gt;
&lt;br /&gt;
=== Completed ===&lt;br /&gt;
Participants that have received the Nokia N950, sorted by meego.com nick. You know this device program is completed when we have reached 250:&lt;br /&gt;
&lt;br /&gt;
# [[User:aaporantalainen|aaporantalainen]] (Aapo Rantalainen)&lt;br /&gt;
#*[http://www.umsic.org/jammo/  JamMo] (will need some underlying libraries, e.g. [http://www.clutter-project.org/ clutter])&lt;br /&gt;
# [[User:Agomez|Agomez]] (Andres Gomez)&lt;br /&gt;
#*Development of drondas, a personal application for the management of the payments shared with other people so you can get track of who paid which in name of whom.&lt;br /&gt;
#[[User:awhiemstra|awhiemstra]] (Arjen-Wander Hiemstra) &amp;lt;br/&amp;gt;&lt;br /&gt;
#*Porting [http://gluon.gamingfreedom.org Gluon] to MeeGo/Harmattan.&lt;br /&gt;
#*Working on [http://calligra-suite.org Calligra].&lt;br /&gt;
# [[User:ajalkane|ajalkane]] (Arto Jalkanen) &lt;br /&gt;
#*Developing dynamic profile switcher, with location and day/time based rules on which profile to use.&lt;br /&gt;
# [[User:aklapper|aklapper]] (Andre Klapper)&lt;br /&gt;
#*General testing and bug hunting&lt;br /&gt;
# [[User:amandalam|amandalam]] (Amanda Hoi Ching Lam) '''Device received (2011-07-18)'''&lt;br /&gt;
#*Traditional Chinese language and utility apps for the MeeGo &amp;amp; Harmattan platforms, including but not limited to a Chinese character lookup app, and applications localized for the Traditional Chinese communities in Hong Kong, Macau and Taiwan.  [https://sites.google.com/site/amandahoic/Home/ Amanda's Software Projects]&lt;br /&gt;
# [https://meego.com/users/andreagrandi Andy80] (Andrea Grandi)&lt;br /&gt;
#*QML native client for Soma.fm radio. Current code available here: https://github.com/andreagrandi/CuteSoma&lt;br /&gt;
# [[User:anidel|anidel]] (Aniello Del Sorbo) '''Device received. All is well in the world.'''&lt;br /&gt;
#*Porting [http://maemo.org/downloads/product/Maemo5/xournal/ Xournal] from Maemo to Harmattan/MeeGo&lt;br /&gt;
# [[User:andrei1089|andrei1089]] (Andrei Mirestean) '''device received'''&lt;br /&gt;
#*Develop a step counter application based on the [http://maemo.org/downloads/product/Maemo5/pedometerhomewidget/ Pedometer desktop widget] for N900&lt;br /&gt;
# [[User:antman8969|antman8969]] (Anthony Naddeo) '''device received''' &lt;br /&gt;
#*[http://umcs.maine.edu/~naddeoa/profile/linkedup-project.html Linkedup] - LinkedIn client for Maemo, Meego, Harmattan..... anything Qt&lt;br /&gt;
#*[http://umcs.maine.edu/~naddeoa/profile/qtweather-project.html QtWeather] - United States National Weather Service application&lt;br /&gt;
#[[User:apachelogger|apachelogger]]&lt;br /&gt;
#*[http://git.videolan.org/?p=QtMobileVLC.git;a=summary Porting VLC] to handsets and tablets using Qt for UI awesomeness.&lt;br /&gt;
#Aleix Pol (apol)&lt;br /&gt;
#*Porting &amp;quot;horaris&amp;quot; and &amp;quot;kanban&amp;quot; maemo applications, finally get to have a usable KAlgebra Mobile version working on MeeGo, hopefully drag other KDE applications with this effort.&lt;br /&gt;
# [[User:ar|ar]] (Antti Raina) '''device received'''&lt;br /&gt;
#*Develop a simple budgeting application + porting apps &lt;br /&gt;
#[[User:Avis|Avis]] (Alexander Terekhov) '''device received''' &lt;br /&gt;
#*[http://qt-apps.org/content/show.php/Smart+Shopper?content=139742 Smart Shopper] - porting and improving GPS-based shopping application.&lt;br /&gt;
# [[User:b0unc3|b0unc3]] (Daniele Maio), '''device received'''&lt;br /&gt;
#* Porting maemo stuff&lt;br /&gt;
# [[User:bergie|Henri Bergius]]&lt;br /&gt;
#* Porting Buscatcher, Midgard and Node.js -related tools to MeeGo. However, I've withdrawn my device program application because I already got a N950 via Helsinki MeeGo Network.&lt;br /&gt;
# [[User:Bundyo|Bundyo]] (Kamen Bundev), '''ID sent''', '''Launchpad activated, notification email received, device ordered, device shipped, received on 18th July''' &amp;lt;br /&amp;gt;&lt;br /&gt;
#* Rewriting Search Tool, porting Maemo 5 work, NodeJS, possible Tear rewrite.&lt;br /&gt;
# [[User:Broothy|Broothy]] (Ádám Balázs), '''Sent my Account ID to Quim, i'm already Nokia launchpad member. Awaiting any reply. Device shipped, received''' &amp;lt;br /&amp;gt;&lt;br /&gt;
#* [http://store.ovi.com/content/113753 Switchboard] [http://www.youtube.com/watch?v=GdskgAfjjxc MobileMind]&lt;br /&gt;
#[[User:captianigloo|captainigloo]] (Aguirre Nicolas)&amp;lt;br /&amp;gt;&lt;br /&gt;
#* Porting [http://enna.geexbox.org Enna], [http://svn.enlightenment.org/svn/e/trunk/E-MODULES-EXTRA/elfe elfe] and all [http://www.enlightenment.org EFL/Enlightenment] libraries to Meego.&lt;br /&gt;
# [[User:cgrozea|cgrozea]] (Cristian Grozea) '''Device received.'''&amp;lt;br/&amp;gt;&lt;br /&gt;
#* creating magnus-plus-photo: an application that combines a camera-based magnifier with more advanced image processing techniques, that would enable one to use it as a magnifier (with optional light from the camera LED), use it as a photo negatives lightbox that automatically inverts the negatives and adjusts the colors for proper display; use it as an EVF add-on to SLRs to help with manual focus, leveraging the possibility of amplifying contrast and magnifying.&amp;lt;br /&amp;gt;&lt;br /&gt;
# [[User:cip|cip]] (Christian Pühringer) '''ID sent, already a Launchpad member''', '''Ordered (8-Jul-2011)''', '''Dispatched (15-Jul-2011)''', '''Device received (18-Jul-2011)&amp;lt;br&amp;gt;&lt;br /&gt;
#* [https://github.com/cip/WikiOnBoard/wiki WikiOnBoard] Offline reader for Wikipedia using [http://openzim.org zim] format.  &lt;br /&gt;
# [https://meego.com/users/conny Conny] (Cornelius Hald) '''Device received'''&amp;lt;br /&amp;gt;&lt;br /&gt;
#* [http://conboy.garage.maemo.org Conboy] [http://thp.io/2011/mong Mong aka Plonk]&lt;br /&gt;
# [[User:Cpscotti|cpscotti]] (Clovis Scotti) '''Device received.'''&amp;lt;br/&amp;gt;&lt;br /&gt;
#* Developing the &amp;quot;connected snowboarding&amp;quot; [http://www.pushsnowboarding.com Push Snowboarding] application/project. Also, I'll be very happy to port other apps I did (mainly for Maemo) + new projects.&lt;br /&gt;
# [[User:Clint|Clint Adams]]&amp;lt;br /&amp;gt;&lt;br /&gt;
#* Libre.fm-related software development and porting, advocacy&lt;br /&gt;
# [[User:crevetor|crevetor]] (Antoine Reversat) '''Device received.'''&amp;lt;br/&amp;gt;&lt;br /&gt;
#* Developing a bixi app [http://forum.meego.com/showthread.php?t=3650 App thread]. Some Meego CE hacking&lt;br /&gt;
# [[User:Creamygoodness|Creamy Goodness]] (Lance Colton) '''Device received.'''&amp;lt;br/&amp;gt;&lt;br /&gt;
#* Working on Proximus during July, I will see what we can do with Conky after that.&lt;br /&gt;
# [[User:dakron|dakron]] (Pawel Kurdybacha) '''Device received.'''&amp;lt;br/&amp;gt;&lt;br /&gt;
#* Testing and contribution to Qt Mobility on Harmattan platform&lt;br /&gt;
#* Multimedia Home controller based on gUPnP&lt;br /&gt;
# [[User:daperl|daperl]]&amp;lt;br/&amp;gt;&lt;br /&gt;
#* Porting the Sudoku clone Tomiku&lt;br /&gt;
# [[User:davidmaxwaterman|Max Waterman]] '''Device received.'''&amp;lt;br/&amp;gt;&lt;br /&gt;
#* Porting ZouBa to MeeGo/H and QML, plust other app ideas.&lt;br /&gt;
# [[User:davidsansome|David Sansome]] '''Device received.'''&amp;lt;br/&amp;gt;&lt;br /&gt;
#* Porting [http://www.clementine-player.org Clementine music player] to MeeGo.  Clementine already uses Qt and GStreamer.&lt;br /&gt;
# [[User:deimos|deimos]] (Marco Bavagnoli) &amp;lt;br /&amp;gt;&lt;br /&gt;
#* I'm porting [http://mediadownloader.cz.cc/?page_id=2 mediadownloader] application just ported to [http://mediadownloader.cz.cc/?p=153 maemo] and here a N900 [http://www.youtube.com/watch?v=_Dsj2piBQCw video]. &lt;br /&gt;
# [[User:Dimitar | Dimitar]] (Dimitar Pashov) &amp;lt;br /&amp;gt;&lt;br /&gt;
#* Porting pdf viewer in case the stock one is not better than the one in n900. Try the abilities of the n9/50 HW with an engineering/scientific 3D model viewer. Implement some other ideas.&lt;br /&gt;
# [[User:Divan|Ivan Daniluk]] ''' Device received. COMPLETED.'''&amp;lt;br /&amp;gt;&lt;br /&gt;
#* Porting  [[User:Divan|my Maemo5 applications]], adding full Vkontakte support, developing new apps.&lt;br /&gt;
# [https://meego.com/users/djarty DJArty] (Artem Sereda) &amp;lt;br /&amp;gt;&lt;br /&gt;
#* Porting qutIM, openpref, arora, links, groove, microdc, Ukrainian localization.&lt;br /&gt;
# [[User:Dm8tbr | dm8tbr]] (Thomas B. Ruecker)  &amp;lt;br /&amp;gt;&lt;br /&gt;
#* MeeGo Community edition for N9(|50|00)&lt;br /&gt;
#* APRS application in QML to teach myself something about QML and Qt Mobility.&lt;br /&gt;
#* LiveView daemon/application based on code found here: http://code.google.com/p/adqmisc/source/browse/#svn%2Ftrunk%2Fliveview&lt;br /&gt;
#* USB host mode&lt;br /&gt;
# [[User:drowne | Drowne]] (Valerio Di Donato)&amp;lt;br /&amp;gt;&lt;br /&gt;
#* Location-Based games and application development, mobile game design. Junomi Developer ( serious game presented at Games for Health Conference in Boston, May 2011 )&amp;lt;br /&amp;gt;&lt;br /&gt;
# [[User:druid23 | druid23]] (Dru Moore) &amp;lt;br/&amp;gt;&lt;br /&gt;
#* To port / create multi-track editing and mixing software to Meego / Harmatten, and multimedia capabilities in general&amp;lt;br /&amp;gt;&lt;br /&gt;
#* Additionally, to port remote controls for various networked media players (Singbird, Foobar2000, Squeeze, VLC etc).&lt;br /&gt;
# [[User:dwaradzyn|dwaradzyn]] (Damian Waradzyn) '''Device received. Thank you!'''&amp;lt;br/&amp;gt;&lt;br /&gt;
#* Porting and further development of [http://talk.maemo.org/showthread.php?t=58402 CloudGPS]&lt;br /&gt;
# [[User:epage|Ed Page]]&lt;br /&gt;
#* Updating [http://wiki.maemo.org/DialCentral DialCentral], [http://wiki.maemo.org/Gonvert Gonvert], [http://wiki.maemo.org/Ejpi ejpi] for Meego/Harmattan&lt;br /&gt;
#* Port all other appliations to Qt for  Meego/Harmattan&lt;br /&gt;
#* Continue writing new applications&lt;br /&gt;
# [[User:Eipi|eipi]] (Sanjeev Visvanatha) , '''Device Received 18/7/2011-Thanks!'''&amp;lt;br /&amp;gt;&lt;br /&gt;
#*Porting MaeFlight from Maemo 5, and adding functionality for Harmattan &lt;br /&gt;
# [[User:Elleo|Elleo]] ([http://blog.mikeasoft.com/tag/maemo/ Michael Sheldon]) &lt;br /&gt;
#*Creating a [http://libre.fm Libre.fm] radio client and porting [http://www.jokosher.org Jokosher] to small screen devices.&lt;br /&gt;
#[[User:Emocow|emocow]] (Ferdinand Mayet) ('''Device received. Thank you!''')&amp;lt;br/&amp;gt;&lt;br /&gt;
#*Development of a golf GPS application&lt;br /&gt;
# [[User:fcrochik|fcrochik]] (Felipe Crochik) '''Device received'''&amp;lt;br/&amp;gt;&lt;br /&gt;
#* port applications from n900: mobwebmail, macuco, geeps, wakeonlan, ...&lt;br /&gt;
#[[User:feri|Ferenc Székely]] (ferenc)&lt;br /&gt;
#* Working on [http://apps-beta.meego.com MeeGo Apps], an &amp;quot;app store&amp;quot; for open source, free apps for MeeGo&lt;br /&gt;
#* Will help packaging and porting Maemo -mainly location based- apps to MeeGo&lt;br /&gt;
# [[User:fiferboy|fiferboy]] (Andrew Olmsted) '''Device received'''&amp;lt;br/&amp;gt;&lt;br /&gt;
#* [http://andrew.olmsted.ca/meego fiferboy's applications] - Personal Lexicon, Birdlist, some other ideas for new programs and a few ports&lt;br /&gt;
#[[User:fms|fms]] (Marat Fayzullin) ('''Device received 22.7.2011''')&amp;lt;br/&amp;gt;&lt;br /&gt;
#* Porting the following: [http://fms.komkon.org/SlideRule/ SlideRule], [http://fms.komkon.org/ColEm/ ColEm], [http://fms.komkon.org/fMSX/ fMSX],[http://fms.komkon.org/Speccy/ Speccy], [http://fms.komkon.org/ATI85/ AlmostTI], [http://fms.komkon.org/MG/ MasterGear], [http://fms.komkon.org/iNES/ iNES], [http://fms.komkon.org/VGB/ VGB], [http://fms.komkon.org/VGBA/ VGBA]. Also expecting to port the FBReader and an IRC client (although most likely not XChat).&lt;br /&gt;
#[[User:frankusb|frankusb]] (Frank Banul) '''ID sent, Applied for the Nokia Developer Launchpad program. Device ordered. Device received.'''&lt;br /&gt;
#* Port TabletBridge and RadioTimeToGo&lt;br /&gt;
# [[User:garyd|Gary Driggs]] ('''Device received.''') Porting web apps and misc. Unix tools to MeeGo ARM devices.&lt;br /&gt;
#[[User:generalantilles|GeneralAntilles]] (Ryan Abel)&lt;br /&gt;
#* Working with fiferboy on a photographer's application suite ([http://thousandsparrows.com/meego/ SnapGo] and [https://gitorious.org/fiferboy/geosnap Gitorious], currently) to include feature like a light meter and GPS track recording.&lt;br /&gt;
# [[User:gri|gri]] (Christoph Keller) '''Device received'''&lt;br /&gt;
#* Porting [http://web2sms.garage.maemo.org Web2SMS], splitting it up into a telepathy plugin, service daemon, contacts integration and hopefully sms application integration plus new provider plugins.&lt;br /&gt;
# [[User:Harbaum|Harbaum]] (Till Harbaum)&lt;br /&gt;
#*Currently re-writing CacheMe UI in qml,  working on Zeemote driver&lt;br /&gt;
# [[user:hawaii|hawaii]] (Simon LR)  '''Device received'''&lt;br /&gt;
#* FOSS porting, repo priming, tool building. Platform/product evangelism.&lt;br /&gt;
# [http://forum.meego.com/member.php?u=9286 helex] (Michael Muth)&lt;br /&gt;
#* [http://talk.maemo.org/showthread.php?p=1001316 ClipMan], [http://talk.maemo.org/showthread.php?t=52589 DreamRemote], TcpKeyboard, something like [http://talk.maemo.org/showthread.php?t=72408 ConkyLayoutSwitcher] (have to see how the UI works in detail - need to create it from scratch)&lt;br /&gt;
#[[User:helihyv|helihyv]] (Heli Hyvättinen)&lt;br /&gt;
#*Porting Ghosts Overboard (a game) and Chess Clock from Maemo and adding new features to the former.&lt;br /&gt;
# hiemanshu (Hiemanshu Sharma)&lt;br /&gt;
#* Porting Komedia and OpenCV. Writing a google reader client, a cowsay GUI.&lt;br /&gt;
#[[User:hopbeat|hopbeat]] (Arkadiusz Stopczynski)&lt;br /&gt;
#*Various academic projects, including novel user interfaces, social web, BCI and portable cognitive sensors. All the crazy stuff mentioned here: http://www.milab.imm.dtu.dk&lt;br /&gt;
#*Some utility applications that make your everyday tasks easier, such as shortcutd or lockdaemon for Maemo&lt;br /&gt;
#[[User:ieatlint|ieatlint]](Jeffrey Malone)&lt;br /&gt;
#*Creating NextBus transit application for North America&lt;br /&gt;
#[[User:ivan4th|ivan4th]] (Ivan Shvedunov) '''Device received'''&lt;br /&gt;
#*Working on [http://github.com/ivan4th/i4checklist Shopping list/checklist] application inspired by HandyShopper for PalmOS&lt;br /&gt;
#*Common Lisp stuff (will try to make CCL+CommonQt etc. work on Meego/Harmattan)&lt;br /&gt;
# [[User:Jaffa|Jaffa]] (Andrew Flegg)&lt;br /&gt;
#*Porting apps from Maemo (Attitude &amp;amp; Hermes), developer tools, and apps.meego.com workflow. [[User:Jaffa|&amp;quot;Want to know more?&amp;quot;]]&lt;br /&gt;
#[[User:Javispedro|javispedro]] (Javier de San Pedro)&lt;br /&gt;
#*Porting my [http://wiki.maemo.org/User:Javispedro Maemo 5 applications and SDL games], and [http://gitorious.org/hsdl/pages/Home SDL] itself.&lt;br /&gt;
#[[User:jbos|jbos]] (Jeremias Bosch) '''Device arrived.'''&lt;br /&gt;
#* Bringing Peregrine Communication Client to Harmattan&lt;br /&gt;
#* http://www.peregrine-communicator.org&lt;br /&gt;
#* MeeGo CE&lt;br /&gt;
#[[User:jflatt|jflatt]] (Jason Flatt) '''Completed'''&lt;br /&gt;
#* https://gitorious.org/meego-nonograms&lt;br /&gt;
#JLP (Jure Repinc)&lt;br /&gt;
#* Creating a Thousand Parsec game client&lt;br /&gt;
#* Moodle client&lt;br /&gt;
#* Help with testing&lt;br /&gt;
#* Translation into Slovenian&lt;br /&gt;
# [[User:Joergrw|Joergrw]] (Joerg Reisenweber) '''device arrived. COMPLETED'''&lt;br /&gt;
#* USB hostmode. Give N9(50) access to external storage etc. (co-devels: Thomas B. Ruecker, MohammadAG)&lt;br /&gt;
#* Review the core functionality and find other similar fields to tackle (see *# starhash-enabler for N900). To mind comes: user profiles (refer the modest &amp;quot;default&amp;quot; &amp;amp; &amp;quot;silent&amp;quot; on fremantle), dialplans, location aware event triggers (cinema profile triggers automatically on entering the building), improved battery management and monitoring, theft protection and recovery...&lt;br /&gt;
#* cablefinder based on fast magnetometer readout detecting 50/60Hz fields (co-devel: alterego)&lt;br /&gt;
#* torch/flashlight app for N950 - possibly augmented to do optical data transfer, RX via a v4l2 based decoder app&lt;br /&gt;
#* I am contributing/associated to: &lt;br /&gt;
#**SnapGo / Ryan Abel [consulting on low level stuff] &lt;br /&gt;
#[[User:junousia|junousia]] (Jukka Nousiainen) '''- Device received - COMPLETED'''&lt;br /&gt;
#* Creating a tethering application for DSLR cameras, and porting necessary libraries, e.g. libgphoto2&lt;br /&gt;
#* Other small random applications and utilities &lt;br /&gt;
#[[User:jykae|jykae]] (Ville Jyrkkä) '''device arrived. COMPLETED'''&lt;br /&gt;
#* [http://www.cs.tut.fi/~jyrkkav/ Homesite|Ville Jyrkkä]&lt;br /&gt;
#* [http://jykae.blogspot.com BLOG: Hacker's Life In Finland]&lt;br /&gt;
#* [https://launchpad.net/m-poker MPoker]&lt;br /&gt;
#[[User:mdengler|Martin Dengler]] '''device arrived. COMPLETED'''&lt;br /&gt;
#* I am working on porting a tron-like game (armegatron preferably or glTron) to the N9, and developing Ringr, a location-based ringtone management application.&lt;br /&gt;
# [[User:Nijel|Michal Čihař (Nijel)]] '''device arrived. COMPLETED'''&lt;br /&gt;
#* [https://gitorious.org/dofcalc DOF Calc]&lt;br /&gt;
#* Creating a [http://wammu.eu/ Gammu] application for phone for data synchronization and backup.&lt;br /&gt;
#[[User:Metropt|Jose Xavier]], '''device arrived. COMPLETED'''&lt;br /&gt;
#* My goal is to port the OpenPilot Ground Control Station to the MeeGo platform and adapt the UI for a better mobile experience. You can see more #information about OpenPilot GCS here: http://wiki.openpilot.org/display/Doc/Ground+Control+Station+User+Manual&lt;br /&gt;
# [[User:kdrozd|kdrozd]] (Krzysiek Drozd) - '''N950 At Home '''&lt;br /&gt;
#*Clients for a number of local network services, casual games. More soon, on my MeeGo wiki&lt;br /&gt;
# [[User:kenyoung|kenyoung]] (Ken Young) - '''device arrived. COMPLETED '''&lt;br /&gt;
#*I'm working on porting Orrery, maeSat and maeFat to the N9.   The N950 is a beautiful device!&lt;br /&gt;
# [https://meego.com/users/khertan khertan] (Benoît HERVIER)&lt;br /&gt;
#* Currently working on KhtEditor&lt;br /&gt;
# [[User:Kimitake|Kimitake]] (Kimitake) '''device arrived. COMPLETED'''&amp;lt;br&amp;gt;&lt;br /&gt;
#*developing Qt-based micro blogging client for twitter, identi.ca, wassr, jp&lt;br /&gt;
#*porting qimsys, Japanese Input method, as maliit plugin&lt;br /&gt;
#[[User:klausr|klausr]] (Klaus Rotter) '''device arrived. COMPLETED'''&amp;lt;br&amp;gt;&lt;br /&gt;
#* Started to work with QtQuick. Nice Tool. Trying to rewrite my EasyPlayer program in QtQuick.&lt;br /&gt;
#[[User:kojacker|Kojacker]] (Ryan Faulkner)&lt;br /&gt;
#* Various applications, bits and bobs (links coming)&lt;br /&gt;
#[[User:kulve|kulve]] (Tuomas Kulve) '''device arrived. COMPLETED'''&lt;br /&gt;
#[[User:kypeli|kypeli]] (Johan Paul) '''device arrived. COMPLETED'''&lt;br /&gt;
#[[User:Laasonen|Laasonen]] (Olli Laasonen)&lt;br /&gt;
#*Porting apps from Maemo (Who is calling?, Advanced phone lock, Sanakirja.org dictionary client).&lt;br /&gt;
#*Developing small handy applications.&lt;br /&gt;
#[[User:lardman|lardman]] (Simon Pickering) - '''Device arrived, thanks! :)'''&lt;br /&gt;
#*Porting mBarcode, working on Augmented Reality app (mAR), time and location event app (Proximus), additional location methods (offline cellid, magnetic field line direction)&lt;br /&gt;
#[[User:lcuk|lcuk]] (Gary Birkett) '''device arrived. COMPLETED, thanks'''&lt;br /&gt;
#* N9 Qt port of liqcalendar and misc liq* apps&lt;br /&gt;
#liang wei (foolegg), '''ID sent:Yes''' | '''Launchpad Accepted:Yes''' | ''' Ordered:Yes ''' | '''Received:Yes'''&amp;lt;br/&amp;gt;&lt;br /&gt;
#*[[Cuteinputmethod]] is a Chinese Input Method, designed for handset device.&amp;lt;br/&amp;gt;&lt;br /&gt;
#[[User:Lorenzph|lorenzph]] (Philip Lorenz) - '''Device arrived - thank you'''&lt;br /&gt;
#*Development of a hiking application supporting the user when planning and executing the trip.&lt;br /&gt;
#[[User:lostinmirkwood|lostinmirkwood]] (Kristopher C. Kantor) - '''Device arrived, Thank You.'''&lt;br /&gt;
#*Continuing Development of [http://ansela.garage.maemo.org/ Ansel-A]: Digital Darkroom for Qt Devices&lt;br /&gt;
# [[User:mardy|Mardy]] (Alberto Mardegan)&lt;br /&gt;
#* Developing QML port of [http://www.mardy.it/mappero Mappero], possibly [http://www.mardy.it/oculo Oculo]&lt;br /&gt;
#* [http://neverball.org Neverball and Neverputt] (currently I'm working on a N900 port).&lt;br /&gt;
# [http://wiki.meego.com/User:Martink MartinK] (Martin Kolman)&lt;br /&gt;
#* Porting the modRana GPS navigation system and Mieru manga and comic book reader.&lt;br /&gt;
# [[User:Masterzap|MasterZap]] (Zap Andersson) - '''Device arrived.'''&lt;br /&gt;
#*Porting Maemo app ZapLoc to Meego/QT (and, eventually, game &amp;quot;Slightly Annoyed Rodents&amp;quot;)&lt;br /&gt;
# [[User:Mece|Mece]] (Marcus Wikström) '''Device received'''&amp;lt;br /&amp;gt;&lt;br /&gt;
#*[http://talk.maemo.org/showthread.php?t=73490 Tweed Suit] for N9/50&lt;br /&gt;
#*Qlister (shopping list program)&lt;br /&gt;
#*Planning an location based tracking service/app.&lt;br /&gt;
#[[User:mgedmin|mgedmin]] (Marius Gedminas) '''Device arrived'''&lt;br /&gt;
#*Played with bugfixing in QMLCompass in order to learn the Qt Creator IDE.&lt;br /&gt;
#*Ported vim, fbreader for own use.&lt;br /&gt;
#*Built unofficial-meego-terminal so that a newer meego-terminal can be installed side-by-side, again, for own use.&lt;br /&gt;
#*Put the stuff in apt repository at http://mg.pov.lt/770/ because hasn't found the time to learn OBS yet.&lt;br /&gt;
#*Planning to port [http://mg.pov.lt/gtimelog GTimeLog].&lt;br /&gt;
#[[User:Mikec|Mikecy]] (Mike Choy) - '''Device arrived.'''&lt;br /&gt;
#*Porting svgclock, Maesynth and Maelophone from N900 Python to QML and C++. Stress testing the new [https://projects.developer.nokia.com/qtgameenabler Qt Game Enabler] to see if we finally have  low latency audio support in Qt. Will also look to see if we can get midi sample support via Wild Midi or equivalent. &lt;br /&gt;
# [[User:mickeprag|mickeprag]] (Micke Prag) - '''Device arrived.'''&lt;br /&gt;
#*[https://gitorious.org/telldus/tellduscenter-light TelldusCenter Light] - Using the mobile phone as the central hub in your home automation. Control your lights, electrical appliances and curtains wirelessly from the palm of your hands.&lt;br /&gt;
# [[User:mikelima|mikelima]] (Luciano Montanaro) - '''Device arrived.'''&lt;br /&gt;
#*Porting [http://quandoparte.garage.maemo.org Quando Parte], implementing a QML patience/puzzle game, porting and adapting KGoldrunner, and writing an OpenStreetMap survey tool, all for use with MeeGo Harmattan (and future MeeGo versions).&lt;br /&gt;
# [[User:Milhouse|Milhouse]] '''Device arrived'''&amp;lt;br&amp;gt;&lt;br /&gt;
#*Develop an audio recording application with geo-location support, plus other applications to improve personal productivity utilising the Harmattan notification/event view.&lt;br /&gt;
# [[User:mkruisselbrink|Marijn Kruisselbrink]] '''Device arrive'''&lt;br /&gt;
# [[User:mitrandir|mitrandir]] Ilya Skriblovsky &lt;br /&gt;
#* Port NWTBible (Bible reader)&lt;br /&gt;
#*Planaris (Hierarchical Todo list) to MeeGo&lt;br /&gt;
# [[User:mmlado|mmlado]] (Mladen Milankovic) - '''Device arrived'''&amp;lt;br&amp;gt;&lt;br /&gt;
#*Develop [https://projects.developer.nokia.com/home/user/mmlado games] in QML&lt;br /&gt;
# [[User:MSvB|MSvB]] (Michael Schloh von Bennewitz) - '''Device arrived, thank you.'''&amp;lt;br&amp;gt;&lt;br /&gt;
#*Using the device for a MeeGo lecture series in the fall, giving demos.&lt;br /&gt;
#*Application development includes LDAP client, and a chess clock.&lt;br /&gt;
# [[User:Nicolai|Nicolai]] (Nicolai Hess)&lt;br /&gt;
#*Port my [http://maemo.org/packages/view/scout scout] application to Qt (Application to search contacts, calendar and conversations)&lt;br /&gt;
# [http://twitter.com/#!/mja_fin mja] (Miika Ahdesmaki)&lt;br /&gt;
#* Trap, Shake, Kill 'em and other multi sensor apps' development. [http://forum.meego.com/showthread.php?t=3633] '''Nokia Developer Launchpad program approved 06Jul2011, Device available for order 07Jul2011 (ordered, OID-052820), Order sent on 13.7.2011 (email 10:40am), Received 14.07.2011.'''&lt;br /&gt;
# [[User:niqt|niqt]] (Nicola De Filippo) -  '''Device arrived.'''&lt;br /&gt;
#*Porting my maemo5 applications [http://badge.garage.maemo.org Badge] and QLshop. &lt;br /&gt;
#*New qml game&lt;br /&gt;
#*Other mail client.&lt;br /&gt;
#[[User:Nielsmayer|Niels Mayer]]&lt;br /&gt;
#*[http://wiki.meego.com/Tubelet-and-cutetube-port Rewrite cutetube-qml for MeeGo tablet UX/harmattan UX.] and add automatic-cue-point detection, and social deep-linking of media podcasts. http://nielsmayer.com/meego/qml/qmltube_1_0_6_armel.deb is already usable.... Still a ways to go [http://nielsmayer.com/ts-episode-timeline.png porting my webapp] [http://nielsmayer.com/ts-episode-evnt-anls.png that I call &amp;quot;trainspodder&amp;quot;] :-)&lt;br /&gt;
#*Infrastructure for the above: [http://code.google.com/p/qtzibit/ qtzibit: Simile-Widgets Exhibit in QtWebKit with QML integration].  For example, here's [http://nielsmayer.com/meego/qml/qtzibit-youtube.png Timeline faceted browser for 388 YouTube Episodes] [http://qtzibit.googlecode.com/svn/trunk/exhibit/src/webapp/examples/YouTube/YouTube.html can be created with very little code]. &lt;br /&gt;
#*[http://code.google.com/p/ytd-meego/wiki/CitizenJournalismWithYoutubeDirectForMeego YouTube Direct For MeeGo]&lt;br /&gt;
# [http://twitter.com/#!/gregjroberts Noobmonkey] - '''Launchpad:Accepted(06-Jul-2011) | N950eMail:07 July, 12pmGMT| Ordered:07 July 12pmGMT |Received: 14 July|  '''&lt;br /&gt;
#*Developing/Porting [http://maemo.org/downloads/product/Maemo5/healthcheck/ Healthcheck] with many new fun things (Qt)&amp;lt;BR&amp;gt;&lt;br /&gt;
#*Will Port and update [http://talk.maemo.org/showthread.php?t=65522&amp;amp;highlight=maecount MaeCount] (Qt)&amp;lt;BR&amp;gt;&lt;br /&gt;
#*Would like to develop a new game (Some ideas, and basic code for a few - so will update shortly)&amp;lt;BR&amp;gt;&lt;br /&gt;
# [[User:olka|Oleksandr Kachur]]&lt;br /&gt;
#* Developing cloud music player integrated with Google music, Amazon music and last.fm services.&lt;br /&gt;
# [[User:omllobet|omllobet]]&lt;br /&gt;
#*Port 2d puzzle board game [http://kde-apps.org/content/show.php/kMagnet?content=109111 kMagnet] or a new 2d board puzzle game&lt;br /&gt;
# [[User:orava|orava]] (Lasse Stenberg)&lt;br /&gt;
#* Porting and further developing [http://talk.maemo.org/showthread.php?t=72982 Mapsi]&lt;br /&gt;
# [[User:ossipena|ossipena]] (Timo Pelkonen)&lt;br /&gt;
#* App for measuring distances and keeping statistics, will reveal more when I get it working well&lt;br /&gt;
#* Willing to test others apps, contact me if needed&lt;br /&gt;
# [[User:ph0b|ph0b]] &amp;lt;br /&amp;gt;&lt;br /&gt;
#* Writing tutorials to help other developers to step in MeeGo / Building MeeGo Paris network / Developing an audio player to access to more than 47 000 webradios referenced on AOL shoutcast (by name, genre, current track)&lt;br /&gt;
#[[User:Ph5|pH5]] (Philipp Zabel)&lt;br /&gt;
#* Integration of [https://www.torproject.org/ Tor] support&lt;br /&gt;
#* Porting of [http://maemo.org/downloads/product/Maemo5/frogatto/ Frogatto], pending SDL support&lt;br /&gt;
#* Porting of [https://garage.maemo.org/projects/beifahrer/ Beifahrer] and [https://garage.maemo.org/projects/cinaest/ Cinaest]&lt;br /&gt;
#[[User:philippengelhard|philippengelhard]] (Philipp Engelhard) '''Device arrived.'''&amp;lt;br /&amp;gt;&lt;br /&gt;
#* Develop a maze game for children and adults&lt;br /&gt;
#* Develop a &amp;quot;Nokia Bots&amp;quot; like program for alarm and battery&lt;br /&gt;
# [[User:pycage|pycage]] (Martin Grimme) '''Sent back defective device. Replacement device arrived. Thanks DDP!'''&lt;br /&gt;
#*Doing the Community Apps installer client. Also targetting Harmattan with my OSS MeeGo apps (which are currently mostly running on the WeTab).&lt;br /&gt;
#[[User:Qole|qole]] [http://maemo.org/downloads/product/Maemo5/easy-deb-chroot/ Easy Debian] and other projects as they arise&lt;br /&gt;
#[[User:quang|quang]] (Quang Pham) '''Device arrived.'''&amp;lt;br /&amp;gt;&lt;br /&gt;
#* Develop a location based services application&lt;br /&gt;
#* Test Vietnamese localization&lt;br /&gt;
# [http://maemo.org/profile/view/rambo/ rambo] (Eero af Heurlin) '''ID sent''',  '''Launchpad:Accepted''' | '''N950eMail:Yes''' | ''' Ordered:Yes ''' | '''Received:Yes'''&amp;lt;br /&amp;gt;&lt;br /&gt;
#* Port [http://maemo.org/downloads/product/Maemo5/maecalories/ MaeCalories], [http://maemo.org/downloads/product/Maemo5/mobilehotspot/ Mobile hotspot] (possibly, depends on many things and might not be actually neccessary), I'm also looking into some wearable computing and augmented reality stuff, I'll have to see how suitable platform the N9(50) is going to be for that.&lt;br /&gt;
# [[User:ravirdv|ravirdv]] (Ravi Vagadia)&lt;br /&gt;
#* Trip Management App&lt;br /&gt;
#* VLC Remote&lt;br /&gt;
# [[User:reffy|reffy]] (Alex Tyler)&lt;br /&gt;
#* I plan to port my Subsonic client [http://maemo.org/packages/view/aerofy/ Aerofy] to the platform. I also plan to develop a range of media related applications.&lt;br /&gt;
# [[User:Rlinfati|rlinfati]] (Rodrigo Linfati) ''' ID send: 30-Jun-2011, Launchpad-Applied: 30-Jun-2011, Launchpad-Accepted: 06-Jul-2011 | N950eMail: 07-Jul-2011 | Ordered: 07-Jul-2011 | Received:14-07-2011 '''&lt;br /&gt;
#* Upgrade GoogleLatitude to the current API&lt;br /&gt;
#* Find your Frient: a apps that inform you position directly to you friend without any external server.&lt;br /&gt;
# [[User:roman4|roman4]] (Roman Morawek)&lt;br /&gt;
#* Porting [http://babyphone.garage.maemo.org/ Babyphone] to the platform.&lt;br /&gt;
# [[User:Rzr|RzR]] (Philippe Coval) '''thank you Nokia for n950 and supporting GNU/Linux&lt;br /&gt;
#* tags: ( qt4, qml, opengl, debian, emulator, pinball, neheglqt, p-uae)&lt;br /&gt;
#* more: http://rzr.online.fr/q/handset (dairy)&lt;br /&gt;
#[https://meego.com/users/sandst1 sandst1] (Topi Santakivi)&lt;br /&gt;
#* Porting FunkeySynth, a MeeGo Tablet synthesizer to Harmattan &lt;br /&gt;
#* Demo clip and further info in [http://sandst1.wordpress.com/ my blog]&lt;br /&gt;
# [https://meego.com/users/scifiguy scifiguy] (Sudheer K.) '''ID sent'''| '''Launchpad:Accepted(07-Jul-2011)''' | '''N950eMail:Yes(07-Jul-2011)''' | ''' Ordered:Yes (07-Jul-2011)''' | '''Received:Yes(18-Jul-2011)'''&amp;lt;br /&amp;gt;&lt;br /&gt;
#* Porting [https://garage.maemo.org/projects/marketstoday Markets Today], a Stock Quotes  app to Harmattan. [http://forum.meego.com/showthread.php?t=3903 Released for Harmattan] (19-Jul-2011)&lt;br /&gt;
#* Evaluate porting of VICaR (Call router application) and new application ideas on Harmattan&lt;br /&gt;
# [[User:sebas|sebas]] (Sebastian Kügler) - ('''device arrived, thanks!''')&lt;br /&gt;
#* Bringing Plasma Active to Meego / handsets&lt;br /&gt;
# [[User:Sfietkonstantin|Sfietkonstantin]] (Lucien XU) - ('''thanks Qgil and Nokia for the N950''')&lt;br /&gt;
#* Develop a centralized public transportation system : [[TransportApp|libpublictransportation]] (first priority)&lt;br /&gt;
#* And also a game [http://sfietkonstantin.free.fr/blog/?p=11 Blog post about the game] (No gitorious yet, will come)&lt;br /&gt;
# [[User:shadymilkman|shadymilkman]] (Kyle Thomas) - ('''recieved devkit''')&lt;br /&gt;
#* Building Reedit, a reddit application [http://www.shadymilkman.com/p/n9-project.html] removed name from incomplete list.&lt;br /&gt;
# [[User:shmerl|shmerl]] (Hillel Lubman) - ('''device arrived, thanks to Nokia for open source Meego development support''')&lt;br /&gt;
#* Building/testing Firefox/Fennec (release, beta, aurora, nightly) on Meego&lt;br /&gt;
#* Porting [http://code.google.com/p/kosherjava/ Zmanim API] to C++ and preparing it for Meego as a library (libzmanim). Planned - Hebrew calendar application in Qt based on the Zmanim API.&lt;br /&gt;
# [[User:sjgadsby|sjgadsby]] (Stephen Gadsby)&lt;br /&gt;
#* writing a [[User:Sjgadsby#Preferred Shopper Card Wallet|not-yet-named wallet for store loyalty cards]]&lt;br /&gt;
# [[User:slaine|slaine]] (Glen Gray)&lt;br /&gt;
# [[User:slvr32|slvr32]] (Jason Byrne)&lt;br /&gt;
#* [https://garage.maemo.org/projects/nfqm nfqm] (Netflix Queue Manager) Qt/C++, targeting Symbian^3, Maemo 5, and Meego/Harmattan - discussion thread [http://forum.meego.com/showthread.php?t=3715 here]&lt;br /&gt;
# [[User:smoku|smoku]] (Tomasz Sterna)&lt;br /&gt;
#* Port my touch screen [http://tomasz.sterna.tv/maemo/ ports of games for Maemo] (Widelands, Bos Wars, Robbo) and UAE4All, PSX4All emulators&lt;br /&gt;
#* Port support for SIXAXIS(TM) Controller&lt;br /&gt;
#[[User:smurfy|smurfy]] (Philipp Andreas)&lt;br /&gt;
#* Porting [https://garage.maemo.org/project/fahrplan fahrplan] (Public Transportation App) for the N9&lt;br /&gt;
#[[User:solmis|solmis]] (Janne Mäkinen)&lt;br /&gt;
#* Porting/Rewriting Maemo 5 stuff&lt;br /&gt;
# [[User:Somnathbanik|Somnathbanik]] (Somnath Banik) &amp;lt;br /&amp;gt; &lt;br /&gt;
#* Porting my existing Symbian^3 multimedia applications to MeeGo/N9 with a  new and exciting UI components of Harmattan/MeeGo.&lt;br /&gt;
#* Creating simple and easy open source application to inspire beginner developers to work on MeeGo/N9 technology.&lt;br /&gt;
#[[User:Spenap|Spenap]] (Simón Pena)&lt;br /&gt;
#* Porting and enhancing Maevies from Maemo 5 to Meego/Harmattan. Now tracked at [[User:Spenap/Butaca|Butaca]]&lt;br /&gt;
#[[User:stanokia|stanokia]] (Stani)&lt;br /&gt;
#* Develop RadioTouch to play online radio stations. Ready for testing: [http://forum.meego.com/showthread.php?t=3993 click here].&lt;br /&gt;
#* Develop a creative photo and/or camera application based on the code of the [http://www.phatch.org Phatch] project. (This code uses wxPython for the GUI. So it will take some effort to port it to PySide and QML, with which I have no previous experience yet.)&lt;br /&gt;
#[[User:Theonehumble|Stephan Bulgin]]&lt;br /&gt;
#*Porting NXEngine&lt;br /&gt;
#*In the process of re-writing DonQt for MeeGo/Harmattan.(will most likely be a name change and better code.)&lt;br /&gt;
# [[User:Stskeeps|stskeeps]] (Carsten Munk) '''Device received'''&lt;br /&gt;
#* N950/N9 MeeGo CE work and Wayland on these devices&lt;br /&gt;
# [[user:summeli|summeli]] (Antti Pohjola) -  '''Device arrived.'''&lt;br /&gt;
#* Porting [http://www.summeli.fi/?p=2453 AntSnes] and [http://www.summeli.fi/?p=2520 gpSP] from Symbian^3 to Harmattan/MeeGo.&lt;br /&gt;
#[[User:swinkels|swinkels]] (Sławomir Musiał)&lt;br /&gt;
#* Porting [http://www.swinkels.tvtom.pl/eCards eCards] - Application for creating and sending e-cards&lt;br /&gt;
# [[user:syrjala|syrjala]] (Ville Syrjälä)&lt;br /&gt;
#* Porting [https://gitorious.org/maemo-tvout-control maemo-tvout-control]&lt;br /&gt;
# [[user:tassu|tassu]] (Tapio Pyrhönen)&lt;br /&gt;
#* [http://tapsa.bitmagick.com/nds/ My site] - Porting my old DS games and making new ones.&lt;br /&gt;
# [[user:teo|teo]] (Teo Mrnjavac)&lt;br /&gt;
#* [http://teom.wordpress.com My blog]&lt;br /&gt;
#* [http://ur1.ca/4kkwh Porting] [http://amarok.kde.org Amarok] to tablets and handsets running MeeGo/Harmattan.&lt;br /&gt;
# [[User:texrat|texrat]] (Randall Arnold, Community Device Program Lead)&lt;br /&gt;
# [[User:thebootroo|thebootroo]] (Thomas Boutroue, Developer/Designer)&lt;br /&gt;
#* [https://gitorious.org/meego-community-mobile-ux-ng Gitorious] - Making a C++ Declarative-based Visual Components API Lib, alternative to plain QML, or specific platform Components&lt;br /&gt;
#* [http://modern-os.projects.servhome.org/mobileApps/ MobileApps] - Porting my old Maemo5 apps to my new Lib, and creating new ones&lt;br /&gt;
# [[user:thp|thp]] (Thomas Perl)&lt;br /&gt;
#* [http://gpodder.org/ gPodder] - Integrating gPodder with Harmattan (including specific APIs)&lt;br /&gt;
#* Open source work on Python-related APIs (PySide, etc..) + Python tutorials&lt;br /&gt;
#* Get [[Games|Mong]] in shape for Harmattan&lt;br /&gt;
#* Port over some of my existing [http://maemo.org/profile/view/thp/ Maemo 5 apps]&lt;br /&gt;
# [[user:tigerite|tigerite]] (Peter Hunt)&lt;br /&gt;
#* Integrating the BFS CPU scheduler https://garage.maemo.org/projects/kernel-bfs/ into the N9/50 kernel, along with the Budget Fair Queueing I/O scheduler http://algo.ing.unimo.it/people/paolo/disk_sched/&lt;br /&gt;
#* Porting projects such as the Phoronix Test Suite http://www.phoronix-test-suite.com/ to Harmattan&lt;br /&gt;
#* Converting a Flash cards based learning system which I developed, loosely based on the one found at http://www.educationlabs.com/projects/flashcards/Pages/default.aspx, from C#/XAML to Qt/QML and making it standalone&lt;br /&gt;
# [[User:timoph|timoph]] (Timo Härkönen)&lt;br /&gt;
#* [http://gitorious.org/random-timoph impuzzle, etc.]&lt;br /&gt;
#* [http://timoph.fi timoph.fi]&lt;br /&gt;
#* [https://build.pub.meego.com/project/show?project=home%3Atimoph Community OBS home project]&lt;br /&gt;
# [[User:timsamoff|timsamoff]] (Tim Samoff)&lt;br /&gt;
#* [http://thp.io/2011/mong/ Plonk]&lt;br /&gt;
#* MeeGo Community Apps website design&lt;br /&gt;
#* A few other things that are brewing (games, sound generators, etc.)&lt;br /&gt;
# [[User:tswindell|tswindell]] (Tom Swindell)&lt;br /&gt;
#* [http://stage.rubyx.co.uk/columbus columbus]&lt;br /&gt;
#[[User:twoboxen|twoboxen]] (Matt Hawkins)&lt;br /&gt;
#* Porting [https://code.google.com/p/hawkengine hawkengine] to Meego &lt;br /&gt;
#* Porting [https://sites.google.com/site/hawkorn/games games] via hawkengine &lt;br /&gt;
#[[User:v13|v13]] (Stefanos Harhalakis)&lt;br /&gt;
#* Port WifiEye from maemo to meego&lt;br /&gt;
#* Port MaeGirls from maemo to meego&lt;br /&gt;
#* Perhaps complete MaeSlap and release it for meego&lt;br /&gt;
#[[User:vandenoever|vandenoever]] (Jos van den Oever)&lt;br /&gt;
#*Porting [http://webodf.org WebODF] to MeeGo using QML and JavaScript.&lt;br /&gt;
#*[http://www.webodf.org/redmine/projects/webodf/wiki/WebODF_on_an_N950 WebODF on an N950]&lt;br /&gt;
#*Experiment with a semantic logging tool.&lt;br /&gt;
#*Experiment with a [http://blogs.kde.org/node/4161 metronome application] in QML.&lt;br /&gt;
#[https://meego.com/users/vasvlad Uladzislau Vasilyeu] (Vasvlad)  &lt;br /&gt;
#* Porting OMWeather to Harmattan&lt;br /&gt;
#[[User:Venemo|Venemo]] (Timur Kristóf)&lt;br /&gt;
#* [http://wiki.meego.com/User:Venemo/HarmattanPlans My Harmattan Plans]&lt;br /&gt;
#** [http://gitorious.org/colorful-apps/puzzle-master Puzzle Master]&lt;br /&gt;
#** [http://forum.meego.com/showthread.php?t=3711 Public transportation app] (Click on the [http://forum.meego.com/showthread.php?t=3711 link] and post to the thread if you are interested to contribute.)&lt;br /&gt;
#** [https://gitorious.org/colorful-apps/memory-game Memory game]&lt;br /&gt;
#** Labirynth game (No code available yet)&lt;br /&gt;
#[[User:Vgrade|vgrade]] (Martin Brook)&lt;br /&gt;
#*I would plan to contnue my contributions to the N900 Community Edition of MeeGo which I assume will push right through into the N9. I am very interested in contributing to the exciting new architecture #*built on Wayland to give this device the best user experience.&lt;br /&gt;
#*Local Network Meetups, Cambridge, Birmingham, Koln, Dusseldorf&lt;br /&gt;
#[[User:vitaminj|VitaminJ]] (Stephen Spencer)&lt;br /&gt;
#* [http://jenkins.vitaminj.co.uk/job/meex/ Meex], a portable DJing application&lt;br /&gt;
#[[User:vitna|vitna]] '''COMPLETED&lt;br /&gt;
#*My actual project is http://forum.meego.com/showthread.php?t=3652, but i have in program to develop much more game for the Harmanattan platform&lt;br /&gt;
#[[User:wazd|wazd]] (Andrew Zhilin)&lt;br /&gt;
#* OMWeather, Live Wallpapers, BlueMaemo, Ati85, QML gPodder, tons of other design-related stuff&lt;br /&gt;
#[[User:w00t|w00t]] (Robin Burchell)&lt;br /&gt;
#* meego-ux hackery, Groovy, anything else I think of that's interesting&lt;br /&gt;
#[[User:Wicket|wicket]] (David Derby)&lt;br /&gt;
#*Porting [http://www.6809.org.uk/dragon/xroar.shtml XRoar - Dragon &amp;amp; CoCo emulator] and [http://icculus.org/avp/ Aliens versus Predator (Gold Edition) game engine].&lt;br /&gt;
# [[user:wonko|wonko]] (Ruediger Gad)&lt;br /&gt;
#* Amongst other things I'll port my existing applications for Maemo5/Fremantle to MeeGo/Harmattan: VU Meter, StultitiaSimplex, Zeecontrol, Advanced Clock Plugin (for details please see my page).&lt;br /&gt;
# [[user:xawotihs|xawotihs]]&lt;br /&gt;
#* Porting [http://code.google.com/p/wagic/ Wagic] on Harmattan based on either Qt or SDL.&lt;br /&gt;
#[[user:xerxes2|xerxes2]] (Jens Persson)&lt;br /&gt;
#* [http://gpodder.org/panucci Panucci] - Resuming audiobook and podcast player&lt;br /&gt;
#* Meego CE&lt;br /&gt;
# [[user:xfade|X-Fade]] (Niels Breet)&lt;br /&gt;
#* Set up &amp;amp; Testing Harmanttan building on MeeGo Community OBS&lt;br /&gt;
# [[user:zeenix|zeenix]] (Zeeshan Ali)&lt;br /&gt;
#* Ensuring [http://www.gupnp.org GUPnP]/[http://www.rygel-project.org Rygel] works on N9.&lt;br /&gt;
#* Possibly porting/writing [http://spice-space.org SPICE] client for N9/MeeGo.&lt;br /&gt;
# [[user:zaheerm|zaheerm]] (Zaheer Merali)&lt;br /&gt;
#* Porting [http://gstreamer.freedesktop.org GStreamer] plugins not shipped by Nokia to Harmattan&lt;br /&gt;
#* Porting [http://www.flumotion.net Flumotion] an open source streaming solution to Harmattan taking advantage of the hardware encoding and the camera&lt;br /&gt;
# [[user:zas|zas]] (Matti Henrik Kinen)&lt;br /&gt;
#* Setting up SDK&lt;br /&gt;
# [[user:zchydem|zchydem]] (Marko Mattila) '''Device arrived'''&lt;br /&gt;
#* QuickFlickr - QML based flickr client for mobile handsets.&lt;br /&gt;
# [[user:zeamoceq|zeamoceq]] (Olle Tränk)&lt;br /&gt;
#* Porting [http://qticksize.zeamoceq.net qTickSize] (interface to Swedish online stock broker)&lt;br /&gt;
# [https://meego.com/users/zehjotkah zehjotkah] (Cosimo Kroll)&lt;br /&gt;
#* [http://wiki.maemo.org/MeeGo_Coding_Competition_2011 MeeGo Coding Competition 2011]&lt;br /&gt;
&amp;lt;!-- ############################################################### --&amp;gt;&lt;br /&gt;
&amp;lt;!-- #  Do NOT paste yourself here - add yourself alphabetically!  # --&amp;gt;&lt;br /&gt;
&amp;lt;!-- #         Ensure your meego.com nick is first and your        # --&amp;gt;&lt;br /&gt;
&amp;lt;!-- #             full name is in brackets afterwards             # --&amp;gt;&lt;br /&gt;
&amp;lt;!-- ############################################################### --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== '''Updated Questions and answer for those people awaiting N950 Dev Kits:''' ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
1) '''If you have registered for the launchpad, please wait.'''&lt;br /&gt;
If you want to find out more information you can email the launchpad team, but a quick response is unlikely.&lt;br /&gt;
''Also, Quim will be emailing / sending all of the names and accounts across, therefore, if they have any questions / problems contacting devs they'll let Quim know.''&lt;br /&gt;
&lt;br /&gt;
2) '''Timeline - Timescale'''&lt;br /&gt;
There is no defined deadline or timescale for this. Keep an eye on the delivered and pending sections below, as people are posting dates / times.&lt;br /&gt;
If things start happening and you feel you are being left out - please then email the Nokia Developer launchpad teams. But until then, not much communication if any will be received. Hold tight and please wait.&lt;br /&gt;
If your status is similar to someone else's, and in the same batch, and they get a device, wait a few days then fire a message to the launchpad team or here. No point asking the same questions on the forum. Most of the devs mentioned below are also on twitter, so ask there or elsewhere on the forums if really needed.&lt;br /&gt;
&lt;br /&gt;
3) '''Timescale Part 2 - Patience!'''&lt;br /&gt;
Arranging, confirming, emailing, packaging and sending 250 devices is not a day's job. &lt;br /&gt;
Realistically expect a few weeks once they have started being sent out.&lt;br /&gt;
Be clear in all contact emails you send, to speed up the process - include account names and any other IDs requested/required. It is hard for people to swap from real names, nicknames, etc on a list of 250+ people..&lt;br /&gt;
&lt;br /&gt;
4) '''People who already are registered with Launchpad''' &lt;br /&gt;
If you have a launchpad account (Lucky you) there is an option which allows you to select available devices, however, nothing is certain as of now, therefore that may not be the route. &lt;br /&gt;
Once the team start going through the list, it sounds sensible that they will start emailing / contacting the people on the list with instructions, confirmations and/or queries. (see below! - thank you Jaffa for the update)&lt;br /&gt;
Update - It seems the next step once the launchpad section is confirmed may be an email from '''no.reply-developer@nokia.com''', subject &amp;quot;A Nokia N950 is waiting for you&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
5) '''Why have I heard nothing from Launchpad?'''&lt;br /&gt;
There is no launchpad confirmation email (But if you try to register again it says that there is already an application waiting) - therefore.... re-register if you have to. Just make sure you use the individual and not company registration. (There is however a developer registration email! - and logging in also proves that stage works!)&lt;br /&gt;
&lt;br /&gt;
6) '''&amp;quot;I didn't realize this was happening, can I still apply for one?&amp;quot;'''&lt;br /&gt;
Answer- &amp;quot;Short term: register to http://developer.nokia.com and watch Nokia developer activities in your country. &amp;quot;&lt;br /&gt;
- '''This program is closed''', but as Quim says, keep your eyes on the internet, as there are other programs and similar things available, and different countries where Nokia reps do things too&lt;br /&gt;
&lt;br /&gt;
7) '''Why is Nokia Developer saying the device program has been closed, and we still do not have our devices? *rant rant*'''&lt;br /&gt;
There are other device programs being run separately to the MeeGo DevKit program. The programs are not joined, but the team that sends out the devices is the same. Therefore, any messages you read are not exclusive to this particular set of 250 devices. Other programs may or may not appear across other Nokia sites, they are all separate from this one.&lt;br /&gt;
&lt;br /&gt;
If you have been accepted, don't panic - they have not gone out yet! (As far as we all know!) &lt;br /&gt;
''Please do update this section if you feel other questions from the forum have been answered?''&lt;br /&gt;
&lt;br /&gt;
== General thoughts on device program ==&lt;br /&gt;
&lt;br /&gt;
The Nokia N950 is a platform available now for developers targeting the Nokia N9 and MeeGo handset apps in general. Technical details are available at http://developer.nokia.com/swipe&lt;br /&gt;
&lt;br /&gt;
Candidates must be community developers ready to start working on new or existing open source applications, to be published in apps.meego.com and the Nokia Store. Links to your current projects are relevant! Deadline for applications: end of Tuesday, June 28th.&lt;br /&gt;
&lt;br /&gt;
Questions &amp;amp; comments: http://forum.meego.com/showthread.php?t=3597&lt;br /&gt;
&lt;br /&gt;
IMPORTANT: *commercial* developers are encouraged to apply directly at http://developer.nokia.com - thank you for your understanding.&lt;/div&gt;</summary>
		<author><name>Epage</name></author>	</entry>

	<entry>
		<id>http://wiki.meego.com/Community_Office/Community_device_program/Nokia</id>
		<title>Community Office/Community device program/Nokia</title>
		<link rel="alternate" type="text/html" href="http://wiki.meego.com/Community_Office/Community_device_program/Nokia"/>
				<updated>2011-07-29T22:10:31Z</updated>
		
		<summary type="html">&lt;p&gt;Epage: Moving myself&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Nokia Participation Details =&lt;br /&gt;
* Program Contact: [[User:qgil|Quim Gil]]&lt;br /&gt;
Update: Nokia N950 handsets are ready!  https://meego.com/community/device-program/devices/nokia-n9-devkit&lt;br /&gt;
&lt;br /&gt;
== N950 Devkit Program Details ==&lt;br /&gt;
* Device: Nokia N950 loaded with MeeGo 1.2 Harmattan &lt;br /&gt;
* Quantity: 250&lt;br /&gt;
* Additional Criteria / Terms: &lt;br /&gt;
** One submission per developer please&lt;br /&gt;
** Device to be loaned to participant for [period unspecified].&lt;br /&gt;
** May not be able to ship to certain countries / locations.&lt;br /&gt;
** Nokia employees are not eligible.&lt;br /&gt;
* Timeframe: distribution active.&lt;br /&gt;
&lt;br /&gt;
 '''QUESTIONS / ANSWERS &amp;amp; UPDATES:''' http://forum.meego.com/showthread.php?t=3597&lt;br /&gt;
&lt;br /&gt;
 '''[[N950 landing page]]'''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Results ==&lt;br /&gt;
&lt;br /&gt;
 '''WORK IN PROGRESS'''&lt;br /&gt;
&lt;br /&gt;
 For the sake of transparency and collaboration:&lt;br /&gt;
 * Please link your name to a page describing your Nokia N950 related work e.g. a wiki page.&lt;br /&gt;
 * Add here one line of text summarizing the project(s) and feature(s) you are concentrating. &lt;br /&gt;
 * We haven't done the 'Nokia employee' check yet. If you happen to be one, contact Quim Gil.&lt;br /&gt;
&lt;br /&gt;
=== Still pending ===&lt;br /&gt;
Participants accepted that still haven't received the N950.&lt;br /&gt;
&lt;br /&gt;
==== Still haven't ordered the N950 ====&lt;br /&gt;
You haven't completed the first steps at Nokia Developer and therefore they can't send you an N950. Please move fast before it's too late. You risk losing your chances of getting the device at all.&lt;br /&gt;
&lt;br /&gt;
* Willem Liu '''ID Sent, applied to Launchpad'''&lt;br /&gt;
* Si Howard&lt;br /&gt;
* Piotr Pokora (piotras) - I am core developer of Midgard Content Repository which (as library) is used by different Maemo apps: Conboy, MaeCalories, Tablet of Adventure, Qaikuclient. Also I am maintainer of libgda and midgard packages (debs and rpms). From date of birth, I am interested in unified and simplified data access. And such, I am also going to develop for N950.&lt;br /&gt;
* Damion Yates '''ID sent'''. '''Applied for the Nokia Developer Launchpad programme''' &lt;br /&gt;
** Video streaming for multiple desktops to receive the video from your phone.&lt;br /&gt;
** New in 2.6.32+ kernel's wifi 80211 Infrastructure AP rather than Ad-Hoc for tethering.&lt;br /&gt;
** qemu x86 chroot for wine and arbitrary x86 X11 binaries&lt;br /&gt;
** tun/tap network interface for dns tunnelling with iodine&lt;br /&gt;
** usb-storage usage monitor with idle umount &amp;amp;&amp;amp; rsync and remount&lt;br /&gt;
** turn phone in to bluetooth dongle&lt;br /&gt;
* Luke Bratch&lt;br /&gt;
&lt;br /&gt;
==== N950 ordered, waiting to be sent ====&lt;br /&gt;
Please move your entry from the sections below if this is your case. Sort yourselves by country since this is most likely the reason why you haven't got the device yet.&lt;br /&gt;
&lt;br /&gt;
* Brazil - this is a special case, issue known.&lt;br /&gt;
** [[User:Lizardo|Anderson Lizardo Gomes]] (user: lizardo): ID sent, Accepted for the Nokia Developer Launchpad program (06-Jul-2011–06-Jul-2012), device ordered (07-Jul), waiting for DHL tracking number.&lt;br /&gt;
** [[User:Briglia|Anderson Briglia]] (user: briglia), ID sent | Launchpad:Accepted | Ordered:Yes(7th-July-2011) | Received/Sent:'''No'''&amp;lt;br/&amp;gt;&lt;br /&gt;
** [[User:Lfelipe|Luis Felipe Strano Moraes]] '''ID sent''', '''Launchpad accepted''' &amp;lt;br/&amp;gt;&lt;br /&gt;
** [[User:Rafael2k|Rafael Diniz]] '''ID sent''', '''Launchpad for individuals account active ''' &amp;lt;br&amp;gt;&lt;br /&gt;
*** I plan to develop FM RDS applications with focus in the new standards from RadioDNS like the RadioVIS (partly based in the already existent the N900-fmvis  http://code.google.com/p/n900-fmvis/).&lt;br /&gt;
*** I'm a member of a university radio station (Radio Muda FM, 88.5MHz) and my plan is to develop &amp;quot;real life&amp;quot; radio station applications.&amp;lt;br&amp;gt;&lt;br /&gt;
*** I'll also write one audio and one audio/video icecast2 clients. I can provide icecast2 server access for beta testers at radiolivre.org. I'll take ideas from softwares I already wrote for this purpose, like darknow (a gui for darkice, http://darksnow.radiolivre.org) and theorur, an audio/video icecast2 client (a gui for ffmpeg2theora, http://theorur.sarava.org), all using QT.&lt;br /&gt;
** [[User:vivijim|Rodrigo Vivi]] (user: vivijim), ID sent | Launchpad:Accepted | Ordered:Yes(7th-July-2011) | Received/Sent:'''No'''&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*Maldives&lt;br /&gt;
**Hussain Shafiu(demonreeper) ID sent | Launchpad:Accepted | N950eMail:Yes | Ordered:Yes(7th-July-2011) | Received/Sent:'''No'''&lt;br /&gt;
&lt;br /&gt;
*New Zealand&lt;br /&gt;
**[http://wiki.meego.com/User:Mohannad Mohannad Hammadeh] '''Ordered N950 (July 8, 8:30am NZST) | N950SentEmail:No'''&lt;br /&gt;
*** Porting mPrayerTime to Meego-Harmattan, updating the UI and adding more features.&lt;br /&gt;
*** Writing new application ''Spotter'' - exercise tracking app&lt;br /&gt;
&lt;br /&gt;
*Norway&lt;br /&gt;
**[[User:karljohang|Karl Johan Grøttum]] '''Order: OID-053015''' | '''Device: Nokia N950''' | Porting [http://trac.itek.norut.no/n4c/wiki Hiker's app] from '''EU WP7''' project [http://www.n4c.eu/N4C-open-source-code.php N4C (open source code)]. Hiker's app runs on N810 and N900, and integrates [http://sourceforge.net/projects/dtn/ DTN2] (or [http://garage.maemo.org/projects/dtn/ DTN2 for Maemo]).&lt;br /&gt;
&lt;br /&gt;
*USA&lt;br /&gt;
** [[user:n8willis|Nathan Willis]] '''New Order'''&lt;br /&gt;
*** Font packaging, porting DIN 1451 designs to open font license&lt;br /&gt;
&lt;br /&gt;
* Finland&lt;br /&gt;
**[[User:Vranki|Ville Ranki]] '''ID sent, applied for Nokia Launchpad, Ordered device '''&amp;lt;br /&amp;gt;&lt;br /&gt;
[http://www.siilihai.com Siilihai web forum reader], [http://www.youtube.com/watch?v=erTAMOzdf0Y&amp;amp;feature=related Drone Taxi], PPCards.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* $country&lt;br /&gt;
** $entry.&lt;br /&gt;
&lt;br /&gt;
==== N950 shipped, waiting to get it ====&lt;br /&gt;
Please list yourselves keeping the list by countries in order to see the geographical progress in ''real time''.  :)&lt;br /&gt;
&lt;br /&gt;
* $country&lt;br /&gt;
** $entry.&lt;br /&gt;
&lt;br /&gt;
* Serbia (Devices were sent to Moscow by accident, reordered them to an address in Hungary)&lt;br /&gt;
** [[User:Blackwicked|Edvin Rab]], '''Developer ID sent''', '''Applied for Launchpad''', '''Device Ordered''', '''Waiting for Arrival'''. [http://t.co/4Os8iIh EvidenceHunt Game]&lt;br /&gt;
** Robert Marki - '''Developer ID sent, Applied for Launchpad, Device Ordered, Waiting for Arrival.''' Developing an application called [https://projects.developer.nokia.com/feed_reader FeedReader], it's a universal feed reader with support for podcasts. More info on the project's website. Would like to develop image processing related applications like: Image translation application, Image gallery with face recognition, Porting control software of a hexapod robot.&lt;br /&gt;
&lt;br /&gt;
* Israel&lt;br /&gt;
** Assaf Paz (damagedspline) '''ID sent''', '''applied for Nokia Launchpad, Launchpad for individuals (06-Jul-2011–06-Jul-2012)''','''Order committed (7-Jul-2011)''', '''Device Sent (29-Jul-2011)''', '''Not Received Yet'''&amp;lt;br /&amp;gt;Adapting [http://code.google.com/p/qwazer/ Qwazer] to also work on Meego, hopefully create an Exchange Webmail client in pure QML (N900 was the initial target), Hebrew support&lt;br /&gt;
&lt;br /&gt;
* Russia&lt;br /&gt;
** Roman Deninberg([http://maemo.team16.ru/ Bonapart]) - ''applied for Nokia Launchpad, Launchpad for individuals (28-Jul-2011–28-Jul-2012)''','''New Order (28.7.2011)''', '''Not Received Yet'''&amp;lt;br /&amp;gt;Psx4m\PCSX-rearmed\Psx4m-gui projects basically&lt;br /&gt;
&lt;br /&gt;
==== FIXME Unclear cases &amp;amp; lazy wiki editors ====&lt;br /&gt;
&lt;br /&gt;
 '''Let's clean this section, please! Move your entry wherever appropriate. Thanks!'''&lt;br /&gt;
&lt;br /&gt;
Adam Pigg '''ID sent''', '''applied for Nokia Launchpad''', '''waiting for reply'''&amp;lt;br /&amp;gt;&lt;br /&gt;
Porting my Qt/QML apps/games from maemo, and further work on Kexi and some more QML games&lt;br /&gt;
[http://www.piggz.co.uk My Site]&lt;br /&gt;
&lt;br /&gt;
Oleg Bodnarchuk(bloody)'''ID sent''', '''applied for Nokia Launchpad'''&amp;lt;br /&amp;gt;&lt;br /&gt;
Developing Wiki-based offline database.&lt;br /&gt;
&lt;br /&gt;
[[User:Bart-cerneels|Bart Cerneels]](Stecchino) '''ID sent, applied for Nokia Launchpad, waiting for reply'''&amp;lt;br /&amp;gt;&lt;br /&gt;
Mobile UX' for Amarok using QML. [http://amarok.kde.org Amarok website]&lt;br /&gt;
&lt;br /&gt;
[[User:khertan|Benoît HERVIER]] (Khertan) '''ID sent''' | '''Launchpad:Accepted''' | '''N950eMail:Yes''' | ''' Ordered:Yes(07-Jul-2011) ''' | '''Received:Yes'''&amp;lt;br /&amp;gt;&lt;br /&gt;
Porting [http://khertan.net/khteditor KhtEditor] a source code editor, [http://khertan.net/khweeteur Khweeteur] a twitter/identi.ca client, [http://khertan.net/python_sdist_maemo Sdist_maemo] and developping KhtSync a automated file synchronization application, and KhtDrive an app to measure car and driver performances for eco driving.&lt;br /&gt;
&lt;br /&gt;
[[User:Termana|Bradley Smith]] (Termana) '''ID sent,  Launchpad: Accepted, N950 Email: Received, Ordered: Yes, Shipped: Yes 27/July, Received Device: No'''&amp;lt;br /&amp;gt;&lt;br /&gt;
Developing a karaoke game with built-in pitch correction.&lt;br /&gt;
&lt;br /&gt;
[[User:arfoll|Brendan Le Foll]], '''ID sent''', '''applied for Nokia Launchpad'''&amp;lt;br /&amp;gt;&lt;br /&gt;
Porting XBMC + MeeGo TV stuff + doing audio continuums using pulseaudio.&lt;br /&gt;
&lt;br /&gt;
Daniel Martin Yerga '''ID sent''' | '''Launchpad:Accepted(05-Jul-2011)''' | '''N950eMail:No''' | ''' Ordered:No ''' | '''Received:No'''&amp;lt;br/&amp;gt;&lt;br /&gt;
Porting my Maemo applications: [http://maemo-wordpy.garage.maemo.org/ MaStory], [http://cusl4-cservices.forja.rediris.es/ CasualServices], [http://pyrecipe.garage.maemo.org/ Pyrecipe], [http://maemo.org/downloads/product/Maemo5/copernicium/ Copernicium], [http://stockthis.garage.maemo.org/ StockThis], and developing new ones, like [https://gitorious.org/r-dmobiley R&amp;amp;DMobiley].&lt;br /&gt;
&lt;br /&gt;
David Galindo&lt;br /&gt;
&lt;br /&gt;
[[User:Lbt|David Greaves]] '''ID sent''',  '''Applied for the Nokia Developer Launchpad program'''&amp;lt;br /&amp;gt;&lt;br /&gt;
Mainly CE, Harmattan and Apps to start with. Hopefully Surrounds later.&lt;br /&gt;
&lt;br /&gt;
Diego Marcos '''ID sent''' | '''Launchpad:Accepted(05-Jul-2011)''' | '''N950eMail:Yes''' | ''' Ordered:Yes ''' | '''Received:No'''&amp;lt;br/&amp;gt;&lt;br /&gt;
The goal is porting to mobile devices open source data visualization tools of astronomical data aimed at outreach and science communication.  I've been previously working on Qt/QML desktop applications based on stellarium.org&lt;br /&gt;
http://www.youtube.com/watch?v=COkwscvTnnM&amp;amp;feature=youtube_gdata_player&lt;br /&gt;
&lt;br /&gt;
Frank Sievertsen '''ID Sent, Launchpad member now'''&amp;lt;br/&amp;gt;&lt;br /&gt;
Open-Source Spideroak Mobile Client and other apps&lt;br /&gt;
&lt;br /&gt;
George Ruinelli '''Ordered my device, got account for launchpad and OBS'''&amp;lt;br&amp;gt;&lt;br /&gt;
Porting my [http://maemo.org/packages/view/sleepanalyser/ SleepAnalyser] from MAEMO as well as other smaller apps I wrote/ported. See [http://wiki.maemo.org/User:Caco3] for details.&lt;br /&gt;
&lt;br /&gt;
[[User:gbraad | Gerard 'gbraad' Braad]] '''ID sent''' | '''Launchpad: waiting''' | '''N950eMail: Yes''' | ''' Ordered: Yes ''' |  '''Sent: Yes (28 Jul)''' | '''Received: Not yet'''&amp;lt;br /&amp;gt;&lt;br /&gt;
Porting of of Node.JS, phonegap, unhosted and a mobile org-mode editor. Aiming for good integration with the MeeGo API and Qt Mobility. Code will be published on [https://github.com/gbraad github] and described on my [http://gbraad.nl/ blog]. Small [https://github.com/gbraad/meego-pomodoro PomodoroTimer] app has been created: &lt;br /&gt;
&lt;br /&gt;
Hiemanshu Sharma '''Completed ''' &amp;lt;br/&amp;gt;&lt;br /&gt;
Currently working on porting [[http://forum.meego.com/showthread.php?t=3660|Komedia]]. More apps in the pipeline including Quassel (IRC Client), a Google Reader (name suggestions are welcome) and a 'Line of the day' kind of app (a glorified version of cowsay). Also working on getting an opencv port to give way for Face Detection/Facial recognition APIs.&lt;br /&gt;
&lt;br /&gt;
[[User:kemargrant | kemargrant]], '''ID sent''',  '''Applied for the Nokia Developer Launchpad program,(Ordered N950:Phone recieved)'''&amp;lt;br /&amp;gt;&lt;br /&gt;
My goal is to bring Screen Mirroring to Meego along with playing local files&lt;br /&gt;
easily to a desktop. The app is called groundwork and it is opensource. Code will be shifted to Launchpad once I can begin testing on a meego device.&lt;br /&gt;
http://code.google.com/p/groundwork/&lt;br /&gt;
&lt;br /&gt;
[[User:Kulakov|Kirill Kulakov]], '''ID sent''', '''Submitted credentials to Nokia Launchpad'''&amp;lt;br /&amp;gt;&lt;br /&gt;
MySocials project - clients, libraries and plugins for frameworks and platforms for social networks&lt;br /&gt;
&lt;br /&gt;
Lasse Kärkkäinen '''Device received'''&amp;lt;br /&amp;gt;&lt;br /&gt;
Porting [http://performous.org/ Performous] singing/band game from PC to N900 and MeeGo&lt;br /&gt;
&lt;br /&gt;
Lasse Stenberg, '''ID sent''', '''applied for Nokia Launchpad''' &amp;lt;br /&amp;gt;&lt;br /&gt;
Porting and further developing [http://talk.maemo.org/showthread.php?t=72982 Mapsi]&lt;br /&gt;
&lt;br /&gt;
Laszlo Papp (Already got one earlier, thus I do not need a new one ;) )&lt;br /&gt;
&lt;br /&gt;
liang wei (foolegg), '''ID sent:Yes''' | '''Launchpad Accepted:Yes''' | ''' Ordered:Yes ''' | '''Received:Yes'''&amp;lt;br/&amp;gt;&lt;br /&gt;
[[Cuteinputmethod]] is a Chinese Input Method, designed for handset device.&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Luiz Augusto von Dentz&lt;br /&gt;
&lt;br /&gt;
[http://wiki.meego.com/User:Martink Martin Kolman] (MartinK)  '''ID sent''', '''applied for the Nokia Launchpad''' | '''N950eMail:Yes''' | '''Ordered:Yes''' | '''Received:Yes'''&amp;lt;br&amp;gt;&lt;br /&gt;
Porting the modRana GPS navigation system and Mieru manga and comic book reader.&lt;br /&gt;
&lt;br /&gt;
Michele Tameni ( netvandal ) '''ID sent''',   '''Launchpad: Accepted, N950 Email: Received, Ordered: Yes, Received Device: No'''&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
- Luca's Mirror:  It’s a simple app that transform your phone into a hand-held mirror with some other cool addictions.&lt;br /&gt;
&lt;br /&gt;
- Semantic experiment : Experiment with Notification Area mixed with the semantic information stored in tracker, reacting to user action with usefull notification&lt;br /&gt;
More info  [http://michele.tameni.it/project/meego/ Here]&lt;br /&gt;
&lt;br /&gt;
Mikko Vartiainen '''OK'''&lt;br /&gt;
http://forum.meego.com/showthread.php?t=3607&lt;br /&gt;
&lt;br /&gt;
Mures Andone '''ID sent'''. '''Waiting answer from Nokia Developer Launchpad program'''&amp;lt;br /&amp;gt;&lt;br /&gt;
Develop location-aware apps with Qt/QML, an enhanced e-book reader based on FBReader engine.&lt;br /&gt;
Also an enhanced video player with this main feature: start playing video on desktop/laptop, pause, resume playing from device (with output to device screen), continue playing, pause, switch to tv-out, resume, play, pause, switch back to desktop and so on. Current project: Maemo Application Launcher: http://sourceforge.net/p/maplau/code/&lt;br /&gt;
&lt;br /&gt;
Ray Donnelly&lt;br /&gt;
&lt;br /&gt;
Sam Bristow&lt;br /&gt;
&lt;br /&gt;
[[User:Seif|Seif Lotfy]], '''ID sent''', '''Device received'''&amp;lt;br /&amp;gt;&lt;br /&gt;
My goal is to port the Zeitgeist to MeeGo with all the fun stuff with it. I already have a Qt port for &amp;quot;El Loco&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
Sergey Ivanov '''ID sent, waiting reply of Launchpad program'''&amp;lt;br /&amp;gt;&lt;br /&gt;
Developing software for the mobile operating system MeeGo, associated with the processing of audio and video streams.&lt;br /&gt;
&lt;br /&gt;
Susanna Huhtanen&lt;br /&gt;
&lt;br /&gt;
Tadej Novak '''ID sent''',  '''Launchpad:Accepted(06-Jul-2011)''' | '''N950eMail: No''' | ''' Ordered: No ''' | '''Received: No''' &amp;lt;br&amp;gt;&lt;br /&gt;
Porting my desktop IP TV player and schedule to Meego&lt;br /&gt;
&lt;br /&gt;
[http://wiki.meego.com/User:Kenya888 Takahiro Hashimoto(kenya888)] '''ID sent, accepted into Nokia Launchpad, device ordered'''&amp;lt;br&amp;gt;&lt;br /&gt;
porting qimsys/mozc to Harmattan/MeeGo, developing streaming multimedia player with QML&lt;br /&gt;
&lt;br /&gt;
Tasuku Suzuki&lt;br /&gt;
&lt;br /&gt;
Teemu Hukkanen&lt;br /&gt;
&lt;br /&gt;
Thomas Cherryhomes - Lead Developer for LinuxMCE - '''ID and Launchpad ID sent'''&lt;br /&gt;
* LinuxMCE is a next generation smart home platform encompassing media, home automation, telecom, and security features. http://www.linuxmce.org/&lt;br /&gt;
* A 25 min demo of the software can be seen here: http://video.google.com/videoplay?docid=2176025602905109829&lt;br /&gt;
* Nokia N950 will be used as a test platform for the new QML/Qt Quick based qOrbiter we are writing to replace our existing Orbiter software, qOrbiter videos here: &lt;br /&gt;
** http://www.youtube.com/watch?v=NDGagn3EciA&lt;br /&gt;
** http://www.youtube.com/watch?v=oUHrCdBgoyQ&lt;br /&gt;
&lt;br /&gt;
Tom Swindell&lt;br /&gt;
* [[User:Tswindell/CommunityApplicationDevelopment]]: Columbus Navigation Toolkit, Media IM Status Updater.&lt;br /&gt;
&lt;br /&gt;
[[User:tlaukkanen|Tommi Laukkanen]] '''Device received'''&lt;br /&gt;
* Facebook client [http://kasvopus.com Kasvopus], Twitter client [http://twimgo.com TwimGo], Google Reader client [http://newsflow.mobi NewsFlow], FourSquare client [http://nelisquare.com Nelisquare]&lt;br /&gt;
&lt;br /&gt;
[[User:toninikkanen|Toni Nikkanen]] '''ID sent''', '''applied for Nokia Launchpad''', '''order sent'''&lt;br /&gt;
&lt;br /&gt;
Zap Andersson '''Device Received - YAY'''&lt;br /&gt;
* Porting [http://maemo.org/packages/view/zaploc/ ZapLoc] app to Qt/Meego (currently pygame/Maemo)&lt;br /&gt;
* Porting game &amp;quot;Slightly Annoyed Rodents&amp;quot; (yet to be released) to Qt/Meego (currently pygame/Maemo)&lt;br /&gt;
&lt;br /&gt;
[[User:leafjohn|Lifu Zhang(leafjohn)]] '''ID sent, applied for Nokia Launchpad (request submitted, waiting for review) '''&lt;br /&gt;
* Create an opensource Qt astrology app for handset, Project Page: [https://github.com/cardmaster/qastro/tree/develop qastro hosting by github]&lt;br /&gt;
* Porting apps on our company page ([http://store.ovi.com.cn/publisher/EB EB OVI Page]) to MeeGo&lt;br /&gt;
&lt;br /&gt;
[https://meego.com/users/antman8969 Anthony Naddeo] (antman8969 here on meego.com, but antman8069 on developer.nokia.com) '''id sent, applied for launch program''' &lt;br /&gt;
* [http://umcs.maine.edu/~naddeoa/profile/linkedup-project.html Linkedup] - LinkedIn client for Maemo, Meego, Harmattan..... anything Qt&lt;br /&gt;
* [http://umcs.maine.edu/~naddeoa/profile/qtweather-project.html QtWeather] - United States National Weather Service application&lt;br /&gt;
Leaf Johnson&lt;br /&gt;
&lt;br /&gt;
William Su (sony123) '''ID sent, Launchpad program approved, device ordered, not yet shipped''' &amp;lt;br /&amp;gt;&lt;br /&gt;
[http://talk.maemo.org/showthread.php?p=1019939#post1019939 Stockona] - a google finance client. &lt;br /&gt;
Currently working on:&lt;br /&gt;
* Local portfolio creation.&lt;br /&gt;
* Webview integration: Make in-app news feed reading possible.&lt;br /&gt;
&lt;br /&gt;
Anthony Day '''ID sent''', '''Device received'''&lt;br /&gt;
* Porting and extending [http://talk.maemo.org/showthread.php?t=72951 inner-spin] game&lt;br /&gt;
* Porting and extending [http://talk.maemo.org/showthread.php?t=73942 Take it away Marco] N900 drum machine&lt;br /&gt;
* writing new game and realtime music Apps content for the N9/950   &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[User:mattaustin|Matt Austin]]  '''Device ordered (07/07/11), waiting for dispatch notification or tracking code.'''&amp;lt;br /&amp;gt;&lt;br /&gt;
Transperth trains live departure boards app, Player numbers AFL footy app, Amazon S3 bucket &amp;amp; file browser&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[http://maemo.org/profile/view/rm_you/ Adam Harwell] '''Device Received'''&amp;lt;br /&amp;gt;&lt;br /&gt;
* Porting [http://maemo.org/downloads/product/OS2008/advanced-backlight/ Advanced Backlight] from Maemo, adding new features&lt;br /&gt;
* Helping with photo utility suite project (SnapGo, with GeneralAntilles and others)&lt;br /&gt;
* Will help beta test apps for people on IRC&lt;br /&gt;
&lt;br /&gt;
Boris Pohler (emanymton) '''ID sent'''| '''Launchpad: Accepted(07-Jul-2011)''' | '''N950eMail: Yes''' | ''' Ordered: Yes ''' | '''Received: No'''&amp;lt;br /&amp;gt;&lt;br /&gt;
* porting Zeitkonto and HandsOff (not yet released) from Maemo to Meego, maybe a rewrite with QML&lt;br /&gt;
* other ideas in pipeline (remote for mythtv, live sports-ticker, ...)&lt;br /&gt;
* Helping other users at the german side meego.de (there known as Cermit) &lt;br /&gt;
&lt;br /&gt;
Eike Hein&lt;br /&gt;
&lt;br /&gt;
[[User:Theonehumble|Stephan Bulgin]] '''COMPLETED'''&amp;lt;br /&amp;gt;&lt;br /&gt;
- I will be porting NXEngine http://nxengine.sourceforge.net/ to MeeGo/Harmattan. My previews work for Maemo can be found here http://talk.maemo.org/showpost.php?p=971709&amp;amp;postcount=1&lt;br /&gt;
  Description: A clone/engine-rewrite of the classic jump-and-run platformer Cave Story.&lt;br /&gt;
- Right now Im in the process of re-writing DonQt for MeeGo/Harmattan. Previews work for Maemo here  http://www.forums.internettablettalk.com/showpost.php?p=976671&amp;amp;postcount=1 (will most likely be a name change and better code.)&lt;br /&gt;
  Description: Don is a &amp;quot;SDK installer&amp;quot; for developers to compile on the go.&lt;br /&gt;
- More ports and some original stuff and looking forward to collaborations. &lt;br /&gt;
&lt;br /&gt;
Nilanjan Chakravorty - '''ID sent, Already applied for the Nokia Developer Launchpad program''' - '''Ordered Device (8-Jul-2011)'''&lt;br /&gt;
* Leverage my financial background with IT to develop&lt;br /&gt;
- Portfolio management application   - Bloomberg Pricing data application&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--David Perlow '''ID sent, Applied for the Nokia Developer Launchpad program [UPDATE: 110706] Accepted into the Launchpad program [UPDATE: 110707] Ordered device and received order confirmation [UPDATE: 110718] Device arrived'''--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[User:Rnazarov|Ruslan Nazarov]] '''ID sent''' | '''Launchpad:Accepted(06-Jul-2011–06-Jul-2012)''' | '''N950eMail:No''' |''' Ordered:Yes (07-Jul-2011)''' | '''Received:No''' &amp;lt;br /&amp;gt;&lt;br /&gt;
Porting [https://gitorious.org/titanim TitanIM] (Vkontakte instant messenger)&lt;br /&gt;
&lt;br /&gt;
Moritz Mühlenhoff&lt;br /&gt;
&lt;br /&gt;
[[User:milliams|Matt Williams]] (milliams) '''Device Sent (28/7/2011)'''&amp;lt;br/&amp;gt;&lt;br /&gt;
Creation of a Particle Physics information database (from [http://pdg.lbl.gov/ PDG]) application. Porting of [http://games.kde.org/game.php?game=ksquares KSquares] to pure Qt for MeeGo and creation of other similar simple games. Porting of [http://thermite3d.org PolyVox] to MeeGo and port games built on it when they are ready. Port the [http://falconpl.org Falcon] programming language to MeeGo.&lt;br /&gt;
&lt;br /&gt;
[[User:Asys3|Uwe Koch]] '''ID sent, Applied for the Nokia Developer Launchpad program'''&amp;lt;br&amp;gt;&lt;br /&gt;
* Port hopefully all of my games Lineo,Q,TwinDistress,Sokoban and Jooleem&lt;br /&gt;
&lt;br /&gt;
Felipe Erias Morandeira '''ID sent, Applied for the Nokia Developer Launchpad program'''&lt;br /&gt;
* Design user interfaces using QML and collaborate with the MeeGoTouch project.&lt;br /&gt;
&lt;br /&gt;
Mohammad Abu-Garbeyyeh '''Device Ordered, Waiting for Arrival''' &amp;lt;br /&amp;gt;&lt;br /&gt;
Planning a wiki page with a todo list, main project here: http://bt-messenger.com&lt;br /&gt;
&lt;br /&gt;
[[User:sebas|Sebastian Kügler]] (sebas) '''device has arrived...'''&lt;br /&gt;
* Bringing Plasma Active ( http://community.kde.org/Plasma/Active )to MeeGo &lt;br /&gt;
&lt;br /&gt;
Juha Ristolainen '''ID sent, already a Launchpad member''' &amp;lt;br /&amp;gt;&lt;br /&gt;
Heiaheia fitness-service application for MeeGo. Untappd.com client for MeeGo.&lt;br /&gt;
&lt;br /&gt;
[[User:Bemasc/N950_Project|Benjamin Schwartz]] '''Received. Appears to be in working order.''' &amp;lt;br /&amp;gt;&lt;br /&gt;
I will attempt to convert [http://sugarlabs.org Sugar] [http://activities.sugarlabs.org Activities] into MeeGo apps, and hopefully in the process acquire some insight into the potential for MeeGo to form the basis of future Sugar revisions&lt;br /&gt;
&lt;br /&gt;
Shan Yafeng '''ID sent''', '''Applied for the Nokia Developer Launchpad program''' &amp;lt;br /&amp;gt;&lt;br /&gt;
An education program for exchange information between students and teacher in class. And port some programs to the nokia N900/N950 device. The progress can be found here : http://cuckoohello.wordpress.com&lt;br /&gt;
&lt;br /&gt;
Reggie Suplido '''ID sent''',  '''Launchpad accepted. Device ordered.'''&amp;lt;br /&amp;gt;&lt;br /&gt;
Custom MeeGo web development related to meego.com and forum.meego.com.&lt;br /&gt;
&lt;br /&gt;
Koos Vriezen '''Device Received'''&amp;lt;br/&amp;gt;&lt;br /&gt;
Will port the popular [http://maemo.org/downloads/product/Maemo5/kmplayer/  kmplayer] application from maemo5.&amp;lt;br/&amp;gt;&lt;br /&gt;
For now sources are found at [https://garage.maemo.org/plugins/scmsvn/viewcvs.php/branches/harmattan/?root=kmplayer maemo garage]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Aigars Mahinovs&lt;br /&gt;
&lt;br /&gt;
Andreas Schildbach (Goonie) '''ID sent''', '''Applied for the Nokia Developer Launchpad program''' &amp;lt;br /&amp;gt;&lt;br /&gt;
Porting of [http://code.google.com/p/public-transport-enabler/ Public-Transport-Enabler] and [https://market.android.com/details?id=de.schildbach.oeffi Öffi] to Meego.&lt;br /&gt;
&lt;br /&gt;
Ilya Paramonov '''Device received''' &amp;lt;br /&amp;gt;&lt;br /&gt;
Development of collaborative mind mapping application [http://yar.fruct.org/projects/hivemind HiveMind] for mobile and desktop platforms and sophisticated GTD-style personal time management application [http://yar.fruct.org/projects/octotask Octotask].&lt;br /&gt;
&lt;br /&gt;
Daniele Maio '''Device Ordered, Waiting for Arrival'''&amp;lt;br /&amp;gt;&lt;br /&gt;
Porting maemo5 apps to meego.&lt;br /&gt;
&lt;br /&gt;
Philford Barrett (sevla) '''ID sent, Applied for the Nokia Developer Launchpad program'''&lt;br /&gt;
* Swipe Style/Swypr/SwipeMe - Allows the user to assign swiping from the outside of the screen to specific actions i.e. swiping from the top jumps to the multi-tasking view while swiping from the bottom jumps to the Feeds View.  Each side of the screen (Top/Left/Bottom/Right) can have a max of 4 zones.  Each zone can be assigned to an action thereby giving the user the ability to configure 16 &amp;quot;invisible&amp;quot; shortcuts.  Each of which will be available at all times, regardless of what the user is doing in the current app/view.&lt;br /&gt;
* Drop Box Integration - Integrate downloading/uploading data to and from an existing Drop Box account.  Wherever possible, existing apps will be modified to show this data. i.e. photos in the users drop box account can be (meaning this will be configurable) displayed from the n9 picture viewer.&lt;br /&gt;
* Audio Galaxy Integration - Enable streaming of your audio galaxy library to your device through the n9 media player.&lt;br /&gt;
* Feeds++ - Feeds++, an enhanced feeds view, extends the functionality of the feeds view by allowing multiple views and enabling the ability to assign specific data to each view.  i.e. Show Facebook only data in View A and Twitter only data in View B.  Feeds++ will also allow the user to reply directly to events without having to opening the corresponding app.&lt;br /&gt;
[[user:jukey|Uwe Kaminski]] ('''Device Received''')&lt;br /&gt;
&lt;br /&gt;
Kyösti Ranto '''Nokia Developer ID sent. Launchpad accepted. Device ordered.''' &lt;br /&gt;
* [https://gitorious.org/meego-developer-edition-for-n900/mg-package-manager mg-package-manager]&lt;br /&gt;
&lt;br /&gt;
Stuart Howarth (marxian) - '''ID sent. Accepted for Nokia Launchpad program 06/07/11. Device ordered 07/07/11 - OID-052785'''&lt;br /&gt;
* Porting my [https://garage.maemo.org/projects/qmltube cuteTube] application (QML version).&lt;br /&gt;
* MythTV controller/recording scheduler (similar to the Android XBMC application)&lt;br /&gt;
&lt;br /&gt;
[[User:hardaker|Wes Hardaker]] '''ID sent, Launchpad application submitted'''&lt;br /&gt;
I'm continually developing applications for multitudes of devices, including many Qt applications at [http://www.dnssec-tools.org/ dnssec-tools] as well as personal projects, my favorite being my [http://www.hamtools.org/cutecw/ Morse Code Training Software], which is what I want to port immediately.  See my [[User:hardaker|User Page]] for a more complete list.&lt;br /&gt;
&lt;br /&gt;
[[User:kkv|Kirill Krinkin]] '''ID sent, already a Nokia Launchpad member'''. &amp;lt;br /&amp;gt;&lt;br /&gt;
I'm working on clients for open [https://github.com/OSLL/geo2tag Location Base Platform ]. Project tracker and progress can be found [[http://osll.spb.ru/projects/geo2tag/issues here]]. &lt;br /&gt;
&lt;br /&gt;
William Stephenson (wstephenson) '''Device Received''',  '''Applied for the Nokia Developer Launchpad program'''&lt;br /&gt;
I'm working on a high level toolkit for the creation of branded RSS based apps, in order to facilitate the creation of these simple apps.&lt;br /&gt;
&lt;br /&gt;
pancake&lt;br /&gt;
&lt;br /&gt;
[[User:pancake|pancake]] '''&lt;br /&gt;
I'm the author of radare2, a reverse engineering framework for disassembling, debugging, hexediting binaries and doing some forensics-related tasks. I already wrote a GTK frontend for Maemo (n770,n810,n900) and my plan is to write a QT/QML ui for it.&lt;br /&gt;
I will also port other programs of mine like tokipona language learning tools, simple games (but addictive!) to QT (from commandline).&lt;br /&gt;
In the future I would like to work on Vala and Gtk3/gtkaml (multitouch) support for MeeGo based devices.&lt;br /&gt;
&lt;br /&gt;
[[User:lamikr|Mika Laitio]]&lt;br /&gt;
* kernel&lt;br /&gt;
* MeeGo CE edition&lt;br /&gt;
* VDR linux tv client&lt;br /&gt;
&lt;br /&gt;
 * kernel&lt;br /&gt;
 * Meego CE edition&lt;br /&gt;
&lt;br /&gt;
Sebastian Pawluś - '''Device Received'''&amp;lt;br/&amp;gt;&lt;br /&gt;
LocIt is a location aware system, able to put on screen information about objects near device. Right now works with: Youtube, Wikipedia, Panoramio layers.&amp;lt;br/&amp;gt;&lt;br /&gt;
Plans are: port it from Maemo to MeeGo device, and move from client server architecture to single client architecture.&amp;lt;br/&amp;gt;&lt;br /&gt;
More: [https://github.com/xando/thesis/tree/master/locit-client source], [https://github.com/xando/thesis/blob/master/thesis/Obrazki/UiFlowDiagram.pdf?raw=true screenshots]&lt;br /&gt;
&lt;br /&gt;
Christos Zamantzas ([[User:Saturn|Saturn]]) - '''ID sent, Applied for the Nokia Developer Launchpad program'''&lt;br /&gt;
&lt;br /&gt;
Sivan Greenberg--&amp;gt; Nokia Developer Champion ID: &amp;lt;b&amp;gt;sivang&amp;lt;/b&amp;gt; , Applied for individual Nokia Developer Launchpad Membership. Working on [[http://developer.qt.nokia.com/groups/qt_contributors_summit/wiki/pdf/CrowdQuick CrowdQuick]] and some platform stuff, as evident by the talks I had given in 2010/2011 begin_of_the_skype_highlighting              2010/2011      end_of_the_skype_highlighting begin_of_the_skype_highlighting              2010/2011      end_of_the_skype_highlighting begin_of_the_skype_highlighting              2010/2011      end_of_the_skype_highlighting MeeGo conferences.&lt;br /&gt;
&lt;br /&gt;
Tapio Pyrhönen '''Device ordered 2011-07-11 and arrived on 2011-07-16!!! Getting busy now.'''&amp;lt;br /&amp;gt;&lt;br /&gt;
Porting my old Nintendo DS apps/games and making new ones too.&lt;br /&gt;
[http://tapsa.bitmagick.com/nds My Site]&lt;br /&gt;
&lt;br /&gt;
Michael Schloh von Bennewitz (MSvB) '''- Got &amp;quot;A Nokia N950 is waiting for you&amp;quot; but... after going to the order URL an error appears &amp;quot;Support Center, Unexpected error has occured. Please try again.&amp;quot; This since three days now.''' Using the device for a MeeGo lecture series in the fall, giving demos. Application development includes LDAP client, and a chess clock. I've ported a number of network and security packages as well, will begin to get them over to the MeeGo repos.&lt;br /&gt;
&lt;br /&gt;
Svetozar Belic ([[User:trx|trx]]) '''- Got &amp;quot;A Nokia N950 is waiting for you&amp;quot;, Device ordered (2011-07-07) ''', Port TxPad, TxMySQL Explorer, libQt4Pas library, etc.. Will create a list of apps to port/create&lt;br /&gt;
&lt;br /&gt;
=== Completed ===&lt;br /&gt;
Participants that have received the Nokia N950, sorted by meego.com nick. You know this device program is completed when we have reached 250:&lt;br /&gt;
&lt;br /&gt;
# [[User:aaporantalainen|aaporantalainen]] (Aapo Rantalainen)&lt;br /&gt;
#*[http://www.umsic.org/jammo/  JamMo] (will need some underlying libraries, e.g. [http://www.clutter-project.org/ clutter])&lt;br /&gt;
# [[User:Agomez|Agomez]] (Andres Gomez)&lt;br /&gt;
#*Development of drondas, a personal application for the management of the payments shared with other people so you can get track of who paid which in name of whom.&lt;br /&gt;
#[[User:awhiemstra|awhiemstra]] (Arjen-Wander Hiemstra) &amp;lt;br/&amp;gt;&lt;br /&gt;
#*Porting [http://gluon.gamingfreedom.org Gluon] to MeeGo/Harmattan.&lt;br /&gt;
#*Working on [http://calligra-suite.org Calligra].&lt;br /&gt;
# [[User:ajalkane|ajalkane]] (Arto Jalkanen) &lt;br /&gt;
#*Developing dynamic profile switcher, with location and day/time based rules on which profile to use.&lt;br /&gt;
# [[User:aklapper|aklapper]] (Andre Klapper)&lt;br /&gt;
#*General testing and bug hunting&lt;br /&gt;
# [[User:amandalam|amandalam]] (Amanda Hoi Ching Lam) '''Device received (2011-07-18)'''&lt;br /&gt;
#*Traditional Chinese language and utility apps for the MeeGo &amp;amp; Harmattan platforms, including but not limited to a Chinese character lookup app, and applications localized for the Traditional Chinese communities in Hong Kong, Macau and Taiwan.  [https://sites.google.com/site/amandahoic/Home/ Amanda's Software Projects]&lt;br /&gt;
# [https://meego.com/users/andreagrandi Andy80] (Andrea Grandi)&lt;br /&gt;
#*QML native client for Soma.fm radio. Current code available here: https://github.com/andreagrandi/CuteSoma&lt;br /&gt;
# [[User:anidel|anidel]] (Aniello Del Sorbo) '''Device received. All is well in the world.'''&lt;br /&gt;
#*Porting [http://maemo.org/downloads/product/Maemo5/xournal/ Xournal] from Maemo to Harmattan/MeeGo&lt;br /&gt;
# [[User:andrei1089|andrei1089]] (Andrei Mirestean) '''device received'''&lt;br /&gt;
#*Develop a step counter application based on the [http://maemo.org/downloads/product/Maemo5/pedometerhomewidget/ Pedometer desktop widget] for N900&lt;br /&gt;
# [[User:antman8969|antman8969]] (Anthony Naddeo) '''device received''' &lt;br /&gt;
#*[http://umcs.maine.edu/~naddeoa/profile/linkedup-project.html Linkedup] - LinkedIn client for Maemo, Meego, Harmattan..... anything Qt&lt;br /&gt;
#*[http://umcs.maine.edu/~naddeoa/profile/qtweather-project.html QtWeather] - United States National Weather Service application&lt;br /&gt;
#[[User:apachelogger|apachelogger]]&lt;br /&gt;
#*[http://git.videolan.org/?p=QtMobileVLC.git;a=summary Porting VLC] to handsets and tablets using Qt for UI awesomeness.&lt;br /&gt;
#Aleix Pol (apol)&lt;br /&gt;
#*Porting &amp;quot;horaris&amp;quot; and &amp;quot;kanban&amp;quot; maemo applications, finally get to have a usable KAlgebra Mobile version working on MeeGo, hopefully drag other KDE applications with this effort.&lt;br /&gt;
# [[User:ar|ar]] (Antti Raina) '''device received'''&lt;br /&gt;
#*Develop a simple budgeting application + porting apps &lt;br /&gt;
#[[User:Avis|Avis]] (Alexander Terekhov) '''device received''' &lt;br /&gt;
#*[http://qt-apps.org/content/show.php/Smart+Shopper?content=139742 Smart Shopper] - porting and improving GPS-based shopping application.&lt;br /&gt;
# [[User:b0unc3|b0unc3]] (Daniele Maio), '''device received'''&lt;br /&gt;
#* Porting maemo stuff&lt;br /&gt;
# [[User:bergie|Henri Bergius]]&lt;br /&gt;
#* Porting Buscatcher, Midgard and Node.js -related tools to MeeGo. However, I've withdrawn my device program application because I already got a N950 via Helsinki MeeGo Network.&lt;br /&gt;
# [[User:Bundyo|Bundyo]] (Kamen Bundev), '''ID sent''', '''Launchpad activated, notification email received, device ordered, device shipped, received on 18th July''' &amp;lt;br /&amp;gt;&lt;br /&gt;
#* Rewriting Search Tool, porting Maemo 5 work, NodeJS, possible Tear rewrite.&lt;br /&gt;
# [[User:Broothy|Broothy]] (Ádám Balázs), '''Sent my Account ID to Quim, i'm already Nokia launchpad member. Awaiting any reply. Device shipped, received''' &amp;lt;br /&amp;gt;&lt;br /&gt;
#* [http://store.ovi.com/content/113753 Switchboard] [http://www.youtube.com/watch?v=GdskgAfjjxc MobileMind]&lt;br /&gt;
#[[User:captianigloo|captainigloo]] (Aguirre Nicolas)&amp;lt;br /&amp;gt;&lt;br /&gt;
#* Porting [http://enna.geexbox.org Enna], [http://svn.enlightenment.org/svn/e/trunk/E-MODULES-EXTRA/elfe elfe] and all [http://www.enlightenment.org EFL/Enlightenment] libraries to Meego.&lt;br /&gt;
# [[User:cgrozea|cgrozea]] (Cristian Grozea) '''Device received.'''&amp;lt;br/&amp;gt;&lt;br /&gt;
#* creating magnus-plus-photo: an application that combines a camera-based magnifier with more advanced image processing techniques, that would enable one to use it as a magnifier (with optional light from the camera LED), use it as a photo negatives lightbox that automatically inverts the negatives and adjusts the colors for proper display; use it as an EVF add-on to SLRs to help with manual focus, leveraging the possibility of amplifying contrast and magnifying.&amp;lt;br /&amp;gt;&lt;br /&gt;
# [[User:cip|cip]] (Christian Pühringer) '''ID sent, already a Launchpad member''', '''Ordered (8-Jul-2011)''', '''Dispatched (15-Jul-2011)''', '''Device received (18-Jul-2011)&amp;lt;br&amp;gt;&lt;br /&gt;
#* [https://github.com/cip/WikiOnBoard/wiki WikiOnBoard] Offline reader for Wikipedia using [http://openzim.org zim] format.  &lt;br /&gt;
# [https://meego.com/users/conny Conny] (Cornelius Hald) '''Device received'''&amp;lt;br /&amp;gt;&lt;br /&gt;
#* [http://conboy.garage.maemo.org Conboy] [http://thp.io/2011/mong Mong aka Plonk]&lt;br /&gt;
# [[User:Cpscotti|cpscotti]] (Clovis Scotti) '''Device received.'''&amp;lt;br/&amp;gt;&lt;br /&gt;
#* Developing the &amp;quot;connected snowboarding&amp;quot; [http://www.pushsnowboarding.com Push Snowboarding] application/project. Also, I'll be very happy to port other apps I did (mainly for Maemo) + new projects.&lt;br /&gt;
# [[User:Clint|Clint Adams]]&amp;lt;br /&amp;gt;&lt;br /&gt;
#* Libre.fm-related software development and porting, advocacy&lt;br /&gt;
# [[User:crevetor|crevetor]] (Antoine Reversat) '''Device received.'''&amp;lt;br/&amp;gt;&lt;br /&gt;
#* Developing a bixi app [http://forum.meego.com/showthread.php?t=3650 App thread]. Some Meego CE hacking&lt;br /&gt;
# [[User:Creamygoodness|Creamy Goodness]] (Lance Colton) '''Device received.'''&amp;lt;br/&amp;gt;&lt;br /&gt;
#* Working on Proximus during July, I will see what we can do with Conky after that.&lt;br /&gt;
# [[User:dakron|dakron]] (Pawel Kurdybacha) '''Device received.'''&amp;lt;br/&amp;gt;&lt;br /&gt;
#* Testing and contribution to Qt Mobility on Harmattan platform&lt;br /&gt;
#* Multimedia Home controller based on gUPnP&lt;br /&gt;
# [[User:daperl|daperl]]&amp;lt;br/&amp;gt;&lt;br /&gt;
#* Porting the Sudoku clone Tomiku&lt;br /&gt;
# [[User:davidmaxwaterman|Max Waterman]] '''Device received.'''&amp;lt;br/&amp;gt;&lt;br /&gt;
#* Porting ZouBa to MeeGo/H and QML, plust other app ideas.&lt;br /&gt;
# [[User:davidsansome|David Sansome]] '''Device received.'''&amp;lt;br/&amp;gt;&lt;br /&gt;
#* Porting [http://www.clementine-player.org Clementine music player] to MeeGo.  Clementine already uses Qt and GStreamer.&lt;br /&gt;
# [[User:deimos|deimos]] (Marco Bavagnoli) &amp;lt;br /&amp;gt;&lt;br /&gt;
#* I'm porting [http://mediadownloader.cz.cc/?page_id=2 mediadownloader] application just ported to [http://mediadownloader.cz.cc/?p=153 maemo] and here a N900 [http://www.youtube.com/watch?v=_Dsj2piBQCw video]. &lt;br /&gt;
# [[User:Dimitar | Dimitar]] (Dimitar Pashov) &amp;lt;br /&amp;gt;&lt;br /&gt;
#* Porting pdf viewer in case the stock one is not better than the one in n900. Try the abilities of the n9/50 HW with an engineering/scientific 3D model viewer. Implement some other ideas.&lt;br /&gt;
# [[User:Divan|Ivan Daniluk]] ''' Device received. COMPLETED.'''&amp;lt;br /&amp;gt;&lt;br /&gt;
#* Porting  [[User:Divan|my Maemo5 applications]], adding full Vkontakte support, developing new apps.&lt;br /&gt;
# [https://meego.com/users/djarty DJArty] (Artem Sereda) &amp;lt;br /&amp;gt;&lt;br /&gt;
#* Porting qutIM, openpref, arora, links, groove, microdc, Ukrainian localization.&lt;br /&gt;
# [[User:Dm8tbr | dm8tbr]] (Thomas B. Ruecker)  &amp;lt;br /&amp;gt;&lt;br /&gt;
#* MeeGo Community edition for N9(|50|00)&lt;br /&gt;
#* APRS application in QML to teach myself something about QML and Qt Mobility.&lt;br /&gt;
#* LiveView daemon/application based on code found here: http://code.google.com/p/adqmisc/source/browse/#svn%2Ftrunk%2Fliveview&lt;br /&gt;
#* USB host mode&lt;br /&gt;
# [[User:drowne | Drowne]] (Valerio Di Donato)&amp;lt;br /&amp;gt;&lt;br /&gt;
#* Location-Based games and application development, mobile game design. Junomi Developer ( serious game presented at Games for Health Conference in Boston, May 2011 )&amp;lt;br /&amp;gt;&lt;br /&gt;
# [[User:druid23 | druid23]] (Dru Moore) &amp;lt;br/&amp;gt;&lt;br /&gt;
#* To port / create multi-track editing and mixing software to Meego / Harmatten, and multimedia capabilities in general&amp;lt;br /&amp;gt;&lt;br /&gt;
#* Additionally, to port remote controls for various networked media players (Singbird, Foobar2000, Squeeze, VLC etc).&lt;br /&gt;
# [[User:dwaradzyn|dwaradzyn]] (Damian Waradzyn) '''Device received. Thank you!'''&amp;lt;br/&amp;gt;&lt;br /&gt;
#* Porting and further development of [http://talk.maemo.org/showthread.php?t=58402 CloudGPS]&lt;br /&gt;
# [[User:Eipi|eipi]] (Sanjeev Visvanatha) , '''Device Received 18/7/2011-Thanks!'''&amp;lt;br /&amp;gt;&lt;br /&gt;
#*Porting MaeFlight from Maemo 5, and adding functionality for Harmattan &lt;br /&gt;
# [[User:Elleo|Elleo]] ([http://blog.mikeasoft.com/tag/maemo/ Michael Sheldon]) &lt;br /&gt;
#*Creating a [http://libre.fm Libre.fm] radio client and porting [http://www.jokosher.org Jokosher] to small screen devices.&lt;br /&gt;
#[[User:Emocow|emocow]] (Ferdinand Mayet) ('''Device received. Thank you!''')&amp;lt;br/&amp;gt;&lt;br /&gt;
#*Development of a golf GPS application&lt;br /&gt;
# [[User:fcrochik|fcrochik]] (Felipe Crochik) '''Device received'''&amp;lt;br/&amp;gt;&lt;br /&gt;
#* port applications from n900: mobwebmail, macuco, geeps, wakeonlan, ...&lt;br /&gt;
#[[User:feri|Ferenc Székely]] (ferenc)&lt;br /&gt;
#* Working on [http://apps-beta.meego.com MeeGo Apps], an &amp;quot;app store&amp;quot; for open source, free apps for MeeGo&lt;br /&gt;
#* Will help packaging and porting Maemo -mainly location based- apps to MeeGo&lt;br /&gt;
# [[User:fiferboy|fiferboy]] (Andrew Olmsted) '''Device received'''&amp;lt;br/&amp;gt;&lt;br /&gt;
#* [http://andrew.olmsted.ca/meego fiferboy's applications] - Personal Lexicon, Birdlist, some other ideas for new programs and a few ports&lt;br /&gt;
#[[User:fms|fms]] (Marat Fayzullin) ('''Device received 22.7.2011''')&amp;lt;br/&amp;gt;&lt;br /&gt;
#* Porting the following: [http://fms.komkon.org/SlideRule/ SlideRule], [http://fms.komkon.org/ColEm/ ColEm], [http://fms.komkon.org/fMSX/ fMSX],[http://fms.komkon.org/Speccy/ Speccy], [http://fms.komkon.org/ATI85/ AlmostTI], [http://fms.komkon.org/MG/ MasterGear], [http://fms.komkon.org/iNES/ iNES], [http://fms.komkon.org/VGB/ VGB], [http://fms.komkon.org/VGBA/ VGBA]. Also expecting to port the FBReader and an IRC client (although most likely not XChat).&lt;br /&gt;
#[[User:frankusb|frankusb]] (Frank Banul) '''ID sent, Applied for the Nokia Developer Launchpad program. Device ordered. Device received.'''&lt;br /&gt;
#* Port TabletBridge and RadioTimeToGo&lt;br /&gt;
# [[User:garyd|Gary Driggs]] ('''Device received.''') Porting web apps and misc. Unix tools to MeeGo ARM devices.&lt;br /&gt;
#[[User:generalantilles|GeneralAntilles]] (Ryan Abel)&lt;br /&gt;
#* Working with fiferboy on a photographer's application suite ([http://thousandsparrows.com/meego/ SnapGo] and [https://gitorious.org/fiferboy/geosnap Gitorious], currently) to include feature like a light meter and GPS track recording.&lt;br /&gt;
# [[User:gri|gri]] (Christoph Keller) '''Device received'''&lt;br /&gt;
#* Porting [http://web2sms.garage.maemo.org Web2SMS], splitting it up into a telepathy plugin, service daemon, contacts integration and hopefully sms application integration plus new provider plugins.&lt;br /&gt;
# [[User:Harbaum|Harbaum]] (Till Harbaum)&lt;br /&gt;
#*Currently re-writing CacheMe UI in qml,  working on Zeemote driver&lt;br /&gt;
# [[user:hawaii|hawaii]] (Simon LR)  '''Device received'''&lt;br /&gt;
#* FOSS porting, repo priming, tool building. Platform/product evangelism.&lt;br /&gt;
# [http://forum.meego.com/member.php?u=9286 helex] (Michael Muth)&lt;br /&gt;
#* [http://talk.maemo.org/showthread.php?p=1001316 ClipMan], [http://talk.maemo.org/showthread.php?t=52589 DreamRemote], TcpKeyboard, something like [http://talk.maemo.org/showthread.php?t=72408 ConkyLayoutSwitcher] (have to see how the UI works in detail - need to create it from scratch)&lt;br /&gt;
#[[User:helihyv|helihyv]] (Heli Hyvättinen)&lt;br /&gt;
#*Porting Ghosts Overboard (a game) and Chess Clock from Maemo and adding new features to the former.&lt;br /&gt;
# hiemanshu (Hiemanshu Sharma)&lt;br /&gt;
#* Porting Komedia and OpenCV. Writing a google reader client, a cowsay GUI.&lt;br /&gt;
#[[User:hopbeat|hopbeat]] (Arkadiusz Stopczynski)&lt;br /&gt;
#*Various academic projects, including novel user interfaces, social web, BCI and portable cognitive sensors. All the crazy stuff mentioned here: http://www.milab.imm.dtu.dk&lt;br /&gt;
#*Some utility applications that make your everyday tasks easier, such as shortcutd or lockdaemon for Maemo&lt;br /&gt;
#[[User:ieatlint|ieatlint]](Jeffrey Malone)&lt;br /&gt;
#*Creating NextBus transit application for North America&lt;br /&gt;
#[[User:ivan4th|ivan4th]] (Ivan Shvedunov) '''Device received'''&lt;br /&gt;
#*Working on [http://github.com/ivan4th/i4checklist Shopping list/checklist] application inspired by HandyShopper for PalmOS&lt;br /&gt;
#*Common Lisp stuff (will try to make CCL+CommonQt etc. work on Meego/Harmattan)&lt;br /&gt;
# [[User:Jaffa|Jaffa]] (Andrew Flegg)&lt;br /&gt;
#*Porting apps from Maemo (Attitude &amp;amp; Hermes), developer tools, and apps.meego.com workflow. [[User:Jaffa|&amp;quot;Want to know more?&amp;quot;]]&lt;br /&gt;
#[[User:Javispedro|javispedro]] (Javier de San Pedro)&lt;br /&gt;
#*Porting my [http://wiki.maemo.org/User:Javispedro Maemo 5 applications and SDL games], and [http://gitorious.org/hsdl/pages/Home SDL] itself.&lt;br /&gt;
#[[User:jbos|jbos]] (Jeremias Bosch) '''Device arrived.'''&lt;br /&gt;
#* Bringing Peregrine Communication Client to Harmattan&lt;br /&gt;
#* http://www.peregrine-communicator.org&lt;br /&gt;
#* MeeGo CE&lt;br /&gt;
#[[User:jflatt|jflatt]] (Jason Flatt) '''Completed'''&lt;br /&gt;
#* https://gitorious.org/meego-nonograms&lt;br /&gt;
#JLP (Jure Repinc)&lt;br /&gt;
#* Creating a Thousand Parsec game client&lt;br /&gt;
#* Moodle client&lt;br /&gt;
#* Help with testing&lt;br /&gt;
#* Translation into Slovenian&lt;br /&gt;
# [[User:Joergrw|Joergrw]] (Joerg Reisenweber) '''device arrived. COMPLETED'''&lt;br /&gt;
#* USB hostmode. Give N9(50) access to external storage etc. (co-devels: Thomas B. Ruecker, MohammadAG)&lt;br /&gt;
#* Review the core functionality and find other similar fields to tackle (see *# starhash-enabler for N900). To mind comes: user profiles (refer the modest &amp;quot;default&amp;quot; &amp;amp; &amp;quot;silent&amp;quot; on fremantle), dialplans, location aware event triggers (cinema profile triggers automatically on entering the building), improved battery management and monitoring, theft protection and recovery...&lt;br /&gt;
#* cablefinder based on fast magnetometer readout detecting 50/60Hz fields (co-devel: alterego)&lt;br /&gt;
#* torch/flashlight app for N950 - possibly augmented to do optical data transfer, RX via a v4l2 based decoder app&lt;br /&gt;
#* I am contributing/associated to: &lt;br /&gt;
#**SnapGo / Ryan Abel [consulting on low level stuff] &lt;br /&gt;
#[[User:junousia|junousia]] (Jukka Nousiainen) '''- Device received - COMPLETED'''&lt;br /&gt;
#* Creating a tethering application for DSLR cameras, and porting necessary libraries, e.g. libgphoto2&lt;br /&gt;
#* Other small random applications and utilities &lt;br /&gt;
#[[User:jykae|jykae]] (Ville Jyrkkä) '''device arrived. COMPLETED'''&lt;br /&gt;
#* [http://www.cs.tut.fi/~jyrkkav/ Homesite|Ville Jyrkkä]&lt;br /&gt;
#* [http://jykae.blogspot.com BLOG: Hacker's Life In Finland]&lt;br /&gt;
#* [https://launchpad.net/m-poker MPoker]&lt;br /&gt;
#[[User:mdengler|Martin Dengler]] '''device arrived. COMPLETED'''&lt;br /&gt;
#* I am working on porting a tron-like game (armegatron preferably or glTron) to the N9, and developing Ringr, a location-based ringtone management application.&lt;br /&gt;
# [[User:Nijel|Michal Čihař (Nijel)]] '''device arrived. COMPLETED'''&lt;br /&gt;
#* [https://gitorious.org/dofcalc DOF Calc]&lt;br /&gt;
#* Creating a [http://wammu.eu/ Gammu] application for phone for data synchronization and backup.&lt;br /&gt;
#[[User:Metropt|Jose Xavier]], '''device arrived. COMPLETED'''&lt;br /&gt;
#* My goal is to port the OpenPilot Ground Control Station to the MeeGo platform and adapt the UI for a better mobile experience. You can see more #information about OpenPilot GCS here: http://wiki.openpilot.org/display/Doc/Ground+Control+Station+User+Manual&lt;br /&gt;
# [[User:kdrozd|kdrozd]] (Krzysiek Drozd) - '''N950 At Home '''&lt;br /&gt;
#*Clients for a number of local network services, casual games. More soon, on my MeeGo wiki&lt;br /&gt;
# [[User:kenyoung|kenyoung]] (Ken Young) - '''device arrived. COMPLETED '''&lt;br /&gt;
#*I'm working on porting Orrery, maeSat and maeFat to the N9.   The N950 is a beautiful device!&lt;br /&gt;
# [https://meego.com/users/khertan khertan] (Benoît HERVIER)&lt;br /&gt;
#* Currently working on KhtEditor&lt;br /&gt;
# [[User:Kimitake|Kimitake]] (Kimitake) '''device arrived. COMPLETED'''&amp;lt;br&amp;gt;&lt;br /&gt;
#*developing Qt-based micro blogging client for twitter, identi.ca, wassr, jp&lt;br /&gt;
#*porting qimsys, Japanese Input method, as maliit plugin&lt;br /&gt;
#[[User:klausr|klausr]] (Klaus Rotter) '''device arrived. COMPLETED'''&amp;lt;br&amp;gt;&lt;br /&gt;
#* Started to work with QtQuick. Nice Tool. Trying to rewrite my EasyPlayer program in QtQuick.&lt;br /&gt;
#[[User:kojacker|Kojacker]] (Ryan Faulkner)&lt;br /&gt;
#* Various applications, bits and bobs (links coming)&lt;br /&gt;
#[[User:kulve|kulve]] (Tuomas Kulve) '''device arrived. COMPLETED'''&lt;br /&gt;
#[[User:kypeli|kypeli]] (Johan Paul) '''device arrived. COMPLETED'''&lt;br /&gt;
#[[User:Laasonen|Laasonen]] (Olli Laasonen)&lt;br /&gt;
#*Porting apps from Maemo (Who is calling?, Advanced phone lock, Sanakirja.org dictionary client).&lt;br /&gt;
#*Developing small handy applications.&lt;br /&gt;
#[[User:lardman|lardman]] (Simon Pickering) - '''Device arrived, thanks! :)'''&lt;br /&gt;
#*Porting mBarcode, working on Augmented Reality app (mAR), time and location event app (Proximus), additional location methods (offline cellid, magnetic field line direction)&lt;br /&gt;
#[[User:lcuk|lcuk]] (Gary Birkett) '''device arrived. COMPLETED, thanks'''&lt;br /&gt;
#* N9 Qt port of liqcalendar and misc liq* apps&lt;br /&gt;
#liang wei (foolegg), '''ID sent:Yes''' | '''Launchpad Accepted:Yes''' | ''' Ordered:Yes ''' | '''Received:Yes'''&amp;lt;br/&amp;gt;&lt;br /&gt;
#*[[Cuteinputmethod]] is a Chinese Input Method, designed for handset device.&amp;lt;br/&amp;gt;&lt;br /&gt;
#[[User:Lorenzph|lorenzph]] (Philip Lorenz) - '''Device arrived - thank you'''&lt;br /&gt;
#*Development of a hiking application supporting the user when planning and executing the trip.&lt;br /&gt;
#[[User:lostinmirkwood|lostinmirkwood]] (Kristopher C. Kantor) - '''Device arrived, Thank You.'''&lt;br /&gt;
#*Continuing Development of [http://ansela.garage.maemo.org/ Ansel-A]: Digital Darkroom for Qt Devices&lt;br /&gt;
# [[User:mardy|Mardy]] (Alberto Mardegan)&lt;br /&gt;
#* Developing QML port of [http://www.mardy.it/mappero Mappero], possibly [http://www.mardy.it/oculo Oculo]&lt;br /&gt;
#* [http://neverball.org Neverball and Neverputt] (currently I'm working on a N900 port).&lt;br /&gt;
# [http://wiki.meego.com/User:Martink MartinK] (Martin Kolman)&lt;br /&gt;
#* Porting the modRana GPS navigation system and Mieru manga and comic book reader.&lt;br /&gt;
# [[User:Masterzap|MasterZap]] (Zap Andersson) - '''Device arrived.'''&lt;br /&gt;
#*Porting Maemo app ZapLoc to Meego/QT (and, eventually, game &amp;quot;Slightly Annoyed Rodents&amp;quot;)&lt;br /&gt;
# [[User:Mece|Mece]] (Marcus Wikström) '''Device received'''&amp;lt;br /&amp;gt;&lt;br /&gt;
#*[http://talk.maemo.org/showthread.php?t=73490 Tweed Suit] for N9/50&lt;br /&gt;
#*Qlister (shopping list program)&lt;br /&gt;
#*Planning an location based tracking service/app.&lt;br /&gt;
#[[User:mgedmin|mgedmin]] (Marius Gedminas) '''Device arrived'''&lt;br /&gt;
#*Played with bugfixing in QMLCompass in order to learn the Qt Creator IDE.&lt;br /&gt;
#*Ported vim, fbreader for own use.&lt;br /&gt;
#*Built unofficial-meego-terminal so that a newer meego-terminal can be installed side-by-side, again, for own use.&lt;br /&gt;
#*Put the stuff in apt repository at http://mg.pov.lt/770/ because hasn't found the time to learn OBS yet.&lt;br /&gt;
#*Planning to port [http://mg.pov.lt/gtimelog GTimeLog].&lt;br /&gt;
#[[User:Mikec|Mikecy]] (Mike Choy) - '''Device arrived.'''&lt;br /&gt;
#*Porting svgclock, Maesynth and Maelophone from N900 Python to QML and C++. Stress testing the new [https://projects.developer.nokia.com/qtgameenabler Qt Game Enabler] to see if we finally have  low latency audio support in Qt. Will also look to see if we can get midi sample support via Wild Midi or equivalent. &lt;br /&gt;
# [[User:mickeprag|mickeprag]] (Micke Prag) - '''Device arrived.'''&lt;br /&gt;
#*[https://gitorious.org/telldus/tellduscenter-light TelldusCenter Light] - Using the mobile phone as the central hub in your home automation. Control your lights, electrical appliances and curtains wirelessly from the palm of your hands.&lt;br /&gt;
# [[User:mikelima|mikelima]] (Luciano Montanaro) - '''Device arrived.'''&lt;br /&gt;
#*Porting [http://quandoparte.garage.maemo.org Quando Parte], implementing a QML patience/puzzle game, porting and adapting KGoldrunner, and writing an OpenStreetMap survey tool, all for use with MeeGo Harmattan (and future MeeGo versions).&lt;br /&gt;
# [[User:Milhouse|Milhouse]] '''Device arrived'''&amp;lt;br&amp;gt;&lt;br /&gt;
#*Develop an audio recording application with geo-location support, plus other applications to improve personal productivity utilising the Harmattan notification/event view.&lt;br /&gt;
# [[User:mkruisselbrink|Marijn Kruisselbrink]] '''Device arrive'''&lt;br /&gt;
# [[User:mitrandir|mitrandir]] Ilya Skriblovsky &lt;br /&gt;
#* Port NWTBible (Bible reader)&lt;br /&gt;
#*Planaris (Hierarchical Todo list) to MeeGo&lt;br /&gt;
# [[User:mmlado|mmlado]] (Mladen Milankovic) - '''Device arrived'''&amp;lt;br&amp;gt;&lt;br /&gt;
#*Develop [https://projects.developer.nokia.com/home/user/mmlado games] in QML&lt;br /&gt;
# [[User:MSvB|MSvB]] (Michael Schloh von Bennewitz) - '''Device arrived, thank you.'''&amp;lt;br&amp;gt;&lt;br /&gt;
#*Using the device for a MeeGo lecture series in the fall, giving demos.&lt;br /&gt;
#*Application development includes LDAP client, and a chess clock.&lt;br /&gt;
# [[User:Nicolai|Nicolai]] (Nicolai Hess)&lt;br /&gt;
#*Port my [http://maemo.org/packages/view/scout scout] application to Qt (Application to search contacts, calendar and conversations)&lt;br /&gt;
# [http://twitter.com/#!/mja_fin mja] (Miika Ahdesmaki)&lt;br /&gt;
#* Trap, Shake, Kill 'em and other multi sensor apps' development. [http://forum.meego.com/showthread.php?t=3633] '''Nokia Developer Launchpad program approved 06Jul2011, Device available for order 07Jul2011 (ordered, OID-052820), Order sent on 13.7.2011 (email 10:40am), Received 14.07.2011.'''&lt;br /&gt;
# [[User:niqt|niqt]] (Nicola De Filippo) -  '''Device arrived.'''&lt;br /&gt;
#*Porting my maemo5 applications [http://badge.garage.maemo.org Badge] and QLshop. &lt;br /&gt;
#*New qml game&lt;br /&gt;
#*Other mail client.&lt;br /&gt;
#[[User:Nielsmayer|Niels Mayer]]&lt;br /&gt;
#*[http://wiki.meego.com/Tubelet-and-cutetube-port Rewrite cutetube-qml for MeeGo tablet UX/harmattan UX.] and add automatic-cue-point detection, and social deep-linking of media podcasts. http://nielsmayer.com/meego/qml/qmltube_1_0_6_armel.deb is already usable.... Still a ways to go [http://nielsmayer.com/ts-episode-timeline.png porting my webapp] [http://nielsmayer.com/ts-episode-evnt-anls.png that I call &amp;quot;trainspodder&amp;quot;] :-)&lt;br /&gt;
#*Infrastructure for the above: [http://code.google.com/p/qtzibit/ qtzibit: Simile-Widgets Exhibit in QtWebKit with QML integration].  For example, here's [http://nielsmayer.com/meego/qml/qtzibit-youtube.png Timeline faceted browser for 388 YouTube Episodes] [http://qtzibit.googlecode.com/svn/trunk/exhibit/src/webapp/examples/YouTube/YouTube.html can be created with very little code]. &lt;br /&gt;
#*[http://code.google.com/p/ytd-meego/wiki/CitizenJournalismWithYoutubeDirectForMeego YouTube Direct For MeeGo]&lt;br /&gt;
# [http://twitter.com/#!/gregjroberts Noobmonkey] - '''Launchpad:Accepted(06-Jul-2011) | N950eMail:07 July, 12pmGMT| Ordered:07 July 12pmGMT |Received: 14 July|  '''&lt;br /&gt;
#*Developing/Porting [http://maemo.org/downloads/product/Maemo5/healthcheck/ Healthcheck] with many new fun things (Qt)&amp;lt;BR&amp;gt;&lt;br /&gt;
#*Will Port and update [http://talk.maemo.org/showthread.php?t=65522&amp;amp;highlight=maecount MaeCount] (Qt)&amp;lt;BR&amp;gt;&lt;br /&gt;
#*Would like to develop a new game (Some ideas, and basic code for a few - so will update shortly)&amp;lt;BR&amp;gt;&lt;br /&gt;
# [[User:olka|Oleksandr Kachur]]&lt;br /&gt;
#* Developing cloud music player integrated with Google music, Amazon music and last.fm services.&lt;br /&gt;
# [[User:omllobet|omllobet]]&lt;br /&gt;
#*Port 2d puzzle board game [http://kde-apps.org/content/show.php/kMagnet?content=109111 kMagnet] or a new 2d board puzzle game&lt;br /&gt;
# [[User:orava|orava]] (Lasse Stenberg)&lt;br /&gt;
#* Porting and further developing [http://talk.maemo.org/showthread.php?t=72982 Mapsi]&lt;br /&gt;
# [[User:ossipena|ossipena]] (Timo Pelkonen)&lt;br /&gt;
#* App for measuring distances and keeping statistics, will reveal more when I get it working well&lt;br /&gt;
#* Willing to test others apps, contact me if needed&lt;br /&gt;
# [[User:ph0b|ph0b]] &amp;lt;br /&amp;gt;&lt;br /&gt;
#* Writing tutorials to help other developers to step in MeeGo / Building MeeGo Paris network / Developing an audio player to access to more than 47 000 webradios referenced on AOL shoutcast (by name, genre, current track)&lt;br /&gt;
#[[User:Ph5|pH5]] (Philipp Zabel)&lt;br /&gt;
#* Integration of [https://www.torproject.org/ Tor] support&lt;br /&gt;
#* Porting of [http://maemo.org/downloads/product/Maemo5/frogatto/ Frogatto], pending SDL support&lt;br /&gt;
#* Porting of [https://garage.maemo.org/projects/beifahrer/ Beifahrer] and [https://garage.maemo.org/projects/cinaest/ Cinaest]&lt;br /&gt;
#[[User:philippengelhard|philippengelhard]] (Philipp Engelhard) '''Device arrived.'''&amp;lt;br /&amp;gt;&lt;br /&gt;
#* Develop a maze game for children and adults&lt;br /&gt;
#* Develop a &amp;quot;Nokia Bots&amp;quot; like program for alarm and battery&lt;br /&gt;
# [[User:pycage|pycage]] (Martin Grimme) '''Sent back defective device. Replacement device arrived. Thanks DDP!'''&lt;br /&gt;
#*Doing the Community Apps installer client. Also targetting Harmattan with my OSS MeeGo apps (which are currently mostly running on the WeTab).&lt;br /&gt;
#[[User:Qole|qole]] [http://maemo.org/downloads/product/Maemo5/easy-deb-chroot/ Easy Debian] and other projects as they arise&lt;br /&gt;
#[[User:quang|quang]] (Quang Pham) '''Device arrived.'''&amp;lt;br /&amp;gt;&lt;br /&gt;
#* Develop a location based services application&lt;br /&gt;
#* Test Vietnamese localization&lt;br /&gt;
# [http://maemo.org/profile/view/rambo/ rambo] (Eero af Heurlin) '''ID sent''',  '''Launchpad:Accepted''' | '''N950eMail:Yes''' | ''' Ordered:Yes ''' | '''Received:Yes'''&amp;lt;br /&amp;gt;&lt;br /&gt;
#* Port [http://maemo.org/downloads/product/Maemo5/maecalories/ MaeCalories], [http://maemo.org/downloads/product/Maemo5/mobilehotspot/ Mobile hotspot] (possibly, depends on many things and might not be actually neccessary), I'm also looking into some wearable computing and augmented reality stuff, I'll have to see how suitable platform the N9(50) is going to be for that.&lt;br /&gt;
# [[User:ravirdv|ravirdv]] (Ravi Vagadia)&lt;br /&gt;
#* Trip Management App&lt;br /&gt;
#* VLC Remote&lt;br /&gt;
# [[User:reffy|reffy]] (Alex Tyler)&lt;br /&gt;
#* I plan to port my Subsonic client [http://maemo.org/packages/view/aerofy/ Aerofy] to the platform. I also plan to develop a range of media related applications.&lt;br /&gt;
# [[User:Rlinfati|rlinfati]] (Rodrigo Linfati) ''' ID send: 30-Jun-2011, Launchpad-Applied: 30-Jun-2011, Launchpad-Accepted: 06-Jul-2011 | N950eMail: 07-Jul-2011 | Ordered: 07-Jul-2011 | Received:14-07-2011 '''&lt;br /&gt;
#* Upgrade GoogleLatitude to the current API&lt;br /&gt;
#* Find your Frient: a apps that inform you position directly to you friend without any external server.&lt;br /&gt;
# [[User:roman4|roman4]] (Roman Morawek)&lt;br /&gt;
#* Porting [http://babyphone.garage.maemo.org/ Babyphone] to the platform.&lt;br /&gt;
# [[User:Rzr|RzR]] (Philippe Coval) '''thank you Nokia for n950 and supporting GNU/Linux&lt;br /&gt;
#* tags: ( qt4, qml, opengl, debian, emulator, pinball, neheglqt, p-uae)&lt;br /&gt;
#* more: http://rzr.online.fr/q/handset (dairy)&lt;br /&gt;
#[https://meego.com/users/sandst1 sandst1] (Topi Santakivi)&lt;br /&gt;
#* Porting FunkeySynth, a MeeGo Tablet synthesizer to Harmattan &lt;br /&gt;
#* Demo clip and further info in [http://sandst1.wordpress.com/ my blog]&lt;br /&gt;
# [https://meego.com/users/scifiguy scifiguy] (Sudheer K.) '''ID sent'''| '''Launchpad:Accepted(07-Jul-2011)''' | '''N950eMail:Yes(07-Jul-2011)''' | ''' Ordered:Yes (07-Jul-2011)''' | '''Received:Yes(18-Jul-2011)'''&amp;lt;br /&amp;gt;&lt;br /&gt;
#* Porting [https://garage.maemo.org/projects/marketstoday Markets Today], a Stock Quotes  app to Harmattan. [http://forum.meego.com/showthread.php?t=3903 Released for Harmattan] (19-Jul-2011)&lt;br /&gt;
#* Evaluate porting of VICaR (Call router application) and new application ideas on Harmattan&lt;br /&gt;
# [[User:sebas|sebas]] (Sebastian Kügler) - ('''device arrived, thanks!''')&lt;br /&gt;
#* Bringing Plasma Active to Meego / handsets&lt;br /&gt;
# [[User:Sfietkonstantin|Sfietkonstantin]] (Lucien XU) - ('''thanks Qgil and Nokia for the N950''')&lt;br /&gt;
#* Develop a centralized public transportation system : [[TransportApp|libpublictransportation]] (first priority)&lt;br /&gt;
#* And also a game [http://sfietkonstantin.free.fr/blog/?p=11 Blog post about the game] (No gitorious yet, will come)&lt;br /&gt;
# [[User:shadymilkman|shadymilkman]] (Kyle Thomas) - ('''recieved devkit''')&lt;br /&gt;
#* Building Reedit, a reddit application [http://www.shadymilkman.com/p/n9-project.html] removed name from incomplete list.&lt;br /&gt;
# [[User:shmerl|shmerl]] (Hillel Lubman) - ('''device arrived, thanks to Nokia for open source Meego development support''')&lt;br /&gt;
#* Building/testing Firefox/Fennec (release, beta, aurora, nightly) on Meego&lt;br /&gt;
#* Porting [http://code.google.com/p/kosherjava/ Zmanim API] to C++ and preparing it for Meego as a library (libzmanim). Planned - Hebrew calendar application in Qt based on the Zmanim API.&lt;br /&gt;
# [[User:sjgadsby|sjgadsby]] (Stephen Gadsby)&lt;br /&gt;
#* writing a [[User:Sjgadsby#Preferred Shopper Card Wallet|not-yet-named wallet for store loyalty cards]]&lt;br /&gt;
# [[User:slaine|slaine]] (Glen Gray)&lt;br /&gt;
# [[User:slvr32|slvr32]] (Jason Byrne)&lt;br /&gt;
#* [https://garage.maemo.org/projects/nfqm nfqm] (Netflix Queue Manager) Qt/C++, targeting Symbian^3, Maemo 5, and Meego/Harmattan - discussion thread [http://forum.meego.com/showthread.php?t=3715 here]&lt;br /&gt;
# [[User:smoku|smoku]] (Tomasz Sterna)&lt;br /&gt;
#* Port my touch screen [http://tomasz.sterna.tv/maemo/ ports of games for Maemo] (Widelands, Bos Wars, Robbo) and UAE4All, PSX4All emulators&lt;br /&gt;
#* Port support for SIXAXIS(TM) Controller&lt;br /&gt;
#[[User:smurfy|smurfy]] (Philipp Andreas)&lt;br /&gt;
#* Porting [https://garage.maemo.org/project/fahrplan fahrplan] (Public Transportation App) for the N9&lt;br /&gt;
#[[User:solmis|solmis]] (Janne Mäkinen)&lt;br /&gt;
#* Porting/Rewriting Maemo 5 stuff&lt;br /&gt;
# [[User:Somnathbanik|Somnathbanik]] (Somnath Banik) &amp;lt;br /&amp;gt; &lt;br /&gt;
#* Porting my existing Symbian^3 multimedia applications to MeeGo/N9 with a  new and exciting UI components of Harmattan/MeeGo.&lt;br /&gt;
#* Creating simple and easy open source application to inspire beginner developers to work on MeeGo/N9 technology.&lt;br /&gt;
#[[User:Spenap|Spenap]] (Simón Pena)&lt;br /&gt;
#* Porting and enhancing Maevies from Maemo 5 to Meego/Harmattan. Now tracked at [[User:Spenap/Butaca|Butaca]]&lt;br /&gt;
#[[User:stanokia|stanokia]] (Stani)&lt;br /&gt;
#* Develop RadioTouch to play online radio stations. Ready for testing: [http://forum.meego.com/showthread.php?t=3993 click here].&lt;br /&gt;
#* Develop a creative photo and/or camera application based on the code of the [http://www.phatch.org Phatch] project. (This code uses wxPython for the GUI. So it will take some effort to port it to PySide and QML, with which I have no previous experience yet.)&lt;br /&gt;
#[[User:Theonehumble|Stephan Bulgin]]&lt;br /&gt;
#*Porting NXEngine&lt;br /&gt;
#*In the process of re-writing DonQt for MeeGo/Harmattan.(will most likely be a name change and better code.)&lt;br /&gt;
# [[User:Stskeeps|stskeeps]] (Carsten Munk) '''Device received'''&lt;br /&gt;
#* N950/N9 MeeGo CE work and Wayland on these devices&lt;br /&gt;
# [[user:summeli|summeli]] (Antti Pohjola) -  '''Device arrived.'''&lt;br /&gt;
#* Porting [http://www.summeli.fi/?p=2453 AntSnes] and [http://www.summeli.fi/?p=2520 gpSP] from Symbian^3 to Harmattan/MeeGo.&lt;br /&gt;
#[[User:swinkels|swinkels]] (Sławomir Musiał)&lt;br /&gt;
#* Porting [http://www.swinkels.tvtom.pl/eCards eCards] - Application for creating and sending e-cards&lt;br /&gt;
# [[user:syrjala|syrjala]] (Ville Syrjälä)&lt;br /&gt;
#* Porting [https://gitorious.org/maemo-tvout-control maemo-tvout-control]&lt;br /&gt;
# [[user:tassu|tassu]] (Tapio Pyrhönen)&lt;br /&gt;
#* [http://tapsa.bitmagick.com/nds/ My site] - Porting my old DS games and making new ones.&lt;br /&gt;
# [[user:teo|teo]] (Teo Mrnjavac)&lt;br /&gt;
#* [http://teom.wordpress.com My blog]&lt;br /&gt;
#* [http://ur1.ca/4kkwh Porting] [http://amarok.kde.org Amarok] to tablets and handsets running MeeGo/Harmattan.&lt;br /&gt;
# [[User:texrat|texrat]] (Randall Arnold, Community Device Program Lead)&lt;br /&gt;
# [[User:thebootroo|thebootroo]] (Thomas Boutroue, Developer/Designer)&lt;br /&gt;
#* [https://gitorious.org/meego-community-mobile-ux-ng Gitorious] - Making a C++ Declarative-based Visual Components API Lib, alternative to plain QML, or specific platform Components&lt;br /&gt;
#* [http://modern-os.projects.servhome.org/mobileApps/ MobileApps] - Porting my old Maemo5 apps to my new Lib, and creating new ones&lt;br /&gt;
# [[user:thp|thp]] (Thomas Perl)&lt;br /&gt;
#* [http://gpodder.org/ gPodder] - Integrating gPodder with Harmattan (including specific APIs)&lt;br /&gt;
#* Open source work on Python-related APIs (PySide, etc..) + Python tutorials&lt;br /&gt;
#* Get [[Games|Mong]] in shape for Harmattan&lt;br /&gt;
#* Port over some of my existing [http://maemo.org/profile/view/thp/ Maemo 5 apps]&lt;br /&gt;
# [[user:tigerite|tigerite]] (Peter Hunt)&lt;br /&gt;
#* Integrating the BFS CPU scheduler https://garage.maemo.org/projects/kernel-bfs/ into the N9/50 kernel, along with the Budget Fair Queueing I/O scheduler http://algo.ing.unimo.it/people/paolo/disk_sched/&lt;br /&gt;
#* Porting projects such as the Phoronix Test Suite http://www.phoronix-test-suite.com/ to Harmattan&lt;br /&gt;
#* Converting a Flash cards based learning system which I developed, loosely based on the one found at http://www.educationlabs.com/projects/flashcards/Pages/default.aspx, from C#/XAML to Qt/QML and making it standalone&lt;br /&gt;
# [[User:timoph|timoph]] (Timo Härkönen)&lt;br /&gt;
#* [http://gitorious.org/random-timoph impuzzle, etc.]&lt;br /&gt;
#* [http://timoph.fi timoph.fi]&lt;br /&gt;
#* [https://build.pub.meego.com/project/show?project=home%3Atimoph Community OBS home project]&lt;br /&gt;
# [[User:timsamoff|timsamoff]] (Tim Samoff)&lt;br /&gt;
#* [http://thp.io/2011/mong/ Plonk]&lt;br /&gt;
#* MeeGo Community Apps website design&lt;br /&gt;
#* A few other things that are brewing (games, sound generators, etc.)&lt;br /&gt;
# [[User:tswindell|tswindell]] (Tom Swindell)&lt;br /&gt;
#* [http://stage.rubyx.co.uk/columbus columbus]&lt;br /&gt;
#[[User:twoboxen|twoboxen]] (Matt Hawkins)&lt;br /&gt;
#* Porting [https://code.google.com/p/hawkengine hawkengine] to Meego &lt;br /&gt;
#* Porting [https://sites.google.com/site/hawkorn/games games] via hawkengine &lt;br /&gt;
#[[User:v13|v13]] (Stefanos Harhalakis)&lt;br /&gt;
#* Port WifiEye from maemo to meego&lt;br /&gt;
#* Port MaeGirls from maemo to meego&lt;br /&gt;
#* Perhaps complete MaeSlap and release it for meego&lt;br /&gt;
#[[User:vandenoever|vandenoever]] (Jos van den Oever)&lt;br /&gt;
#*Porting [http://webodf.org WebODF] to MeeGo using QML and JavaScript.&lt;br /&gt;
#*[http://www.webodf.org/redmine/projects/webodf/wiki/WebODF_on_an_N950 WebODF on an N950]&lt;br /&gt;
#*Experiment with a semantic logging tool.&lt;br /&gt;
#*Experiment with a [http://blogs.kde.org/node/4161 metronome application] in QML.&lt;br /&gt;
#[https://meego.com/users/vasvlad Uladzislau Vasilyeu] (Vasvlad)  &lt;br /&gt;
#* Porting OMWeather to Harmattan&lt;br /&gt;
#[[User:Venemo|Venemo]] (Timur Kristóf)&lt;br /&gt;
#* [http://wiki.meego.com/User:Venemo/HarmattanPlans My Harmattan Plans]&lt;br /&gt;
#** [http://gitorious.org/colorful-apps/puzzle-master Puzzle Master]&lt;br /&gt;
#** [http://forum.meego.com/showthread.php?t=3711 Public transportation app] (Click on the [http://forum.meego.com/showthread.php?t=3711 link] and post to the thread if you are interested to contribute.)&lt;br /&gt;
#** [https://gitorious.org/colorful-apps/memory-game Memory game]&lt;br /&gt;
#** Labirynth game (No code available yet)&lt;br /&gt;
#[[User:Vgrade|vgrade]] (Martin Brook)&lt;br /&gt;
#*I would plan to contnue my contributions to the N900 Community Edition of MeeGo which I assume will push right through into the N9. I am very interested in contributing to the exciting new architecture #*built on Wayland to give this device the best user experience.&lt;br /&gt;
#*Local Network Meetups, Cambridge, Birmingham, Koln, Dusseldorf&lt;br /&gt;
#[[User:vitaminj|VitaminJ]] (Stephen Spencer)&lt;br /&gt;
#* [http://jenkins.vitaminj.co.uk/job/meex/ Meex], a portable DJing application&lt;br /&gt;
#[[User:vitna|vitna]] '''COMPLETED&lt;br /&gt;
#*My actual project is http://forum.meego.com/showthread.php?t=3652, but i have in program to develop much more game for the Harmanattan platform&lt;br /&gt;
#[[User:wazd|wazd]] (Andrew Zhilin)&lt;br /&gt;
#* OMWeather, Live Wallpapers, BlueMaemo, Ati85, QML gPodder, tons of other design-related stuff&lt;br /&gt;
#[[User:w00t|w00t]] (Robin Burchell)&lt;br /&gt;
#* meego-ux hackery, Groovy, anything else I think of that's interesting&lt;br /&gt;
#[[User:Wicket|wicket]] (David Derby)&lt;br /&gt;
#*Porting [http://www.6809.org.uk/dragon/xroar.shtml XRoar - Dragon &amp;amp; CoCo emulator] and [http://icculus.org/avp/ Aliens versus Predator (Gold Edition) game engine].&lt;br /&gt;
# [[user:wonko|wonko]] (Ruediger Gad)&lt;br /&gt;
#* Amongst other things I'll port my existing applications for Maemo5/Fremantle to MeeGo/Harmattan: VU Meter, StultitiaSimplex, Zeecontrol, Advanced Clock Plugin (for details please see my page).&lt;br /&gt;
# [[user:xawotihs|xawotihs]]&lt;br /&gt;
#* Porting [http://code.google.com/p/wagic/ Wagic] on Harmattan based on either Qt or SDL.&lt;br /&gt;
#[[user:xerxes2|xerxes2]] (Jens Persson)&lt;br /&gt;
#* [http://gpodder.org/panucci Panucci] - Resuming audiobook and podcast player&lt;br /&gt;
#* Meego CE&lt;br /&gt;
# [[user:xfade|X-Fade]] (Niels Breet)&lt;br /&gt;
#* Set up &amp;amp; Testing Harmanttan building on MeeGo Community OBS&lt;br /&gt;
# [[user:zeenix|zeenix]] (Zeeshan Ali)&lt;br /&gt;
#* Ensuring [http://www.gupnp.org GUPnP]/[http://www.rygel-project.org Rygel] works on N9.&lt;br /&gt;
#* Possibly porting/writing [http://spice-space.org SPICE] client for N9/MeeGo.&lt;br /&gt;
# [[user:zaheerm|zaheerm]] (Zaheer Merali)&lt;br /&gt;
#* Porting [http://gstreamer.freedesktop.org GStreamer] plugins not shipped by Nokia to Harmattan&lt;br /&gt;
#* Porting [http://www.flumotion.net Flumotion] an open source streaming solution to Harmattan taking advantage of the hardware encoding and the camera&lt;br /&gt;
# [[user:zas|zas]] (Matti Henrik Kinen)&lt;br /&gt;
#* Setting up SDK&lt;br /&gt;
# [[user:zchydem|zchydem]] (Marko Mattila) '''Device arrived'''&lt;br /&gt;
#* QuickFlickr - QML based flickr client for mobile handsets.&lt;br /&gt;
# [[user:zeamoceq|zeamoceq]] (Olle Tränk)&lt;br /&gt;
#* Porting [http://qticksize.zeamoceq.net qTickSize] (interface to Swedish online stock broker)&lt;br /&gt;
# [https://meego.com/users/zehjotkah zehjotkah] (Cosimo Kroll)&lt;br /&gt;
#* [http://wiki.maemo.org/MeeGo_Coding_Competition_2011 MeeGo Coding Competition 2011]&lt;br /&gt;
&amp;lt;!-- ############################################################### --&amp;gt;&lt;br /&gt;
&amp;lt;!-- #  Do NOT paste yourself here - add yourself alphabetically!  # --&amp;gt;&lt;br /&gt;
&amp;lt;!-- #         Ensure your meego.com nick is first and your        # --&amp;gt;&lt;br /&gt;
&amp;lt;!-- #             full name is in brackets afterwards             # --&amp;gt;&lt;br /&gt;
&amp;lt;!-- ############################################################### --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== '''Updated Questions and answer for those people awaiting N950 Dev Kits:''' ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
1) '''If you have registered for the launchpad, please wait.'''&lt;br /&gt;
If you want to find out more information you can email the launchpad team, but a quick response is unlikely.&lt;br /&gt;
''Also, Quim will be emailing / sending all of the names and accounts across, therefore, if they have any questions / problems contacting devs they'll let Quim know.''&lt;br /&gt;
&lt;br /&gt;
2) '''Timeline - Timescale'''&lt;br /&gt;
There is no defined deadline or timescale for this. Keep an eye on the delivered and pending sections below, as people are posting dates / times.&lt;br /&gt;
If things start happening and you feel you are being left out - please then email the Nokia Developer launchpad teams. But until then, not much communication if any will be received. Hold tight and please wait.&lt;br /&gt;
If your status is similar to someone else's, and in the same batch, and they get a device, wait a few days then fire a message to the launchpad team or here. No point asking the same questions on the forum. Most of the devs mentioned below are also on twitter, so ask there or elsewhere on the forums if really needed.&lt;br /&gt;
&lt;br /&gt;
3) '''Timescale Part 2 - Patience!'''&lt;br /&gt;
Arranging, confirming, emailing, packaging and sending 250 devices is not a day's job. &lt;br /&gt;
Realistically expect a few weeks once they have started being sent out.&lt;br /&gt;
Be clear in all contact emails you send, to speed up the process - include account names and any other IDs requested/required. It is hard for people to swap from real names, nicknames, etc on a list of 250+ people..&lt;br /&gt;
&lt;br /&gt;
4) '''People who already are registered with Launchpad''' &lt;br /&gt;
If you have a launchpad account (Lucky you) there is an option which allows you to select available devices, however, nothing is certain as of now, therefore that may not be the route. &lt;br /&gt;
Once the team start going through the list, it sounds sensible that they will start emailing / contacting the people on the list with instructions, confirmations and/or queries. (see below! - thank you Jaffa for the update)&lt;br /&gt;
Update - It seems the next step once the launchpad section is confirmed may be an email from '''no.reply-developer@nokia.com''', subject &amp;quot;A Nokia N950 is waiting for you&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
5) '''Why have I heard nothing from Launchpad?'''&lt;br /&gt;
There is no launchpad confirmation email (But if you try to register again it says that there is already an application waiting) - therefore.... re-register if you have to. Just make sure you use the individual and not company registration. (There is however a developer registration email! - and logging in also proves that stage works!)&lt;br /&gt;
&lt;br /&gt;
6) '''&amp;quot;I didn't realize this was happening, can I still apply for one?&amp;quot;'''&lt;br /&gt;
Answer- &amp;quot;Short term: register to http://developer.nokia.com and watch Nokia developer activities in your country. &amp;quot;&lt;br /&gt;
- '''This program is closed''', but as Quim says, keep your eyes on the internet, as there are other programs and similar things available, and different countries where Nokia reps do things too&lt;br /&gt;
&lt;br /&gt;
7) '''Why is Nokia Developer saying the device program has been closed, and we still do not have our devices? *rant rant*'''&lt;br /&gt;
There are other device programs being run separately to the MeeGo DevKit program. The programs are not joined, but the team that sends out the devices is the same. Therefore, any messages you read are not exclusive to this particular set of 250 devices. Other programs may or may not appear across other Nokia sites, they are all separate from this one.&lt;br /&gt;
&lt;br /&gt;
If you have been accepted, don't panic - they have not gone out yet! (As far as we all know!) &lt;br /&gt;
''Please do update this section if you feel other questions from the forum have been answered?''&lt;br /&gt;
&lt;br /&gt;
== General thoughts on device program ==&lt;br /&gt;
&lt;br /&gt;
The Nokia N950 is a platform available now for developers targeting the Nokia N9 and MeeGo handset apps in general. Technical details are available at http://developer.nokia.com/swipe&lt;br /&gt;
&lt;br /&gt;
Candidates must be community developers ready to start working on new or existing open source applications, to be published in apps.meego.com and the Nokia Store. Links to your current projects are relevant! Deadline for applications: end of Tuesday, June 28th.&lt;br /&gt;
&lt;br /&gt;
Questions &amp;amp; comments: http://forum.meego.com/showthread.php?t=3597&lt;br /&gt;
&lt;br /&gt;
IMPORTANT: *commercial* developers are encouraged to apply directly at http://developer.nokia.com - thank you for your understanding.&lt;/div&gt;</summary>
		<author><name>Epage</name></author>	</entry>

	<entry>
		<id>http://wiki.meego.com/Porting_Fremantle_Applications_to_Harmattan</id>
		<title>Porting Fremantle Applications to Harmattan</title>
		<link rel="alternate" type="text/html" href="http://wiki.meego.com/Porting_Fremantle_Applications_to_Harmattan"/>
				<updated>2011-07-26T00:08:23Z</updated>
		
		<summary type="html">&lt;p&gt;Epage: Adding a link for additional packaging changes&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The following is a rough overview of some steps the authors (see the history for a complete list of contributors) found helpful on migrating an existing Fremantle Application to Harmattan.&lt;br /&gt;
Feedback, comments, corrections etc. are highly appreciated!&lt;br /&gt;
&lt;br /&gt;
A discussion about this topic is located at: http://forum.meego.com/showthread.php?t=3866&lt;br /&gt;
&lt;br /&gt;
== Install the new SDK ==&lt;br /&gt;
The SDK can be downloaded from: http://qt.nokia.com/downloads&lt;br /&gt;
&lt;br /&gt;
== Open and run the existing project with the new SDK ==&lt;br /&gt;
First things first, if the application also runs natively on the OS you are developing, the first thing is to check whether it runs with the newly installed SDK as well.&lt;br /&gt;
&lt;br /&gt;
== Build application in Scratchbox and run on the device/QEMU ==&lt;br /&gt;
The next step is to try if the application builds in the Harmattan ARMEL Scratchbox.&lt;br /&gt;
Chances should be pretty good that it builds out of the box.&lt;br /&gt;
If the application builds it can be tested on the Device (N950) or in the Emulator (QEMU).&lt;br /&gt;
Note that at that point the application will look a lot like a common Desktop Qt application.&lt;br /&gt;
The simulator currently does not support the experimental harmattan target (no harmattan&lt;br /&gt;
components and Qt version), but will do so when the final harmattan target is released.&lt;br /&gt;
&lt;br /&gt;
== Icons ==&lt;br /&gt;
&lt;br /&gt;
The icon sizes used by Harmattan are 80x80 for the application grid and 64x64 for the Application Manager. Note: The experimental Harmattan target resizes the icons to Maemo5 sizes, if you want proper icons before the final target you will have to change the base64 encoded part in debian_harmattan/control manually.&lt;br /&gt;
&lt;br /&gt;
== Single invocations ==&lt;br /&gt;
&lt;br /&gt;
Change the Exec line in your .desktop file to something along the lines of&lt;br /&gt;
&lt;br /&gt;
 Exec=invoker --single-instance --type=d /opt/myapp/bin/myapp&lt;br /&gt;
&lt;br /&gt;
Special note for the experimental target: if you changed the .desktop file but it seems to be ignored, try inserting a space between $(MAKE) and INSTALL_ROOT in your debian rules file as described in [http://forum.meego.com/showthread.php?p=26313#post26313 this forum post].&lt;br /&gt;
&lt;br /&gt;
== Harmattan scope ==&lt;br /&gt;
&lt;br /&gt;
QMake defines the following for .pro files:&lt;br /&gt;
&lt;br /&gt;
 MEEGO_VERSION_MAJOR     = 1&lt;br /&gt;
 MEEGO_VERSION_MINOR     = 2&lt;br /&gt;
 MEEGO_VERSION_PATCH     = 0&lt;br /&gt;
 MEEGO_EDITION           = harmattan&lt;br /&gt;
&lt;br /&gt;
The flags should be used like this:&lt;br /&gt;
&lt;br /&gt;
 contains(MEEGO_VERSION_MAJOR,1): ...&lt;br /&gt;
 contains(MEEGO_EDITION,harmattan): ...&lt;br /&gt;
&lt;br /&gt;
For C++ code, the new #defines are in qplatformdefs.h (MEEGO_VERSION_MAJOR,&lt;br /&gt;
MEEGO_VERSION_MINOR, MEEGO_VERSION_PATCH, and MEEGO_EDITION_HARMATTAN)&lt;br /&gt;
&lt;br /&gt;
'''Note that these are available only in the final Harmattan target.''' If you are using the experimental/beta SDK release, define them manually until you can update your SDK:&lt;br /&gt;
&lt;br /&gt;
 exists($$QMAKE_INCDIR_QT&amp;quot;/../qmsystem2/qmkeys.h&amp;quot;):!contains(MEEGO_EDITION,harmattan): {&lt;br /&gt;
   MEEGO_VERSION_MAJOR     = 1&lt;br /&gt;
   MEEGO_VERSION_MINOR     = 2&lt;br /&gt;
   MEEGO_VERSION_PATCH     = 0&lt;br /&gt;
   MEEGO_EDITION           = harmattan&lt;br /&gt;
   DEFINES += MEEGO_EDITION_HARMATTAN&lt;br /&gt;
 }&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Then you can e.g. change your defines from:&lt;br /&gt;
 #ifdef Q_WS_MAEMO_5&lt;br /&gt;
to something like:&lt;br /&gt;
 #if defined(Q_WS_MAEMO_5) || defined(MEEGO_EDITION_HARMATTAN)&lt;br /&gt;
&lt;br /&gt;
== Redo the UI in QML ==&lt;br /&gt;
If you could already run your application you will have noticed that it had a quite ugly &amp;quot;desktopish&amp;quot; look.&lt;br /&gt;
To change this the user interface needs to be redone in QML (at least for the time being this seems the only option for now).&lt;br /&gt;
&lt;br /&gt;
=== Get started with QML ===&lt;br /&gt;
To get a first overview of QML etc. you can simply create a new example QML project using the SDK.&lt;br /&gt;
In the SDK do&lt;br /&gt;
 File -&amp;gt; New Project -&amp;gt; Qt Quick Project -&amp;gt; Harmattan Application&lt;br /&gt;
This should get you started with a first overview of what a QML project looks like and the parts of it.&lt;br /&gt;
For more information about QML and the components that can be used see, e.g.:&lt;br /&gt;
&lt;br /&gt;
* http://doc.qt.nokia.com/4.7/gettingstartedqml.html&lt;br /&gt;
&lt;br /&gt;
As a very first step the author just copied the generated QML files, adapted the project file to include the new files and changed the main method of existing application to launch the demo QML application.&lt;br /&gt;
'''Note:''' In the default Harmattan Application example the QML files will be embedded in the binary via resources. &lt;br /&gt;
While this may be a good start and probably have other benefits (?), placing these files at some place accessible via the file system will ease and speed up development.&lt;br /&gt;
&lt;br /&gt;
=== Porting GraphicsView-based apps to QML ===&lt;br /&gt;
&lt;br /&gt;
There are many applications that are written with the [http://doc.qt.nokia.com/stable/graphicsview.html Qt Graphics View framework (aka. QGV)]. Because QML is also based on this framework, you can easily adapt your QGV-based app so that you can embed the former graphics items or graphics scenes into your QML-based GUI.&lt;br /&gt;
&lt;br /&gt;
The steps you need to take are the following:&lt;br /&gt;
* Change your QGraphicsItem and QGraphicsScene subclasses so that they inherit from QDeclarativeView&lt;br /&gt;
* In your QGraphicsItem subclasses&lt;br /&gt;
** Override the paint function to tell the framework how to draw your item with a QPainter&lt;br /&gt;
** Use the following code to enable this: ''setFlag(QGraphicsItem::ItemHasNoContents, false);''&lt;br /&gt;
* Use the Q_PROPERTY macro for everything you want to access in QML&lt;br /&gt;
* Now you can just register your type (do this in main.cpp before you load your QML files)&lt;br /&gt;
** Example: ''qmlRegisterType&amp;lt;MemoryGameBoard&amp;gt;(&amp;quot;MemoryGame&amp;quot;, 1, 0, &amp;quot;MemoryGameBoard&amp;quot;);''&lt;br /&gt;
* You can now add your stuff to QML code&lt;br /&gt;
** Import your &amp;quot;module name&amp;quot; (first parameter of qmlRegisterType in your QML)&lt;br /&gt;
** Add the item to QML&lt;br /&gt;
&lt;br /&gt;
See:&lt;br /&gt;
* [http://doc.qt.nokia.com/4.7-snapshot/declarative-tutorials-extending-chapter1-basics.html How to make a C++ class that can be embedded in QML]&lt;br /&gt;
* [http://doc.qt.nokia.com/4.7-snapshot/qtbinding.html How to bind C++ and QML together]&lt;br /&gt;
&lt;br /&gt;
=== Recreate the basic UI parts in QML ===&lt;br /&gt;
Once QML is running in the application the files copied from the sample project can be changed to the desired look and feel of the application.&lt;br /&gt;
The following links give some examples and overviews of the bits and pieces that can be used in QML UIs.&lt;br /&gt;
* http://doc.qt.nokia.com/4.7-snapshot/qdeclarativeexamples.html&lt;br /&gt;
* http://www.developer.nokia.com/swipe/ux/pages/building_blocks.html&lt;br /&gt;
* http://library.developer.nokia.com/topic/MeeGo_1.2_Harmattan_API/html/categories/Application_Frameworks.html&lt;br /&gt;
&lt;br /&gt;
=== Include Custom Widgets in QML ===&lt;br /&gt;
In case the application uses custom widgets, these can be adapted to work in QML as well.&lt;br /&gt;
To get existing widgets working, using proxies as described in http://doc.qt.nokia.com/4.7-snapshot/declarative-cppextensions-qwidgets.html worked very well (to be honest the author did not try without proxies).&lt;br /&gt;
The following code shows a quick and dirty declaration of such a proxy for a custom widget &amp;quot;AnalogMeterWidget&amp;quot;:&lt;br /&gt;
 class AnalogMeter : public VolumeMeter&lt;br /&gt;
 {&lt;br /&gt;
    Q_OBJECT&lt;br /&gt;
 public:&lt;br /&gt;
    AnalogMeter(QGraphicsItem* parent = 0)&lt;br /&gt;
        : QGraphicsProxyWidget(parent)&lt;br /&gt;
    {&lt;br /&gt;
        widget = new AnalogMeterWidget(0);&lt;br /&gt;
        setWidget(widget);&lt;br /&gt;
    }&lt;br /&gt;
 private:&lt;br /&gt;
    AnalogMeterWidget *widget;&lt;br /&gt;
 };&lt;br /&gt;
Also note that it seemed to be more practicable to register the proxies directly in the main method via something like&lt;br /&gt;
 qmlRegisterType&amp;lt;AnalogMeter&amp;gt;(&amp;quot;vumeter&amp;quot;, 1, 0, &amp;quot;AnalogMeter&amp;quot;);&lt;br /&gt;
instead of using a custom QML plugin as described in the link above.&lt;br /&gt;
In the QML files you would then use&lt;br /&gt;
 import vumeter 1.0&lt;br /&gt;
to import your stuff and something like&lt;br /&gt;
 AnalogMeter {&lt;br /&gt;
   id: vuMeter&lt;br /&gt;
 }&lt;br /&gt;
to instantiate your class.&lt;br /&gt;
'''Note:''' Using the approach as described here, the QML editor will complain about &amp;quot;unknown types&amp;quot; when you use your custom imports and widgets but this did not affect the functionality here.&lt;br /&gt;
See also the next section for more information about connecting QML and C/C++ code.&lt;br /&gt;
&lt;br /&gt;
=== Adapters, Proxies, Wrappers for existing C/C++ Code ===&lt;br /&gt;
Similarly as described above, using &amp;quot;qmlRegisterType&amp;quot; lets you use your own Qt classes in QML.&lt;br /&gt;
This way it is easily possible to include many of the functionality of your &amp;quot;old&amp;quot; project in QML.&lt;br /&gt;
Usefull links are:&lt;br /&gt;
* http://doc.qt.nokia.com/4.7-snapshot/qtbinding.html&lt;br /&gt;
* http://doc.qt.nokia.com/4.7-snapshot/declarative-cppextensions-qwidgets.html&lt;br /&gt;
* http://doc.qt.nokia.com/4.7-snapshot/qdeclarativeextensionplugin.html&lt;br /&gt;
* http://doc.qt.nokia.com/4.7-snapshot/declarative-cppextensions-plugins.html&lt;br /&gt;
* http://taschenorakel.de/michael/2011/07/14/using-c-enums-qml/&lt;br /&gt;
&lt;br /&gt;
=== Remove Obsolete Stuff ===&lt;br /&gt;
Some of the existing parts of a Fremantle project are not needed for Harmattan (e.g. forms etc.).&lt;br /&gt;
Those things do not need to be deleted but can be excluded for Harmattan build by changing the project file accordingly, e.g.:&lt;br /&gt;
 exists($$QMAKE_INCDIR_QT&amp;quot;/../qmsystem2/qmkeys.h&amp;quot;){&lt;br /&gt;
    DEFINES += Q_WS_MAEMO_6&lt;br /&gt;
    QT+= declarative&lt;br /&gt;
 # As we use QML anyways we do not need any forms.&lt;br /&gt;
    FORMS =&lt;br /&gt;
 }&lt;br /&gt;
Defines Q_WS_MAEMO_6, adds the declarative parts needed for QML etc. and removes all forms for Harmattan builds.&lt;br /&gt;
This is just an example. &lt;br /&gt;
Similarly the install targets and files can be changed as well.&lt;br /&gt;
This way it should still be possible to build the project for all targeted platforms such as Fremantle or Harmattan.&lt;br /&gt;
&lt;br /&gt;
=== Store QML in Filesystem instead of Resources ===&lt;br /&gt;
One nice feature of QML is that it is interpreted at runtime so changes in the QML part do not require a recompile. &lt;br /&gt;
We can exploit this feature to speed up the development process by not embedding the QML files in the binary but store these files somewhere else where we can easily edit them.&lt;br /&gt;
In the project file use, e.g.:&lt;br /&gt;
 OTHER_FILES += qml/main.qml \&lt;br /&gt;
   qml/MainPage.qml&lt;br /&gt;
 INSTALLS += target ... qml&lt;br /&gt;
 target.path = /usr/bin&lt;br /&gt;
 ...&lt;br /&gt;
 qml.path = /usr/share/vumeter/qml&lt;br /&gt;
 qml.files += qml/main.qml \&lt;br /&gt;
        qml/MainPage.qml&lt;br /&gt;
In the main method you can then use&lt;br /&gt;
 view.setSource(QUrl(&amp;quot;/usr/share/vumeter/qml/main.qml&amp;quot;));&lt;br /&gt;
instead of&lt;br /&gt;
 view.setSource(QUrl(&amp;quot;qrc:/qml/main.qml&amp;quot;));&lt;br /&gt;
to load the QML files.&lt;br /&gt;
&lt;br /&gt;
== Change Paths for Desktop Files etc. ==&lt;br /&gt;
The desktop files for Harmattan are located in&lt;br /&gt;
 desktop.path = /usr/share/applications&lt;br /&gt;
instead of&lt;br /&gt;
 desktop.path = /usr/share/applications/hildon&lt;br /&gt;
&lt;br /&gt;
== Packaging for Harmattan ==&lt;br /&gt;
&lt;br /&gt;
Just package application the debian/maemo way, edit debian/control etc&lt;br /&gt;
&lt;br /&gt;
Check [[debian]] documentation&lt;br /&gt;
&lt;br /&gt;
http://debian.org&lt;br /&gt;
&lt;br /&gt;
[http://www.developer.nokia.com/Community/Wiki/Harmattan:Developer_Library/Reference_documentation/Harmattan_Appendix_to_the_Debian_Policy_Manual  Harmattan Appendix to the Debian Policy Manual]&lt;br /&gt;
&lt;br /&gt;
== Uploading to OBS ==&lt;br /&gt;
&lt;br /&gt;
Install [[osc]] and refer to [[OBS]] [[Documentation]] too ...&lt;br /&gt;
&lt;br /&gt;
https://build.pub.meego.com&lt;/div&gt;</summary>
		<author><name>Epage</name></author>	</entry>

	<entry>
		<id>http://wiki.meego.com/User:Epage</id>
		<title>User:Epage</title>
		<link rel="alternate" type="text/html" href="http://wiki.meego.com/User:Epage"/>
				<updated>2011-07-02T01:19:32Z</updated>
		
		<summary type="html">&lt;p&gt;Epage: Moving my profile to MeeGo&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Personal =&lt;br /&gt;
&lt;br /&gt;
Background&lt;br /&gt;
* BS in Computer Engineering&lt;br /&gt;
* Driver developer&lt;br /&gt;
&lt;br /&gt;
Hardware&lt;br /&gt;
* Nokia 770&lt;br /&gt;
* Nokia n810 - Maemo 4.1&lt;br /&gt;
* Nokia n900 - Maemo 5&lt;br /&gt;
* Lenovo Ideapad S10-3t - Meego&lt;br /&gt;
&lt;br /&gt;
Experience&lt;br /&gt;
* Adapting desktop applications to being polished touch friendly applications&lt;br /&gt;
* [http://telepathy.freedesktop.org/spec/ Telepathy]&lt;br /&gt;
* Python, PyGTK, PyQt&lt;br /&gt;
&lt;br /&gt;
= Active Software Projects =&lt;br /&gt;
&lt;br /&gt;
[http://wiki.maemo.org/The_One_Ring The One Ring]&lt;br /&gt;
* Plugs into the &amp;quot;Telepathy&amp;quot; stack to integrate GV texting and calls into the native chat program for Linux, especially Maemo&lt;br /&gt;
* Creator&lt;br /&gt;
&lt;br /&gt;
[http://wiki.maemo.org/Ejpi ejpi]&lt;br /&gt;
* Experiments with touchscreen UI design using an RPN calculator&lt;br /&gt;
* Creator&lt;br /&gt;
&lt;br /&gt;
[http://wiki.maemo.org/DialCentral DialCentral]&lt;br /&gt;
* Touch-screen enhanced interface to the GV website&lt;br /&gt;
* Maintainer (rewrote almost all the original code, two or three times over)&lt;br /&gt;
&lt;br /&gt;
[http://wiki.maemo.org/Gonvert Gonvert]&lt;br /&gt;
* Unit converter&lt;br /&gt;
* Maintainer (rewrote almost all the original code, twice)&lt;br /&gt;
&lt;br /&gt;
[http://wiki.maemo.org/Quicknote Quicknote]&lt;br /&gt;
* Simple note taking application&lt;br /&gt;
* Maintainer&lt;br /&gt;
&lt;br /&gt;
[http://wiki.maemo.org/Multilist Multilist]&lt;br /&gt;
* Simple list management program&lt;br /&gt;
* Maintainer&lt;br /&gt;
&lt;br /&gt;
[http://wiki.maemo.org/Nqaap NQA]&lt;br /&gt;
* Audiobook player&lt;br /&gt;
* Maintainer&lt;br /&gt;
&lt;br /&gt;
[http://wiki.maemo.org/Waters_of_Shiloah Waters of Shiloah]&lt;br /&gt;
* Streaming media player for inspiration content&lt;br /&gt;
* Creator&lt;br /&gt;
&lt;br /&gt;
[http://wiki.maemo.org/Omnnom Omnnom]&lt;br /&gt;
* Pacman clone&lt;br /&gt;
* Contributor&lt;br /&gt;
&lt;br /&gt;
[http://wiki.maemo.org/Gorilla Gorilla]&lt;br /&gt;
* Gorilla.bas clone&lt;br /&gt;
* Contributor&lt;br /&gt;
&lt;br /&gt;
= Future Software Ideas =&lt;br /&gt;
&lt;br /&gt;
Phone Number Geoclue backend&lt;br /&gt;
* Not sure how geo clue is designed&lt;br /&gt;
** If just give gps location, could do that&lt;br /&gt;
** If give native backend location and can convert from/to location and GPS, then cool because it can work with any contact&lt;br /&gt;
* Would be nice if could express how stale the data is&lt;br /&gt;
&lt;br /&gt;
Use contact locality for geoclue backend&lt;br /&gt;
* bluewire&lt;br /&gt;
* linklocal&lt;br /&gt;
&lt;br /&gt;
Meego Touch Input Framework Plugin&lt;br /&gt;
* pie menus&lt;br /&gt;
* others?&lt;br /&gt;
&lt;br /&gt;
libfolks backends&lt;br /&gt;
* csv, vcard, google contacts, lds.org&lt;br /&gt;
&lt;br /&gt;
QtMobility Calendar backends&lt;br /&gt;
* rss, google calendar, lds.org&lt;br /&gt;
&lt;br /&gt;
Chirematic&lt;br /&gt;
* View the world as if you have different vision impairments&lt;br /&gt;
** Initially (and maybe only) do color blind filters&lt;br /&gt;
&lt;br /&gt;
telepathy-bluewire&lt;br /&gt;
* Connection Manager for Telepathy that goes over Bluetooth&lt;br /&gt;
* Implement the full range of telepathy support&lt;br /&gt;
** Re-use existing blue tooth technologies as much as possible&lt;br /&gt;
** Use XMPP for the rest&lt;br /&gt;
*** Should I instead just make an XMPP server that really goes over bluetooth?&lt;br /&gt;
&lt;br /&gt;
Another GV CM&lt;br /&gt;
* Be a proxy for another CM&lt;br /&gt;
** Would I have to limit myself to SIP or could I proxy anything?&lt;br /&gt;
* Would know exactly when calls are rejected for voicemail&lt;br /&gt;
* Would be able to bind the outbound GV channel to the inbound channel, effectively making auto-pickup&lt;br /&gt;
&lt;br /&gt;
Pickaxe&lt;br /&gt;
* A variable precision slide-rule inspired after my Pickett n600-es&lt;br /&gt;
* Zoomed out as all scales and has 2 significant figures&lt;br /&gt;
* Can select scales&lt;br /&gt;
** Shows the results of the operation (like for C and D &amp;quot;X*Y=Z&amp;quot;)&lt;br /&gt;
*** Only shows significant figures, no decimal place&lt;br /&gt;
* Zoom level selected by desired significant figures&lt;br /&gt;
** How to chose zoom level and zoom area?&lt;br /&gt;
*** Swiping moves the slide part&lt;br /&gt;
*** Would it be weird to have swiping the non-sliding part be to actually pan?&lt;br /&gt;
&lt;br /&gt;
100 Push Ups Challenge&lt;br /&gt;
* Would require permission for trademarks/copyrights&lt;br /&gt;
* Support multiple &amp;quot;profiles&amp;quot;&lt;br /&gt;
* Publishes reminders to calendar&lt;br /&gt;
* Workflow&lt;br /&gt;
** Start the Challenge&lt;br /&gt;
*** Allows entry of number of push ups / age&lt;br /&gt;
**** If in small range, suggest alternate form&lt;br /&gt;
**** If in high range, kick user out&lt;br /&gt;
*** Allow user to select the day of the week for D1, D2, D3, and Test&lt;br /&gt;
** Controls&lt;br /&gt;
*** Post-Pone a day&lt;br /&gt;
*** Repeat a week&lt;br /&gt;
** DayN&lt;br /&gt;
*** Shows recommended push ups and where at in series&lt;br /&gt;
*** Timer for breaks&lt;br /&gt;
*** Can enter how many in the max run one does&lt;br /&gt;
** Test&lt;br /&gt;
*** Enter how many did&lt;br /&gt;
&lt;br /&gt;
Galcan / Island / Planets&lt;br /&gt;
&lt;br /&gt;
Mancala&lt;br /&gt;
&lt;br /&gt;
Risk&lt;br /&gt;
&lt;br /&gt;
Shogi&lt;br /&gt;
&lt;br /&gt;
= Previous Software Projects =&lt;br /&gt;
* [http://wiki.maemo.org/Mer Mer] Contributor&lt;br /&gt;
** [http://gitorious.org/epage-mer/mer-cpa-about mer-cpa-about] Creator&lt;br /&gt;
** [http://gitorious.org/epage-mer/mer-cpa-input mer-cpa-input] Creator&lt;br /&gt;
** [http://gitorious.org/epage-mer/mer-cpa-memory mer-cpa-memory] Creator&lt;br /&gt;
** [http://gitorious.org/epage-mer/first-boot-wizard first-boot-wizard] Contributor&lt;/div&gt;</summary>
		<author><name>Epage</name></author>	</entry>

	<entry>
		<id>http://wiki.meego.com/Community_Office/Community_device_program/Nokia</id>
		<title>Community Office/Community device program/Nokia</title>
		<link rel="alternate" type="text/html" href="http://wiki.meego.com/Community_Office/Community_device_program/Nokia"/>
				<updated>2011-07-02T01:16:19Z</updated>
		
		<summary type="html">&lt;p&gt;Epage: adding info for epage&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Nokia Participation Details =&lt;br /&gt;
* Program Contact: [[User:qgil|Quim Gil]]&lt;br /&gt;
Update: Nokia N950 handsets are ready!  https://meego.com/community/device-program/devices/nokia-n9-devkit&lt;br /&gt;
&lt;br /&gt;
== N950 Devkit Program Details ==&lt;br /&gt;
* Device: Nokia N950 loaded with MeeGo 1.2 Harmattan &lt;br /&gt;
* Quantity: 250&lt;br /&gt;
* Additional Criteria / Terms: &lt;br /&gt;
** One submission per developer please&lt;br /&gt;
** Device to be loaned to participant for [period needed].&lt;br /&gt;
** May not be able to ship to certain countries / locations.&lt;br /&gt;
** Nokia employees are not eligible.&lt;br /&gt;
* Timeframe: distribution active.&lt;br /&gt;
&lt;br /&gt;
 '''QUESTIONS / ANSWERS &amp;amp; UPDATES:''' http://forum.meego.com/showthread.php?t=3597&lt;br /&gt;
&lt;br /&gt;
== General thoughts on device program ==&lt;br /&gt;
&lt;br /&gt;
The Nokia N950 is a platform available now for developers targeting the Nokia N9 and MeeGo handset apps in general. Technical details are available at http://developer.nokia.com/swipe&lt;br /&gt;
&lt;br /&gt;
Candidates must be community developers ready to start working on new or existing open source applications, to be published in apps.meego.com and the Nokia Store. Links to your current projects are relevant! Deadline for applications: end of Tuesday, June 28th.&lt;br /&gt;
&lt;br /&gt;
Questions &amp;amp; comments: http://forum.meego.com/showthread.php?t=3597&lt;br /&gt;
&lt;br /&gt;
IMPORTANT: *commercial* developers are encouraged to apply directly at http://developer.nokia.com - thank you for your understanding.&lt;br /&gt;
&lt;br /&gt;
== Results ==&lt;br /&gt;
&lt;br /&gt;
 '''WORK IN PROGRESS'''&lt;br /&gt;
&lt;br /&gt;
=== Accepted ===&lt;br /&gt;
&lt;br /&gt;
 For the sake of transparency and collaboration:&lt;br /&gt;
 * Please link your name to a page describing your Nokia N950 related work e.g. a wiki page.&lt;br /&gt;
 * Add here one line of text summarizing the project(s) and feature(s) you are concentrating. &lt;br /&gt;
 * We haven't done the 'Nokia employee' check yet. If you happen to be one, contact Quim Gil.&lt;br /&gt;
&lt;br /&gt;
==== Batch One ====&lt;br /&gt;
&lt;br /&gt;
[[User:aaporantalainen|Aapo Rantalainen]] '''ID sent''',  '''Applied for the Nokia Developer Launchpad program'''&amp;lt;br /&amp;gt;&lt;br /&gt;
First goal: [http://www.umsic.org/jammo/  JamMo] (will need some underlying libraries, e.g. [http://www.clutter-project.org/ clutter])&lt;br /&gt;
&lt;br /&gt;
[http://wiki.meego.com/User:Broothy Ádám Balázs]&lt;br /&gt;
* '''Sent my Account ID to Quim, i'm already Nokia launchpad member. Awaiting any reply.'''&lt;br /&gt;
* [http://store.ovi.com/content/113753 Switchboard]&lt;br /&gt;
** [http://www.youtube.com/watch?v=GdskgAfjjxc MobileMind]&lt;br /&gt;
&lt;br /&gt;
Adam Pigg '''ID sent''', '''applied for Nokia Launchpad''', '''waiting for reply'''&amp;lt;br /&amp;gt;&lt;br /&gt;
Porting my Qt/QML apps/games from maemo, and further work on Kexi and some more QML games&lt;br /&gt;
[http://www.piggz.co.uk My Site]&lt;br /&gt;
&lt;br /&gt;
[[User:Captianigloo|Aguirre Nicolas]] (captainigloo) '''ID sent''',  '''Applied for the Nokia Developer Launchpad program'''&amp;lt;br /&amp;gt;&lt;br /&gt;
Porting [http://enna.geexbox.org Enna], [http://svn.enlightenment.org/svn/e/trunk/E-MODULES-EXTRA/elfe elfe] and all [http://www.enlightenment.org EFL/Enlightenment] libraries to Meego.&lt;br /&gt;
&lt;br /&gt;
Alan M Bruce&lt;br /&gt;
&lt;br /&gt;
Oleg Bodnarchuk(bloody)'''ID sent''', '''applied for Nokia Launchpad'''&amp;lt;br /&amp;gt;&lt;br /&gt;
Developing Wiki-based offline database.&lt;br /&gt;
&lt;br /&gt;
[[User:mardy|Alberto Mardegan]] (Mardy) &amp;lt;br /&amp;gt;&lt;br /&gt;
Developing QML port of [http://www.mardy.it/mappero Mappero], possibly [http://www.mardy.it/oculo Oculo] and [http://neverball.org Neverball] (for the latter I'm now working on a N900 port).&lt;br /&gt;
&lt;br /&gt;
Aleix Pol (apol) &amp;lt;br/&amp;gt;&lt;br /&gt;
Porting &amp;quot;horaris&amp;quot; and &amp;quot;kanban&amp;quot; maemo applications, finally get to have a usable KAlgebra Mobile version working on MeeGo, hopefully drag other KDE applications with this effort.&lt;br /&gt;
&lt;br /&gt;
[https://meego.com/users/avis Alexander Terekhov] (Avis) '''ID sent, already a Launchpad member''' &amp;lt;br /&amp;gt;&lt;br /&gt;
Porting and improving [http://qt-apps.org/content/show.php/Smart+Shopper?content=139742 Smart Shopper] project. &lt;br /&gt;
&lt;br /&gt;
[[User:amandalam|Amanda Hoi Ching Lam]] (amandalam)  '''ID sent''',  '''Applied for the Nokia Developer Launchpad program'''&amp;lt;br /&amp;gt;&lt;br /&gt;
Traditional Chinese language and utility apps for the MeeGo &amp;amp; Harmattan platforms, including but not limited to a Chinese character lookup app, and applications localized for the Traditional Chinese communities in Hong Kong, Macau and Taiwan.  [https://sites.google.com/site/amandahoic/Home/ Amanda's Software Projects]&lt;br /&gt;
&lt;br /&gt;
[https://meego.com/users/andreagrandi Andrea Grandi] (Andy80) '''ID sent''',  '''Applied for the Nokia Developer Launchpad program'''&amp;lt;br /&amp;gt;&lt;br /&gt;
QML native client for Soma.fm radio. Based on the old mSoma: https://gitorious.org/msoma&lt;br /&gt;
&lt;br /&gt;
Andrei Mirestean&lt;br /&gt;
&lt;br /&gt;
[[User:Jaffa|Andrew Flegg]] (Jaffa) '''Device received'''&amp;lt;br /&amp;gt;&lt;br /&gt;
Porting apps from Maemo (Attitude &amp;amp; Hermes), developer tools, and apps.meego.com workflow. [[User:Jaffa|&amp;quot;Want to know more?&amp;quot;]]&lt;br /&gt;
&lt;br /&gt;
[[User:fiferboy|Andrew Olmsted]] (fiferboy) '''ID sent''', '''Already a Launchpad member (but my Launchpad account hasn't activated)'''&amp;lt;br /&amp;gt;&lt;br /&gt;
[http://andrew.olmsted.ca/meego Fiferboy's Projects] (Birdlist, Personal Lexicon, other ideas), porting and packaging some pure Qt apps&lt;br /&gt;
&lt;br /&gt;
[[User:wazd|Andrew Zhilin]] (wazd) '''ID sent''', '''Already a Launchpad member (but my Launchpad account hasn't activated)'''&amp;lt;br /&amp;gt;&lt;br /&gt;
[http://tabletui.wordpress.com], OMWeather, Live Wallpapers, BlueMaemo, Ati85, QML gPodder, tons of other design-related stuff&lt;br /&gt;
&lt;br /&gt;
[[User:anidel|Aniello Del Sorbo]] (anidel) &amp;lt;br /&amp;gt;&lt;br /&gt;
Porting [http://maemo.org/downloads/product/Maemo5/xournal/ Xournal] from Maemo to Harmattan/MeeGo&lt;br /&gt;
&lt;br /&gt;
Antti Pohjola (Summel1) ''' ID sent, Applied for the Nokia Developer Launchpad program '''&amp;lt;br /&amp;gt;&lt;br /&gt;
Porting [http://www.summeli.fi/?p=2453 AntSnes] and [http://www.summeli.fi/?p=2520 gpSP] from Symbian^3 to Harmattan/MeeGo.&lt;br /&gt;
&lt;br /&gt;
[[User:awhiemstra|Arjen-Wander Hiemstra]] &amp;lt;br/&amp;gt;&lt;br /&gt;
Porting [http://gluon.gamingfreedom.org Gluon] to MeeGo/Harmattan.&lt;br /&gt;
&lt;br /&gt;
[https://meego.com/users/djarty Artem Sereda] (DJArty) '''Nokia Developer User ID sent''', '''Applied for the Nokia Developer Launchpad program''' &amp;lt;br /&amp;gt;&lt;br /&gt;
Porting qutIM, openpref, arora, links, groove, microdc, Ukrainian localization.&lt;br /&gt;
&lt;br /&gt;
Assaf Paz '''ID sent''', '''applied for Nokia Launchpad'''&amp;lt;br /&amp;gt;&lt;br /&gt;
Adapting [http://code.google.com/p/qwazer/ Qwazer] to also work on Meego, hopefully create an Exchange Webmail client in pure QML (N900 was the initial target), Hebrew support &lt;br /&gt;
&lt;br /&gt;
[[User:Bart-cerneels|Bart Cerneels]](Stecchino)&amp;lt;br /&amp;gt;&lt;br /&gt;
Mobile UX' for Amarok using QML. [http://amarok.kde.org Amarok website]&lt;br /&gt;
&lt;br /&gt;
[[User:khertan|Benoît HERVIER]] (Khertan) '''ID sent''', '''waiting answer from Nokia Developer Launchpad program'''&amp;lt;br /&amp;gt;&lt;br /&gt;
Porting [http://khertan.net/khteditor KhtEditor] a source code editor, [http://khertan.net/khweeteur Khweeteur] a twitter/identi.ca client, [http://khertan.net/python_sdist_maemo Sdist_maemo] and developping KhtSync a automated file synchronization application, and KhtDrive an app to measure car and driver performances for eco driving.&lt;br /&gt;
&lt;br /&gt;
[[User:Termana|Bradley Smith]] (Termana) '''ID sent''',  '''Applied for the Nokia Developer Launchpad program'''&amp;lt;br /&amp;gt;&lt;br /&gt;
Developing a karaoke game with built-in pitch correction.&lt;br /&gt;
&lt;br /&gt;
[[User:arfoll|Brendan Le Foll]], '''ID sent''', '''applied for Nokia Launchpad'''&amp;lt;br /&amp;gt;&lt;br /&gt;
Porting XBMC + MeeGo TV stuff + doing audio continuums using pulseaudio.&lt;br /&gt;
&lt;br /&gt;
Carsten Munk&lt;br /&gt;
&lt;br /&gt;
Christian Pühringer (cip) '''ID sent, already a Launchpad member'''&amp;lt;br&amp;gt;&lt;br /&gt;
[https://github.com/cip/WikiOnBoard/wiki WikiOnBoard] Offline reader for Wikipedia using [http://openzim.org zim] format.  &lt;br /&gt;
&lt;br /&gt;
[[User:Clint|Clint Adams]] '''ID sent''',  '''Applied for the Nokia Developer Launchpad program'''&amp;lt;br /&amp;gt;&lt;br /&gt;
Libre.fm-related software development and porting, advocacy&lt;br /&gt;
&lt;br /&gt;
[[User:Cpscotti|Clovis Scotti]] (cpscotti) '''ID sent''',  '''Applied for the Nokia Developer Launchpad program'''&amp;lt;br /&amp;gt;&lt;br /&gt;
Developing the &amp;quot;connected snowboarding&amp;quot; [http://www.pushsnowboarding.com Push Snowboarding] application/project. Also, I'll be very happy to port other apps I did (mainly for Maemo) + new projects.&lt;br /&gt;
&lt;br /&gt;
Cornelius Hald&lt;br /&gt;
&lt;br /&gt;
[https://meego.com/users/zehjotkah Cosimo Kroll] (zehjotkah) '''ID sent''', '''already a Launchpad member'''&amp;lt;br /&amp;gt;&lt;br /&gt;
[http://wiki.maemo.org/MeeGo_Coding_Competition_2011 MeeGo Coding Competition 2011]&lt;br /&gt;
&lt;br /&gt;
Cristian Grozea '''ID sent''',  '''Applied for the Nokia Developer Launchpad program'''&amp;lt;br /&amp;gt;&lt;br /&gt;
magnus-plus photo: an application that combines a camera-based magnifier with more advanced image processing techniques, that would enable one to:&amp;lt;br /&amp;gt;&lt;br /&gt;
- use it as a magnifier (with optional light from the camera LED).&amp;lt;br /&amp;gt;&lt;br /&gt;
- use it as a photo negatives lightbox that automatically inverts the negatives and adjusts the colors for proper display:&lt;br /&gt;
the user just have to hover it over the (back-lit) negatives and on the screen the corresponding positive (or magnified part of it) is displayed in real-time.&amp;lt;br /&amp;gt;&lt;br /&gt;
- use it as an EVF add-on to SLRs to help with manual focus, leveraging the possibility of amplifying contrast and magnifying.&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Damian Waradzyn '''ID sent, already Nokia launchpad member. Awaiting reply.'''&amp;lt;br/&amp;gt;&lt;br /&gt;
Porting and further development of [http://talk.maemo.org/showthread.php?t=58402 CloudGPS]&lt;br /&gt;
&lt;br /&gt;
Daniel Martin Yerga&lt;br /&gt;
&lt;br /&gt;
David Derby '''ID sent''',  '''Applied for the Nokia Developer Launchpad program'''&amp;lt;br /&amp;gt;&lt;br /&gt;
Porting [http://www.6809.org.uk/dragon/xroar.shtml XRoar - Dragon &amp;amp; CoCo emulator] and [http://icculus.org/avp/ Aliens versus Predator (Gold Edition) game engine].&lt;br /&gt;
&lt;br /&gt;
David Galindo&lt;br /&gt;
&lt;br /&gt;
[[User:Lbt|David Greaves]] '''ID sent''',  '''Applied for the Nokia Developer Launchpad program'''&amp;lt;br /&amp;gt;&lt;br /&gt;
Mainly CE, Harmattan and Apps to start with. Hopefully Surrounds later.&lt;br /&gt;
&lt;br /&gt;
Diego Marcos&lt;br /&gt;
&lt;br /&gt;
Dimitar Pashov&lt;br /&gt;
&lt;br /&gt;
Dru Moore&lt;br /&gt;
&lt;br /&gt;
Eero af Heurlin&lt;br /&gt;
&lt;br /&gt;
[[User:Emocow | Ferdinand Mayet]] ('''Nokia Developer ID sent''')&amp;lt;br/&amp;gt;&lt;br /&gt;
Development of a golf GPS application&lt;br /&gt;
&lt;br /&gt;
Frank Sievertsen '''ID Sent, Applied for Nokia Developer Launchpad program, waiting for approval'''&amp;lt;br/&amp;gt;&lt;br /&gt;
Open-Source Spideroak Mobile Client and other apps&lt;br /&gt;
&lt;br /&gt;
Gary Birkett&lt;br /&gt;
N9 Qt port of liqcalendar&lt;br /&gt;
&lt;br /&gt;
[http://meego.com/users/garyd Gary Driggs] ('''dev ID sent, already reg'd as Launchpad member''')&lt;br /&gt;
Porting [http://www.gnu.org/s/gnash Gnash] to MeeGo ARM devices.&lt;br /&gt;
&lt;br /&gt;
George Ruinelli '''ID sent, Applied for the Nokia Developer Launchpad program'''&amp;lt;br&amp;gt;&lt;br /&gt;
Porting my [http://maemo.org/packages/view/sleepanalyser/ SleepAnalyser] from MAEMO as well as other smaller apps I wrote/ported. See [http://wiki.maemo.org/User:Caco3] for details.&lt;br /&gt;
&lt;br /&gt;
Gerard Braad&lt;br /&gt;
&lt;br /&gt;
Harald Sitter&lt;br /&gt;
&lt;br /&gt;
[[User:helihyv|Heli Hyvättinen]] '''Nokia Developer ID sent, applied for the Nokia Developer Launchpad program'''&amp;lt;br /&amp;gt;&lt;br /&gt;
Porting Ghosts Overboard (a game) and Chess Clock from Maemo and adding new features to the former.&lt;br /&gt;
&lt;br /&gt;
[[User:bergie|Henri Bergius]] &amp;lt;br /&amp;gt;&lt;br /&gt;
Porting Buscatcher, Midgard and Node.js -related tools to MeeGo. However, I've withdrawn my device program application because I already got a N950 via Helsinki MeeGo Network.&lt;br /&gt;
&lt;br /&gt;
Hiemanshu Sharma '''ID Sent, Applied for Nokia Developer Launchpad program''' &amp;lt;br/&amp;gt;&lt;br /&gt;
Currently working on porting [[http://forum.meego.com/showthread.php?t=3660|Komedia]]. More apps in the pipeline including Quassel (IRC Client), a Google Reader (name suggestions are welcome) and a 'Line of the day' kind of app (a glorified version of cowsay). Also working on getting an opencv port to give way for Face Detection/Facial recognition APIs.&lt;br /&gt;
&lt;br /&gt;
[[User:Divan|Ivan Daniluk]] ''' ID sent, Applied for the Nokia Developer Launchpad program'''&amp;lt;br /&amp;gt;&lt;br /&gt;
Porting  [[User:Divan|my Maemo5 applications]], adding full Vkontakte support, Russian and Ukrainian localization and developing new apps in progress..&lt;br /&gt;
&lt;br /&gt;
Janne Mäkinen '''ID sent''', '''applied for Nokia Launchpad'''&amp;lt;br /&amp;gt;&lt;br /&gt;
Porting/Rewriting Maemo 5 stuff&lt;br /&gt;
&lt;br /&gt;
[[User:Javispedro|Javier de San Pedro Martín]] &amp;lt;br /&amp;gt;&lt;br /&gt;
Porting my [http://wiki.maemo.org/User:Javispedro Maemo 5 applications and SDL games], and [http://gitorious.org/hsdl/pages/Home SDL] itself.&lt;br /&gt;
&lt;br /&gt;
Jens Persson '''ID sent''', '''applied for Nokia Launchpad'''&lt;br /&gt;
&lt;br /&gt;
Jeremias Bosch&lt;br /&gt;
&lt;br /&gt;
[[User:vandenoever|Jos van den Oever]] &amp;lt;br /&amp;gt;&lt;br /&gt;
Porting [http://webodf.org WebODF] to MeeGo using QML and JavaScript.&lt;br /&gt;
Experiment with a semantic logging tool&lt;br /&gt;
Experiment with a [http://blogs.kde.org/node/4161 metronome application] in QML.&lt;br /&gt;
&lt;br /&gt;
[[User:Metropt|Jose Xavier]], '''ID sent''', '''waiting answer from Nokia Developer Launchpad program'''&amp;lt;br /&amp;gt;&lt;br /&gt;
My goal is to port the OpenPilot Ground Control Station to the MeeGo platform and adapt the UI for a better mobile experience. You can see more information about OpenPilot GCS here: http://wiki.openpilot.org/display/Doc/Ground+Control+Station+User+Manual&lt;br /&gt;
&lt;br /&gt;
[[User:Bundyo|Kamen Bundev]] (Bundyo), '''ID sent''', '''applied for Nokia Launchpad''' &amp;lt;br /&amp;gt;&lt;br /&gt;
Rewriting Search Tool, porting Maemo 5 work, NodeJS, possible Tear rewrite.&lt;br /&gt;
&lt;br /&gt;
Karl Johan Grøttum&lt;br /&gt;
&lt;br /&gt;
[[User:kemargrant | kemar grant]], '''ID sent''',  '''Applied for the Nokia Developer Launchpad program'''&amp;lt;br /&amp;gt;&lt;br /&gt;
My goal is to bring Screen Mirroring to Meego along with playing local files&lt;br /&gt;
easily to a desktop. The app is called groundwork and it is opensource. Code will be shifted to Launchpad once I can begin testing on a meego device.&lt;br /&gt;
http://code.google.com/p/groundwork/&lt;br /&gt;
&lt;br /&gt;
Ken Young&amp;lt;br /&amp;gt;&lt;br /&gt;
Initially I will port the Maemo [http://wiki.maemo.org/Orrery Orrery] program, and add support for the magnetometer.   I will&lt;br /&gt;
also port some other apps from Maemo 5.'''ID sent''', '''applied for Nokia Launchpad''' &amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[User:Kimitake|Kimitake]] '''ID sent, already a Launchpad member'''&amp;lt;br&amp;gt;&lt;br /&gt;
developing Qt-based micro blogging client for twitter, identi.ca, wassr, jp&lt;br /&gt;
&lt;br /&gt;
Kirill Kulakov&lt;br /&gt;
&lt;br /&gt;
[[User:lostinmirkwood|Kristopher C. Kantor]]  '''ID sent''',  '''Applied for the Nokia Developer Launchpad program'''&amp;lt;br /&amp;gt;&lt;br /&gt;
* Continuing Development of [http://ansela.garage.maemo.org/ Ansel-A]: Digital Darkroom for Qt Devices&lt;br /&gt;
&lt;br /&gt;
[[User:shadymilkman|Kyle Thomas]]  &amp;lt;br/&amp;gt;&lt;br /&gt;
Creating Reedit: [http://www.shadymilkman.com/p/n9-project.html Reedit] A full featured Reddit list browser &amp;lt;br/&amp;gt;&lt;br /&gt;
Submitted credentials to the N.D.Launchpad for application review, waiting for instructions.&lt;br /&gt;
&lt;br /&gt;
[[User:Creamygoodness|Lance Colton]]   '''ID sent''',  '''Applied for the Nokia Developer Launchpad program'''&amp;lt;br /&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
Working on Proximus during July, I will see what we can do with Conky after that.&lt;br /&gt;
&lt;br /&gt;
Lasse Kärkkäinen&amp;lt;br /&amp;gt;&lt;br /&gt;
Porting [http://performous.org/ Performous] singing/band game from PC to N900 and MeeGo&lt;br /&gt;
&lt;br /&gt;
Lasse Stenberg&lt;br /&gt;
&lt;br /&gt;
Laszlo Papp (Already got one earlier, thus I do not need a new one ;) )&lt;br /&gt;
&lt;br /&gt;
liang wei (foolegg)&amp;lt;br/&amp;gt;&lt;br /&gt;
[[Cuteinputmethod]] is a Chinese Input Method, designed for handset device.&amp;lt;br/&amp;gt;&lt;br /&gt;
(received notify mail, and sent reply with Nokia Developer Account Id)&lt;br /&gt;
&lt;br /&gt;
Luis Felipe Strano Moraes '''ID sent''', '''applied for Launchpad membership''' &amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Luiz Augusto von Dentz&lt;br /&gt;
&lt;br /&gt;
Marat Fayzullin (fms) '''ID sent''', '''already a Launchpad member'''&amp;lt;br/&amp;gt;&lt;br /&gt;
Porting the following: &lt;br /&gt;
[http://fms.komkon.org/SlideRule/ SlideRule],&lt;br /&gt;
[http://fms.komkon.org/ColEm/ ColEm], &lt;br /&gt;
[http://fms.komkon.org/fMSX/ fMSX], &lt;br /&gt;
[http://fms.komkon.org/Speccy/ Speccy], &lt;br /&gt;
[http://fms.komkon.org/ATI85/ AlmostTI], &lt;br /&gt;
[http://fms.komkon.org/MG/ MasterGear], &lt;br /&gt;
[http://fms.komkon.org/iNES/ iNES], &lt;br /&gt;
[http://fms.komkon.org/VGB/ VGB], &lt;br /&gt;
[http://fms.komkon.org/VGBA/ VGBA]. &lt;br /&gt;
Also expecting to port the FBReader and an IRC client (although most likely not XChat).&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[User:deimos|Marco Bavagnoli]] (deimos) '''ID sent''',  '''Applied for the Nokia Developer Launchpad program'''&amp;lt;br /&amp;gt;&lt;br /&gt;
I'm porting [http://mediadownloader.cz.cc/?page_id=2 mediadownloader] application just ported to [http://mediadownloader.cz.cc/?p=153 maemo] and here a [http://www.youtube.com/watch?v=_Dsj2piBQCw video]. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[User:Mece|Marcus Wikström]] (mece) '''ID sent''',  '''Applied for the Nokia Developer Launchpad program'''&amp;lt;br /&amp;gt;&lt;br /&gt;
[http://talk.maemo.org/showthread.php?t=73490 Tweed Suit] for N9/50. Probably Qlister and also planning an location based tracking service/app.&lt;br /&gt;
&lt;br /&gt;
Marijn Kruisselbrink&lt;br /&gt;
&lt;br /&gt;
[[User:mgedmin|Marius Gedminas]] (mgedmin) '''ID sent''', '''Applied for the Nokia Developer Launchpad program'''&amp;lt;br /&amp;gt;&lt;br /&gt;
Planning to port [http://mg.pov.lt/gtimelog GTimeLog].&lt;br /&gt;
&lt;br /&gt;
Marko Mattila&lt;br /&gt;
&lt;br /&gt;
[http://wiki.meego.com/User:Vgrade Martin Brook] (vgrade) '''ID sent''', '''Applied for the Nokia Developer Launchpad program'''&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
I would plan to contnue my contributions to the N900 Community Edition of MeeGo which I assume will push right through into the N9. I am very interested in contributing to the exciting new architecture built on Wayland to give this device the best user experience.&lt;br /&gt;
&lt;br /&gt;
Local Network Meetups, Cambridge, Birmingham, Koln, Dusseldorf&lt;br /&gt;
&lt;br /&gt;
Martin Grimme (pycage) '''ID sent''',  '''Applied for the Nokia Developer Launchpad program'''&amp;lt;br&amp;gt;&lt;br /&gt;
Doing the Community Apps installer client. Also targetting Harmattan with my OSS MeeGo apps (which are currently mostly running on the WeTab).&lt;br /&gt;
&lt;br /&gt;
[http://wiki.meego.com/User:Martink Martin Kolman] (MartinK)  '''ID sent''', '''applied for the Nokia Launchpad'''&amp;lt;br&amp;gt;&lt;br /&gt;
Porting the modRana GPS navigation system and Mieru manga and comic book reader.&lt;br /&gt;
&lt;br /&gt;
[[User:twoboxen|Matt Hawkins]] (twoboxen) '''ID sent''', '''Already a Launchpad member'''&amp;lt;br/&amp;gt;&lt;br /&gt;
Open sourcing and working on my cross-platform OpenGL engine (HawkEngine) and several [https://sites.google.com/site/hawkorn/games games].  This engine builds projects and binaries for Qt, iOS, Android (though the NDK is touchy), WebOS, Glut, etc.&lt;br /&gt;
&lt;br /&gt;
[[User:zas|Matti Henrik Karjalainen]] (zas) '''ID sent, applied for Nokia Launchpad'''&amp;lt;br/&amp;gt;&lt;br /&gt;
[http://tols17.oulu.fi/~matkarja/meego/ Projects] (Currently working on Tap 'em (game))&lt;br /&gt;
&lt;br /&gt;
[http://forum.meego.com/member.php?u=9286 Michael Muth] (helex) '''ID sent, already a Launchpad member'''&amp;lt;br /&amp;gt;&lt;br /&gt;
[http://talk.maemo.org/showthread.php?p=1001316 ClipMan], [http://talk.maemo.org/showthread.php?t=52589 DreamRemote], TcpKeyboard, something like [http://talk.maemo.org/showthread.php?t=72408 ConkyLayoutSwitcher] (have to see how the UI works in detail - need to create it from scratch)&lt;br /&gt;
&lt;br /&gt;
[http://blog.mikeasoft.com/tag/maemo/ Michael Sheldon] (Elleo) '''ID sent, applied for Nokia Launchpad'''&amp;lt;br /&amp;gt;&lt;br /&gt;
Creating a [http://libre.fm Libre.fm] radio client and porting [http://www.jokosher.org Jokosher] to small screen devices.&lt;br /&gt;
&lt;br /&gt;
[http://blog.cihar.com/ Michal Čihař] (Nijel) '''ID sent, applied for Nokia Launchpad'''&amp;lt;br /&amp;gt;&lt;br /&gt;
Creating a [http://wammu.eu/ Gammu] application for phone for data synchronization and backup.&lt;br /&gt;
&lt;br /&gt;
Michele Tameni ( netvandal ) '''ID sent''',  '''Applied for the Nokia Developer Launchpad program'''&lt;br /&gt;
&lt;br /&gt;
- Luca's Mirror:  It’s a simple app that transform your phone into a hand-held mirror with some other cool addictions.&lt;br /&gt;
&lt;br /&gt;
- Semantic experiment : Experiment with Notification Area mixed with the semantic information stored in tracker, reacting to user action with usefull notification&lt;br /&gt;
More info  [http://michele.tameni.it/project/meego/ Here]&lt;br /&gt;
&lt;br /&gt;
Mike Choy : Porting Maesynth and Maelophone from N900 Python to QML and C++. Stress testing the new [https://projects.developer.nokia.com/qtgameenabler Qt Game Enabler] to see if we finally have  low latency audio support in Qt. Will also look to see if we can get midi sample support via Wild Midi or equivalent. &lt;br /&gt;
&lt;br /&gt;
Mikko Vartiainen '''ID sent''',  '''Applied for the Nokia Developer Launchpad program'''&lt;br /&gt;
http://forum.meego.com/showthread.php?t=3607&lt;br /&gt;
&lt;br /&gt;
[https://projects.developer.nokia.com/home/user/mmlado Mladen Milankovic] '''IDs sent'''&amp;lt;br /&amp;gt;&lt;br /&gt;
Develop games in QML&lt;br /&gt;
&lt;br /&gt;
Mures Andone&lt;br /&gt;
&lt;br /&gt;
[[User:Nielsmayer|Niels Mayer]] '''[https://projects.developer.nokia.com/home/user/NielsMayer Nokia Developer ID] sent''', '''Applied for the Nokia Developer Launchpad program'''&amp;lt;br /&amp;gt;&lt;br /&gt;
[http://wiki.meego.com/Tubelet-and-cutetube-port Port cutetube-qml to MeeGo tablet UX/harmattan UX.]&amp;lt;br /&amp;gt;&lt;br /&gt;
[http://code.google.com/p/ytd-meego/wiki/CitizenJournalismWithYoutubeDirectForMeego YouTube Direct For MeeGo]&lt;br /&gt;
&lt;br /&gt;
[[User:olka|Oleksandr Kachur]] '''ID sent'''. '''Waiting answer from Nokia Developer Launchpad program'''&amp;lt;br /&amp;gt;&lt;br /&gt;
Developing cloud music player integrated with Google music, Amazon music and last.fm services.&lt;br /&gt;
&lt;br /&gt;
Olle Tränk (zeamoceq) '''ID sent''',  '''Applied for the Nokia Developer Launchpad program'''&amp;lt;br /&amp;gt;&lt;br /&gt;
Porting [http://qticksize.zeamoceq.net qTickSize] (interface to Swedish online stock broker)&lt;br /&gt;
&lt;br /&gt;
Oscar Martinez '''ID sent''',  '''Applied for the Nokia Developer Launchpad program'''&amp;lt;br /&amp;gt;&lt;br /&gt;
Port 2d puzzle board game [http://kde-apps.org/content/show.php/kMagnet?content=109111 kMagnet] or a new 2d board puzzle game&lt;br /&gt;
&lt;br /&gt;
[[User:Lorenzph|Philip Lorenz]] (Nokia Developer ID sent)&amp;lt;br /&amp;gt;&lt;br /&gt;
Development of a hiking application supporting the user when planning and executing the trip.&lt;br /&gt;
&lt;br /&gt;
[[User:Ph5|Philipp Zabel]] (pH5) ''' ID sent, applied for the Nokia Developer Launchpad program '''&amp;lt;br /&amp;gt;&lt;br /&gt;
Integration of [https://www.torproject.org/ Tor] support, porting of [http://maemo.org/downloads/product/Maemo5/frogatto/ Frogatto], [https://garage.maemo.org/projects/beifahrer/ Beifahrer] and [https://garage.maemo.org/projects/cinaest/ Cinaest]&lt;br /&gt;
&lt;br /&gt;
Randall Arnold&lt;br /&gt;
Application testing, local and regional meetup/event demos, product evangelism, peripheral design&lt;br /&gt;
&lt;br /&gt;
Ravi Vagadia '''ID Sent''', '''Applied for the Nokia Developer Launchpad Program''' &amp;lt;br/&amp;gt;&lt;br /&gt;
VLC Remote &amp;amp; Trip Management App.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Ray Donnelly&lt;br /&gt;
&lt;br /&gt;
[[User:Rlinfati|Rodrigo Linfati]]  '''ID sent''',  '''Applied for the Nokia Developer Launchpad program'''&lt;br /&gt;
* Upgrade GoogleLatitude to the current API&lt;br /&gt;
* Find your Frient: a apps that inform you position directly to you friend without any external server.&lt;br /&gt;
&lt;br /&gt;
Roman Morawek&lt;br /&gt;
&lt;br /&gt;
[http://wiki.meego.com/User:Wonko Ruediger Gad (wonko)] '''ID sent''',  '''Applied for the Nokia Developer Launchpad program''' &amp;lt;br /&amp;gt;&lt;br /&gt;
Amongst other things I'll port my existing applications for Maemo5/Fremantle to MeeGo/Harmattan: VU Meter, StultitiaSimplex, Zeecontrol, Advanced Clock Plugin (for details please see my page).&lt;br /&gt;
&lt;br /&gt;
[[User:generalantilles|Ryan Abel]] (GeneralAntilles)  '''ID sent''',  '''Applied for the Nokia Developer Launchpad program''' &amp;lt;br /&amp;gt;&lt;br /&gt;
Working with fiferboy on a photographer's application suite ([http://thousandsparrows.com/meego/ SnapGo], currently) to include feature like a light meter and GPS track recording.&lt;br /&gt;
&lt;br /&gt;
Sam Bristow&lt;br /&gt;
&lt;br /&gt;
[[User:Eipi|Sanjeev Visvanatha]] (EIPI) , '''d.n.c ID sent''', '''could not apply for Nokia Launchpad''' &amp;lt;br /&amp;gt;&lt;br /&gt;
Porting MaeFlight from Maemo 5, and adding functionality for Harmattan &lt;br /&gt;
&lt;br /&gt;
Seif Lotfy&lt;br /&gt;
&lt;br /&gt;
Sergey Ivanov&amp;lt;br /&amp;gt;&lt;br /&gt;
Developing software for the mobile operating system MeeGo, associated with the processing of audio and video streams.&lt;br /&gt;
&lt;br /&gt;
Sergey Ivanov&lt;br /&gt;
&lt;br /&gt;
[[User:Spenap|Simón Pena]] '''ID sent''',  '''Applied for the Nokia Developer Launchpad program'''&amp;lt;br /&amp;gt;&lt;br /&gt;
Porting and enhancing Maevies from Maemo 5 to Meego/Harmattan&lt;br /&gt;
&lt;br /&gt;
Simon Pickering (lardman) '''ID sent''',  '''Applied for the Nokia Developer Launchpad program'''&amp;lt;br /&amp;gt;&lt;br /&gt;
Porting mBarcode, working on Augmented Reality app (mAR), time and location event app (Proximus), additional location methods (offline cellid, magnetic field line direction)&lt;br /&gt;
Page here: http://wiki.meego.com/User_talk:Lardman&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[User:Somnathbanik|Somnath Banik]]: '''Nokia Developer ID Sent''', '''Applied for Nokia Developer Launchpad Program'''&lt;br /&gt;
* Porting my existing Symbian^3 multimedia applications to MeeGo/N9 with a  new and exciting UI components of Harmattan/MeeGo.&lt;br /&gt;
* Creating simple and easy open source application to inspire beginner developers to work on MeeGo/N9 technology.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Stani Michiels&lt;br /&gt;
&lt;br /&gt;
Stefanos Harhalakis&lt;br /&gt;
&lt;br /&gt;
Stephen Gadsby (sjgadsby) '''ID sent''', '''applied for Nokia Launchpad''' &amp;lt;br /&amp;gt;&lt;br /&gt;
writing a [[User:Sjgadsby#Preferred Shopper Card Wallet|not-yet-named wallet for store loyalty cards]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[User:vitaminj|Stephen Spencer]] (VitaminJ) '''ID sent, applied for the Nokia Developer Launchpad program'''&amp;lt;br/&amp;gt;&lt;br /&gt;
[http://jenkins.vitaminj.co.uk/job/meex/ Meex], a portable DJing application&lt;br /&gt;
&lt;br /&gt;
Susanna Huhtanen&lt;br /&gt;
&lt;br /&gt;
Tadej Novak '''ID sent, applied for the Nokia Developer Launchpad program''' &amp;lt;br&amp;gt;&lt;br /&gt;
Porting my desktop IP TV player and schedule to Meego&lt;br /&gt;
&lt;br /&gt;
[http://wiki.meego.com/User:Kenya888 Takahiro Hashimoto(kenya888)] '''ID sent, waiting reply of Launchpad program'''&amp;lt;br&amp;gt;&lt;br /&gt;
porting qimsys/mozc to Harmattan/MeeGo, developing streaming multimedia player with QML&lt;br /&gt;
&lt;br /&gt;
Tasuku Suzuki&lt;br /&gt;
&lt;br /&gt;
Teemu Hukkanen&lt;br /&gt;
&lt;br /&gt;
[http://teom.wordpress.com Teo Mrnjavac] '''ID sent, applied for the Nokia Developer Launchpad program'''&amp;lt;br/&amp;gt;&lt;br /&gt;
[http://ur1.ca/4kkwh Porting] [http://amarok.kde.org Amarok] to tablets and handsets running MeeGo/Harmattan.&lt;br /&gt;
&lt;br /&gt;
Thomas Cherryhomes - Lead Developer for LinuxMCE&lt;br /&gt;
* LinuxMCE is a next generation smart home platform encompassing media, home automation, telecom, and security features. http://www.linuxmce.org/&lt;br /&gt;
* A 25 min demo of the software can be seen here: http://video.google.com/videoplay?docid=2176025602905109829&lt;br /&gt;
* Nokia N950 will be used as a test platform for the new QML/Qt Quick based qOrbiter we are writing to replace our existing Orbiter software, qOrbiter videos here: &lt;br /&gt;
** http://www.youtube.com/watch?v=NDGagn3EciA&lt;br /&gt;
** http://www.youtube.com/watch?v=oUHrCdBgoyQ&lt;br /&gt;
&lt;br /&gt;
[[user:thp|Thomas Perl]]  '''ID sent'''&lt;br /&gt;
* [http://gpodder.org/ gPodder] - Integrating gPodder with Harmattan (including specific APIs)&lt;br /&gt;
* Open source work on Python-related APIs (PySide, etc..) + Python tutorials&lt;br /&gt;
* Get [[Games|Mong]] in shape for Harmattan&lt;br /&gt;
* Port over some of my existing [http://maemo.org/profile/view/thp/ Maemo 5 apps]&lt;br /&gt;
&lt;br /&gt;
[[user:harbaum|Till Harbaum]] '''ID sent, applied for the Nokia Developer Launchpad program'''&lt;br /&gt;
* First action: Try to get [http://www.harbaum.org/till/cacheme CacheMe] to work nicely &lt;br /&gt;
* Might have to work on qt theming (and convince people that this is a good thing :-)&lt;br /&gt;
* [https://build.pub.meego.com/project/show?project=home%3Aharbaum Community OBS home project]&lt;br /&gt;
* And of course i'd like to port some of my previous Maemo projects ...&lt;br /&gt;
&lt;br /&gt;
[[User:timoph|Timo Härkönen]] (timoph) '''ID sent, applied for Launchpad membership'''&lt;br /&gt;
* [http://gitorious.org/random-timoph impuzzle, etc.]&lt;br /&gt;
* [http://timoph.fi timoph.fi]&lt;br /&gt;
* [https://build.pub.meego.com/project/show?project=home%3Atimoph Community OBS home project]&lt;br /&gt;
&lt;br /&gt;
[http://wiki.meego.com/User:Venemo Timur Kristóf]&lt;br /&gt;
&lt;br /&gt;
* '''Sent my Account ID to Quim, applied at Nokia launchpad. Awaiting any reply.'''&lt;br /&gt;
* [http://wiki.meego.com/User:Venemo/HarmattanPlans My Harmattan Plans]&lt;br /&gt;
** [http://gitorious.org/colorful-apps/puzzle-master Puzzle Master]&lt;br /&gt;
** [http://forum.meego.com/showthread.php?t=3711 Public transportation app] (Click on the [http://forum.meego.com/showthread.php?t=3711 link] and post to the thread if you are interested to contribute.)&lt;br /&gt;
** [https://gitorious.org/colorful-apps/memory-game Memory game]&lt;br /&gt;
** Labirynth game (No code available yet)&lt;br /&gt;
&lt;br /&gt;
Tom Swindell&lt;br /&gt;
* [[User:Tswindell/CommunityApplicationDevelopment]]: Columbus Navigation Toolkit, Media IM Status Updater.&lt;br /&gt;
&lt;br /&gt;
[[User:tlaukkanen|Tommi Laukkanen]]&lt;br /&gt;
* Facebook client [http://kasvopus.com Kasvopus], Twitter client [http://twimgo.com TwimGo], Google Reader client [http://newsflow.mobi NewsFlow], FourSquare client [http://nelisquare.com Nelisquare]&lt;br /&gt;
&lt;br /&gt;
Toni Nikkanen&lt;br /&gt;
&lt;br /&gt;
[https://meego.com/users/sandst1 Topi Santakivi] '''ID sent''', '''applied for Nokia Launchpad'''&lt;br /&gt;
* Porting FunkeySynth, a MeeGo Tablet synthesizer to Harmattan &lt;br /&gt;
* Demo clip and further info in [http://sandst1.wordpress.com/ my blog]&lt;br /&gt;
&lt;br /&gt;
Tuomas Kulve&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[https://meego.com/users/vasvlad Uladzislau Vasilyeu] (Vasvlad) '''ID sent, applied for the Nokia Developer Launchpad program'''&amp;lt;br/&amp;gt;&lt;br /&gt;
* Porting OMWeather to Harmattan&lt;br /&gt;
&lt;br /&gt;
[[User:drowne|Valerio Di Donato]] '''ID sent, applied for Nokia Launchpad '''&amp;lt;br /&amp;gt;&lt;br /&gt;
Location-Based games and application development, mobile game design. Junomi Developer ( serious game presented at Games for Health Conference in Boston, May 2011 )&lt;br /&gt;
&lt;br /&gt;
Ville Jyrkkä&lt;br /&gt;
&lt;br /&gt;
Ville Ranki&lt;br /&gt;
&lt;br /&gt;
Willem Liu&lt;br /&gt;
&lt;br /&gt;
[[User:ph0b|Xavier Hallade]] '''ID sent, applied for Nokia Launchpad '''&amp;lt;br /&amp;gt;&lt;br /&gt;
Writing tutorials to help other developers to step in MeeGo / Building MeeGo Paris network / Developing an audio player to access to more than 47 000 webradios referenced on AOL shoutcast (by name, genre, current track)&lt;br /&gt;
&lt;br /&gt;
Yann Bieber '''ID sent, applied for Nokia Launchpad '''&amp;lt;br /&amp;gt;&lt;br /&gt;
Porting [http://code.google.com/p/wagic/ Wagic] on Harmattan based on either Qt or SDL&lt;br /&gt;
&lt;br /&gt;
Zaheer Merali '''ID sent''' '''Applied for the Nokia Developer Launchpad (for individuals) program'''&lt;br /&gt;
* Porting [http://gstreamer.freedesktop.org GStreamer] plugins not shipped by Nokia to Harmattan&lt;br /&gt;
* Porting [http://www.flumotion.net Flumotion] an open source streaming solution to Harmattan taking advantage of the hardware encoding and the camera&lt;br /&gt;
&lt;br /&gt;
Zap Andersson&lt;br /&gt;
&lt;br /&gt;
Zeeshan Ali&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Batch Two  ====&lt;br /&gt;
&lt;br /&gt;
Second batch - to be integrated witrh the list above.&lt;br /&gt;
&lt;br /&gt;
Max Waterman '''ID sent''', '''applied for Nokia Launchpad'''&lt;br /&gt;
* Porting ZouBa to MeeGo/H and QML, plust other app ideas.&lt;br /&gt;
&lt;br /&gt;
Sławomir Musiał '''ID sent''', '''applied for Nokia Launchpad'''&lt;br /&gt;
* [http://www.swinkels.tvtom.pl/eCards eCards] Application for creating and sending e-cards&lt;br /&gt;
&lt;br /&gt;
[https://meego.com/users/scifiguy Sudheer K.] '''ID sent''', '''applied for Nokia Launchpad'''&lt;br /&gt;
* Porting [https://garage.maemo.org/projects/marketstoday Markets Today], a Stock Quotes  app to Harmattan &lt;br /&gt;
* Evaluate porting of VICaR (Call router application) and new application ideas on Harmattan&lt;br /&gt;
&lt;br /&gt;
Mohannad Hammadeh '''ID sent, Applied for the Nokia Developer Launchpad program'''&lt;br /&gt;
* Porting mPrayerTime to Meego-Harmattan, updating the UI and adding more features.&lt;br /&gt;
&lt;br /&gt;
[[User:antman8969|Anthony Naddeo]] (antman8969 here on meego.com, but antman8069 on developer.nokia.com) '''id sent, applied for launch program''' &amp;lt;br /&amp;gt;&lt;br /&gt;
Creator and maintainer of [http://linkedup.googlecode.com Linkedup] - LinkedIn client for Maemo, Meego, Harmattan..... anything Qt&lt;br /&gt;
&lt;br /&gt;
Leaf Johnson&lt;br /&gt;
&lt;br /&gt;
[[User:epage|Ed Page]] '''ID sent, Applied for the Nokia Developer Launchpad program'''&lt;br /&gt;
* Updating [http://wiki.maemo.org/DialCentral DialCentral], [http://wiki.maemo.org/Gonvert Gonvert], [http://wiki.maemo.org/Ejpi ejpi] for Meego/Harmattan&lt;br /&gt;
* Port all other appliations to Qt for  Meego/Harmattan&lt;br /&gt;
* Continue writing new applications&lt;br /&gt;
&lt;br /&gt;
William Su (sony123) '''ID sent, Applied for the Nokia Developer Launchpad program''' &amp;lt;br /&amp;gt;&lt;br /&gt;
[http://talk.maemo.org/showthread.php?p=1019939#post1019939 Stockona] - a google finance client. &lt;br /&gt;
Currently working on:&lt;br /&gt;
* Local portfolio creation.&lt;br /&gt;
* Webview integration: Make in-app news feed reading possible.&lt;br /&gt;
&lt;br /&gt;
Anthony Day&lt;br /&gt;
&lt;br /&gt;
[[User:mattaustin|Matt Austin]]  '''ID sent''',  '''Applied for the Nokia Developer Launchpad program'''&amp;lt;br /&amp;gt;&lt;br /&gt;
Transperth trains live departure boards app, Player numbers AFL footy app, Amazon S3 bucket &amp;amp; file browser&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[https://meego.com/users/smoku Tomasz Sterna] '''ID sent, Applied for the Nokia Developer Launchpad program'''&lt;br /&gt;
* Port my touch screen [http://tomasz.sterna.tv/maemo/ ports of games for Maemo] (Widelands, Bos Wars, Robbo) and UAE4All, PSX4All emulators&lt;br /&gt;
* Port support for SIXAXIS(TM) Controller&lt;br /&gt;
* Possibly build and integrate [http://codex.xiaoka.com/wiki/cordia:start Cordia HD] on Harmattan&lt;br /&gt;
&lt;br /&gt;
Olli Laasonen '''ID sent''',  '''Applied for the Nokia Developer Launchpad program'''&amp;lt;br /&amp;gt;&lt;br /&gt;
* Porting apps from Maemo (Who is calling?, Advanced phone lock, Sanakirja.org dictionary client).&lt;br /&gt;
* Developing small handy applications.&lt;br /&gt;
&lt;br /&gt;
Ville Syrjälä&lt;br /&gt;
&lt;br /&gt;
Shane Bryan&lt;br /&gt;
&lt;br /&gt;
Jure Repinc&lt;br /&gt;
&lt;br /&gt;
[http://maemo.org/profile/view/rm_you/ Adam Harwell] '''ID sent''',  '''Applied for the Nokia Developer Launchpad program'''&amp;lt;br /&amp;gt;&lt;br /&gt;
* Porting [http://maemo.org/downloads/product/OS2008/advanced-backlight/ Advanced Backlight] from Maemo, adding new features&lt;br /&gt;
* Helping with photo utility suite project&lt;br /&gt;
* Will help beta test apps for people on IRC&lt;br /&gt;
&lt;br /&gt;
Boris Pohler (emanymton) '''ID sent''',  '''Applied for the Nokia Developer Launchpad program'''&amp;lt;br /&amp;gt;&lt;br /&gt;
* porting Zeitkonto and HandsOff (not yet released) from Maemo to Meego, maybe a rewrite with QML&lt;br /&gt;
* other ideas in pipeline (remote for mythtv, live sports-ticker, ...)&lt;br /&gt;
* Helping other users at the german side meego.de (there known as Cermit) &lt;br /&gt;
&lt;br /&gt;
Eike Hein&lt;br /&gt;
&lt;br /&gt;
Jeffrey Malone (ieatlint) - '''ID sent, already a Nokia Launchpad member'''.   &lt;br /&gt;
Will be creating a transit application around the public NextBus real-time vehicle tracking API for dozens of transit agencies in North America.&lt;br /&gt;
Hopefully collaborating with others working on transit applications... :)&lt;br /&gt;
&lt;br /&gt;
Thomas Boutroue (aka TheBootroo)&lt;br /&gt;
Making a small and smart mobile widgets toolkit on top of plain QWidget + CSS for styling, named MWTk.&lt;br /&gt;
And using this toolkit to make several apps for MeeGo (and runs onto Maemo5 and Symbian too, even on desktop OS) and a new environment, that aims to be a good alternative to default MeeGo Handset UX, bringing it on pair with Harmattan UX, by giving it a successor to the deprecated MeeGoTouchFramework.&lt;br /&gt;
Already some testable sources can be found on the project gitorious repos.&lt;br /&gt;
https://gitorious.org/meego-community-mobile-ux-ng&lt;br /&gt;
And there is a page with some screenshots of the  look that MTWk can do (this page will be moved on gitorious wiki soon) :&lt;br /&gt;
http://modern-os.projects.servhome.org/mobileApps/&lt;br /&gt;
&lt;br /&gt;
Stephan Bulgin '''ID sent''', '''Applied for the Nokia Developer Launchpad program''' &amp;lt;br /&amp;gt;&lt;br /&gt;
blog/website in near future. to showcase my projects.&lt;br /&gt;
&lt;br /&gt;
[[User:mdengler|Martin Dengler]] '''ID sent''', '''Waiting for Launchpad account to be activated''' &amp;lt;br/&amp;gt;&lt;br /&gt;
I am working on porting a tron-like game (armegatron preferably or glTron) to the N9, and developing Ringr, a location-based ringtone management application.&lt;br /&gt;
&lt;br /&gt;
[[User:Rafael2k|Rafael Diniz]] '''ID sent''', '''Waiting for Launchpad account to be activated''' &amp;lt;br&amp;gt;&lt;br /&gt;
I plan to develop FM RDS applications with focus in the new standards from RadioDNS like the RadioVIS (partly based in the already existent the N900-fmvis  http://code.google.com/p/n900-fmvis/).&lt;br /&gt;
I'm a member of a university radio station (Radio Muda FM, 88.5MHz) and my plan is to develop &amp;quot;real life&amp;quot; radio station applications.&amp;lt;br&amp;gt;&lt;br /&gt;
I'll also rewrite an application I did for audio streaming, darknow (a gui for darkice, http://darksnow.radiolivre.org) which is an icecast2 client, and also write an audio/video icecast2 client (based in a software I did called theorur, http://theorur.sarava.org), all using QT.&lt;br /&gt;
&lt;br /&gt;
Anderson Briglia, '''ID sent, Applied for the Nokia Developer Launchpad program'''&amp;lt;br/&amp;gt;&lt;br /&gt;
My idea is to re-write the Carman application for N9/N950, using QML.&lt;br /&gt;
There is also an effort to port the current carman daemon and carman&lt;br /&gt;
bluetooth communication since Bluez used in Meego is slightly&lt;br /&gt;
different from the implemented one. I also want to get rid of&lt;br /&gt;
libpurple and implement a more integrated way to communicate with&lt;br /&gt;
Google accounts.&lt;br /&gt;
&lt;br /&gt;
[[User:Milhouse|Neil MacLeod]] '''ID sent, Applied for the Nokia Developer Launchpad program'''&amp;lt;br&amp;gt;&lt;br /&gt;
Develop an audio recording application with geo-location support, plus other applications to improve personal productivity utilising the Harmattan notification/event view.&lt;br /&gt;
&lt;br /&gt;
Nilanjan Chakravorty - '''ID sent, Already applied for the Nokia Developer Launchpad program'''&lt;br /&gt;
* Leverage my financial background with IT to develop&lt;br /&gt;
- Portfolio management application   - Bloomberg Pricing data application&lt;br /&gt;
&lt;br /&gt;
[[User:timsamoff|Tim Samoff]]&lt;br /&gt;
* [http://thp.io/2011/mong/ Plonk]&lt;br /&gt;
* MeeGo Community Apps website design&lt;br /&gt;
* A few other things that are brewing (games, sound generators, etc.)&lt;br /&gt;
&lt;br /&gt;
David Perlow '''ID sent, Applied for the Nokia Developer Launchpad program'''&lt;br /&gt;
&lt;br /&gt;
Pawel Kurdybacha '''ID sent, already a Nokia Launchpad member'''&lt;br /&gt;
* Testing and contribution to Qt Mobility on Harmattan platform&lt;br /&gt;
* Multimedia Home controller based on gUPnP&lt;br /&gt;
* various applications (words trainer, taxi checker, ...)&lt;br /&gt;
&lt;br /&gt;
Philippe Coval (RzR) ''' ID sent , member of LP, http://rzr.online.fr/q/meego , http://wiki.meego.com/User:Rzr , https://www.developer.nokia.com/Profile/?u=www.rzr.online.fr ( qt4, qml, opengl, debian)&lt;br /&gt;
&lt;br /&gt;
Philipp Engelhard '''[https://www.developer.nokia.com/Profile/?u=-philipp Nokia Developer ID] sent''', '''Applied for the Nokia Developer Launchpad program'''&amp;lt;br /&amp;gt;&lt;br /&gt;
* Develop a maze game for children and adults&lt;br /&gt;
* Develop a &amp;quot;Nokia Bots&amp;quot; like program for alarm and battery&lt;br /&gt;
&lt;br /&gt;
[[User:Rnazarov|Ruslan Nazarov]] '''ID sent''', '''waiting answer from Nokia Developer Launchpad program''' &amp;lt;br /&amp;gt;&lt;br /&gt;
Porting [https://gitorious.org/titanim TitanIM] (Vkontakte instant messenger)&lt;br /&gt;
&lt;br /&gt;
Moritz Mühlenhoff&lt;br /&gt;
&lt;br /&gt;
Matt Williams&lt;br /&gt;
&lt;br /&gt;
[[User:Asys3|Uwe Koch]] '''ID sent, Applied for the Nokia Developer Launchpad program'''&amp;lt;br&amp;gt;&lt;br /&gt;
* Port hopefully all of my games Lineo,Q,TwinDistress,Sokoban and Jooleem&lt;br /&gt;
&lt;br /&gt;
Frank Banul '''ID sent, Applied for the Nokia Developer Launchpad program'''&lt;br /&gt;
* Port TabletBridge and RadioTimeToGo&lt;br /&gt;
&lt;br /&gt;
Felipe Erias Morandeira&lt;br /&gt;
&lt;br /&gt;
[[User:kojacker|Ryan Faulkner]] '''ID sent, Already a Lunchpad member'''&amp;lt;br&amp;gt;&lt;br /&gt;
* Various applications, bits and bobs (links coming)&lt;br /&gt;
&lt;br /&gt;
[[User:hopbeat|Arkadiusz Stopczynski]] '''ID sent, Applied for the Nokia Developer Launchpad program'''&lt;br /&gt;
* Various academic projects, including novel user interfaces, social web, BCI and portable cognitive sensors. All the crazy stuff mentioned here: http://www.milab.imm.dtu.dk&lt;br /&gt;
* Some utility applications that make your everyday tasks easier, such as shortcutd or lockdaemon for Maemo&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Ferenc Szekely&lt;br /&gt;
&lt;br /&gt;
[[User:w00t|Robin Burchell]] (w00t) '''ID sent''', '''Already a Launchpad member (but my Launchpad account hasn't activated)'''&amp;lt;br /&amp;gt;&lt;br /&gt;
meego.com hackery, meego-ux in particular. Qt Components. Anything else I find interesting - see [[User:w00t/N950Development]] for plans, as I think of anything interesting to write.&lt;br /&gt;
&lt;br /&gt;
Mohammad Abu-Garbeyyeh '''ID sent''', '''Applied for the Nokia Developer Launchpad program''' &amp;lt;br /&amp;gt;&lt;br /&gt;
Planning a wiki page with a todo list, main project here: http://bt-messenger.com&lt;br /&gt;
&lt;br /&gt;
[[User:sebas|Sebastian Kügler]] (sebas) '''ID sent, Applied for the Nokia Developer Launchpad program'''&lt;br /&gt;
* Bringing Plasma Active ( http://community.kde.org/Plasma/Active )to MeeGo &lt;br /&gt;
&lt;br /&gt;
Juha Ristolainen '''ID sent, already a Launchpad member''' &amp;lt;br /&amp;gt;&lt;br /&gt;
Heiaheia fitness-service application for MeeGo. Untappd.com client for MeeGo.&lt;br /&gt;
&lt;br /&gt;
Ilya Skriblovsky '''[https://www.developer.nokia.com/Profile/?u=IlyaSkriblovsky Nokia Developer ID] sent, applied for Nokia Developer Launchpad'''&amp;lt;br&amp;gt;&lt;br /&gt;
* Port NWTBible (Bible reader), Planaris (Hierarchical Todo list) to MeeGo&lt;br /&gt;
&lt;br /&gt;
Rich Jones&lt;br /&gt;
&lt;br /&gt;
[[User:Bemasc/N950_Project|Benjamin Schwartz]] '''ID sent, applied for Nokia Launchpad ''' &amp;lt;br /&amp;gt;&lt;br /&gt;
I will attempt to convert [http://sugarlabs.org Sugar] [http://activities.sugarlabs.org Activities] into MeeGo apps, and hopefully in the process acquire some insight into the potential for MeeGo to form the basis of future Sugar revisions&lt;br /&gt;
&lt;br /&gt;
Nicolai Hess&lt;br /&gt;
&lt;br /&gt;
Hussain Shafiu '''ID sent''', '''Already a Launchpad member waiting for Launchpad account to be activated)''' &amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Shan Yafeng '''ID sent''', '''Applied for the Nokia Developer Launchpad program''' &amp;lt;br /&amp;gt;&lt;br /&gt;
An education program for exchange information between students and teacher in class. And port some programs to the nokia N900/N950 device. The progress can be found here : http://cuckoohello.wordpress.com&lt;br /&gt;
&lt;br /&gt;
[[User:vitna|Vaselli Vittorio]] '''ID sent''',  '''Applied for the Nokia Developer Launchpad program'''&amp;lt;br /&amp;gt; My actual project is http://forum.meego.com/showthread.php?t=3652, but i have in program to develop much more game for the Harmanattan platform&lt;br /&gt;
&lt;br /&gt;
==== Batch Three ====&lt;br /&gt;
&lt;br /&gt;
Niels Breet '''ID sent''', '''Applied for the Nokia Developer Launchpad program''' &amp;lt;br /&amp;gt;&lt;br /&gt;
Set up &amp;amp; Testing Harmanttan building on MeeGo Community OBS&lt;br /&gt;
&lt;br /&gt;
Andre Klapper&lt;br /&gt;
&lt;br /&gt;
Reggie Suplido '''ID sent''',  '''Applied for the Nokia Developer Launchpad program'''&amp;lt;br /&amp;gt;&lt;br /&gt;
Custom MeeGo web development related to meego.com and forum.meego.com.&lt;br /&gt;
&lt;br /&gt;
Koos Vriezen&lt;br /&gt;
&lt;br /&gt;
Micke Prag '''ID sent''',  '''Applied for the Nokia Developer Launchpad program'''&amp;lt;br /&amp;gt;&lt;br /&gt;
[https://gitorious.org/telldus/tellduscenter-light TelldusCenter Light] - Using the mobile phone as the central hub in your home automation. Control your lights, electrical appliances and curtains wirelessly from the palm of your hands.&lt;br /&gt;
&lt;br /&gt;
Aigars Mahinovs&lt;br /&gt;
&lt;br /&gt;
Miika Johannes Ahdesmaki '''ID sent''', '''Applied for the Nokia Developer Launchpad program''' &amp;lt;br /&amp;gt;&lt;br /&gt;
[http://forum.meego.com/showthread.php?t=3633] Development of multi sensor utilising apps. First working example app in gaming.&lt;br /&gt;
&lt;br /&gt;
Andreas Schildbach&lt;br /&gt;
&lt;br /&gt;
Ilya Paramonov&lt;br /&gt;
&lt;br /&gt;
Thomas B. Ruecker '''ID sent''', '''Applied for the Nokia Developer Launchpad program''' &amp;lt;br /&amp;gt;&lt;br /&gt;
MeeGo Community edition for N9(|50|00) &amp;lt;br /&amp;gt;&lt;br /&gt;
APRS application in QML to teach myself something about QML and Qt Mobility.&lt;br /&gt;
&lt;br /&gt;
Damion Yates&lt;br /&gt;
&lt;br /&gt;
Antti Raina&lt;br /&gt;
&lt;br /&gt;
Andrew Zhilin&lt;br /&gt;
&lt;br /&gt;
Glen Gray '''ID sent''',  '''Applied for the Nokia Developer Launchpad program'''&lt;br /&gt;
&lt;br /&gt;
Johan Paul '''ID sent''',  '''Applied for the Nokia Developer Launchpad program'''&amp;lt;br /&amp;gt;&lt;br /&gt;
* Google Contacts importing (if you are an Android user, then setting up your contacts with be really easy)&lt;br /&gt;
* N9 Podcast client&lt;br /&gt;
* Instapaper client.&lt;br /&gt;
&lt;br /&gt;
Simon La Rose&lt;br /&gt;
&lt;br /&gt;
Daniele Maio&lt;br /&gt;
&lt;br /&gt;
Joerg Reisenweber '''ID sent''',  '''Accepted for the Nokia Developer Launchpad program - Launchpad ID unclear (isn't it the same as for developer?)'''&lt;br /&gt;
* USB hostmode. Give N9(50) access to external storage etc.&lt;br /&gt;
* Review the core functionality and find other similar fields to tackle (see *# starhash-enabler for N900). To mind comes: user profiles (refer the modest &amp;quot;default&amp;quot; &amp;amp; &amp;quot;silent&amp;quot; on fremantle), dialplans, location aware event triggers (cinema profile triggers automatically on entering the building), improved battery management and monitoring, theft protection and recovery...&lt;br /&gt;
# contact: preferably IRC freenode.net #maemo #meego nick:DocScrutinizer&lt;br /&gt;
&lt;br /&gt;
Nathan Willis&lt;br /&gt;
&lt;br /&gt;
Peter Hunt (tigerite) '''ID sent, Applied for the Nokia Developer Launchpad program'''&lt;br /&gt;
* Integrating the BFS CPU scheduler https://garage.maemo.org/projects/kernel-bfs/ into the N9/50 kernel, along with the Budget Fair Queueing I/O scheduler http://algo.ing.unimo.it/people/paolo/disk_sched/&lt;br /&gt;
* Porting projects such as the Phoronix Test Suite http://www.phoronix-test-suite.com/ to Harmattan&lt;br /&gt;
* Converting a Flash cards based learning system which I developed, loosely based on the one found at http://www.educationlabs.com/projects/flashcards/Pages/default.aspx, from C#/XAML to Qt/QML and making it standalone&lt;br /&gt;
&lt;br /&gt;
Philford Barrett&lt;br /&gt;
&lt;br /&gt;
[[user:jukey|Uwe Kaminski]] ('''Nokia Developer ID sent''')&lt;br /&gt;
&lt;br /&gt;
Kyösti Ranto&lt;br /&gt;
&lt;br /&gt;
Alex Tyler - '''Developer ID sent. Applied for Launchpad months ago but still no response from them.''' - I plan to port my Subsonic client &amp;quot;Aerofy&amp;quot; to the platform. I also plan to develop a range of media related applications.&lt;br /&gt;
&lt;br /&gt;
Stuart Howarth (marxian) - '''ID sent. Applied for Nokia Launchpad program'''&lt;br /&gt;
* Porting my [https://garage.maemo.org/projects/qmltube cuteTube] application (QML version).&lt;br /&gt;
* MythTV controller/recording scheduler (similar to the Android XBMC application)&lt;br /&gt;
&lt;br /&gt;
[[User:hardaker|Wes Hardaker]] '''ID sent, Launchpad application submitted'''&lt;br /&gt;
I'm continually developing applications for multitudes of devices, including many Qt applications at [http://www.dnssec-tools.org/ dnssec-tools] as well as personal projects, my favorite being my [http://www.hamtools.org/cutecw/ Morse Code Training Software], which is what I want to port immediately.  See my [[User:hardaker|User Page]] for a more complete list.&lt;br /&gt;
&lt;br /&gt;
Christoph Keller (gri) - '''ID sent, Applied for Nokia Launchpad program'''&lt;br /&gt;
Porting [http://web2sms.garage.maemo.org Web2SMS], splitting it up into a telepathy plugin, service daemon, contacts integration and hopefully sms application integration plus new provider plugins.&lt;br /&gt;
&lt;br /&gt;
Luke Bratch&lt;br /&gt;
&lt;br /&gt;
David Sansome - '''ID sent, Launchpad application submitted'''&lt;br /&gt;
Porting [http://www.clementine-player.org Clementine music player] to MeeGo.  Clementine already uses Qt and GStreamer.&lt;br /&gt;
&lt;br /&gt;
Jason Byrne (slvr32) - '''ID sent, Launchpad application submitted''' - [https://garage.maemo.org/projects/nfqm nfqm] (Netflix Queue Manager) Qt/C++, targeting Symbian^3, Maemo 5, and Meego/Harmattan - discussion thread [http://forum.meego.com/showthread.php?t=3715 here]&lt;br /&gt;
&lt;br /&gt;
Hillel Lubman (shmerl) - '''ID sent, Launchpad application submitted'''&amp;lt;br/&amp;gt;&lt;br /&gt;
Testing Firefox/Fennec on Meego, porting [http://code.google.com/p/kosherjava/ Zmanim API] to C++ and preparing it for Meego as a library. Planned - calendar application in Qt based on the Zmanim API.&lt;br /&gt;
&lt;br /&gt;
[[User:kkv|Kirill Krinkin]] '''ID sent, already a Nokia Launchpad member'''. &amp;lt;br /&amp;gt;&lt;br /&gt;
I'm working on clients for open [https://github.com/OSLL/geo2tag Location Base Platform ]. Project tracker and progress can be found [[http://osll.spb.ru/projects/geo2tag/issues here]]. &lt;br /&gt;
&lt;br /&gt;
Si Howard&lt;br /&gt;
&lt;br /&gt;
Klaus Rotter&lt;br /&gt;
&lt;br /&gt;
Piotr Pokora&lt;br /&gt;
&lt;br /&gt;
[[User:ivan4th|Ivan Shvedunov]] '''ID sent''',  '''Applied for the Nokia Developer Launchpad program'''&amp;lt;br /&amp;gt;&lt;br /&gt;
I'm working on [http://github.com/ivan4th/i4checklist Shopping list/checklist] application inspired by&lt;br /&gt;
HandyShopper for PalmOS (already working: All/Need separation; plan to implement other features soon, too).&lt;br /&gt;
Also [http://talk.maemo.org/showthread.php?t=42339 ported CLISP] to Maemo Fremantle and helped to debug&lt;br /&gt;
several ARM-related bugs in Clozure Common Lisp, managed to make [http://common-lisp.net/project/commonqt/ CommonQt]&lt;br /&gt;
(Common Lisp Qt bindings) work on Maemo Fremantle + CCL + Qt 4.7. I plan to continue my Common Lisp work on Meego, too.&lt;br /&gt;
&lt;br /&gt;
Andres Gomez&lt;br /&gt;
&lt;br /&gt;
William Stephenson (wstephenson) '''ID sent''',  '''Applied for the Nokia Developer Launchpad program'''&lt;br /&gt;
I'm working on a high level toolkit for the creation of branded RSS based apps, in order to facilitate the creation of these simple apps.&lt;br /&gt;
&lt;br /&gt;
Jason Flatt (jflatt) '''ID sent''',  '''Applied for the Nokia Developer Launchpad program'''&lt;br /&gt;
&lt;br /&gt;
[[User:Lizardo|Anderson Lizardo Gomes]] '''ID sent, Applied for the Nokia Developer Launchpad program'''.&amp;lt;br/&amp;gt;&lt;br /&gt;
I currently work on [http://www.bluez.org/ BlueZ] (Bluetooth stack for Linux) helping implement support for the new Bluetooth Low Energy (LE) technology. We currently lack user applications that take advantage of the [https://www.bluetooth.org/Technical/Specifications/adopted.htm recently adopted] GATT profiles, such as Proximity &amp;amp; FindMe. With these profiles, we will be able, for example, to alert if the phone has been left behind (assuming you own a LE keyfob with you) or locate your keys (if they have a LE keyfob/tag).&amp;lt;br/&amp;gt;&lt;br /&gt;
I intend to work on QML applications that will enable to use this technology. NOTE: N950 Bluetooth chipset lacks LE support, but N9 will be Bluetooth 4.0 based (according to specs). For testing and development purposes, the applications will use the traditional Bluetooth 2.1 technology.&lt;br /&gt;
&lt;br /&gt;
pancake&lt;br /&gt;
&lt;br /&gt;
Rodrigo Vivi&lt;br /&gt;
&lt;br /&gt;
[[User:niqt|Nicola De Filippo]] '''Sent my Account ID to Quim, i'm already Nokia launchpad member.'''.&amp;lt;br/&amp;gt;&lt;br /&gt;
I'm porting my maemo5 applications [http://badge.garage.maemo.org Badge] and [http://qlshop.garage.maemo.org QLshop]. I'll develop a new qml game and other mail client. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[User:lamikr|Mika Laitio]]&lt;br /&gt;
* kernel&lt;br /&gt;
* MeeGo CE edition&lt;br /&gt;
* VDR linux tv client&lt;br /&gt;
&lt;br /&gt;
 * kernel&lt;br /&gt;
 * Meego CE edition&lt;/div&gt;</summary>
		<author><name>Epage</name></author>	</entry>

	<entry>
		<id>http://wiki.meego.com/Community_Office/Community_device_program/Nokia</id>
		<title>Community Office/Community device program/Nokia</title>
		<link rel="alternate" type="text/html" href="http://wiki.meego.com/Community_Office/Community_device_program/Nokia"/>
				<updated>2011-07-02T01:12:43Z</updated>
		
		<summary type="html">&lt;p&gt;Epage: Adding subsections for the batch to make it a bit easier to edit this massive section&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Nokia Participation Details =&lt;br /&gt;
* Program Contact: [[User:qgil|Quim Gil]]&lt;br /&gt;
Update: Nokia N950 handsets are ready!  https://meego.com/community/device-program/devices/nokia-n9-devkit&lt;br /&gt;
&lt;br /&gt;
== N950 Devkit Program Details ==&lt;br /&gt;
* Device: Nokia N950 loaded with MeeGo 1.2 Harmattan &lt;br /&gt;
* Quantity: 250&lt;br /&gt;
* Additional Criteria / Terms: &lt;br /&gt;
** One submission per developer please&lt;br /&gt;
** Device to be loaned to participant for [period needed].&lt;br /&gt;
** May not be able to ship to certain countries / locations.&lt;br /&gt;
** Nokia employees are not eligible.&lt;br /&gt;
* Timeframe: distribution active.&lt;br /&gt;
&lt;br /&gt;
 '''QUESTIONS / ANSWERS &amp;amp; UPDATES:''' http://forum.meego.com/showthread.php?t=3597&lt;br /&gt;
&lt;br /&gt;
== General thoughts on device program ==&lt;br /&gt;
&lt;br /&gt;
The Nokia N950 is a platform available now for developers targeting the Nokia N9 and MeeGo handset apps in general. Technical details are available at http://developer.nokia.com/swipe&lt;br /&gt;
&lt;br /&gt;
Candidates must be community developers ready to start working on new or existing open source applications, to be published in apps.meego.com and the Nokia Store. Links to your current projects are relevant! Deadline for applications: end of Tuesday, June 28th.&lt;br /&gt;
&lt;br /&gt;
Questions &amp;amp; comments: http://forum.meego.com/showthread.php?t=3597&lt;br /&gt;
&lt;br /&gt;
IMPORTANT: *commercial* developers are encouraged to apply directly at http://developer.nokia.com - thank you for your understanding.&lt;br /&gt;
&lt;br /&gt;
== Results ==&lt;br /&gt;
&lt;br /&gt;
 '''WORK IN PROGRESS'''&lt;br /&gt;
&lt;br /&gt;
=== Accepted ===&lt;br /&gt;
&lt;br /&gt;
 For the sake of transparency and collaboration:&lt;br /&gt;
 * Please link your name to a page describing your Nokia N950 related work e.g. a wiki page.&lt;br /&gt;
 * Add here one line of text summarizing the project(s) and feature(s) you are concentrating. &lt;br /&gt;
 * We haven't done the 'Nokia employee' check yet. If you happen to be one, contact Quim Gil.&lt;br /&gt;
&lt;br /&gt;
==== Batch One ====&lt;br /&gt;
&lt;br /&gt;
[[User:aaporantalainen|Aapo Rantalainen]] '''ID sent''',  '''Applied for the Nokia Developer Launchpad program'''&amp;lt;br /&amp;gt;&lt;br /&gt;
First goal: [http://www.umsic.org/jammo/  JamMo] (will need some underlying libraries, e.g. [http://www.clutter-project.org/ clutter])&lt;br /&gt;
&lt;br /&gt;
[http://wiki.meego.com/User:Broothy Ádám Balázs]&lt;br /&gt;
* '''Sent my Account ID to Quim, i'm already Nokia launchpad member. Awaiting any reply.'''&lt;br /&gt;
* [http://store.ovi.com/content/113753 Switchboard]&lt;br /&gt;
** [http://www.youtube.com/watch?v=GdskgAfjjxc MobileMind]&lt;br /&gt;
&lt;br /&gt;
Adam Pigg '''ID sent''', '''applied for Nokia Launchpad''', '''waiting for reply'''&amp;lt;br /&amp;gt;&lt;br /&gt;
Porting my Qt/QML apps/games from maemo, and further work on Kexi and some more QML games&lt;br /&gt;
[http://www.piggz.co.uk My Site]&lt;br /&gt;
&lt;br /&gt;
[[User:Captianigloo|Aguirre Nicolas]] (captainigloo) '''ID sent''',  '''Applied for the Nokia Developer Launchpad program'''&amp;lt;br /&amp;gt;&lt;br /&gt;
Porting [http://enna.geexbox.org Enna], [http://svn.enlightenment.org/svn/e/trunk/E-MODULES-EXTRA/elfe elfe] and all [http://www.enlightenment.org EFL/Enlightenment] libraries to Meego.&lt;br /&gt;
&lt;br /&gt;
Alan M Bruce&lt;br /&gt;
&lt;br /&gt;
Oleg Bodnarchuk(bloody)'''ID sent''', '''applied for Nokia Launchpad'''&amp;lt;br /&amp;gt;&lt;br /&gt;
Developing Wiki-based offline database.&lt;br /&gt;
&lt;br /&gt;
[[User:mardy|Alberto Mardegan]] (Mardy) &amp;lt;br /&amp;gt;&lt;br /&gt;
Developing QML port of [http://www.mardy.it/mappero Mappero], possibly [http://www.mardy.it/oculo Oculo] and [http://neverball.org Neverball] (for the latter I'm now working on a N900 port).&lt;br /&gt;
&lt;br /&gt;
Aleix Pol (apol) &amp;lt;br/&amp;gt;&lt;br /&gt;
Porting &amp;quot;horaris&amp;quot; and &amp;quot;kanban&amp;quot; maemo applications, finally get to have a usable KAlgebra Mobile version working on MeeGo, hopefully drag other KDE applications with this effort.&lt;br /&gt;
&lt;br /&gt;
[https://meego.com/users/avis Alexander Terekhov] (Avis) '''ID sent, already a Launchpad member''' &amp;lt;br /&amp;gt;&lt;br /&gt;
Porting and improving [http://qt-apps.org/content/show.php/Smart+Shopper?content=139742 Smart Shopper] project. &lt;br /&gt;
&lt;br /&gt;
[[User:amandalam|Amanda Hoi Ching Lam]] (amandalam)  '''ID sent''',  '''Applied for the Nokia Developer Launchpad program'''&amp;lt;br /&amp;gt;&lt;br /&gt;
Traditional Chinese language and utility apps for the MeeGo &amp;amp; Harmattan platforms, including but not limited to a Chinese character lookup app, and applications localized for the Traditional Chinese communities in Hong Kong, Macau and Taiwan.  [https://sites.google.com/site/amandahoic/Home/ Amanda's Software Projects]&lt;br /&gt;
&lt;br /&gt;
[https://meego.com/users/andreagrandi Andrea Grandi] (Andy80) '''ID sent''',  '''Applied for the Nokia Developer Launchpad program'''&amp;lt;br /&amp;gt;&lt;br /&gt;
QML native client for Soma.fm radio. Based on the old mSoma: https://gitorious.org/msoma&lt;br /&gt;
&lt;br /&gt;
Andrei Mirestean&lt;br /&gt;
&lt;br /&gt;
[[User:Jaffa|Andrew Flegg]] (Jaffa) '''Device received'''&amp;lt;br /&amp;gt;&lt;br /&gt;
Porting apps from Maemo (Attitude &amp;amp; Hermes), developer tools, and apps.meego.com workflow. [[User:Jaffa|&amp;quot;Want to know more?&amp;quot;]]&lt;br /&gt;
&lt;br /&gt;
[[User:fiferboy|Andrew Olmsted]] (fiferboy) '''ID sent''', '''Already a Launchpad member (but my Launchpad account hasn't activated)'''&amp;lt;br /&amp;gt;&lt;br /&gt;
[http://andrew.olmsted.ca/meego Fiferboy's Projects] (Birdlist, Personal Lexicon, other ideas), porting and packaging some pure Qt apps&lt;br /&gt;
&lt;br /&gt;
[[User:wazd|Andrew Zhilin]] (wazd) '''ID sent''', '''Already a Launchpad member (but my Launchpad account hasn't activated)'''&amp;lt;br /&amp;gt;&lt;br /&gt;
[http://tabletui.wordpress.com], OMWeather, Live Wallpapers, BlueMaemo, Ati85, QML gPodder, tons of other design-related stuff&lt;br /&gt;
&lt;br /&gt;
[[User:anidel|Aniello Del Sorbo]] (anidel) &amp;lt;br /&amp;gt;&lt;br /&gt;
Porting [http://maemo.org/downloads/product/Maemo5/xournal/ Xournal] from Maemo to Harmattan/MeeGo&lt;br /&gt;
&lt;br /&gt;
Antti Pohjola (Summel1) ''' ID sent, Applied for the Nokia Developer Launchpad program '''&amp;lt;br /&amp;gt;&lt;br /&gt;
Porting [http://www.summeli.fi/?p=2453 AntSnes] and [http://www.summeli.fi/?p=2520 gpSP] from Symbian^3 to Harmattan/MeeGo.&lt;br /&gt;
&lt;br /&gt;
[[User:awhiemstra|Arjen-Wander Hiemstra]] &amp;lt;br/&amp;gt;&lt;br /&gt;
Porting [http://gluon.gamingfreedom.org Gluon] to MeeGo/Harmattan.&lt;br /&gt;
&lt;br /&gt;
[https://meego.com/users/djarty Artem Sereda] (DJArty) '''Nokia Developer User ID sent''', '''Applied for the Nokia Developer Launchpad program''' &amp;lt;br /&amp;gt;&lt;br /&gt;
Porting qutIM, openpref, arora, links, groove, microdc, Ukrainian localization.&lt;br /&gt;
&lt;br /&gt;
Assaf Paz '''ID sent''', '''applied for Nokia Launchpad'''&amp;lt;br /&amp;gt;&lt;br /&gt;
Adapting [http://code.google.com/p/qwazer/ Qwazer] to also work on Meego, hopefully create an Exchange Webmail client in pure QML (N900 was the initial target), Hebrew support &lt;br /&gt;
&lt;br /&gt;
[[User:Bart-cerneels|Bart Cerneels]](Stecchino)&amp;lt;br /&amp;gt;&lt;br /&gt;
Mobile UX' for Amarok using QML. [http://amarok.kde.org Amarok website]&lt;br /&gt;
&lt;br /&gt;
[[User:khertan|Benoît HERVIER]] (Khertan) '''ID sent''', '''waiting answer from Nokia Developer Launchpad program'''&amp;lt;br /&amp;gt;&lt;br /&gt;
Porting [http://khertan.net/khteditor KhtEditor] a source code editor, [http://khertan.net/khweeteur Khweeteur] a twitter/identi.ca client, [http://khertan.net/python_sdist_maemo Sdist_maemo] and developping KhtSync a automated file synchronization application, and KhtDrive an app to measure car and driver performances for eco driving.&lt;br /&gt;
&lt;br /&gt;
[[User:Termana|Bradley Smith]] (Termana) '''ID sent''',  '''Applied for the Nokia Developer Launchpad program'''&amp;lt;br /&amp;gt;&lt;br /&gt;
Developing a karaoke game with built-in pitch correction.&lt;br /&gt;
&lt;br /&gt;
[[User:arfoll|Brendan Le Foll]], '''ID sent''', '''applied for Nokia Launchpad'''&amp;lt;br /&amp;gt;&lt;br /&gt;
Porting XBMC + MeeGo TV stuff + doing audio continuums using pulseaudio.&lt;br /&gt;
&lt;br /&gt;
Carsten Munk&lt;br /&gt;
&lt;br /&gt;
Christian Pühringer (cip) '''ID sent, already a Launchpad member'''&amp;lt;br&amp;gt;&lt;br /&gt;
[https://github.com/cip/WikiOnBoard/wiki WikiOnBoard] Offline reader for Wikipedia using [http://openzim.org zim] format.  &lt;br /&gt;
&lt;br /&gt;
[[User:Clint|Clint Adams]] '''ID sent''',  '''Applied for the Nokia Developer Launchpad program'''&amp;lt;br /&amp;gt;&lt;br /&gt;
Libre.fm-related software development and porting, advocacy&lt;br /&gt;
&lt;br /&gt;
[[User:Cpscotti|Clovis Scotti]] (cpscotti) '''ID sent''',  '''Applied for the Nokia Developer Launchpad program'''&amp;lt;br /&amp;gt;&lt;br /&gt;
Developing the &amp;quot;connected snowboarding&amp;quot; [http://www.pushsnowboarding.com Push Snowboarding] application/project. Also, I'll be very happy to port other apps I did (mainly for Maemo) + new projects.&lt;br /&gt;
&lt;br /&gt;
Cornelius Hald&lt;br /&gt;
&lt;br /&gt;
[https://meego.com/users/zehjotkah Cosimo Kroll] (zehjotkah) '''ID sent''', '''already a Launchpad member'''&amp;lt;br /&amp;gt;&lt;br /&gt;
[http://wiki.maemo.org/MeeGo_Coding_Competition_2011 MeeGo Coding Competition 2011]&lt;br /&gt;
&lt;br /&gt;
Cristian Grozea '''ID sent''',  '''Applied for the Nokia Developer Launchpad program'''&amp;lt;br /&amp;gt;&lt;br /&gt;
magnus-plus photo: an application that combines a camera-based magnifier with more advanced image processing techniques, that would enable one to:&amp;lt;br /&amp;gt;&lt;br /&gt;
- use it as a magnifier (with optional light from the camera LED).&amp;lt;br /&amp;gt;&lt;br /&gt;
- use it as a photo negatives lightbox that automatically inverts the negatives and adjusts the colors for proper display:&lt;br /&gt;
the user just have to hover it over the (back-lit) negatives and on the screen the corresponding positive (or magnified part of it) is displayed in real-time.&amp;lt;br /&amp;gt;&lt;br /&gt;
- use it as an EVF add-on to SLRs to help with manual focus, leveraging the possibility of amplifying contrast and magnifying.&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Damian Waradzyn '''ID sent, already Nokia launchpad member. Awaiting reply.'''&amp;lt;br/&amp;gt;&lt;br /&gt;
Porting and further development of [http://talk.maemo.org/showthread.php?t=58402 CloudGPS]&lt;br /&gt;
&lt;br /&gt;
Daniel Martin Yerga&lt;br /&gt;
&lt;br /&gt;
David Derby '''ID sent''',  '''Applied for the Nokia Developer Launchpad program'''&amp;lt;br /&amp;gt;&lt;br /&gt;
Porting [http://www.6809.org.uk/dragon/xroar.shtml XRoar - Dragon &amp;amp; CoCo emulator] and [http://icculus.org/avp/ Aliens versus Predator (Gold Edition) game engine].&lt;br /&gt;
&lt;br /&gt;
David Galindo&lt;br /&gt;
&lt;br /&gt;
[[User:Lbt|David Greaves]] '''ID sent''',  '''Applied for the Nokia Developer Launchpad program'''&amp;lt;br /&amp;gt;&lt;br /&gt;
Mainly CE, Harmattan and Apps to start with. Hopefully Surrounds later.&lt;br /&gt;
&lt;br /&gt;
Diego Marcos&lt;br /&gt;
&lt;br /&gt;
Dimitar Pashov&lt;br /&gt;
&lt;br /&gt;
Dru Moore&lt;br /&gt;
&lt;br /&gt;
Eero af Heurlin&lt;br /&gt;
&lt;br /&gt;
[[User:Emocow | Ferdinand Mayet]] ('''Nokia Developer ID sent''')&amp;lt;br/&amp;gt;&lt;br /&gt;
Development of a golf GPS application&lt;br /&gt;
&lt;br /&gt;
Frank Sievertsen '''ID Sent, Applied for Nokia Developer Launchpad program, waiting for approval'''&amp;lt;br/&amp;gt;&lt;br /&gt;
Open-Source Spideroak Mobile Client and other apps&lt;br /&gt;
&lt;br /&gt;
Gary Birkett&lt;br /&gt;
N9 Qt port of liqcalendar&lt;br /&gt;
&lt;br /&gt;
[http://meego.com/users/garyd Gary Driggs] ('''dev ID sent, already reg'd as Launchpad member''')&lt;br /&gt;
Porting [http://www.gnu.org/s/gnash Gnash] to MeeGo ARM devices.&lt;br /&gt;
&lt;br /&gt;
George Ruinelli '''ID sent, Applied for the Nokia Developer Launchpad program'''&amp;lt;br&amp;gt;&lt;br /&gt;
Porting my [http://maemo.org/packages/view/sleepanalyser/ SleepAnalyser] from MAEMO as well as other smaller apps I wrote/ported. See [http://wiki.maemo.org/User:Caco3] for details.&lt;br /&gt;
&lt;br /&gt;
Gerard Braad&lt;br /&gt;
&lt;br /&gt;
Harald Sitter&lt;br /&gt;
&lt;br /&gt;
[[User:helihyv|Heli Hyvättinen]] '''Nokia Developer ID sent, applied for the Nokia Developer Launchpad program'''&amp;lt;br /&amp;gt;&lt;br /&gt;
Porting Ghosts Overboard (a game) and Chess Clock from Maemo and adding new features to the former.&lt;br /&gt;
&lt;br /&gt;
[[User:bergie|Henri Bergius]] &amp;lt;br /&amp;gt;&lt;br /&gt;
Porting Buscatcher, Midgard and Node.js -related tools to MeeGo. However, I've withdrawn my device program application because I already got a N950 via Helsinki MeeGo Network.&lt;br /&gt;
&lt;br /&gt;
Hiemanshu Sharma '''ID Sent, Applied for Nokia Developer Launchpad program''' &amp;lt;br/&amp;gt;&lt;br /&gt;
Currently working on porting [[http://forum.meego.com/showthread.php?t=3660|Komedia]]. More apps in the pipeline including Quassel (IRC Client), a Google Reader (name suggestions are welcome) and a 'Line of the day' kind of app (a glorified version of cowsay). Also working on getting an opencv port to give way for Face Detection/Facial recognition APIs.&lt;br /&gt;
&lt;br /&gt;
[[User:Divan|Ivan Daniluk]] ''' ID sent, Applied for the Nokia Developer Launchpad program'''&amp;lt;br /&amp;gt;&lt;br /&gt;
Porting  [[User:Divan|my Maemo5 applications]], adding full Vkontakte support, Russian and Ukrainian localization and developing new apps in progress..&lt;br /&gt;
&lt;br /&gt;
Janne Mäkinen '''ID sent''', '''applied for Nokia Launchpad'''&amp;lt;br /&amp;gt;&lt;br /&gt;
Porting/Rewriting Maemo 5 stuff&lt;br /&gt;
&lt;br /&gt;
[[User:Javispedro|Javier de San Pedro Martín]] &amp;lt;br /&amp;gt;&lt;br /&gt;
Porting my [http://wiki.maemo.org/User:Javispedro Maemo 5 applications and SDL games], and [http://gitorious.org/hsdl/pages/Home SDL] itself.&lt;br /&gt;
&lt;br /&gt;
Jens Persson '''ID sent''', '''applied for Nokia Launchpad'''&lt;br /&gt;
&lt;br /&gt;
Jeremias Bosch&lt;br /&gt;
&lt;br /&gt;
[[User:vandenoever|Jos van den Oever]] &amp;lt;br /&amp;gt;&lt;br /&gt;
Porting [http://webodf.org WebODF] to MeeGo using QML and JavaScript.&lt;br /&gt;
Experiment with a semantic logging tool&lt;br /&gt;
Experiment with a [http://blogs.kde.org/node/4161 metronome application] in QML.&lt;br /&gt;
&lt;br /&gt;
[[User:Metropt|Jose Xavier]], '''ID sent''', '''waiting answer from Nokia Developer Launchpad program'''&amp;lt;br /&amp;gt;&lt;br /&gt;
My goal is to port the OpenPilot Ground Control Station to the MeeGo platform and adapt the UI for a better mobile experience. You can see more information about OpenPilot GCS here: http://wiki.openpilot.org/display/Doc/Ground+Control+Station+User+Manual&lt;br /&gt;
&lt;br /&gt;
[[User:Bundyo|Kamen Bundev]] (Bundyo), '''ID sent''', '''applied for Nokia Launchpad''' &amp;lt;br /&amp;gt;&lt;br /&gt;
Rewriting Search Tool, porting Maemo 5 work, NodeJS, possible Tear rewrite.&lt;br /&gt;
&lt;br /&gt;
Karl Johan Grøttum&lt;br /&gt;
&lt;br /&gt;
[[User:kemargrant | kemar grant]], '''ID sent''',  '''Applied for the Nokia Developer Launchpad program'''&amp;lt;br /&amp;gt;&lt;br /&gt;
My goal is to bring Screen Mirroring to Meego along with playing local files&lt;br /&gt;
easily to a desktop. The app is called groundwork and it is opensource. Code will be shifted to Launchpad once I can begin testing on a meego device.&lt;br /&gt;
http://code.google.com/p/groundwork/&lt;br /&gt;
&lt;br /&gt;
Ken Young&amp;lt;br /&amp;gt;&lt;br /&gt;
Initially I will port the Maemo [http://wiki.maemo.org/Orrery Orrery] program, and add support for the magnetometer.   I will&lt;br /&gt;
also port some other apps from Maemo 5.'''ID sent''', '''applied for Nokia Launchpad''' &amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[User:Kimitake|Kimitake]] '''ID sent, already a Launchpad member'''&amp;lt;br&amp;gt;&lt;br /&gt;
developing Qt-based micro blogging client for twitter, identi.ca, wassr, jp&lt;br /&gt;
&lt;br /&gt;
Kirill Kulakov&lt;br /&gt;
&lt;br /&gt;
[[User:lostinmirkwood|Kristopher C. Kantor]]  '''ID sent''',  '''Applied for the Nokia Developer Launchpad program'''&amp;lt;br /&amp;gt;&lt;br /&gt;
* Continuing Development of [http://ansela.garage.maemo.org/ Ansel-A]: Digital Darkroom for Qt Devices&lt;br /&gt;
&lt;br /&gt;
[[User:shadymilkman|Kyle Thomas]]  &amp;lt;br/&amp;gt;&lt;br /&gt;
Creating Reedit: [http://www.shadymilkman.com/p/n9-project.html Reedit] A full featured Reddit list browser &amp;lt;br/&amp;gt;&lt;br /&gt;
Submitted credentials to the N.D.Launchpad for application review, waiting for instructions.&lt;br /&gt;
&lt;br /&gt;
[[User:Creamygoodness|Lance Colton]]   '''ID sent''',  '''Applied for the Nokia Developer Launchpad program'''&amp;lt;br /&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
Working on Proximus during July, I will see what we can do with Conky after that.&lt;br /&gt;
&lt;br /&gt;
Lasse Kärkkäinen&amp;lt;br /&amp;gt;&lt;br /&gt;
Porting [http://performous.org/ Performous] singing/band game from PC to N900 and MeeGo&lt;br /&gt;
&lt;br /&gt;
Lasse Stenberg&lt;br /&gt;
&lt;br /&gt;
Laszlo Papp (Already got one earlier, thus I do not need a new one ;) )&lt;br /&gt;
&lt;br /&gt;
liang wei (foolegg)&amp;lt;br/&amp;gt;&lt;br /&gt;
[[Cuteinputmethod]] is a Chinese Input Method, designed for handset device.&amp;lt;br/&amp;gt;&lt;br /&gt;
(received notify mail, and sent reply with Nokia Developer Account Id)&lt;br /&gt;
&lt;br /&gt;
Luis Felipe Strano Moraes '''ID sent''', '''applied for Launchpad membership''' &amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Luiz Augusto von Dentz&lt;br /&gt;
&lt;br /&gt;
Marat Fayzullin (fms) '''ID sent''', '''already a Launchpad member'''&amp;lt;br/&amp;gt;&lt;br /&gt;
Porting the following: &lt;br /&gt;
[http://fms.komkon.org/SlideRule/ SlideRule],&lt;br /&gt;
[http://fms.komkon.org/ColEm/ ColEm], &lt;br /&gt;
[http://fms.komkon.org/fMSX/ fMSX], &lt;br /&gt;
[http://fms.komkon.org/Speccy/ Speccy], &lt;br /&gt;
[http://fms.komkon.org/ATI85/ AlmostTI], &lt;br /&gt;
[http://fms.komkon.org/MG/ MasterGear], &lt;br /&gt;
[http://fms.komkon.org/iNES/ iNES], &lt;br /&gt;
[http://fms.komkon.org/VGB/ VGB], &lt;br /&gt;
[http://fms.komkon.org/VGBA/ VGBA]. &lt;br /&gt;
Also expecting to port the FBReader and an IRC client (although most likely not XChat).&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[User:deimos|Marco Bavagnoli]] (deimos) '''ID sent''',  '''Applied for the Nokia Developer Launchpad program'''&amp;lt;br /&amp;gt;&lt;br /&gt;
I'm porting [http://mediadownloader.cz.cc/?page_id=2 mediadownloader] application just ported to [http://mediadownloader.cz.cc/?p=153 maemo] and here a [http://www.youtube.com/watch?v=_Dsj2piBQCw video]. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[User:Mece|Marcus Wikström]] (mece) '''ID sent''',  '''Applied for the Nokia Developer Launchpad program'''&amp;lt;br /&amp;gt;&lt;br /&gt;
[http://talk.maemo.org/showthread.php?t=73490 Tweed Suit] for N9/50. Probably Qlister and also planning an location based tracking service/app.&lt;br /&gt;
&lt;br /&gt;
Marijn Kruisselbrink&lt;br /&gt;
&lt;br /&gt;
[[User:mgedmin|Marius Gedminas]] (mgedmin) '''ID sent''', '''Applied for the Nokia Developer Launchpad program'''&amp;lt;br /&amp;gt;&lt;br /&gt;
Planning to port [http://mg.pov.lt/gtimelog GTimeLog].&lt;br /&gt;
&lt;br /&gt;
Marko Mattila&lt;br /&gt;
&lt;br /&gt;
[http://wiki.meego.com/User:Vgrade Martin Brook] (vgrade) '''ID sent''', '''Applied for the Nokia Developer Launchpad program'''&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
I would plan to contnue my contributions to the N900 Community Edition of MeeGo which I assume will push right through into the N9. I am very interested in contributing to the exciting new architecture built on Wayland to give this device the best user experience.&lt;br /&gt;
&lt;br /&gt;
Local Network Meetups, Cambridge, Birmingham, Koln, Dusseldorf&lt;br /&gt;
&lt;br /&gt;
Martin Grimme (pycage) '''ID sent''',  '''Applied for the Nokia Developer Launchpad program'''&amp;lt;br&amp;gt;&lt;br /&gt;
Doing the Community Apps installer client. Also targetting Harmattan with my OSS MeeGo apps (which are currently mostly running on the WeTab).&lt;br /&gt;
&lt;br /&gt;
[http://wiki.meego.com/User:Martink Martin Kolman] (MartinK)  '''ID sent''', '''applied for the Nokia Launchpad'''&amp;lt;br&amp;gt;&lt;br /&gt;
Porting the modRana GPS navigation system and Mieru manga and comic book reader.&lt;br /&gt;
&lt;br /&gt;
[[User:twoboxen|Matt Hawkins]] (twoboxen) '''ID sent''', '''Already a Launchpad member'''&amp;lt;br/&amp;gt;&lt;br /&gt;
Open sourcing and working on my cross-platform OpenGL engine (HawkEngine) and several [https://sites.google.com/site/hawkorn/games games].  This engine builds projects and binaries for Qt, iOS, Android (though the NDK is touchy), WebOS, Glut, etc.&lt;br /&gt;
&lt;br /&gt;
[[User:zas|Matti Henrik Karjalainen]] (zas) '''ID sent, applied for Nokia Launchpad'''&amp;lt;br/&amp;gt;&lt;br /&gt;
[http://tols17.oulu.fi/~matkarja/meego/ Projects] (Currently working on Tap 'em (game))&lt;br /&gt;
&lt;br /&gt;
[http://forum.meego.com/member.php?u=9286 Michael Muth] (helex) '''ID sent, already a Launchpad member'''&amp;lt;br /&amp;gt;&lt;br /&gt;
[http://talk.maemo.org/showthread.php?p=1001316 ClipMan], [http://talk.maemo.org/showthread.php?t=52589 DreamRemote], TcpKeyboard, something like [http://talk.maemo.org/showthread.php?t=72408 ConkyLayoutSwitcher] (have to see how the UI works in detail - need to create it from scratch)&lt;br /&gt;
&lt;br /&gt;
[http://blog.mikeasoft.com/tag/maemo/ Michael Sheldon] (Elleo) '''ID sent, applied for Nokia Launchpad'''&amp;lt;br /&amp;gt;&lt;br /&gt;
Creating a [http://libre.fm Libre.fm] radio client and porting [http://www.jokosher.org Jokosher] to small screen devices.&lt;br /&gt;
&lt;br /&gt;
[http://blog.cihar.com/ Michal Čihař] (Nijel) '''ID sent, applied for Nokia Launchpad'''&amp;lt;br /&amp;gt;&lt;br /&gt;
Creating a [http://wammu.eu/ Gammu] application for phone for data synchronization and backup.&lt;br /&gt;
&lt;br /&gt;
Michele Tameni ( netvandal ) '''ID sent''',  '''Applied for the Nokia Developer Launchpad program'''&lt;br /&gt;
&lt;br /&gt;
- Luca's Mirror:  It’s a simple app that transform your phone into a hand-held mirror with some other cool addictions.&lt;br /&gt;
&lt;br /&gt;
- Semantic experiment : Experiment with Notification Area mixed with the semantic information stored in tracker, reacting to user action with usefull notification&lt;br /&gt;
More info  [http://michele.tameni.it/project/meego/ Here]&lt;br /&gt;
&lt;br /&gt;
Mike Choy : Porting Maesynth and Maelophone from N900 Python to QML and C++. Stress testing the new [https://projects.developer.nokia.com/qtgameenabler Qt Game Enabler] to see if we finally have  low latency audio support in Qt. Will also look to see if we can get midi sample support via Wild Midi or equivalent. &lt;br /&gt;
&lt;br /&gt;
Mikko Vartiainen '''ID sent''',  '''Applied for the Nokia Developer Launchpad program'''&lt;br /&gt;
http://forum.meego.com/showthread.php?t=3607&lt;br /&gt;
&lt;br /&gt;
[https://projects.developer.nokia.com/home/user/mmlado Mladen Milankovic] '''IDs sent'''&amp;lt;br /&amp;gt;&lt;br /&gt;
Develop games in QML&lt;br /&gt;
&lt;br /&gt;
Mures Andone&lt;br /&gt;
&lt;br /&gt;
[[User:Nielsmayer|Niels Mayer]] '''[https://projects.developer.nokia.com/home/user/NielsMayer Nokia Developer ID] sent''', '''Applied for the Nokia Developer Launchpad program'''&amp;lt;br /&amp;gt;&lt;br /&gt;
[http://wiki.meego.com/Tubelet-and-cutetube-port Port cutetube-qml to MeeGo tablet UX/harmattan UX.]&amp;lt;br /&amp;gt;&lt;br /&gt;
[http://code.google.com/p/ytd-meego/wiki/CitizenJournalismWithYoutubeDirectForMeego YouTube Direct For MeeGo]&lt;br /&gt;
&lt;br /&gt;
[[User:olka|Oleksandr Kachur]] '''ID sent'''. '''Waiting answer from Nokia Developer Launchpad program'''&amp;lt;br /&amp;gt;&lt;br /&gt;
Developing cloud music player integrated with Google music, Amazon music and last.fm services.&lt;br /&gt;
&lt;br /&gt;
Olle Tränk (zeamoceq) '''ID sent''',  '''Applied for the Nokia Developer Launchpad program'''&amp;lt;br /&amp;gt;&lt;br /&gt;
Porting [http://qticksize.zeamoceq.net qTickSize] (interface to Swedish online stock broker)&lt;br /&gt;
&lt;br /&gt;
Oscar Martinez '''ID sent''',  '''Applied for the Nokia Developer Launchpad program'''&amp;lt;br /&amp;gt;&lt;br /&gt;
Port 2d puzzle board game [http://kde-apps.org/content/show.php/kMagnet?content=109111 kMagnet] or a new 2d board puzzle game&lt;br /&gt;
&lt;br /&gt;
[[User:Lorenzph|Philip Lorenz]] (Nokia Developer ID sent)&amp;lt;br /&amp;gt;&lt;br /&gt;
Development of a hiking application supporting the user when planning and executing the trip.&lt;br /&gt;
&lt;br /&gt;
[[User:Ph5|Philipp Zabel]] (pH5) ''' ID sent, applied for the Nokia Developer Launchpad program '''&amp;lt;br /&amp;gt;&lt;br /&gt;
Integration of [https://www.torproject.org/ Tor] support, porting of [http://maemo.org/downloads/product/Maemo5/frogatto/ Frogatto], [https://garage.maemo.org/projects/beifahrer/ Beifahrer] and [https://garage.maemo.org/projects/cinaest/ Cinaest]&lt;br /&gt;
&lt;br /&gt;
Randall Arnold&lt;br /&gt;
Application testing, local and regional meetup/event demos, product evangelism, peripheral design&lt;br /&gt;
&lt;br /&gt;
Ravi Vagadia '''ID Sent''', '''Applied for the Nokia Developer Launchpad Program''' &amp;lt;br/&amp;gt;&lt;br /&gt;
VLC Remote &amp;amp; Trip Management App.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Ray Donnelly&lt;br /&gt;
&lt;br /&gt;
[[User:Rlinfati|Rodrigo Linfati]]  '''ID sent''',  '''Applied for the Nokia Developer Launchpad program'''&lt;br /&gt;
* Upgrade GoogleLatitude to the current API&lt;br /&gt;
* Find your Frient: a apps that inform you position directly to you friend without any external server.&lt;br /&gt;
&lt;br /&gt;
Roman Morawek&lt;br /&gt;
&lt;br /&gt;
[http://wiki.meego.com/User:Wonko Ruediger Gad (wonko)] '''ID sent''',  '''Applied for the Nokia Developer Launchpad program''' &amp;lt;br /&amp;gt;&lt;br /&gt;
Amongst other things I'll port my existing applications for Maemo5/Fremantle to MeeGo/Harmattan: VU Meter, StultitiaSimplex, Zeecontrol, Advanced Clock Plugin (for details please see my page).&lt;br /&gt;
&lt;br /&gt;
[[User:generalantilles|Ryan Abel]] (GeneralAntilles)  '''ID sent''',  '''Applied for the Nokia Developer Launchpad program''' &amp;lt;br /&amp;gt;&lt;br /&gt;
Working with fiferboy on a photographer's application suite ([http://thousandsparrows.com/meego/ SnapGo], currently) to include feature like a light meter and GPS track recording.&lt;br /&gt;
&lt;br /&gt;
Sam Bristow&lt;br /&gt;
&lt;br /&gt;
[[User:Eipi|Sanjeev Visvanatha]] (EIPI) , '''d.n.c ID sent''', '''could not apply for Nokia Launchpad''' &amp;lt;br /&amp;gt;&lt;br /&gt;
Porting MaeFlight from Maemo 5, and adding functionality for Harmattan &lt;br /&gt;
&lt;br /&gt;
Seif Lotfy&lt;br /&gt;
&lt;br /&gt;
Sergey Ivanov&amp;lt;br /&amp;gt;&lt;br /&gt;
Developing software for the mobile operating system MeeGo, associated with the processing of audio and video streams.&lt;br /&gt;
&lt;br /&gt;
Sergey Ivanov&lt;br /&gt;
&lt;br /&gt;
[[User:Spenap|Simón Pena]] '''ID sent''',  '''Applied for the Nokia Developer Launchpad program'''&amp;lt;br /&amp;gt;&lt;br /&gt;
Porting and enhancing Maevies from Maemo 5 to Meego/Harmattan&lt;br /&gt;
&lt;br /&gt;
Simon Pickering (lardman) '''ID sent''',  '''Applied for the Nokia Developer Launchpad program'''&amp;lt;br /&amp;gt;&lt;br /&gt;
Porting mBarcode, working on Augmented Reality app (mAR), time and location event app (Proximus), additional location methods (offline cellid, magnetic field line direction)&lt;br /&gt;
Page here: http://wiki.meego.com/User_talk:Lardman&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[User:Somnathbanik|Somnath Banik]]: '''Nokia Developer ID Sent''', '''Applied for Nokia Developer Launchpad Program'''&lt;br /&gt;
* Porting my existing Symbian^3 multimedia applications to MeeGo/N9 with a  new and exciting UI components of Harmattan/MeeGo.&lt;br /&gt;
* Creating simple and easy open source application to inspire beginner developers to work on MeeGo/N9 technology.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Stani Michiels&lt;br /&gt;
&lt;br /&gt;
Stefanos Harhalakis&lt;br /&gt;
&lt;br /&gt;
Stephen Gadsby (sjgadsby) '''ID sent''', '''applied for Nokia Launchpad''' &amp;lt;br /&amp;gt;&lt;br /&gt;
writing a [[User:Sjgadsby#Preferred Shopper Card Wallet|not-yet-named wallet for store loyalty cards]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[User:vitaminj|Stephen Spencer]] (VitaminJ) '''ID sent, applied for the Nokia Developer Launchpad program'''&amp;lt;br/&amp;gt;&lt;br /&gt;
[http://jenkins.vitaminj.co.uk/job/meex/ Meex], a portable DJing application&lt;br /&gt;
&lt;br /&gt;
Susanna Huhtanen&lt;br /&gt;
&lt;br /&gt;
Tadej Novak '''ID sent, applied for the Nokia Developer Launchpad program''' &amp;lt;br&amp;gt;&lt;br /&gt;
Porting my desktop IP TV player and schedule to Meego&lt;br /&gt;
&lt;br /&gt;
[http://wiki.meego.com/User:Kenya888 Takahiro Hashimoto(kenya888)] '''ID sent, waiting reply of Launchpad program'''&amp;lt;br&amp;gt;&lt;br /&gt;
porting qimsys/mozc to Harmattan/MeeGo, developing streaming multimedia player with QML&lt;br /&gt;
&lt;br /&gt;
Tasuku Suzuki&lt;br /&gt;
&lt;br /&gt;
Teemu Hukkanen&lt;br /&gt;
&lt;br /&gt;
[http://teom.wordpress.com Teo Mrnjavac] '''ID sent, applied for the Nokia Developer Launchpad program'''&amp;lt;br/&amp;gt;&lt;br /&gt;
[http://ur1.ca/4kkwh Porting] [http://amarok.kde.org Amarok] to tablets and handsets running MeeGo/Harmattan.&lt;br /&gt;
&lt;br /&gt;
Thomas Cherryhomes - Lead Developer for LinuxMCE&lt;br /&gt;
* LinuxMCE is a next generation smart home platform encompassing media, home automation, telecom, and security features. http://www.linuxmce.org/&lt;br /&gt;
* A 25 min demo of the software can be seen here: http://video.google.com/videoplay?docid=2176025602905109829&lt;br /&gt;
* Nokia N950 will be used as a test platform for the new QML/Qt Quick based qOrbiter we are writing to replace our existing Orbiter software, qOrbiter videos here: &lt;br /&gt;
** http://www.youtube.com/watch?v=NDGagn3EciA&lt;br /&gt;
** http://www.youtube.com/watch?v=oUHrCdBgoyQ&lt;br /&gt;
&lt;br /&gt;
[[user:thp|Thomas Perl]]  '''ID sent'''&lt;br /&gt;
* [http://gpodder.org/ gPodder] - Integrating gPodder with Harmattan (including specific APIs)&lt;br /&gt;
* Open source work on Python-related APIs (PySide, etc..) + Python tutorials&lt;br /&gt;
* Get [[Games|Mong]] in shape for Harmattan&lt;br /&gt;
* Port over some of my existing [http://maemo.org/profile/view/thp/ Maemo 5 apps]&lt;br /&gt;
&lt;br /&gt;
[[user:harbaum|Till Harbaum]] '''ID sent, applied for the Nokia Developer Launchpad program'''&lt;br /&gt;
* First action: Try to get [http://www.harbaum.org/till/cacheme CacheMe] to work nicely &lt;br /&gt;
* Might have to work on qt theming (and convince people that this is a good thing :-)&lt;br /&gt;
* [https://build.pub.meego.com/project/show?project=home%3Aharbaum Community OBS home project]&lt;br /&gt;
* And of course i'd like to port some of my previous Maemo projects ...&lt;br /&gt;
&lt;br /&gt;
[[User:timoph|Timo Härkönen]] (timoph) '''ID sent, applied for Launchpad membership'''&lt;br /&gt;
* [http://gitorious.org/random-timoph impuzzle, etc.]&lt;br /&gt;
* [http://timoph.fi timoph.fi]&lt;br /&gt;
* [https://build.pub.meego.com/project/show?project=home%3Atimoph Community OBS home project]&lt;br /&gt;
&lt;br /&gt;
[http://wiki.meego.com/User:Venemo Timur Kristóf]&lt;br /&gt;
&lt;br /&gt;
* '''Sent my Account ID to Quim, applied at Nokia launchpad. Awaiting any reply.'''&lt;br /&gt;
* [http://wiki.meego.com/User:Venemo/HarmattanPlans My Harmattan Plans]&lt;br /&gt;
** [http://gitorious.org/colorful-apps/puzzle-master Puzzle Master]&lt;br /&gt;
** [http://forum.meego.com/showthread.php?t=3711 Public transportation app] (Click on the [http://forum.meego.com/showthread.php?t=3711 link] and post to the thread if you are interested to contribute.)&lt;br /&gt;
** [https://gitorious.org/colorful-apps/memory-game Memory game]&lt;br /&gt;
** Labirynth game (No code available yet)&lt;br /&gt;
&lt;br /&gt;
Tom Swindell&lt;br /&gt;
* [[User:Tswindell/CommunityApplicationDevelopment]]: Columbus Navigation Toolkit, Media IM Status Updater.&lt;br /&gt;
&lt;br /&gt;
[[User:tlaukkanen|Tommi Laukkanen]]&lt;br /&gt;
* Facebook client [http://kasvopus.com Kasvopus], Twitter client [http://twimgo.com TwimGo], Google Reader client [http://newsflow.mobi NewsFlow], FourSquare client [http://nelisquare.com Nelisquare]&lt;br /&gt;
&lt;br /&gt;
Toni Nikkanen&lt;br /&gt;
&lt;br /&gt;
[https://meego.com/users/sandst1 Topi Santakivi] '''ID sent''', '''applied for Nokia Launchpad'''&lt;br /&gt;
* Porting FunkeySynth, a MeeGo Tablet synthesizer to Harmattan &lt;br /&gt;
* Demo clip and further info in [http://sandst1.wordpress.com/ my blog]&lt;br /&gt;
&lt;br /&gt;
Tuomas Kulve&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[https://meego.com/users/vasvlad Uladzislau Vasilyeu] (Vasvlad) '''ID sent, applied for the Nokia Developer Launchpad program'''&amp;lt;br/&amp;gt;&lt;br /&gt;
* Porting OMWeather to Harmattan&lt;br /&gt;
&lt;br /&gt;
[[User:drowne|Valerio Di Donato]] '''ID sent, applied for Nokia Launchpad '''&amp;lt;br /&amp;gt;&lt;br /&gt;
Location-Based games and application development, mobile game design. Junomi Developer ( serious game presented at Games for Health Conference in Boston, May 2011 )&lt;br /&gt;
&lt;br /&gt;
Ville Jyrkkä&lt;br /&gt;
&lt;br /&gt;
Ville Ranki&lt;br /&gt;
&lt;br /&gt;
Willem Liu&lt;br /&gt;
&lt;br /&gt;
[[User:ph0b|Xavier Hallade]] '''ID sent, applied for Nokia Launchpad '''&amp;lt;br /&amp;gt;&lt;br /&gt;
Writing tutorials to help other developers to step in MeeGo / Building MeeGo Paris network / Developing an audio player to access to more than 47 000 webradios referenced on AOL shoutcast (by name, genre, current track)&lt;br /&gt;
&lt;br /&gt;
Yann Bieber '''ID sent, applied for Nokia Launchpad '''&amp;lt;br /&amp;gt;&lt;br /&gt;
Porting [http://code.google.com/p/wagic/ Wagic] on Harmattan based on either Qt or SDL&lt;br /&gt;
&lt;br /&gt;
Zaheer Merali '''ID sent''' '''Applied for the Nokia Developer Launchpad (for individuals) program'''&lt;br /&gt;
* Porting [http://gstreamer.freedesktop.org GStreamer] plugins not shipped by Nokia to Harmattan&lt;br /&gt;
* Porting [http://www.flumotion.net Flumotion] an open source streaming solution to Harmattan taking advantage of the hardware encoding and the camera&lt;br /&gt;
&lt;br /&gt;
Zap Andersson&lt;br /&gt;
&lt;br /&gt;
Zeeshan Ali&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Batch Two  ====&lt;br /&gt;
&lt;br /&gt;
Second batch - to be integrated witrh the list above.&lt;br /&gt;
&lt;br /&gt;
Max Waterman '''ID sent''', '''applied for Nokia Launchpad'''&lt;br /&gt;
* Porting ZouBa to MeeGo/H and QML, plust other app ideas.&lt;br /&gt;
&lt;br /&gt;
Sławomir Musiał '''ID sent''', '''applied for Nokia Launchpad'''&lt;br /&gt;
* [http://www.swinkels.tvtom.pl/eCards eCards] Application for creating and sending e-cards&lt;br /&gt;
&lt;br /&gt;
[https://meego.com/users/scifiguy Sudheer K.] '''ID sent''', '''applied for Nokia Launchpad'''&lt;br /&gt;
* Porting [https://garage.maemo.org/projects/marketstoday Markets Today], a Stock Quotes  app to Harmattan &lt;br /&gt;
* Evaluate porting of VICaR (Call router application) and new application ideas on Harmattan&lt;br /&gt;
&lt;br /&gt;
Mohannad Hammadeh '''ID sent, Applied for the Nokia Developer Launchpad program'''&lt;br /&gt;
* Porting mPrayerTime to Meego-Harmattan, updating the UI and adding more features.&lt;br /&gt;
&lt;br /&gt;
[[User:antman8969|Anthony Naddeo]] (antman8969 here on meego.com, but antman8069 on developer.nokia.com) '''id sent, applied for launch program''' &amp;lt;br /&amp;gt;&lt;br /&gt;
Creator and maintainer of [http://linkedup.googlecode.com Linkedup] - LinkedIn client for Maemo, Meego, Harmattan..... anything Qt&lt;br /&gt;
&lt;br /&gt;
Leaf Johnson&lt;br /&gt;
&lt;br /&gt;
Ed Page&lt;br /&gt;
&lt;br /&gt;
William Su (sony123) '''ID sent, Applied for the Nokia Developer Launchpad program''' &amp;lt;br /&amp;gt;&lt;br /&gt;
[http://talk.maemo.org/showthread.php?p=1019939#post1019939 Stockona] - a google finance client. &lt;br /&gt;
Currently working on:&lt;br /&gt;
* Local portfolio creation.&lt;br /&gt;
* Webview integration: Make in-app news feed reading possible.&lt;br /&gt;
&lt;br /&gt;
Anthony Day&lt;br /&gt;
&lt;br /&gt;
[[User:mattaustin|Matt Austin]]  '''ID sent''',  '''Applied for the Nokia Developer Launchpad program'''&amp;lt;br /&amp;gt;&lt;br /&gt;
Transperth trains live departure boards app, Player numbers AFL footy app, Amazon S3 bucket &amp;amp; file browser&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[https://meego.com/users/smoku Tomasz Sterna] '''ID sent, Applied for the Nokia Developer Launchpad program'''&lt;br /&gt;
* Port my touch screen [http://tomasz.sterna.tv/maemo/ ports of games for Maemo] (Widelands, Bos Wars, Robbo) and UAE4All, PSX4All emulators&lt;br /&gt;
* Port support for SIXAXIS(TM) Controller&lt;br /&gt;
* Possibly build and integrate [http://codex.xiaoka.com/wiki/cordia:start Cordia HD] on Harmattan&lt;br /&gt;
&lt;br /&gt;
Olli Laasonen '''ID sent''',  '''Applied for the Nokia Developer Launchpad program'''&amp;lt;br /&amp;gt;&lt;br /&gt;
* Porting apps from Maemo (Who is calling?, Advanced phone lock, Sanakirja.org dictionary client).&lt;br /&gt;
* Developing small handy applications.&lt;br /&gt;
&lt;br /&gt;
Ville Syrjälä&lt;br /&gt;
&lt;br /&gt;
Shane Bryan&lt;br /&gt;
&lt;br /&gt;
Jure Repinc&lt;br /&gt;
&lt;br /&gt;
[http://maemo.org/profile/view/rm_you/ Adam Harwell] '''ID sent''',  '''Applied for the Nokia Developer Launchpad program'''&amp;lt;br /&amp;gt;&lt;br /&gt;
* Porting [http://maemo.org/downloads/product/OS2008/advanced-backlight/ Advanced Backlight] from Maemo, adding new features&lt;br /&gt;
* Helping with photo utility suite project&lt;br /&gt;
* Will help beta test apps for people on IRC&lt;br /&gt;
&lt;br /&gt;
Boris Pohler (emanymton) '''ID sent''',  '''Applied for the Nokia Developer Launchpad program'''&amp;lt;br /&amp;gt;&lt;br /&gt;
* porting Zeitkonto and HandsOff (not yet released) from Maemo to Meego, maybe a rewrite with QML&lt;br /&gt;
* other ideas in pipeline (remote for mythtv, live sports-ticker, ...)&lt;br /&gt;
* Helping other users at the german side meego.de (there known as Cermit) &lt;br /&gt;
&lt;br /&gt;
Eike Hein&lt;br /&gt;
&lt;br /&gt;
Jeffrey Malone (ieatlint) - '''ID sent, already a Nokia Launchpad member'''.   &lt;br /&gt;
Will be creating a transit application around the public NextBus real-time vehicle tracking API for dozens of transit agencies in North America.&lt;br /&gt;
Hopefully collaborating with others working on transit applications... :)&lt;br /&gt;
&lt;br /&gt;
Thomas Boutroue (aka TheBootroo)&lt;br /&gt;
Making a small and smart mobile widgets toolkit on top of plain QWidget + CSS for styling, named MWTk.&lt;br /&gt;
And using this toolkit to make several apps for MeeGo (and runs onto Maemo5 and Symbian too, even on desktop OS) and a new environment, that aims to be a good alternative to default MeeGo Handset UX, bringing it on pair with Harmattan UX, by giving it a successor to the deprecated MeeGoTouchFramework.&lt;br /&gt;
Already some testable sources can be found on the project gitorious repos.&lt;br /&gt;
https://gitorious.org/meego-community-mobile-ux-ng&lt;br /&gt;
And there is a page with some screenshots of the  look that MTWk can do (this page will be moved on gitorious wiki soon) :&lt;br /&gt;
http://modern-os.projects.servhome.org/mobileApps/&lt;br /&gt;
&lt;br /&gt;
Stephan Bulgin '''ID sent''', '''Applied for the Nokia Developer Launchpad program''' &amp;lt;br /&amp;gt;&lt;br /&gt;
blog/website in near future. to showcase my projects.&lt;br /&gt;
&lt;br /&gt;
[[User:mdengler|Martin Dengler]] '''ID sent''', '''Waiting for Launchpad account to be activated''' &amp;lt;br/&amp;gt;&lt;br /&gt;
I am working on porting a tron-like game (armegatron preferably or glTron) to the N9, and developing Ringr, a location-based ringtone management application.&lt;br /&gt;
&lt;br /&gt;
[[User:Rafael2k|Rafael Diniz]] '''ID sent''', '''Waiting for Launchpad account to be activated''' &amp;lt;br&amp;gt;&lt;br /&gt;
I plan to develop FM RDS applications with focus in the new standards from RadioDNS like the RadioVIS (partly based in the already existent the N900-fmvis  http://code.google.com/p/n900-fmvis/).&lt;br /&gt;
I'm a member of a university radio station (Radio Muda FM, 88.5MHz) and my plan is to develop &amp;quot;real life&amp;quot; radio station applications.&amp;lt;br&amp;gt;&lt;br /&gt;
I'll also rewrite an application I did for audio streaming, darknow (a gui for darkice, http://darksnow.radiolivre.org) which is an icecast2 client, and also write an audio/video icecast2 client (based in a software I did called theorur, http://theorur.sarava.org), all using QT.&lt;br /&gt;
&lt;br /&gt;
Anderson Briglia, '''ID sent, Applied for the Nokia Developer Launchpad program'''&amp;lt;br/&amp;gt;&lt;br /&gt;
My idea is to re-write the Carman application for N9/N950, using QML.&lt;br /&gt;
There is also an effort to port the current carman daemon and carman&lt;br /&gt;
bluetooth communication since Bluez used in Meego is slightly&lt;br /&gt;
different from the implemented one. I also want to get rid of&lt;br /&gt;
libpurple and implement a more integrated way to communicate with&lt;br /&gt;
Google accounts.&lt;br /&gt;
&lt;br /&gt;
[[User:Milhouse|Neil MacLeod]] '''ID sent, Applied for the Nokia Developer Launchpad program'''&amp;lt;br&amp;gt;&lt;br /&gt;
Develop an audio recording application with geo-location support, plus other applications to improve personal productivity utilising the Harmattan notification/event view.&lt;br /&gt;
&lt;br /&gt;
Nilanjan Chakravorty - '''ID sent, Already applied for the Nokia Developer Launchpad program'''&lt;br /&gt;
* Leverage my financial background with IT to develop&lt;br /&gt;
- Portfolio management application   - Bloomberg Pricing data application&lt;br /&gt;
&lt;br /&gt;
[[User:timsamoff|Tim Samoff]]&lt;br /&gt;
* [http://thp.io/2011/mong/ Plonk]&lt;br /&gt;
* MeeGo Community Apps website design&lt;br /&gt;
* A few other things that are brewing (games, sound generators, etc.)&lt;br /&gt;
&lt;br /&gt;
David Perlow '''ID sent, Applied for the Nokia Developer Launchpad program'''&lt;br /&gt;
&lt;br /&gt;
Pawel Kurdybacha '''ID sent, already a Nokia Launchpad member'''&lt;br /&gt;
* Testing and contribution to Qt Mobility on Harmattan platform&lt;br /&gt;
* Multimedia Home controller based on gUPnP&lt;br /&gt;
* various applications (words trainer, taxi checker, ...)&lt;br /&gt;
&lt;br /&gt;
Philippe Coval (RzR) ''' ID sent , member of LP, http://rzr.online.fr/q/meego , http://wiki.meego.com/User:Rzr , https://www.developer.nokia.com/Profile/?u=www.rzr.online.fr ( qt4, qml, opengl, debian)&lt;br /&gt;
&lt;br /&gt;
Philipp Engelhard '''[https://www.developer.nokia.com/Profile/?u=-philipp Nokia Developer ID] sent''', '''Applied for the Nokia Developer Launchpad program'''&amp;lt;br /&amp;gt;&lt;br /&gt;
* Develop a maze game for children and adults&lt;br /&gt;
* Develop a &amp;quot;Nokia Bots&amp;quot; like program for alarm and battery&lt;br /&gt;
&lt;br /&gt;
[[User:Rnazarov|Ruslan Nazarov]] '''ID sent''', '''waiting answer from Nokia Developer Launchpad program''' &amp;lt;br /&amp;gt;&lt;br /&gt;
Porting [https://gitorious.org/titanim TitanIM] (Vkontakte instant messenger)&lt;br /&gt;
&lt;br /&gt;
Moritz Mühlenhoff&lt;br /&gt;
&lt;br /&gt;
Matt Williams&lt;br /&gt;
&lt;br /&gt;
[[User:Asys3|Uwe Koch]] '''ID sent, Applied for the Nokia Developer Launchpad program'''&amp;lt;br&amp;gt;&lt;br /&gt;
* Port hopefully all of my games Lineo,Q,TwinDistress,Sokoban and Jooleem&lt;br /&gt;
&lt;br /&gt;
Frank Banul '''ID sent, Applied for the Nokia Developer Launchpad program'''&lt;br /&gt;
* Port TabletBridge and RadioTimeToGo&lt;br /&gt;
&lt;br /&gt;
Felipe Erias Morandeira&lt;br /&gt;
&lt;br /&gt;
[[User:kojacker|Ryan Faulkner]] '''ID sent, Already a Lunchpad member'''&amp;lt;br&amp;gt;&lt;br /&gt;
* Various applications, bits and bobs (links coming)&lt;br /&gt;
&lt;br /&gt;
[[User:hopbeat|Arkadiusz Stopczynski]] '''ID sent, Applied for the Nokia Developer Launchpad program'''&lt;br /&gt;
* Various academic projects, including novel user interfaces, social web, BCI and portable cognitive sensors. All the crazy stuff mentioned here: http://www.milab.imm.dtu.dk&lt;br /&gt;
* Some utility applications that make your everyday tasks easier, such as shortcutd or lockdaemon for Maemo&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Ferenc Szekely&lt;br /&gt;
&lt;br /&gt;
[[User:w00t|Robin Burchell]] (w00t) '''ID sent''', '''Already a Launchpad member (but my Launchpad account hasn't activated)'''&amp;lt;br /&amp;gt;&lt;br /&gt;
meego.com hackery, meego-ux in particular. Qt Components. Anything else I find interesting - see [[User:w00t/N950Development]] for plans, as I think of anything interesting to write.&lt;br /&gt;
&lt;br /&gt;
Mohammad Abu-Garbeyyeh '''ID sent''', '''Applied for the Nokia Developer Launchpad program''' &amp;lt;br /&amp;gt;&lt;br /&gt;
Planning a wiki page with a todo list, main project here: http://bt-messenger.com&lt;br /&gt;
&lt;br /&gt;
[[User:sebas|Sebastian Kügler]] (sebas) '''ID sent, Applied for the Nokia Developer Launchpad program'''&lt;br /&gt;
* Bringing Plasma Active ( http://community.kde.org/Plasma/Active )to MeeGo &lt;br /&gt;
&lt;br /&gt;
Juha Ristolainen '''ID sent, already a Launchpad member''' &amp;lt;br /&amp;gt;&lt;br /&gt;
Heiaheia fitness-service application for MeeGo. Untappd.com client for MeeGo.&lt;br /&gt;
&lt;br /&gt;
Ilya Skriblovsky '''[https://www.developer.nokia.com/Profile/?u=IlyaSkriblovsky Nokia Developer ID] sent, applied for Nokia Developer Launchpad'''&amp;lt;br&amp;gt;&lt;br /&gt;
* Port NWTBible (Bible reader), Planaris (Hierarchical Todo list) to MeeGo&lt;br /&gt;
&lt;br /&gt;
Rich Jones&lt;br /&gt;
&lt;br /&gt;
[[User:Bemasc/N950_Project|Benjamin Schwartz]] '''ID sent, applied for Nokia Launchpad ''' &amp;lt;br /&amp;gt;&lt;br /&gt;
I will attempt to convert [http://sugarlabs.org Sugar] [http://activities.sugarlabs.org Activities] into MeeGo apps, and hopefully in the process acquire some insight into the potential for MeeGo to form the basis of future Sugar revisions&lt;br /&gt;
&lt;br /&gt;
Nicolai Hess&lt;br /&gt;
&lt;br /&gt;
Hussain Shafiu '''ID sent''', '''Already a Launchpad member waiting for Launchpad account to be activated)''' &amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Shan Yafeng '''ID sent''', '''Applied for the Nokia Developer Launchpad program''' &amp;lt;br /&amp;gt;&lt;br /&gt;
An education program for exchange information between students and teacher in class. And port some programs to the nokia N900/N950 device. The progress can be found here : http://cuckoohello.wordpress.com&lt;br /&gt;
&lt;br /&gt;
[[User:vitna|Vaselli Vittorio]] '''ID sent''',  '''Applied for the Nokia Developer Launchpad program'''&amp;lt;br /&amp;gt; My actual project is http://forum.meego.com/showthread.php?t=3652, but i have in program to develop much more game for the Harmanattan platform&lt;br /&gt;
&lt;br /&gt;
==== Batch Three ====&lt;br /&gt;
&lt;br /&gt;
Niels Breet '''ID sent''', '''Applied for the Nokia Developer Launchpad program''' &amp;lt;br /&amp;gt;&lt;br /&gt;
Set up &amp;amp; Testing Harmanttan building on MeeGo Community OBS&lt;br /&gt;
&lt;br /&gt;
Andre Klapper&lt;br /&gt;
&lt;br /&gt;
Reggie Suplido '''ID sent''',  '''Applied for the Nokia Developer Launchpad program'''&amp;lt;br /&amp;gt;&lt;br /&gt;
Custom MeeGo web development related to meego.com and forum.meego.com.&lt;br /&gt;
&lt;br /&gt;
Koos Vriezen&lt;br /&gt;
&lt;br /&gt;
Micke Prag '''ID sent''',  '''Applied for the Nokia Developer Launchpad program'''&amp;lt;br /&amp;gt;&lt;br /&gt;
[https://gitorious.org/telldus/tellduscenter-light TelldusCenter Light] - Using the mobile phone as the central hub in your home automation. Control your lights, electrical appliances and curtains wirelessly from the palm of your hands.&lt;br /&gt;
&lt;br /&gt;
Aigars Mahinovs&lt;br /&gt;
&lt;br /&gt;
Miika Johannes Ahdesmaki '''ID sent''', '''Applied for the Nokia Developer Launchpad program''' &amp;lt;br /&amp;gt;&lt;br /&gt;
[http://forum.meego.com/showthread.php?t=3633] Development of multi sensor utilising apps. First working example app in gaming.&lt;br /&gt;
&lt;br /&gt;
Andreas Schildbach&lt;br /&gt;
&lt;br /&gt;
Ilya Paramonov&lt;br /&gt;
&lt;br /&gt;
Thomas B. Ruecker '''ID sent''', '''Applied for the Nokia Developer Launchpad program''' &amp;lt;br /&amp;gt;&lt;br /&gt;
MeeGo Community edition for N9(|50|00) &amp;lt;br /&amp;gt;&lt;br /&gt;
APRS application in QML to teach myself something about QML and Qt Mobility.&lt;br /&gt;
&lt;br /&gt;
Damion Yates&lt;br /&gt;
&lt;br /&gt;
Antti Raina&lt;br /&gt;
&lt;br /&gt;
Andrew Zhilin&lt;br /&gt;
&lt;br /&gt;
Glen Gray '''ID sent''',  '''Applied for the Nokia Developer Launchpad program'''&lt;br /&gt;
&lt;br /&gt;
Johan Paul '''ID sent''',  '''Applied for the Nokia Developer Launchpad program'''&amp;lt;br /&amp;gt;&lt;br /&gt;
* Google Contacts importing (if you are an Android user, then setting up your contacts with be really easy)&lt;br /&gt;
* N9 Podcast client&lt;br /&gt;
* Instapaper client.&lt;br /&gt;
&lt;br /&gt;
Simon La Rose&lt;br /&gt;
&lt;br /&gt;
Daniele Maio&lt;br /&gt;
&lt;br /&gt;
Joerg Reisenweber '''ID sent''',  '''Accepted for the Nokia Developer Launchpad program - Launchpad ID unclear (isn't it the same as for developer?)'''&lt;br /&gt;
* USB hostmode. Give N9(50) access to external storage etc.&lt;br /&gt;
* Review the core functionality and find other similar fields to tackle (see *# starhash-enabler for N900). To mind comes: user profiles (refer the modest &amp;quot;default&amp;quot; &amp;amp; &amp;quot;silent&amp;quot; on fremantle), dialplans, location aware event triggers (cinema profile triggers automatically on entering the building), improved battery management and monitoring, theft protection and recovery...&lt;br /&gt;
# contact: preferably IRC freenode.net #maemo #meego nick:DocScrutinizer&lt;br /&gt;
&lt;br /&gt;
Nathan Willis&lt;br /&gt;
&lt;br /&gt;
Peter Hunt (tigerite) '''ID sent, Applied for the Nokia Developer Launchpad program'''&lt;br /&gt;
* Integrating the BFS CPU scheduler https://garage.maemo.org/projects/kernel-bfs/ into the N9/50 kernel, along with the Budget Fair Queueing I/O scheduler http://algo.ing.unimo.it/people/paolo/disk_sched/&lt;br /&gt;
* Porting projects such as the Phoronix Test Suite http://www.phoronix-test-suite.com/ to Harmattan&lt;br /&gt;
* Converting a Flash cards based learning system which I developed, loosely based on the one found at http://www.educationlabs.com/projects/flashcards/Pages/default.aspx, from C#/XAML to Qt/QML and making it standalone&lt;br /&gt;
&lt;br /&gt;
Philford Barrett&lt;br /&gt;
&lt;br /&gt;
[[user:jukey|Uwe Kaminski]] ('''Nokia Developer ID sent''')&lt;br /&gt;
&lt;br /&gt;
Kyösti Ranto&lt;br /&gt;
&lt;br /&gt;
Alex Tyler - '''Developer ID sent. Applied for Launchpad months ago but still no response from them.''' - I plan to port my Subsonic client &amp;quot;Aerofy&amp;quot; to the platform. I also plan to develop a range of media related applications.&lt;br /&gt;
&lt;br /&gt;
Stuart Howarth (marxian) - '''ID sent. Applied for Nokia Launchpad program'''&lt;br /&gt;
* Porting my [https://garage.maemo.org/projects/qmltube cuteTube] application (QML version).&lt;br /&gt;
* MythTV controller/recording scheduler (similar to the Android XBMC application)&lt;br /&gt;
&lt;br /&gt;
[[User:hardaker|Wes Hardaker]] '''ID sent, Launchpad application submitted'''&lt;br /&gt;
I'm continually developing applications for multitudes of devices, including many Qt applications at [http://www.dnssec-tools.org/ dnssec-tools] as well as personal projects, my favorite being my [http://www.hamtools.org/cutecw/ Morse Code Training Software], which is what I want to port immediately.  See my [[User:hardaker|User Page]] for a more complete list.&lt;br /&gt;
&lt;br /&gt;
Christoph Keller (gri) - '''ID sent, Applied for Nokia Launchpad program'''&lt;br /&gt;
Porting [http://web2sms.garage.maemo.org Web2SMS], splitting it up into a telepathy plugin, service daemon, contacts integration and hopefully sms application integration plus new provider plugins.&lt;br /&gt;
&lt;br /&gt;
Luke Bratch&lt;br /&gt;
&lt;br /&gt;
David Sansome - '''ID sent, Launchpad application submitted'''&lt;br /&gt;
Porting [http://www.clementine-player.org Clementine music player] to MeeGo.  Clementine already uses Qt and GStreamer.&lt;br /&gt;
&lt;br /&gt;
Jason Byrne (slvr32) - '''ID sent, Launchpad application submitted''' - [https://garage.maemo.org/projects/nfqm nfqm] (Netflix Queue Manager) Qt/C++, targeting Symbian^3, Maemo 5, and Meego/Harmattan - discussion thread [http://forum.meego.com/showthread.php?t=3715 here]&lt;br /&gt;
&lt;br /&gt;
Hillel Lubman (shmerl) - '''ID sent, Launchpad application submitted'''&amp;lt;br/&amp;gt;&lt;br /&gt;
Testing Firefox/Fennec on Meego, porting [http://code.google.com/p/kosherjava/ Zmanim API] to C++ and preparing it for Meego as a library. Planned - calendar application in Qt based on the Zmanim API.&lt;br /&gt;
&lt;br /&gt;
[[User:kkv|Kirill Krinkin]] '''ID sent, already a Nokia Launchpad member'''. &amp;lt;br /&amp;gt;&lt;br /&gt;
I'm working on clients for open [https://github.com/OSLL/geo2tag Location Base Platform ]. Project tracker and progress can be found [[http://osll.spb.ru/projects/geo2tag/issues here]]. &lt;br /&gt;
&lt;br /&gt;
Si Howard&lt;br /&gt;
&lt;br /&gt;
Klaus Rotter&lt;br /&gt;
&lt;br /&gt;
Piotr Pokora&lt;br /&gt;
&lt;br /&gt;
[[User:ivan4th|Ivan Shvedunov]] '''ID sent''',  '''Applied for the Nokia Developer Launchpad program'''&amp;lt;br /&amp;gt;&lt;br /&gt;
I'm working on [http://github.com/ivan4th/i4checklist Shopping list/checklist] application inspired by&lt;br /&gt;
HandyShopper for PalmOS (already working: All/Need separation; plan to implement other features soon, too).&lt;br /&gt;
Also [http://talk.maemo.org/showthread.php?t=42339 ported CLISP] to Maemo Fremantle and helped to debug&lt;br /&gt;
several ARM-related bugs in Clozure Common Lisp, managed to make [http://common-lisp.net/project/commonqt/ CommonQt]&lt;br /&gt;
(Common Lisp Qt bindings) work on Maemo Fremantle + CCL + Qt 4.7. I plan to continue my Common Lisp work on Meego, too.&lt;br /&gt;
&lt;br /&gt;
Andres Gomez&lt;br /&gt;
&lt;br /&gt;
William Stephenson (wstephenson) '''ID sent''',  '''Applied for the Nokia Developer Launchpad program'''&lt;br /&gt;
I'm working on a high level toolkit for the creation of branded RSS based apps, in order to facilitate the creation of these simple apps.&lt;br /&gt;
&lt;br /&gt;
Jason Flatt (jflatt) '''ID sent''',  '''Applied for the Nokia Developer Launchpad program'''&lt;br /&gt;
&lt;br /&gt;
[[User:Lizardo|Anderson Lizardo Gomes]] '''ID sent, Applied for the Nokia Developer Launchpad program'''.&amp;lt;br/&amp;gt;&lt;br /&gt;
I currently work on [http://www.bluez.org/ BlueZ] (Bluetooth stack for Linux) helping implement support for the new Bluetooth Low Energy (LE) technology. We currently lack user applications that take advantage of the [https://www.bluetooth.org/Technical/Specifications/adopted.htm recently adopted] GATT profiles, such as Proximity &amp;amp; FindMe. With these profiles, we will be able, for example, to alert if the phone has been left behind (assuming you own a LE keyfob with you) or locate your keys (if they have a LE keyfob/tag).&amp;lt;br/&amp;gt;&lt;br /&gt;
I intend to work on QML applications that will enable to use this technology. NOTE: N950 Bluetooth chipset lacks LE support, but N9 will be Bluetooth 4.0 based (according to specs). For testing and development purposes, the applications will use the traditional Bluetooth 2.1 technology.&lt;br /&gt;
&lt;br /&gt;
pancake&lt;br /&gt;
&lt;br /&gt;
Rodrigo Vivi&lt;br /&gt;
&lt;br /&gt;
[[User:niqt|Nicola De Filippo]] '''Sent my Account ID to Quim, i'm already Nokia launchpad member.'''.&amp;lt;br/&amp;gt;&lt;br /&gt;
I'm porting my maemo5 applications [http://badge.garage.maemo.org Badge] and [http://qlshop.garage.maemo.org QLshop]. I'll develop a new qml game and other mail client. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[User:lamikr|Mika Laitio]]&lt;br /&gt;
* kernel&lt;br /&gt;
* MeeGo CE edition&lt;br /&gt;
* VDR linux tv client&lt;br /&gt;
&lt;br /&gt;
 * kernel&lt;br /&gt;
 * Meego CE edition&lt;/div&gt;</summary>
		<author><name>Epage</name></author>	</entry>

	<entry>
		<id>http://wiki.meego.com/MeeGo_Conference_Spring_2011/Accommodation</id>
		<title>MeeGo Conference Spring 2011/Accommodation</title>
		<link rel="alternate" type="text/html" href="http://wiki.meego.com/MeeGo_Conference_Spring_2011/Accommodation"/>
				<updated>2011-05-05T19:24:38Z</updated>
		
		<summary type="html">&lt;p&gt;Epage: Adding myself&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The MeeGo Conference has a special rate with the [http://sf2011.meego.com/logistics/hotel San Francisco Hyatt Regency Embarcadero Center].  If you have been approved for sponsored travel, please ensure that you have booked a room at the Hyatt through the [https://www.eiseverywhere.com/ereg/index.php?eventid=19946 conference registration tool] already.  The hotel will modify your reservation based upon the input provided below.&lt;br /&gt;
&lt;br /&gt;
Sponsored participants will receive up to 4 nights in the conference hotel, in a dual occupancy room.  MeeGo will pay for the room rate and taxes for 4 nights, and you will be responsible for any other charges to the room.  Please note the total duration of your stay below (e.g., arriving early for Conference Warm Up or staying a night after the conference).  &lt;br /&gt;
&lt;br /&gt;
If sponsored attendees do not have a roommate preference, we'll assign one for you.  All roommates must also be conference attendees.  If you request a roommate that is not sponsored, they will be responsible for the remainder of the room fee.&lt;br /&gt;
&lt;br /&gt;
If you plan to spend more time in San Francisco and would like to share costs with a roommate before or after the conference, please note it in the last table.  This is for convenience and matching roommates only; you will need to manage your own hotel reservations for these nights.&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
!colspan=&amp;quot;3&amp;quot;|Roommate 1&lt;br /&gt;
!colspan=&amp;quot;3&amp;quot;| Roommate 2&lt;br /&gt;
!rowspan=&amp;quot;2&amp;quot; style=&amp;quot;width:200px&amp;quot;| Considerations&lt;br /&gt;
|-&lt;br /&gt;
!style=&amp;quot;width:200px&amp;quot;|Name &lt;br /&gt;
!style=&amp;quot;width:100px&amp;quot;|Arrive&lt;br /&gt;
!style=&amp;quot;width:100px&amp;quot;|Depart&lt;br /&gt;
!style=&amp;quot;width:200px&amp;quot;|Name&lt;br /&gt;
!style=&amp;quot;width:100px&amp;quot;|Arrive&lt;br /&gt;
!style=&amp;quot;width:100px&amp;quot;|Depart&lt;br /&gt;
|-&lt;br /&gt;
|Alan Bruce|| || || || || ||&lt;br /&gt;
|-&lt;br /&gt;
|Andrea Grandi|| || || || || ||&lt;br /&gt;
|-&lt;br /&gt;
|Andrew Flegg|| || || || || ||&lt;br /&gt;
|-&lt;br /&gt;
|Andrew Olmsted|| || || || || ||&lt;br /&gt;
|-&lt;br /&gt;
|Andrew Zhilin|| || || || || ||&lt;br /&gt;
|-&lt;br /&gt;
|Anselmo Lacerda S. de Melo|| || || || || ||&lt;br /&gt;
|-&lt;br /&gt;
|Arkadiusz Stopczynski|| || || || || ||&lt;br /&gt;
|-&lt;br /&gt;
|Artur Souza|| || || || || ||&lt;br /&gt;
|-&lt;br /&gt;
|Brendan Le Foll|| || || || || ||&lt;br /&gt;
|-&lt;br /&gt;
|Cornelius Hald|| || || || || ||&lt;br /&gt;
|-&lt;br /&gt;
|Dan Leinir Turthra Jensen|| || || || || ||&lt;br /&gt;
|-&lt;br /&gt;
|Dave Neary|| || || || || ||&lt;br /&gt;
|-&lt;br /&gt;
|Dimitris Glezos|| || || || || ||&lt;br /&gt;
|-&lt;br /&gt;
|Ed Page|| May 21st @ 10:00am || May 26th at 4:00pm || || || ||&lt;br /&gt;
|-&lt;br /&gt;
|Felipe Crochik|| || || || || ||&lt;br /&gt;
|-&lt;br /&gt;
|Ferenc Szekely|| || || || || ||&lt;br /&gt;
|-&lt;br /&gt;
|Frank Karlitschek|| || || || || ||&lt;br /&gt;
|-&lt;br /&gt;
|Gabriel Beddingfield|| || || || || ||&lt;br /&gt;
|-&lt;br /&gt;
|Gustavo Padovan|| || || || || ||&lt;br /&gt;
|-&lt;br /&gt;
|Hashiq Nazir|| || || || || ||&lt;br /&gt;
|-&lt;br /&gt;
|Jakob Eg Larsen|| || || || || ||&lt;br /&gt;
|-&lt;br /&gt;
|Jarkko Moilanen|| || || || || ||&lt;br /&gt;
|-&lt;br /&gt;
|Jens Wiik|| || || || || ||&lt;br /&gt;
|-&lt;br /&gt;
|Josh Soref|| || || || || ||&lt;br /&gt;
|-&lt;br /&gt;
|Julian Fourgeaud|| || || || || ||&lt;br /&gt;
|-&lt;br /&gt;
|Maitrey Mishra|| || || || || ||&lt;br /&gt;
|-&lt;br /&gt;
|Michael Hasselmann|| || || || || ||&lt;br /&gt;
|-&lt;br /&gt;
|Michał Sawicz|| || || || || ||&lt;br /&gt;
|-&lt;br /&gt;
|Miia Ranta|| || || || || ||&lt;br /&gt;
|-&lt;br /&gt;
|Mitul Bhat|| || || || || ||&lt;br /&gt;
|-&lt;br /&gt;
|Niels Mayer|| || || || || ||&lt;br /&gt;
|-&lt;br /&gt;
|Randall Arnold|| || || || || ||&lt;br /&gt;
|-&lt;br /&gt;
|Robert Bauer|| || || || || ||&lt;br /&gt;
|-&lt;br /&gt;
|Sivan Greenberg|| || || || || ||&lt;br /&gt;
|-&lt;br /&gt;
|Stephen Gadsby|| || || || || ||&lt;br /&gt;
|-&lt;br /&gt;
|Tatsiana Makava|| || || || || ||&lt;br /&gt;
|-&lt;br /&gt;
|Thomas Perl|| || || || || ||&lt;br /&gt;
|-&lt;br /&gt;
|Tim Samoff|| || || || || ||&lt;br /&gt;
|-&lt;br /&gt;
|Tom Swindell|| || || || || ||&lt;br /&gt;
|-&lt;br /&gt;
|Uladzislau Vasilyeu|| || || || || ||&lt;br /&gt;
|-&lt;br /&gt;
|Zak Borg|| || || || || ||&lt;br /&gt;
&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Non-Conference Lodging ==&lt;br /&gt;
&lt;br /&gt;
If you plan to stay in San Francisco after May 26 and are looking for a roommate to share costs, note it here.  You will be responsible for making your own lodging arrangements, and these nights are not eligible for MeeGo sponsorship.&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
!colspan=&amp;quot;3&amp;quot;|Roommate 1&lt;br /&gt;
!colspan=&amp;quot;3&amp;quot;| Roommate 2&lt;br /&gt;
!rowspan=&amp;quot;2&amp;quot; style=&amp;quot;width:200px&amp;quot;| Considerations&lt;br /&gt;
|-&lt;br /&gt;
!style=&amp;quot;width:200px&amp;quot;|Name &lt;br /&gt;
!style=&amp;quot;width:100px&amp;quot;|Arrive&lt;br /&gt;
!style=&amp;quot;width:100px&amp;quot;|Depart&lt;br /&gt;
!style=&amp;quot;width:200px&amp;quot;|Name&lt;br /&gt;
!style=&amp;quot;width:100px&amp;quot;|Arrive&lt;br /&gt;
!style=&amp;quot;width:100px&amp;quot;|Depart&lt;br /&gt;
|-&lt;br /&gt;
|Your name&lt;br /&gt;
|May 21&lt;br /&gt;
|May 25&lt;br /&gt;
|Your roommate's name&lt;br /&gt;
|May 21&lt;br /&gt;
|May 25&lt;br /&gt;
|Staying in different hotel, etc&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Epage</name></author>	</entry>

	<entry>
		<id>http://wiki.meego.com/Spectacle</id>
		<title>Spectacle</title>
		<link rel="alternate" type="text/html" href="http://wiki.meego.com/Spectacle"/>
				<updated>2011-02-19T20:28:15Z</updated>
		
		<summary type="html">&lt;p&gt;Epage: Fixing some formatting&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Introduction ==&lt;br /&gt;
&lt;br /&gt;
Spectacle is the toolset for packaging maintenance of MeeGo, including the tool&lt;br /&gt;
to generate spec files from metadata file in YAML format, and tools to convert  &lt;br /&gt;
spec files or spec-builder's ini files to YAML format.                          &lt;br /&gt;
&lt;br /&gt;
For spectacle managed packages, all generic packaging information will be stored&lt;br /&gt;
in the YAML file, and it also allows maintaining customizations in the spec file&lt;br /&gt;
directly with special enclosure tags.                                           &lt;br /&gt;
&lt;br /&gt;
Three separated tools will be installed:&lt;br /&gt;
&lt;br /&gt;
* specify: the tool to generate or to update spec file, based on YAML&lt;br /&gt;
* ini2spectacle: the tool to convert spec-builder .ini to YAML and new spec file&lt;br /&gt;
* spec2spectacle: the tool to convert original spec to YAML and new spec file&lt;br /&gt;
&lt;br /&gt;
== Installation ==&lt;br /&gt;
=== Instruction ===&lt;br /&gt;
Several methods available for spectacle installation:&lt;br /&gt;
&lt;br /&gt;
* Install rpm/deb packages for several supported Linux distributions.&lt;br /&gt;
  From [http://repo.meego.com/tools/repos/ MeeGo Tools Repo], repo urls and install packages can be found for:&lt;br /&gt;
    * MeeGo&lt;br /&gt;
    * Fedora 10,11,12&lt;br /&gt;
    * openSUSE(s)    &lt;br /&gt;
    * xUbuntu 8.10/9.04/9.10/10.04&lt;br /&gt;
    * Debian 5.0            &lt;br /&gt;
&lt;br /&gt;
* Build from the latest source and install it by ``make install``&lt;br /&gt;
  The latest code in git tree can be accessed at:&lt;br /&gt;
  [git://gitorious.org/meego-developer-tools/spectacle.git]&lt;br /&gt;
&lt;br /&gt;
'''Note on Ubuntu installation'''&lt;br /&gt;
From [http://bugs.meego.com/show_bug.cgi?id=6734 this] Edit or create ''/etc/apt/sources.list.d/meego.list'' with sudo&lt;br /&gt;
Add&lt;br /&gt;
 deb http://repo.meego.com/MeeGo/tools/repos/ubuntu/9.10/ /&lt;br /&gt;
&lt;br /&gt;
run the following commands&lt;br /&gt;
 sudo apt-get update&lt;br /&gt;
&lt;br /&gt;
=== Requirements ===&lt;br /&gt;
* python 2.x, above 2.5&lt;br /&gt;
* PyYAML, the python module for YAML parsing&lt;br /&gt;
* cheetah, one popular templating system for python&amp;lt;br&amp;gt;&lt;br /&gt;
    In many linux distributions, the needed package might be &amp;quot;python-cheetah&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
== Usage ==&lt;br /&gt;
* specify&lt;br /&gt;
    Usage: specify [options] [yaml-path]&lt;br /&gt;
    Options:&lt;br /&gt;
      --version             show program's version number and exit&lt;br /&gt;
      -h, --help            show this help message and exit&lt;br /&gt;
      -o OUTFILE_PATH, --output=OUTFILE_PATH&lt;br /&gt;
                            Path of output spec file&lt;br /&gt;
      -s, --skip-scm        Skip to check upstream SCM when specified in YAML&lt;br /&gt;
      -N, --not-download    Do not try to download newer source files&lt;br /&gt;
      -n, --non-interactive&lt;br /&gt;
                              Non interactive running, to use default answers&lt;br /&gt;
       --new=NEWYAML         Create a new yaml from template&lt;br /&gt;
       --newsub=NEWSUB       Append a new sub-package to current yaml&lt;br /&gt;
&lt;br /&gt;
* ini2spectacle&lt;br /&gt;
    Usage: ini2spectacle [options] [ini-path]&lt;br /&gt;
    Options:&lt;br /&gt;
      --version             show program's version number and exit&lt;br /&gt;
      -h, --help            show this help message and exit&lt;br /&gt;
      -o OUTFILE_PATH, --output=OUTFILE_PATH&lt;br /&gt;
                            Path of output yaml file&lt;br /&gt;
      -f, --include-files   To store files list in YAML file&lt;br /&gt;
&lt;br /&gt;
* spec2spectacle&lt;br /&gt;
    Usage: spec2spectacle [options] [spec-path]&lt;br /&gt;
    Options:&lt;br /&gt;
      --version             show program's version number and exit&lt;br /&gt;
      -h, --help            show this help message and exit&lt;br /&gt;
      -o OUTFILE_PATH, --output=OUTFILE_PATH&lt;br /&gt;
                            Path of output yaml file&lt;br /&gt;
      -r, --replace-macros  To replace self-defined macros in spec file&lt;br /&gt;
      --no-builder-parsing  Do NOT try to parse build/install scripts&lt;br /&gt;
      -f, --include-files   To store files list in YAML file&lt;br /&gt;
&lt;br /&gt;
== Syntax of spectacle YAML ==&lt;br /&gt;
The syntax of YAML can be refered here: &amp;lt;http://www.yaml.org/spec/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Two example spectacle YAML files are placed to examples/ directory in source&lt;br /&gt;
code:&lt;br /&gt;
&lt;br /&gt;
* xfce4-session.yaml, a real world sample with most of the elements&lt;br /&gt;
* general.yaml, a fake spectacle contains all the available elements with comments&lt;br /&gt;
&lt;br /&gt;
All available directives for spectacle are listed as the following:&lt;br /&gt;
&lt;br /&gt;
* Name: **string**&lt;br /&gt;
&lt;br /&gt;
* Summary: **string**&lt;br /&gt;
&lt;br /&gt;
* Version: **string**, version string&lt;br /&gt;
&lt;br /&gt;
* Release: **string**&lt;br /&gt;
&lt;br /&gt;
* Epoch: **string**, *optional*&lt;br /&gt;
&lt;br /&gt;
* Group: **string**&lt;br /&gt;
&lt;br /&gt;
* License: **string**&lt;br /&gt;
&lt;br /&gt;
* URL: **string**, *optional*&lt;br /&gt;
&lt;br /&gt;
* BuildArch: **string**, *optional*&lt;br /&gt;
&lt;br /&gt;
* ExclusiveArch: **string**, *optional*&lt;br /&gt;
&lt;br /&gt;
* Prefix: **string**, *optional*&lt;br /&gt;
&lt;br /&gt;
* LocaleName: **string**, *optional*&lt;br /&gt;
&lt;br /&gt;
* LocaleOptions: **string**, *optional*&lt;br /&gt;
&lt;br /&gt;
* Description: **text**, *optional*&lt;br /&gt;
&lt;br /&gt;
* Sources: **list** of **string**&lt;br /&gt;
&lt;br /&gt;
* SourcePrefix: **string**, *optional*, specify the prefix path in source package&lt;br /&gt;
&lt;br /&gt;
* ExtraSources: **list** of **string**, *optional*&lt;br /&gt;
&lt;br /&gt;
* SetupOptions: **string**, *optional*, the options string for %setup&lt;br /&gt;
&lt;br /&gt;
* Patches: **list** of **string**, all patches need to be in 'p1' level&lt;br /&gt;
&lt;br /&gt;
* Requires: **list** of **string**&lt;br /&gt;
&lt;br /&gt;
* RequiresPre: **list** of **string**&lt;br /&gt;
&lt;br /&gt;
* RequiresPreUn: **list** of **string**&lt;br /&gt;
&lt;br /&gt;
* RequiresPost: **list** of **string**&lt;br /&gt;
&lt;br /&gt;
* RequiresPostUn: **list** of **string**&lt;br /&gt;
&lt;br /&gt;
* PkgBR: **list** of **string**, packages required in building, or BuildRequires&lt;br /&gt;
&lt;br /&gt;
* PkgConfigBR: **list** of **string**, pkg-config requires in building&lt;br /&gt;
&lt;br /&gt;
* Provides: **list** of **string**&lt;br /&gt;
&lt;br /&gt;
* Conflicts: **list** of **string**&lt;br /&gt;
&lt;br /&gt;
* Obsoletes: **list** of **string**&lt;br /&gt;
&lt;br /&gt;
* BuildConflicts: **list** of **string**&lt;br /&gt;
&lt;br /&gt;
* Configure: **string**, *optional*, valid values: **autogen**, **configure**, **reconfigure**, **none**&amp;lt;br&amp;gt;&lt;br /&gt;
** If not specified, the default value &amp;quot;configure&amp;quot; will be used&lt;br /&gt;
&lt;br /&gt;
* ConfigOptions: **list**, *optional*, extra options for ``Configure``&lt;br /&gt;
&lt;br /&gt;
* Builder: **string**, *optional*, valid values: **make**, **single-make**, **python**, **perl**, **qmake**, **none**&amp;lt;br&amp;gt;&lt;br /&gt;
** If not specified, the deault value &amp;quot;make&amp;quot; will be used. If do not want a automatic builder, please use &amp;quot;none&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
* QMakeOptions: **list**, *optional*, extra options for **qmake** ``Builder``&lt;br /&gt;
&lt;br /&gt;
* Files: **list** of **string**, *optional*, content of ``%files`` for small packages&lt;br /&gt;
&lt;br /&gt;
* FilesInput: **string**, *optional*, extra input source for %files&lt;br /&gt;
&lt;br /&gt;
* NoFiles: **boolean**, *optional*, if to be set as True, means no %files section for this package and it cause no rpm generated&lt;br /&gt;
&lt;br /&gt;
* RunFdupes: **list** of **string**, paths under %{buildroot} to run ``%fdupes`` macro in %install&lt;br /&gt;
&lt;br /&gt;
* RpmLintIgnore: **list**, *optional*, list of skip items for ``rpmlint``&lt;br /&gt;
&lt;br /&gt;
* Check: **boolean**, whether need ``%check`` section in spec&lt;br /&gt;
&lt;br /&gt;
* SupportOtherDistros: **boolean**, whether need to check for other distros (besides MeeGo)&lt;br /&gt;
&lt;br /&gt;
* UseAsNeeded: **boolean**, whether export LD\_AS\_NEEDED=1 environ variable before building&lt;br /&gt;
&lt;br /&gt;
* NoAutoReq: **boolean**, whether add 'AutoReq: 0' to spec&lt;br /&gt;
&lt;br /&gt;
* NoAutoProv: **boolean**, whether add 'AutoProv: 0' to spec&lt;br /&gt;
&lt;br /&gt;
* NoSetup: **boolean**, whether to skip using ``%setup`` in ``%prep``&lt;br /&gt;
&lt;br /&gt;
* NoAutoLocale: **boolean**, whether to use ``%find_lang`` to search locale data when found 'intltool' in PkgBR&lt;br /&gt;
&lt;br /&gt;
* NoDesktop: **boolean**, whether to install the desktop files in package&lt;br /&gt;
&lt;br /&gt;
* UpdateDesktopDB: **boolean**, whether to run 'update-desktop-database' to flush cache when package (un)installation&lt;br /&gt;
&lt;br /&gt;
* AutoDepend: **boolean**, for subpackages only, whether to add Require to main package automatically&lt;br /&gt;
&lt;br /&gt;
* AsWholeName: **boolean**, for subpackages only, whether to use **Name** as the whole package name&lt;br /&gt;
&lt;br /&gt;
* AutoSubPackages: **list** of **string**, mainly for '-devel'&lt;br /&gt;
&lt;br /&gt;
* SubPackages: **list** of **dict**, the **dict** item is the lower level directives for sub packages:&lt;br /&gt;
&lt;br /&gt;
    * Name&lt;br /&gt;
    * Summary&lt;br /&gt;
    * Description, *optional*&lt;br /&gt;
    * Group, *optional*&lt;br /&gt;
    * License, *optional*&lt;br /&gt;
    * Requires, *optional*&lt;br /&gt;
    * etc.&lt;br /&gt;
&lt;br /&gt;
'''CAUTION''': The following cases of value string have special meaning in YAML syntax:&lt;br /&gt;
* string with leading **``%``** charactor&lt;br /&gt;
* string with leading **``*``** charactor&lt;br /&gt;
* string contains **``:``** charactor and one or more spaces/tabs after **``:``**&lt;br /&gt;
* string end with **``:``** charactor&lt;br /&gt;
&lt;br /&gt;
Then these string values need to be quoted by ``'``(single-quote) or ``&amp;quot;``&lt;br /&gt;
(double-quote), and the choice of quote char should not conflict with the value&lt;br /&gt;
string self.&lt;br /&gt;
&lt;br /&gt;
== Namespace support for multi-architecture in several keywords ==&lt;br /&gt;
For the following spectacle YAML keywords:&lt;br /&gt;
&lt;br /&gt;
* Requires&lt;br /&gt;
* PkgBR&lt;br /&gt;
* PkgConfigBR&lt;br /&gt;
* Patches&lt;br /&gt;
* ConfigOptions&lt;br /&gt;
* QMakeOptions&lt;br /&gt;
&lt;br /&gt;
If one of the items need to be architecture specified, we can add arch prefix to&lt;br /&gt;
it. The supported prefix and the corresponding architectures as the followings:&lt;br /&gt;
&lt;br /&gt;
* ``ix86:`` -   x86 platform&lt;br /&gt;
* ``arm:``  -   arm platform&lt;br /&gt;
&lt;br /&gt;
Here's some samples:&lt;br /&gt;
&lt;br /&gt;
    Requires:&lt;br /&gt;
        - arm:pkg-need-in-arm-image&lt;br /&gt;
        - ix86:pkg-need-in-x86-image&lt;br /&gt;
        - normal-pkg&lt;br /&gt;
    ConfigOptions:&lt;br /&gt;
        - arm:--arm-specific-opt&lt;br /&gt;
        - ix86:--ix86-specific-opt&lt;br /&gt;
        - --common-opt&lt;br /&gt;
&lt;br /&gt;
== Customizations in spec ==&lt;br /&gt;
Generated spec files by specify will have many placeholders for customizations,&lt;br /&gt;
such as:&lt;br /&gt;
&lt;br /&gt;
    # &amp;gt;&amp;gt; build pre&lt;br /&gt;
    # &amp;lt;&amp;lt; build pre&lt;br /&gt;
&lt;br /&gt;
You can add any custom code between the markers, next time when you run&lt;br /&gt;
``specify``, the text between the markers will be kept as is, all other sections&lt;br /&gt;
relying on the meta data from the YAML file will be changed depending on the&lt;br /&gt;
values in the YAML file.&lt;br /&gt;
&lt;br /&gt;
The following placeholders in spec can be customized:&lt;br /&gt;
&lt;br /&gt;
* Private Macros, used in this package's spec&lt;br /&gt;
&lt;br /&gt;
    With placeholder:&lt;br /&gt;
        # &amp;gt;&amp;gt; macros&lt;br /&gt;
        # &amp;lt;&amp;lt; macros&lt;br /&gt;
&lt;br /&gt;
* Extra setup scripts in the last of ``%prep``&lt;br /&gt;
&lt;br /&gt;
    With placeholder:&lt;br /&gt;
        # &amp;gt;&amp;gt; setup&lt;br /&gt;
        # &amp;lt;&amp;lt; setup&lt;br /&gt;
&lt;br /&gt;
* Pre-Build, scripts before package building&lt;br /&gt;
&lt;br /&gt;
    With placeholder:&lt;br /&gt;
        # &amp;gt;&amp;gt; build pre&lt;br /&gt;
        # &amp;lt;&amp;lt; build pre&lt;br /&gt;
&lt;br /&gt;
* Post-Build, scripts after package building&lt;br /&gt;
&lt;br /&gt;
    With placeholder:&lt;br /&gt;
        # &amp;gt;&amp;gt; build post&lt;br /&gt;
        # &amp;lt;&amp;lt; build post&lt;br /&gt;
&lt;br /&gt;
* Pre-Install, scripts before package installation&lt;br /&gt;
&lt;br /&gt;
    With placeholder:&lt;br /&gt;
        # &amp;gt;&amp;gt; install pre&lt;br /&gt;
        # &amp;lt;&amp;lt; install pre&lt;br /&gt;
&lt;br /&gt;
* Post-Install, scripts after package installation&lt;br /&gt;
&lt;br /&gt;
    With placeholder:&lt;br /&gt;
        # &amp;gt;&amp;gt; install post&lt;br /&gt;
        # &amp;lt;&amp;lt; install post&lt;br /&gt;
&lt;br /&gt;
* Files, files list in packaged rpm&lt;br /&gt;
&lt;br /&gt;
    With placeholder:&lt;br /&gt;
        # &amp;gt;&amp;gt; files [sub-package]&lt;br /&gt;
        # &amp;lt;&amp;lt; files [sub-package]&lt;br /&gt;
NOTE**: &amp;quot;sub-packge&amp;quot; stands for the name of sub-package, and it is optional. If no sub-package name specified, it means the files of **main** package.&lt;br /&gt;
NOTE**: If the file list is simple enough, you can use YAML *Files* keyword instead to record it.&lt;br /&gt;
&lt;br /&gt;
* Scriptlets for %check section&lt;br /&gt;
&lt;br /&gt;
    With placeholder:&lt;br /&gt;
        # &amp;gt;&amp;gt; check&lt;br /&gt;
        # &amp;lt;&amp;lt; check&lt;br /&gt;
NOTE**: Only if YAML boolean *Check* is specifed as ``yes``, %check with placeholder lines will be generated in .spec.&lt;br /&gt;
&lt;br /&gt;
* Scriptlets for %pre section&lt;br /&gt;
&lt;br /&gt;
    With placeholder:&lt;br /&gt;
        # &amp;gt;&amp;gt; pre&lt;br /&gt;
        # &amp;lt;&amp;lt; pre&lt;br /&gt;
NOTE**: The placeholder lines will NOT generated in spec by default. If you need customized %pre scripts, it need be added manually, and only once.&lt;br /&gt;
&lt;br /&gt;
* Scriptlets for %preun section&lt;br /&gt;
&lt;br /&gt;
    With placeholder:&lt;br /&gt;
        # &amp;gt;&amp;gt; preun&lt;br /&gt;
        # &amp;lt;&amp;lt; preun&lt;br /&gt;
NOTE**: The placeholder lines will NOT generated in spec by default. If you need customized %preun scripts, it need be added manually, and only once.&lt;br /&gt;
&lt;br /&gt;
* Scriptlets for %post section&lt;br /&gt;
&lt;br /&gt;
    With placeholder:&lt;br /&gt;
        # &amp;gt;&amp;gt; post&lt;br /&gt;
        # &amp;lt;&amp;lt; post&lt;br /&gt;
NOTE**: The placeholder lines will NOT generated in spec by default. If you need customized %post scripts, it need be added manually, and only once.&lt;br /&gt;
&lt;br /&gt;
* Scriptlets for %postun section&lt;br /&gt;
&lt;br /&gt;
    With placeholder:&lt;br /&gt;
        # &amp;gt;&amp;gt; postun&lt;br /&gt;
        # &amp;lt;&amp;lt; postun&lt;br /&gt;
NOTE**: The placeholder lines will NOT generated in spec by default. If you need customized %postun scripts, it need be added manually, and only once.&lt;br /&gt;
&lt;br /&gt;
== Internal Implementation ==&lt;br /&gt;
Spectacle uses cheetah templates to generate the spec file, based the metadata&lt;br /&gt;
from YAML file. But the end users need not tackle it.&lt;br /&gt;
&lt;br /&gt;
== Tips ==&lt;br /&gt;
To upgrade the pkg to a newer version, you can just edit the&lt;br /&gt;
version string in spectacle YAML file, and when you run ``specify``, it&lt;br /&gt;
will download the needed files for you automatically.&lt;br /&gt;
&lt;br /&gt;
For packages with locale data, *LocaleName* is needed. If package&lt;br /&gt;
maintainers cannot confirm whether there are locale files, they can just&lt;br /&gt;
do not use *LocaleName* at first, and whenever &amp;quot;unpackaged files&amp;quot; rpm&lt;br /&gt;
packaging errors encountered, it means *LocaleName* should be added. And&lt;br /&gt;
please do not use it for packages without locale data to keep them clean,&lt;br /&gt;
though it will not block the building and packaging.&lt;br /&gt;
&lt;br /&gt;
When using spec2spectacle/ini2spectacle to generate spectacle, the following problems should be checked:&lt;br /&gt;
* Remove duplicate Requires(include pre/post/preun/postun) which were added automatically based on the analysis of file list.&lt;br /&gt;
* Review and clean up the reserved scripts in &amp;quot;build|install pre|post&amp;quot; sections in new generated spec file.&lt;br /&gt;
&lt;br /&gt;
User can use &amp;quot;series.conf&amp;quot; file to specify multiple patches under package directory. The &amp;quot;series.conf&amp;quot; can be used by ``quilt`` and the content can be updated to spec automatically when running ``specify``.&lt;/div&gt;</summary>
		<author><name>Epage</name></author>	</entry>

	<entry>
		<id>http://wiki.meego.com/Build_Infrastructure/Packagers_Developers/CLI_Part_1</id>
		<title>Build Infrastructure/Packagers Developers/CLI Part 1</title>
		<link rel="alternate" type="text/html" href="http://wiki.meego.com/Build_Infrastructure/Packagers_Developers/CLI_Part_1"/>
				<updated>2011-02-19T00:10:18Z</updated>
		
		<summary type="html">&lt;p&gt;Epage: Fixing some formatting&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= How to use the MeeGo / OBS Command Line Interface =&lt;br /&gt;
&lt;br /&gt;
Once you've successfully used the the MeeGo / OBS Web Interface, we'll show you how you can check out packages from the Meego project for local modification and building.&lt;br /&gt;
&lt;br /&gt;
== OSC Tool Install ==&lt;br /&gt;
&lt;br /&gt;
You will need to install some tools in order to access and build packages. This includes the command line client 'osc', and packages that it relies on.&lt;br /&gt;
&lt;br /&gt;
The easiest method is to use your distribution's package manager to pull the osc package and its requirements. Package repositories for many distributions are available [http://software.opensuse.org/download/openSUSE:/Tools/ here].&lt;br /&gt;
&lt;br /&gt;
 For example, with Fedora 12:&lt;br /&gt;
  # cd /etc/yum.repos.d&lt;br /&gt;
  # wget http://download.opensuse.org/repositories/openSUSE:/Tools/Fedora_12/openSUSE:Tools.repo&lt;br /&gt;
  # wget http://download.opensuse.org/repositories/openSUSE:/Tools:/MeeGo/Fedora_12/openSUSE:Tools:MeeGo.repo&lt;br /&gt;
  # yum install osc&lt;br /&gt;
&lt;br /&gt;
The upstream [http://en.opensuse.org/openSUSE:Build_Service_Tutorial OBS Tutorial] describes more generalities about using the tools.&lt;br /&gt;
&lt;br /&gt;
== Running OSC the first time ==&lt;br /&gt;
&lt;br /&gt;
Prepare to run OSC.&lt;br /&gt;
&lt;br /&gt;
 Tip: To use a different source of packages and build server access,&lt;br /&gt;
 you can easily create a wrapper script to do this for you:&lt;br /&gt;
  $ cat &amp;gt; ~/bin/losc&lt;br /&gt;
  #!/bin/bash&lt;br /&gt;
  exec osc -Ahttps://api.meego.com &amp;quot;$@&amp;quot;&lt;br /&gt;
  $ chmod +x ~/bin/losc &lt;br /&gt;
&lt;br /&gt;
When you're using pub meego osc you should use:&lt;br /&gt;
  exec osc -Ahttps://api'''.pub'''.meego.com &amp;quot;$@&amp;quot;&lt;br /&gt;
instead of&lt;br /&gt;
  exec osc -Ahttps://api.meego.com &amp;quot;$@&amp;quot;&lt;br /&gt;
&lt;br /&gt;
The first time, OSC will ask you some questions:&lt;br /&gt;
&lt;br /&gt;
 $ losc ls&lt;br /&gt;
  &lt;br /&gt;
 Your user account / password are not configured yet.&lt;br /&gt;
 You will be asked for them below, and they will be stored in&lt;br /&gt;
 /home/james/.oscrc for future use.&lt;br /&gt;
 &lt;br /&gt;
 Creating osc configuration file /home/james/.oscrc ...&lt;br /&gt;
 Username: &amp;lt;login&amp;gt;&lt;br /&gt;
 Password: &amp;lt;password&amp;gt;&lt;br /&gt;
 done&lt;br /&gt;
 *** certificate verify failed at depth 0&lt;br /&gt;
 Subject:  /O=build.linux.com/OU=Domain Control Validated/CN=build.linux.com&lt;br /&gt;
 Issuer:   /C=US/ST=Arizona/L=Scottsdale/O=GoDaddy.com, Inc./OU=http://certificates.godaddy.com/repository/CN=Go Daddy Secure Certification Authority/serialNumber=07969287&lt;br /&gt;
 Valid:  May 14 21:46:46 2010 GMT - Apr 26 21:10:19 2012 GMT&lt;br /&gt;
 Fingerprint(MD5):   C13D91AB12008D2F9FD901A8FADDFC75&lt;br /&gt;
 Fingerprint(SHA1):  144018EC455C20F395F18879DFD75E5B500B84F0&lt;br /&gt;
 Reason: unable to get local issuer certificate&lt;br /&gt;
 Reason: certificate not trusted&lt;br /&gt;
 Reason: unable to verify the first certificate&lt;br /&gt;
 &lt;br /&gt;
 The server certificate failed verification&lt;br /&gt;
 &lt;br /&gt;
 Would you like to&lt;br /&gt;
 0 - quit (default)&lt;br /&gt;
 1 - continue anyways&lt;br /&gt;
 2 - trust the server certificate permanently&lt;br /&gt;
 9 - review the server certificate&lt;br /&gt;
 &lt;br /&gt;
 Enter choice [0129]: 2&lt;br /&gt;
&lt;br /&gt;
At this point the configuration is complete and osc completes the 'ls' command, listing available build targets. You should see your home project listed, ex: home:&amp;lt;login&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Tip: Configuring OSC using $HOME/.oscrc ==&lt;br /&gt;
&lt;br /&gt;
OSC may be customized using the file $HOME/.oscrc. Some hints:&lt;br /&gt;
&lt;br /&gt;
To make it easier to run needed things as root, configure for sudo&lt;br /&gt;
&lt;br /&gt;
 In $HOME/.oscrc set:&lt;br /&gt;
  su-wrapper = sudo&lt;br /&gt;
 And then run 'visudo' and add the line:&lt;br /&gt;
  &amp;lt;yourlogin&amp;gt; ALL=NOPASSWD: /usr/bin/build&lt;br /&gt;
&lt;br /&gt;
If you tend to build for several different architectures/projects, it can be helpful to keep each build-root seperate, in $HOME/.oscrc, set:&lt;br /&gt;
&lt;br /&gt;
 build-root = /var/tmp/build-root/%(project)s-%(arch)s-%(package)s&lt;br /&gt;
&lt;br /&gt;
== Summary and next steps ==&lt;br /&gt;
&lt;br /&gt;
This guide gave an introduction on how to set up and initialize the 'osc' tool.&lt;br /&gt;
Next you will check out your project from the server and build it. Click [[Build_Infrastructure/Packagers_Developers/CLI_Part_2|here]] to open the 2nd part.&lt;br /&gt;
&lt;br /&gt;
[[Category:Build Infrastructure]]&lt;/div&gt;</summary>
		<author><name>Epage</name></author>	</entry>

	<entry>
		<id>http://wiki.meego.com/Python/Using_the_OBS_with_distutil_packages</id>
		<title>Python/Using the OBS with distutil packages</title>
		<link rel="alternate" type="text/html" href="http://wiki.meego.com/Python/Using_the_OBS_with_distutil_packages"/>
				<updated>2010-12-24T22:04:15Z</updated>
		
		<summary type="html">&lt;p&gt;Epage: Very very rough draft of packaging python documentation&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;See the [http://docs.python.org/distutils/index.html python docs] to learn more about distutils.&lt;br /&gt;
&lt;br /&gt;
== Creating a Spectacle file for a python package ==&lt;br /&gt;
&lt;br /&gt;
Check the [[Packaging/Guidelines|packaging guidelines]] for&lt;br /&gt;
* [[Packaging/Guidelines#Group_Tag|list of groups]]&lt;br /&gt;
* [[Packaging/Guidelines#Version|version format]]&lt;br /&gt;
* [[Packaging/Guidelines#Desktop_files|.desktop file]]&lt;br /&gt;
* [[Packaging/Guidelines#Changelogs|changelogs]]&lt;br /&gt;
&lt;br /&gt;
See [https://build.opensuse.org/package/view_file?file=leo.yaml&amp;amp;package=leo&amp;amp;project=home:vivainio:leo LEO's spectacle file] as an example.&lt;br /&gt;
&lt;br /&gt;
Learn more about [[Spectacle]]&lt;br /&gt;
&lt;br /&gt;
== From Spectacle to Spec ==&lt;br /&gt;
&lt;br /&gt;
Learn more about [[Spectacle]]&lt;br /&gt;
&lt;br /&gt;
== Uploading to OBS ==&lt;br /&gt;
&lt;br /&gt;
[[Build Infrastructure]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Python]]&lt;/div&gt;</summary>
		<author><name>Epage</name></author>	</entry>

	<entry>
		<id>http://wiki.meego.com/Python</id>
		<title>Python</title>
		<link rel="alternate" type="text/html" href="http://wiki.meego.com/Python"/>
				<updated>2010-12-24T21:52:25Z</updated>
		
		<summary type="html">&lt;p&gt;Epage: Starting a very rough draft of a python packaging guide.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= MeeGo Python =&lt;br /&gt;
&lt;br /&gt;
This is the page of the MeeGo Python project. Things are being set up, so check back in a few days.&lt;br /&gt;
&lt;br /&gt;
== Building PySide from Git on MeeGo Netbook ==&lt;br /&gt;
&lt;br /&gt;
If you have got a MeeGo Netbook and want to play around with PySide and QML, you can use the scripts from http://gitorious.org/pyside-buildscripts.&lt;br /&gt;
&lt;br /&gt;
Install the dependencies before trying to build:&lt;br /&gt;
&lt;br /&gt;
 sudo ./dependencies.meego.sh&lt;br /&gt;
&lt;br /&gt;
See the '''README''' file for more information.&lt;br /&gt;
&lt;br /&gt;
== Packaging ==&lt;br /&gt;
&lt;br /&gt;
[[Using the OBS with distutil packages]]&lt;br /&gt;
&lt;br /&gt;
== IRC ==&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;code&amp;gt;/join #meego-python&amp;lt;/code&amp;gt; on &amp;lt;code&amp;gt;irc.freenode.net&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Mailing List ==&lt;br /&gt;
&lt;br /&gt;
* E-Mail: meego-python@lists.meego.com&lt;br /&gt;
* [http://lists.meego.com/listinfo/meego-python MeeGo-python Info Page]&lt;br /&gt;
&lt;br /&gt;
== Upstream Projects ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.pyside.org/ PySide] (Qt bindings, preferred)&lt;br /&gt;
* [http://www.pygtk.org/ PyGTK] (GTK+ bindings, for Netbook UX)&lt;br /&gt;
&lt;br /&gt;
== Links ==&lt;br /&gt;
&lt;br /&gt;
* [[MeeGo Conference 2010/Python BoF|Python BoF @ MeeGo Conference 2010]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Python]]&lt;br /&gt;
[[Category:PySide]]&lt;/div&gt;</summary>
		<author><name>Epage</name></author>	</entry>

	<entry>
		<id>http://wiki.meego.com/Spectacle</id>
		<title>Spectacle</title>
		<link rel="alternate" type="text/html" href="http://wiki.meego.com/Spectacle"/>
				<updated>2010-12-24T20:04:21Z</updated>
		
		<summary type="html">&lt;p&gt;Epage: Fixing some formatting&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Introduction ==&lt;br /&gt;
&lt;br /&gt;
Spectacle is the toolset for packaging maintenance of MeeGo, including the tool&lt;br /&gt;
to generate spec files from metadata file in YAML format, and tools to convert  &lt;br /&gt;
spec files or spec-builder's ini files to YAML format.                          &lt;br /&gt;
&lt;br /&gt;
For spectacle managed packages, all generic packaging information will be stored&lt;br /&gt;
in the YAML file, and it also allows maintaining customizations in the spec file&lt;br /&gt;
directly with special enclosure tags.                                           &lt;br /&gt;
&lt;br /&gt;
Three separated tools will be installed:&lt;br /&gt;
&lt;br /&gt;
* specify: the tool to generate or to update spec file, based on YAML&lt;br /&gt;
* ini2spectacle: the tool to convert spec-builder .ini to YAML and new spec file&lt;br /&gt;
* spec2spectacle: the tool to convert original spec to YAML and new spec file&lt;br /&gt;
&lt;br /&gt;
== Installation ==&lt;br /&gt;
=== Instruction ===&lt;br /&gt;
Several methods available for spectacle installation:&lt;br /&gt;
&lt;br /&gt;
* Install rpm/deb packages for several supported Linux distributions.&lt;br /&gt;
  From [http://repo.meego.com/tools/repos/ MeeGo Tools Repo], repo urls and install packages can be found for:&lt;br /&gt;
    * MeeGo&lt;br /&gt;
    * Fedora 10,11,12&lt;br /&gt;
    * openSUSE(s)    &lt;br /&gt;
    * xUbuntu 8.10/9.04/9.10/10.04&lt;br /&gt;
    * Debian 5.0            &lt;br /&gt;
&lt;br /&gt;
* Build from the latest source and install it by ``make install``&lt;br /&gt;
  The latest code in git tree can be accessed at:&lt;br /&gt;
  [git://gitorious.org/meego-developer-tools/spectacle.git]&lt;br /&gt;
&lt;br /&gt;
'''Note on Ubuntu installation'''&lt;br /&gt;
From [http://bugs.meego.com/show_bug.cgi?id=6734 this] Edit or create ''/etc/apt/sources.list.d/meego.list'' with sudo&lt;br /&gt;
Add&lt;br /&gt;
 deb http://repo.meego.com/MeeGo/tools/repos/ubuntu/9.10/ /&lt;br /&gt;
&lt;br /&gt;
run the following commands&lt;br /&gt;
 sudo apt-get update&lt;br /&gt;
&lt;br /&gt;
=== Requirements ===&lt;br /&gt;
* python 2.x, above 2.5&lt;br /&gt;
* PyYAML, the python module for YAML parsing&lt;br /&gt;
* cheetah, one popular templating system for python&amp;lt;br&amp;gt;&lt;br /&gt;
    In many linux distributions, the needed package might be &amp;quot;python-cheetah&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
== Usage ==&lt;br /&gt;
* specify&lt;br /&gt;
    Usage: specify [options] [yaml-path]&lt;br /&gt;
    Options:&lt;br /&gt;
      --version             show program's version number and exit&lt;br /&gt;
      -h, --help            show this help message and exit&lt;br /&gt;
      -o OUTFILE_PATH, --output=OUTFILE_PATH&lt;br /&gt;
                            Path of output spec file&lt;br /&gt;
      -s, --skip-scm        Skip to check upstream SCM when specified in YAML&lt;br /&gt;
      -N, --not-download    Do not try to download newer source files&lt;br /&gt;
      -n, --non-interactive&lt;br /&gt;
                              Non interactive running, to use default answers&lt;br /&gt;
       --new=NEWYAML         Create a new yaml from template&lt;br /&gt;
       --newsub=NEWSUB       Append a new sub-package to current yaml&lt;br /&gt;
&lt;br /&gt;
* ini2spectacle&lt;br /&gt;
    Usage: ini2spectacle [options] [ini-path]&lt;br /&gt;
    Options:&lt;br /&gt;
      --version             show program's version number and exit&lt;br /&gt;
      -h, --help            show this help message and exit&lt;br /&gt;
      -o OUTFILE_PATH, --output=OUTFILE_PATH&lt;br /&gt;
                            Path of output yaml file&lt;br /&gt;
      -f, --include-files   To store files list in YAML file&lt;br /&gt;
&lt;br /&gt;
* spec2spectacle&lt;br /&gt;
    Usage: spec2spectacle [options] [spec-path]&lt;br /&gt;
    Options:&lt;br /&gt;
      --version             show program's version number and exit&lt;br /&gt;
      -h, --help            show this help message and exit&lt;br /&gt;
      -o OUTFILE_PATH, --output=OUTFILE_PATH&lt;br /&gt;
                            Path of output yaml file&lt;br /&gt;
      -r, --replace-macros  To replace self-defined macros in spec file&lt;br /&gt;
      --no-builder-parsing  Do NOT try to parse build/install scripts&lt;br /&gt;
      -f, --include-files   To store files list in YAML file&lt;br /&gt;
&lt;br /&gt;
== Syntax of spectacle YAML ==&lt;br /&gt;
The syntax of YAML can be refered here: &amp;lt;http://www.yaml.org/spec/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Two example spectacle YAML files are placed to examples/ directory in source&lt;br /&gt;
code:&lt;br /&gt;
&lt;br /&gt;
* xfce4-session.yaml, a real world sample with most of the elements&lt;br /&gt;
* general.yaml, a fake spectacle contains all the available elements with comments&lt;br /&gt;
&lt;br /&gt;
All available directives for spectacle are listed as the following:&lt;br /&gt;
&lt;br /&gt;
* Name: **string**&lt;br /&gt;
&lt;br /&gt;
* Summary: **string**&lt;br /&gt;
&lt;br /&gt;
* Version: **string**, version string&lt;br /&gt;
&lt;br /&gt;
* Release: **string**&lt;br /&gt;
&lt;br /&gt;
* Epoch: **string**, *optional*&lt;br /&gt;
&lt;br /&gt;
* Group: **string**&lt;br /&gt;
&lt;br /&gt;
* License: **string**&lt;br /&gt;
&lt;br /&gt;
* URL: **string**, *optional*&lt;br /&gt;
&lt;br /&gt;
* BuildArch: **string**, *optional*&lt;br /&gt;
&lt;br /&gt;
* ExclusiveArch: **string**, *optional*&lt;br /&gt;
&lt;br /&gt;
* Prefix: **string**, *optional*&lt;br /&gt;
&lt;br /&gt;
* LocaleName: **string**, *optional*&lt;br /&gt;
&lt;br /&gt;
* LocaleOptions: **string**, *optional*&lt;br /&gt;
&lt;br /&gt;
* Description: **text**, *optional*&lt;br /&gt;
&lt;br /&gt;
* Sources: **list** of **string**&lt;br /&gt;
&lt;br /&gt;
* SourcePrefix: **string**, *optional*, specify the prefix path in source package&lt;br /&gt;
&lt;br /&gt;
* ExtraSources: **list** of **string**, *optional*&lt;br /&gt;
&lt;br /&gt;
* SetupOptions: **string**, *optional*, the options string for %setup&lt;br /&gt;
&lt;br /&gt;
* Patches: **list** of **string**, all patches need to be in 'p1' level&lt;br /&gt;
&lt;br /&gt;
* Requires: **list** of **string**&lt;br /&gt;
&lt;br /&gt;
* RequiresPre: **list** of **string**&lt;br /&gt;
&lt;br /&gt;
* RequiresPreUn: **list** of **string**&lt;br /&gt;
&lt;br /&gt;
* RequiresPost: **list** of **string**&lt;br /&gt;
&lt;br /&gt;
* RequiresPostUn: **list** of **string**&lt;br /&gt;
&lt;br /&gt;
* PkgBR: **list** of **string**, packages required in building, or BuildRequires&lt;br /&gt;
&lt;br /&gt;
* PkgConfigBR: **list** of **string**, pkg-config requires in building&lt;br /&gt;
&lt;br /&gt;
* Provides: **list** of **string**&lt;br /&gt;
&lt;br /&gt;
* Conflicts: **list** of **string**&lt;br /&gt;
&lt;br /&gt;
* Obsoletes: **list** of **string**&lt;br /&gt;
&lt;br /&gt;
* BuildConflicts: **list** of **string**&lt;br /&gt;
&lt;br /&gt;
* Configure: **string**, *optional*, valid values: **autogen**, **configure**, **reconfigure**, **none**&amp;lt;br&amp;gt;&lt;br /&gt;
** If not specified, the default value &amp;quot;configure&amp;quot; will be used&lt;br /&gt;
&lt;br /&gt;
* ConfigOptions: **list**, *optional*, extra options for ``Configure``&lt;br /&gt;
&lt;br /&gt;
* Builder: **string**, *optional*, valid values: **make**, **single-make**, **python**, **perl**, **qmake**, **none**&amp;lt;br&amp;gt;&lt;br /&gt;
** If not specified, the deault value &amp;quot;make&amp;quot; will be used. If do not want a automatic builder, please use &amp;quot;none&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
* QMakeOptions: **list**, *optional*, extra options for **qmake** ``Builder``&lt;br /&gt;
&lt;br /&gt;
* Files: **list** of **string**, *optional*, content of ``%files`` for small packages&lt;br /&gt;
&lt;br /&gt;
* FilesInput: **string**, *optional*, extra input source for %files&lt;br /&gt;
&lt;br /&gt;
* NoFiles: **boolean**, *optional*, if to be set as True, means no %files section for this package and it cause no rpm generated&lt;br /&gt;
&lt;br /&gt;
* RunFdupes: **list** of **string**, paths under %{buildroot} to run ``%fdupes`` macro in %install&lt;br /&gt;
&lt;br /&gt;
* RpmLintIgnore: **list**, *optional*, list of skip items for ``rpmlint``&lt;br /&gt;
&lt;br /&gt;
* Check: **boolean**, whether need ``%check`` section in spec&lt;br /&gt;
&lt;br /&gt;
* SupportOtherDistros: **boolean**, whether need to check for other distros (besides MeeGo)&lt;br /&gt;
&lt;br /&gt;
* UseAsNeeded: **boolean**, whether export LD\_AS\_NEEDED=1 environ variable before building&lt;br /&gt;
&lt;br /&gt;
* NoAutoReq: **boolean**, whether add 'AutoReq: 0' to spec&lt;br /&gt;
&lt;br /&gt;
* NoAutoProv: **boolean**, whether add 'AutoProv: 0' to spec&lt;br /&gt;
&lt;br /&gt;
* NoSetup: **boolean**, whether to skip using ``%setup`` in ``%prep``&lt;br /&gt;
&lt;br /&gt;
* NoAutoLocale: **boolean**, whether to use ``%find_lang`` to search locale data when found 'intltool' in PkgBR&lt;br /&gt;
&lt;br /&gt;
* NoDesktop: **boolean**, whether to install the desktop files in package&lt;br /&gt;
&lt;br /&gt;
* UpdateDesktopDB: **boolean**, whether to run 'update-desktop-database' to flush cache when package (un)installation&lt;br /&gt;
&lt;br /&gt;
* AutoDepend: **boolean**, for subpackages only, whether to add Require to main package automatically&lt;br /&gt;
&lt;br /&gt;
* AsWholeName: **boolean**, for subpackages only, whether to use **Name** as the whole package name&lt;br /&gt;
&lt;br /&gt;
* AutoSubPackages: **list** of **string**, mainly for '-devel'&lt;br /&gt;
&lt;br /&gt;
* SubPackages: **list** of **dict**, the **dict** item is the lower level directives for sub packages:&lt;br /&gt;
&lt;br /&gt;
    * Name&lt;br /&gt;
    * Summary&lt;br /&gt;
    * Description, *optional*&lt;br /&gt;
    * Group, *optional*&lt;br /&gt;
    * License, *optional*&lt;br /&gt;
    * Requires, *optional*&lt;br /&gt;
    * etc.&lt;br /&gt;
&lt;br /&gt;
'''CAUTION''': The following cases of value string have special meaning in YAML syntax:&lt;br /&gt;
* string with leading **``%``** charactor&lt;br /&gt;
* string with leading **``*``** charactor&lt;br /&gt;
* string contains **``:``** charactor and one or more spaces/tabs after **``:``**&lt;br /&gt;
* string end with **``:``** charactor&lt;br /&gt;
&lt;br /&gt;
Then these string values need to be quoted by ``'``(single-quote) or ``&amp;quot;``&lt;br /&gt;
(double-quote), and the choice of quote char should not conflict with the value&lt;br /&gt;
string self.&lt;br /&gt;
&lt;br /&gt;
== Namespace support for multi-architecture in several keywords ==&lt;br /&gt;
For the following spectacle YAML keywords:&lt;br /&gt;
&lt;br /&gt;
* Requires&lt;br /&gt;
* PkgBR&lt;br /&gt;
* PkgConfigBR&lt;br /&gt;
* Patches&lt;br /&gt;
* ConfigOptions&lt;br /&gt;
* QMakeOptions&lt;br /&gt;
&lt;br /&gt;
If one of the items need to be architecture specified, we can add arch prefix to&lt;br /&gt;
it. The supported prefix and the corresponding architectures as the followings:&lt;br /&gt;
&lt;br /&gt;
* ``ix86:`` -   x86 platform&lt;br /&gt;
* ``arm:``  -   arm platform&lt;br /&gt;
&lt;br /&gt;
Here's some samples:&lt;br /&gt;
&lt;br /&gt;
    Requires:&lt;br /&gt;
        - arm:pkg-need-in-arm-image&lt;br /&gt;
        - ix86:pkg-need-in-x86-image&lt;br /&gt;
        - normal-pkg&lt;br /&gt;
    ConfigOptions:&lt;br /&gt;
        - arm:--arm-specific-opt&lt;br /&gt;
        - ix86:--ix86-specific-opt&lt;br /&gt;
        - --common-opt&lt;br /&gt;
&lt;br /&gt;
== Customizations in spec ==&lt;br /&gt;
Generated spec files by specify will have many placeholders for customizations,&lt;br /&gt;
such as:&lt;br /&gt;
&lt;br /&gt;
    # &amp;gt;&amp;gt; build pre&lt;br /&gt;
    # &amp;lt;&amp;lt; build pre&lt;br /&gt;
&lt;br /&gt;
You can add any custom code between the markers, next time when you run&lt;br /&gt;
``specify``, the text between the markers will be kept as is, all other sections&lt;br /&gt;
relying on the meta data from the YAML file will be changed depending on the&lt;br /&gt;
values in the YAML file.&lt;br /&gt;
&lt;br /&gt;
The following placeholders in spec can be customized:&lt;br /&gt;
&lt;br /&gt;
* Private Macros, used in this package's spec&lt;br /&gt;
&lt;br /&gt;
    With placeholder:&lt;br /&gt;
        # &amp;gt;&amp;gt; macros&lt;br /&gt;
        # &amp;lt;&amp;lt; macros&lt;br /&gt;
&lt;br /&gt;
* Extra setup scripts in the last of ``%prep``&lt;br /&gt;
&lt;br /&gt;
    With placeholder:&lt;br /&gt;
        # &amp;gt;&amp;gt; setup&lt;br /&gt;
        # &amp;lt;&amp;lt; setup&lt;br /&gt;
&lt;br /&gt;
* Pre-Build, scripts before package building&lt;br /&gt;
&lt;br /&gt;
    With placeholder:&lt;br /&gt;
        # &amp;gt;&amp;gt; build pre&lt;br /&gt;
        # &amp;lt;&amp;lt; build pre&lt;br /&gt;
&lt;br /&gt;
* Post-Build, scripts after package building&lt;br /&gt;
&lt;br /&gt;
    With placeholder:&lt;br /&gt;
        # &amp;gt;&amp;gt; build post&lt;br /&gt;
        # &amp;lt;&amp;lt; build post&lt;br /&gt;
&lt;br /&gt;
* Pre-Install, scripts before package installation&lt;br /&gt;
&lt;br /&gt;
    With placeholder:&lt;br /&gt;
        # &amp;gt;&amp;gt; install pre&lt;br /&gt;
        # &amp;lt;&amp;lt; install pre&lt;br /&gt;
&lt;br /&gt;
* Post-Install, scripts after package installation&lt;br /&gt;
&lt;br /&gt;
    With placeholder:&lt;br /&gt;
        # &amp;gt;&amp;gt; install post&lt;br /&gt;
        # &amp;lt;&amp;lt; install post&lt;br /&gt;
&lt;br /&gt;
* Files, files list in packaged rpm&lt;br /&gt;
&lt;br /&gt;
    With placeholder:&lt;br /&gt;
        # &amp;gt;&amp;gt; files [sub-package]&lt;br /&gt;
        # &amp;lt;&amp;lt; files [sub-package]&lt;br /&gt;
NOTE**: &amp;quot;sub-packge&amp;quot; stands for the name of sub-package, and it is optional. If no sub-package name specified, it means the files of **main** package.&lt;br /&gt;
NOTE**: If the file list is simple enough, you can use YAML *Files* keyword instead to record it.&lt;br /&gt;
&lt;br /&gt;
* Scriptlets for %check section&lt;br /&gt;
&lt;br /&gt;
    With placeholder:&lt;br /&gt;
        # &amp;gt;&amp;gt; check&lt;br /&gt;
        # &amp;lt;&amp;lt; check&lt;br /&gt;
NOTE**: Only if YAML boolean *Check* is specifed as ``yes``, %check with placeholder lines will be generated in .spec.&lt;br /&gt;
&lt;br /&gt;
* Scriptlets for %pre section&lt;br /&gt;
&lt;br /&gt;
    With placeholder:&lt;br /&gt;
        # &amp;gt;&amp;gt; pre&lt;br /&gt;
        # &amp;lt;&amp;lt; pre&lt;br /&gt;
NOTE**: The placeholder lines will NOT generated in spec by default. If you need customized %pre scripts, it need be added manually, and only once.&lt;br /&gt;
&lt;br /&gt;
* Scriptlets for %preun section&lt;br /&gt;
&lt;br /&gt;
    With placeholder:&lt;br /&gt;
        # &amp;gt;&amp;gt; preun&lt;br /&gt;
        # &amp;lt;&amp;lt; preun&lt;br /&gt;
NOTE**: The placeholder lines will NOT generated in spec by default. If you need customized %preun scripts, it need be added manually, and only once.&lt;br /&gt;
&lt;br /&gt;
* Scriptlets for %post section&lt;br /&gt;
&lt;br /&gt;
    With placeholder:&lt;br /&gt;
        # &amp;gt;&amp;gt; post&lt;br /&gt;
        # &amp;lt;&amp;lt; post&lt;br /&gt;
NOTE**: The placeholder lines will NOT generated in spec by default. If you need customized %post scripts, it need be added manually, and only once.&lt;br /&gt;
&lt;br /&gt;
* Scriptlets for %postun section&lt;br /&gt;
&lt;br /&gt;
    With placeholder:&lt;br /&gt;
        # &amp;gt;&amp;gt; postun&lt;br /&gt;
        # &amp;lt;&amp;lt; postun&lt;br /&gt;
NOTE**: The placeholder lines will NOT generated in spec by default. If you need customized %postun scripts, it need be added manually, and only once.&lt;br /&gt;
&lt;br /&gt;
== Internal Implementation ==&lt;br /&gt;
Spectacle uses cheetah templates to generate the spec file, based the metadata&lt;br /&gt;
from YAML file. But the end users need not tackle it.&lt;br /&gt;
&lt;br /&gt;
== Tips ==&lt;br /&gt;
* If to upgrade the pkg to a newer version, you can just edit the&lt;br /&gt;
version string in spectacle YAML file, and when you run ``specify``, it&lt;br /&gt;
will download the needed files for you automatically.&lt;br /&gt;
&lt;br /&gt;
* For packages with locale data, *LocaleName* is needed. If package&lt;br /&gt;
maintainers cannot confirm whether there are locale files, they can just&lt;br /&gt;
do not use *LocaleName* at first, and whenever &amp;quot;unpackaged files&amp;quot; rpm&lt;br /&gt;
packaging errors encountered, it means *LocaleName* should be added. And&lt;br /&gt;
please do not use it for packages without locale data to keep them clean,&lt;br /&gt;
though it will not block the building and packaging.&lt;br /&gt;
&lt;br /&gt;
* When using spec2spectacle/ini2spectacle to generate spectacle, the following problems should be checked:&lt;br /&gt;
&lt;br /&gt;
     * Remove duplicate Requires(include pre/post/preun/postun) which were added automatically based on the analysis of file list.&lt;br /&gt;
     * Review and clean up the reserved scripts in &amp;quot;build|install pre|post&amp;quot; sections in new generated spec file.&lt;br /&gt;
&lt;br /&gt;
* User can use &amp;quot;series.conf&amp;quot; file to specify multiple patches under package directory. The &amp;quot;series.conf&amp;quot; can be used by ``quilt`` and the content can be updated to spec automatically when running ``specify``.&lt;/div&gt;</summary>
		<author><name>Epage</name></author>	</entry>

	<entry>
		<id>http://wiki.meego.com/Devices/Ideapad</id>
		<title>Devices/Ideapad</title>
		<link rel="alternate" type="text/html" href="http://wiki.meego.com/Devices/Ideapad"/>
				<updated>2010-12-07T15:21:21Z</updated>
		
		<summary type="html">&lt;p&gt;Epage: /* Using the Ideapad with MeeGo */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The Lenovo S10-3t IdeaPads were given to attendees of the [[MeeGo Conference 2010]] (Thanks Intel and Nokia!). This page aims to collect issues, solutions and hacks by the MeeGo Community for this device. It is mostly collected from the [http://forum.meego.com/showthread.php?t=1995 Lenovo S10-3t improvements] thread on MeeGo Forums.&lt;br /&gt;
&lt;br /&gt;
== Major issues ==&lt;br /&gt;
&lt;br /&gt;
It seems that some users get their wifi (and bluetooth) disabled and/or the battery status. There is some talk going on these two links, with work around that may or may not work. For the atheros folks it worked but the ones with broadcom it didn't.&lt;br /&gt;
&lt;br /&gt;
* Problem: BROADCOM based wifi: No way to enable WiFi after switching it off using the switch&lt;br /&gt;
** Workaround: http://www.proli.net/2010/11/19/hidden-wifi-switches/&lt;br /&gt;
** Workaround: boot, BIOS setup, Load factory defaults, Save and exit&lt;br /&gt;
** Solution: Waiting for some help from Intel or BIOS updates from Lenovo.&lt;br /&gt;
* Problem: ATHEROS workaround: No way to enable WiFi after switching it off using the switch&lt;br /&gt;
** Workaround: http://forum.meego.com/showthread.php?p=13321&lt;br /&gt;
** Solution: Waiting for some help from Intel or BIOS updates from Lenovo.&lt;br /&gt;
* Problem: [http://bugs.meego.com/show_bug.cgi?id=3276 Resume from suspend to RAM does not work every time]&lt;br /&gt;
** Workaround:&lt;br /&gt;
** Solution:&lt;br /&gt;
&lt;br /&gt;
== Minor issues ==&lt;br /&gt;
* Headphone jack doesn't work [http://bugs.meego.com/show_bug.cgi?id=10289 Bug report]&lt;br /&gt;
** Workaround: Add &amp;lt;code&amp;gt;options snd-hda-intel model=&amp;quot;olpc-xo-1_5&amp;quot;&amp;lt;/code&amp;gt; to &amp;lt;code&amp;gt;/etc/modprobe.d/alsa-base.conf&amp;lt;/code&amp;gt; and reboot&lt;br /&gt;
** Solution: none yet&lt;br /&gt;
&lt;br /&gt;
== Using the Ideapad with MeeGo ==&lt;br /&gt;
&lt;br /&gt;
[[MeeGo Desktop/Changing Desktops]]&lt;br /&gt;
&lt;br /&gt;
=== Finger scrolling with Chromium ===&lt;br /&gt;
&lt;br /&gt;
The [https://chrome.google.com/extensions/detail/ncegfehgjifmmpnjaihnjpbpddjjebme ChromeTouch] extension enables kinetic scrolling with the browser and the touch screen.&lt;br /&gt;
&lt;br /&gt;
=== Finger scrolling with Firefox ===&lt;br /&gt;
&lt;br /&gt;
Firefox has a similar add-on: [http://addons.mozilla.org/firefox/addon/1250/ Grab and Drag]&lt;br /&gt;
&lt;br /&gt;
=== On-screen keyboard ===&lt;br /&gt;
&lt;br /&gt;
See the following resources&lt;br /&gt;
* [[Input Method Framework/MeeGo 1.1]]&lt;br /&gt;
* [http://blog.neteril.org/2010/11/19/turning-your-meego-lenovo-s10-3t-into-a-real-slate/ Turn your Lenovo into a real slate] &lt;br /&gt;
* [http://forum.meego.com/showthread.php?t=1803 forum thread]&lt;br /&gt;
&lt;br /&gt;
=== Software Setup ===&lt;br /&gt;
&lt;br /&gt;
The [[MeeGo 1.0 Netbook FAQ]] has resources on&lt;br /&gt;
* Application installation&lt;br /&gt;
* Dropbox&lt;br /&gt;
* Skype&lt;br /&gt;
* Codecs&lt;br /&gt;
* Changing keyboard layout post-install (since some of us accidently set it to US rather than UK)&lt;br /&gt;
&lt;br /&gt;
*fennec-qt (Firefox Mobile)&lt;br /&gt;
** For fullscreen run: &amp;lt;code&amp;gt;fennec -target slate&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Hardware Configuration ==&lt;br /&gt;
&lt;br /&gt;
[http://consumersupport.lenovo.com/ie/en/DriversDownloads/drivers_list.aspx?CategoryID=45252 Chipset listing (for Windows Drivers)]&lt;br /&gt;
&lt;br /&gt;
=== Touchpad ===&lt;br /&gt;
&lt;br /&gt;
Taps are accepted as mouse presses but not the bottom left and right clicks, see [http://bugs.meego.com/show_bug.cgi?id=4807 bug report]&lt;br /&gt;
&lt;br /&gt;
To enable RMB in the RightBottom corner of the touchpad issue the following command:&lt;br /&gt;
 synclient RBCornerButton=3&lt;br /&gt;
&lt;br /&gt;
To make it permanent edit /etc/X11/xorg.conf.d/10-input-synaptics.conf to:&lt;br /&gt;
 Section &amp;quot;InputClass&amp;quot;&lt;br /&gt;
     Identifier &amp;quot;synaptics&amp;quot;&lt;br /&gt;
     MatchIsTouchpad &amp;quot;true&amp;quot;&lt;br /&gt;
     Driver &amp;quot;synaptics&amp;quot;&lt;br /&gt;
     Option &amp;quot;RBCornerButton&amp;quot; &amp;quot;3&amp;quot;&lt;br /&gt;
 EndSection&lt;br /&gt;
&lt;br /&gt;
=== Accelerometer ===&lt;br /&gt;
&lt;br /&gt;
The Ideapad has a two axis accelerometer located in the keyboard part. Under Windows it is accessed through the APS software and used for screen rotation and parking the hard-drive under shock conditions. APS is widely used on Thinkpads and the Ideapad appears to have the same type of accelerometer. Accelerometer values are read through an &amp;quot;embedded controller&amp;quot; interface. Linux support for this device is normally provided by the [http://www.thinkwiki.org/wiki/Tp_smapi tp_smapi] driver, however, it has [http://www.thinkwiki.org/wiki/Tp_smapi#SL_series_and_IdeaPad no support for the Ideapad embedded controller].&lt;br /&gt;
&lt;br /&gt;
=== 3G ===&lt;br /&gt;
&lt;br /&gt;
[http://www.netbooks.ph/forums/viewtopic.php?f=56&amp;amp;t=2220 See this article about adding a 3G modem.]&lt;/div&gt;</summary>
		<author><name>Epage</name></author>	</entry>

	<entry>
		<id>http://wiki.meego.com/User:Epage</id>
		<title>User:Epage</title>
		<link rel="alternate" type="text/html" href="http://wiki.meego.com/User:Epage"/>
				<updated>2010-11-23T23:34:26Z</updated>
		
		<summary type="html">&lt;p&gt;Epage: /* Personal */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;See my [http://wiki.maemo.org/User:Epage maemo profile].&lt;/div&gt;</summary>
		<author><name>Epage</name></author>	</entry>

	<entry>
		<id>http://wiki.meego.com/Devices/Ideapad</id>
		<title>Devices/Ideapad</title>
		<link rel="alternate" type="text/html" href="http://wiki.meego.com/Devices/Ideapad"/>
				<updated>2010-11-22T23:42:30Z</updated>
		
		<summary type="html">&lt;p&gt;Epage: /* Touchpad */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The Lenovo S10-3t IdeaPads were given to attendees of the [[MeeGo Conference 2010]] (Thanks Intel and Nokia!). This page aims to collect issues, solutions and hacks by the MeeGo Community for this device. It is mostly collected from the [http://forum.meego.com/showthread.php?t=1995 Lenovo S10-3t improvements] thread on MeeGo Forums.&lt;br /&gt;
&lt;br /&gt;
== Major issues ==&lt;br /&gt;
&lt;br /&gt;
It seems that some users get their wifi (and bluetooth) disabled and/or the battery status. There is some talk going on these two links, with work around that may or may not work. For the atheros folks it worked but the ones with broadcom it didn't.&lt;br /&gt;
&lt;br /&gt;
* Problem: BROADCOM based wifi: No way to enable WiFi after switching it off using the switch&lt;br /&gt;
** Workaround: http://www.proli.net/2010/11/19/hidden-wifi-switches/&lt;br /&gt;
** Solution: Waiting for some help from Intel or BIOS updates from Lenovo.&lt;br /&gt;
* Problem: ATHEROS workaround: No way to enable WiFi after switching it off using the switch&lt;br /&gt;
** Workaround: http://forum.meego.com/showthread.php?p=13321&lt;br /&gt;
** Solution: Waiting for some help from Intel or BIOS updates from Lenovo.&lt;br /&gt;
* Problem: [http://bugs.meego.com/show_bug.cgi?id=3276 Resume from suspend to RAM does not work every time]&lt;br /&gt;
** Workaround:&lt;br /&gt;
** Solution:&lt;br /&gt;
&lt;br /&gt;
== Minor issues ==&lt;br /&gt;
* Headphone jack doesn't work [http://bugs.meego.com/show_bug.cgi?id=10289 Bug report]&lt;br /&gt;
** Workaround: Add &amp;lt;code&amp;gt;options snd-hda-intel model=&amp;quot;olpc-xo-1_5&amp;quot;&amp;lt;/code&amp;gt; to &amp;lt;code&amp;gt;/etc/modprobe.d/alsa-base.conf&amp;lt;/code&amp;gt; and reboot&lt;br /&gt;
** Solution: none yet&lt;br /&gt;
&lt;br /&gt;
== Using the Ideapad with MeeGo ==&lt;br /&gt;
&lt;br /&gt;
=== Finger scrolling with Chromium ===&lt;br /&gt;
&lt;br /&gt;
The [https://chrome.google.com/extensions/detail/ncegfehgjifmmpnjaihnjpbpddjjebme ChromeTouch] extension enables kinetic scrolling with the browser and the touch screen.&lt;br /&gt;
&lt;br /&gt;
=== Finger scrolling with Firefox ===&lt;br /&gt;
&lt;br /&gt;
Firefox has a similar add-on: [http://addons.mozilla.org/firefox/addon/1250/ Grab and Drag]&lt;br /&gt;
&lt;br /&gt;
=== On-screen keyboard ===&lt;br /&gt;
&lt;br /&gt;
See the following resources&lt;br /&gt;
* [[Input Method Framework/MeeGo 1.1]]&lt;br /&gt;
* [http://blog.neteril.org/2010/11/19/turning-your-meego-lenovo-s10-3t-into-a-real-slate/ Turn your Lenovo into a real slate] &lt;br /&gt;
* [http://forum.meego.com/showthread.php?t=1803 forum thread]&lt;br /&gt;
&lt;br /&gt;
=== Software Setup ===&lt;br /&gt;
&lt;br /&gt;
The [[MeeGo 1.0 Netbook FAQ]] has resources on&lt;br /&gt;
* Application installation&lt;br /&gt;
* Dropbox&lt;br /&gt;
* Skype&lt;br /&gt;
* Codecs&lt;br /&gt;
* Changing keyboard layout post-install (since some of us accidently set it to US rather than UK)&lt;br /&gt;
&lt;br /&gt;
*fennec-qt (Firefox Mobile)&lt;br /&gt;
** For fullscreen run: &amp;lt;code&amp;gt;fennec -target slate&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Hardware Configuration ==&lt;br /&gt;
&lt;br /&gt;
[http://consumersupport.lenovo.com/ie/en/DriversDownloads/drivers_list.aspx?CategoryID=45252 Chipset listing (for Windows Drivers)]&lt;br /&gt;
&lt;br /&gt;
=== Touchpad ===&lt;br /&gt;
&lt;br /&gt;
Taps are accepted as mouse presses but not the bottom left and right clicks, see [http://bugs.meego.com/show_bug.cgi?id=4807 bug report]&lt;br /&gt;
&lt;br /&gt;
To enable RMB in the RightBottom corner of the touchpad issue the following command:&lt;br /&gt;
 synclient RBCornerButton=3&lt;br /&gt;
&lt;br /&gt;
To make it permanent edit /etc/X11/xorg.conf.d/10-input-synaptics.conf to:&lt;br /&gt;
 Section &amp;quot;InputClass&amp;quot;&lt;br /&gt;
     Identifier &amp;quot;synaptics&amp;quot;&lt;br /&gt;
     MatchIsTouchpad &amp;quot;true&amp;quot;&lt;br /&gt;
     Driver &amp;quot;synaptics&amp;quot;&lt;br /&gt;
     Option &amp;quot;RBCornerButton&amp;quot; &amp;quot;3&amp;quot;&lt;br /&gt;
 EndSection&lt;/div&gt;</summary>
		<author><name>Epage</name></author>	</entry>

	<entry>
		<id>http://wiki.meego.com/Devices/Ideapad</id>
		<title>Devices/Ideapad</title>
		<link rel="alternate" type="text/html" href="http://wiki.meego.com/Devices/Ideapad"/>
				<updated>2010-11-22T23:42:21Z</updated>
		
		<summary type="html">&lt;p&gt;Epage: /* Touchpad */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The Lenovo S10-3t IdeaPads were given to attendees of the [[MeeGo Conference 2010]] (Thanks Intel and Nokia!). This page aims to collect issues, solutions and hacks by the MeeGo Community for this device. It is mostly collected from the [http://forum.meego.com/showthread.php?t=1995 Lenovo S10-3t improvements] thread on MeeGo Forums.&lt;br /&gt;
&lt;br /&gt;
== Major issues ==&lt;br /&gt;
&lt;br /&gt;
It seems that some users get their wifi (and bluetooth) disabled and/or the battery status. There is some talk going on these two links, with work around that may or may not work. For the atheros folks it worked but the ones with broadcom it didn't.&lt;br /&gt;
&lt;br /&gt;
* Problem: BROADCOM based wifi: No way to enable WiFi after switching it off using the switch&lt;br /&gt;
** Workaround: http://www.proli.net/2010/11/19/hidden-wifi-switches/&lt;br /&gt;
** Solution: Waiting for some help from Intel or BIOS updates from Lenovo.&lt;br /&gt;
* Problem: ATHEROS workaround: No way to enable WiFi after switching it off using the switch&lt;br /&gt;
** Workaround: http://forum.meego.com/showthread.php?p=13321&lt;br /&gt;
** Solution: Waiting for some help from Intel or BIOS updates from Lenovo.&lt;br /&gt;
* Problem: [http://bugs.meego.com/show_bug.cgi?id=3276 Resume from suspend to RAM does not work every time]&lt;br /&gt;
** Workaround:&lt;br /&gt;
** Solution:&lt;br /&gt;
&lt;br /&gt;
== Minor issues ==&lt;br /&gt;
* Headphone jack doesn't work [http://bugs.meego.com/show_bug.cgi?id=10289 Bug report]&lt;br /&gt;
** Workaround: Add &amp;lt;code&amp;gt;options snd-hda-intel model=&amp;quot;olpc-xo-1_5&amp;quot;&amp;lt;/code&amp;gt; to &amp;lt;code&amp;gt;/etc/modprobe.d/alsa-base.conf&amp;lt;/code&amp;gt; and reboot&lt;br /&gt;
** Solution: none yet&lt;br /&gt;
&lt;br /&gt;
== Using the Ideapad with MeeGo ==&lt;br /&gt;
&lt;br /&gt;
=== Finger scrolling with Chromium ===&lt;br /&gt;
&lt;br /&gt;
The [https://chrome.google.com/extensions/detail/ncegfehgjifmmpnjaihnjpbpddjjebme ChromeTouch] extension enables kinetic scrolling with the browser and the touch screen.&lt;br /&gt;
&lt;br /&gt;
=== Finger scrolling with Firefox ===&lt;br /&gt;
&lt;br /&gt;
Firefox has a similar add-on: [http://addons.mozilla.org/firefox/addon/1250/ Grab and Drag]&lt;br /&gt;
&lt;br /&gt;
=== On-screen keyboard ===&lt;br /&gt;
&lt;br /&gt;
See the following resources&lt;br /&gt;
* [[Input Method Framework/MeeGo 1.1]]&lt;br /&gt;
* [http://blog.neteril.org/2010/11/19/turning-your-meego-lenovo-s10-3t-into-a-real-slate/ Turn your Lenovo into a real slate] &lt;br /&gt;
* [http://forum.meego.com/showthread.php?t=1803 forum thread]&lt;br /&gt;
&lt;br /&gt;
=== Software Setup ===&lt;br /&gt;
&lt;br /&gt;
The [[MeeGo 1.0 Netbook FAQ]] has resources on&lt;br /&gt;
* Application installation&lt;br /&gt;
* Dropbox&lt;br /&gt;
* Skype&lt;br /&gt;
* Codecs&lt;br /&gt;
* Changing keyboard layout post-install (since some of us accidently set it to US rather than UK)&lt;br /&gt;
&lt;br /&gt;
*fennec-qt (Firefox Mobile)&lt;br /&gt;
** For fullscreen run: &amp;lt;code&amp;gt;fennec -target slate&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Hardware Configuration ==&lt;br /&gt;
&lt;br /&gt;
[http://consumersupport.lenovo.com/ie/en/DriversDownloads/drivers_list.aspx?CategoryID=45252 Chipset listing (for Windows Drivers)]&lt;br /&gt;
&lt;br /&gt;
=== Touchpad ===&lt;br /&gt;
&lt;br /&gt;
Taps are accepted as mouse presses but not the bottom left and right clicks, see [http://bugs.meego.com/show_bug.cgi?id=4807 bug report]&lt;br /&gt;
&lt;br /&gt;
To enable RMB in the RightBottom corner of the touchpad issue the following command:&lt;br /&gt;
 synclient RBCornerButton=3&lt;br /&gt;
&lt;br /&gt;
To make it permanent edit /etc/X11/xorg.conf.d/10-input-synaptics.conf to:&lt;br /&gt;
 Section &amp;quot;InputClass&amp;quot;&lt;br /&gt;
     Identifier &amp;quot;synaptics&amp;quot;&lt;br /&gt;
     MatchIsTouchpad &amp;quot;true&amp;quot;&lt;br /&gt;
     Driver &amp;quot;synaptics&amp;quot;&lt;br /&gt;
     Option &amp;quot;RBCornerButton&amp;quot; &amp;quot;3&amp;quot;&lt;br /&gt;
 EndSection&lt;br /&gt;
&lt;br /&gt;
For more details, see the&lt;/div&gt;</summary>
		<author><name>Epage</name></author>	</entry>

	<entry>
		<id>http://wiki.meego.com/Devices/Ideapad</id>
		<title>Devices/Ideapad</title>
		<link rel="alternate" type="text/html" href="http://wiki.meego.com/Devices/Ideapad"/>
				<updated>2010-11-22T23:42:08Z</updated>
		
		<summary type="html">&lt;p&gt;Epage: /* Touchpad */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The Lenovo S10-3t IdeaPads were given to attendees of the [[MeeGo Conference 2010]] (Thanks Intel and Nokia!). This page aims to collect issues, solutions and hacks by the MeeGo Community for this device. It is mostly collected from the [http://forum.meego.com/showthread.php?t=1995 Lenovo S10-3t improvements] thread on MeeGo Forums.&lt;br /&gt;
&lt;br /&gt;
== Major issues ==&lt;br /&gt;
&lt;br /&gt;
It seems that some users get their wifi (and bluetooth) disabled and/or the battery status. There is some talk going on these two links, with work around that may or may not work. For the atheros folks it worked but the ones with broadcom it didn't.&lt;br /&gt;
&lt;br /&gt;
* Problem: BROADCOM based wifi: No way to enable WiFi after switching it off using the switch&lt;br /&gt;
** Workaround: http://www.proli.net/2010/11/19/hidden-wifi-switches/&lt;br /&gt;
** Solution: Waiting for some help from Intel or BIOS updates from Lenovo.&lt;br /&gt;
* Problem: ATHEROS workaround: No way to enable WiFi after switching it off using the switch&lt;br /&gt;
** Workaround: http://forum.meego.com/showthread.php?p=13321&lt;br /&gt;
** Solution: Waiting for some help from Intel or BIOS updates from Lenovo.&lt;br /&gt;
* Problem: [http://bugs.meego.com/show_bug.cgi?id=3276 Resume from suspend to RAM does not work every time]&lt;br /&gt;
** Workaround:&lt;br /&gt;
** Solution:&lt;br /&gt;
&lt;br /&gt;
== Minor issues ==&lt;br /&gt;
* Headphone jack doesn't work [http://bugs.meego.com/show_bug.cgi?id=10289 Bug report]&lt;br /&gt;
** Workaround: Add &amp;lt;code&amp;gt;options snd-hda-intel model=&amp;quot;olpc-xo-1_5&amp;quot;&amp;lt;/code&amp;gt; to &amp;lt;code&amp;gt;/etc/modprobe.d/alsa-base.conf&amp;lt;/code&amp;gt; and reboot&lt;br /&gt;
** Solution: none yet&lt;br /&gt;
&lt;br /&gt;
== Using the Ideapad with MeeGo ==&lt;br /&gt;
&lt;br /&gt;
=== Finger scrolling with Chromium ===&lt;br /&gt;
&lt;br /&gt;
The [https://chrome.google.com/extensions/detail/ncegfehgjifmmpnjaihnjpbpddjjebme ChromeTouch] extension enables kinetic scrolling with the browser and the touch screen.&lt;br /&gt;
&lt;br /&gt;
=== Finger scrolling with Firefox ===&lt;br /&gt;
&lt;br /&gt;
Firefox has a similar add-on: [http://addons.mozilla.org/firefox/addon/1250/ Grab and Drag]&lt;br /&gt;
&lt;br /&gt;
=== On-screen keyboard ===&lt;br /&gt;
&lt;br /&gt;
See the following resources&lt;br /&gt;
* [[Input Method Framework/MeeGo 1.1]]&lt;br /&gt;
* [http://blog.neteril.org/2010/11/19/turning-your-meego-lenovo-s10-3t-into-a-real-slate/ Turn your Lenovo into a real slate] &lt;br /&gt;
* [http://forum.meego.com/showthread.php?t=1803 forum thread]&lt;br /&gt;
&lt;br /&gt;
=== Software Setup ===&lt;br /&gt;
&lt;br /&gt;
The [[MeeGo 1.0 Netbook FAQ]] has resources on&lt;br /&gt;
* Application installation&lt;br /&gt;
* Dropbox&lt;br /&gt;
* Skype&lt;br /&gt;
* Codecs&lt;br /&gt;
* Changing keyboard layout post-install (since some of us accidently set it to US rather than UK)&lt;br /&gt;
&lt;br /&gt;
*fennec-qt (Firefox Mobile)&lt;br /&gt;
** For fullscreen run: &amp;lt;code&amp;gt;fennec -target slate&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Hardware Configuration ==&lt;br /&gt;
&lt;br /&gt;
[http://consumersupport.lenovo.com/ie/en/DriversDownloads/drivers_list.aspx?CategoryID=45252 Chipset listing (for Windows Drivers)]&lt;br /&gt;
&lt;br /&gt;
=== Touchpad ===&lt;br /&gt;
&lt;br /&gt;
Taps are accepted as mouse presses but not the bottom left and right clicks, see [http://bugs.meego.com/show_bug.cgi?id=4807 bug]&lt;br /&gt;
&lt;br /&gt;
To enable RMB in the RightBottom corner of the touchpad issue the following command:&lt;br /&gt;
 synclient RBCornerButton=3&lt;br /&gt;
&lt;br /&gt;
To make it permanent edit /etc/X11/xorg.conf.d/10-input-synaptics.conf to:&lt;br /&gt;
 Section &amp;quot;InputClass&amp;quot;&lt;br /&gt;
     Identifier &amp;quot;synaptics&amp;quot;&lt;br /&gt;
     MatchIsTouchpad &amp;quot;true&amp;quot;&lt;br /&gt;
     Driver &amp;quot;synaptics&amp;quot;&lt;br /&gt;
     Option &amp;quot;RBCornerButton&amp;quot; &amp;quot;3&amp;quot;&lt;br /&gt;
 EndSection&lt;br /&gt;
&lt;br /&gt;
For more details, see the&lt;/div&gt;</summary>
		<author><name>Epage</name></author>	</entry>

	<entry>
		<id>http://wiki.meego.com/Devices/Ideapad</id>
		<title>Devices/Ideapad</title>
		<link rel="alternate" type="text/html" href="http://wiki.meego.com/Devices/Ideapad"/>
				<updated>2010-11-22T17:57:17Z</updated>
		
		<summary type="html">&lt;p&gt;Epage: /* Using the Ideapad with MeeGo */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The Lenovo S10-3t IdeaPads were given to attendees of the [[MeeGo Conference 2010]] (Thanks Intel and Nokia!). This page aims to collect issues, solutions and hacks by the MeeGo Community for this device. It is mostly collected from the [http://forum.meego.com/showthread.php?t=1995 Lenovo S10-3t improvements] thread on MeeGo Forums.&lt;br /&gt;
&lt;br /&gt;
== Big issues ==&lt;br /&gt;
&lt;br /&gt;
It seems that some users get their wifi (and bluetooth) disabled and/or the battery status. There is some talk going on these two links, with work around that may or may not work. For the atheros folks it worked but the ones with broadcom it didn't.&lt;br /&gt;
&lt;br /&gt;
* Problem: BROADCOM based wifi: No way to enable WiFi after switching it off using the switch&lt;br /&gt;
** Workaround: http://www.proli.net/2010/11/19/hidden-wifi-switches/&lt;br /&gt;
** Solution: Waiting for some help from Intel or BIOS updates from Lenovo.&lt;br /&gt;
* Problem: ATHEROS workaround: No way to enable WiFi after switching it off using the switch&lt;br /&gt;
** Workaround: http://forum.meego.com/showthread.php?p=13321&lt;br /&gt;
** Solution: Waiting for some help from Intel or BIOS updates from Lenovo.&lt;br /&gt;
* Problem: [http://bugs.meego.com/show_bug.cgi?id=3276 Resume from suspend to RAM does not work every time]&lt;br /&gt;
** Workaround:&lt;br /&gt;
** Solution:&lt;br /&gt;
&lt;br /&gt;
== Using the Ideapad with MeeGo ==&lt;br /&gt;
&lt;br /&gt;
=== Finger scrolling with Chromium ===&lt;br /&gt;
&lt;br /&gt;
The [https://chrome.google.com/extensions/detail/ncegfehgjifmmpnjaihnjpbpddjjebme ChromeTouch] extension enables kinetic scrolling with the browser and the touch screen.&lt;br /&gt;
&lt;br /&gt;
=== On-screen keyboard ===&lt;br /&gt;
&lt;br /&gt;
See the following resources&lt;br /&gt;
* [[Input Method Framework/MeeGo 1.1]]&lt;br /&gt;
* [http://blog.neteril.org/2010/11/19/turning-your-meego-lenovo-s10-3t-into-a-real-slate/ Turn your Lenovo into a real slate] &lt;br /&gt;
* [http://forum.meego.com/showthread.php?t=1803 forum thread]&lt;br /&gt;
&lt;br /&gt;
=== Software Setup ===&lt;br /&gt;
&lt;br /&gt;
The [[MeeGo 1.0 Netbook FAQ]] has resources on&lt;br /&gt;
* Application installation&lt;br /&gt;
* Dropbox&lt;br /&gt;
* Skype&lt;br /&gt;
* Codecs&lt;br /&gt;
* Changing keyboard layout post-install (since some of us accidently set it to US rather than UK)&lt;br /&gt;
&lt;br /&gt;
fennec-qt (Firefox Mobile)&lt;br /&gt;
* For fullscreen run &amp;quot;fennec -target slate&amp;quot;&lt;br /&gt;
&lt;br /&gt;
== Hardware Configuration ==&lt;br /&gt;
&lt;br /&gt;
[http://consumersupport.lenovo.com/ie/en/DriversDownloads/drivers_list.aspx?CategoryID=45252 Chipset listing (for Windows Drivers)]&lt;br /&gt;
&lt;br /&gt;
=== Touchpad ===&lt;br /&gt;
&lt;br /&gt;
To enable RMB in the RightBottom corner of the touchpad issue the following command:&lt;br /&gt;
  synclient RBCornerButton=3&lt;/div&gt;</summary>
		<author><name>Epage</name></author>	</entry>

	<entry>
		<id>http://wiki.meego.com/Devices/Ideapad</id>
		<title>Devices/Ideapad</title>
		<link rel="alternate" type="text/html" href="http://wiki.meego.com/Devices/Ideapad"/>
				<updated>2010-11-22T17:42:04Z</updated>
		
		<summary type="html">&lt;p&gt;Epage: /* Hardware Configuration */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The Lenovo S10-3t IdeaPads were given to attendees of the [[MeeGo Conference 2010]] (Thanks Intel and Nokia!). This page aims to collect issues, solutions and hacks by the MeeGo Community for this device. It is mostly collected from the [http://forum.meego.com/showthread.php?t=1995 Lenovo S10-3t improvements] thread on MeeGo Forums.&lt;br /&gt;
&lt;br /&gt;
== Big issues ==&lt;br /&gt;
&lt;br /&gt;
It seems that some users get their wifi (and bluetooth) disabled and/or the battery status. There is some talk going on these two links, with work around that may or may not work. For the atheros folks it worked but the ones with broadcom it didn't.&lt;br /&gt;
&lt;br /&gt;
* Problem: BROADCOM based wifi: No way to enable WiFi after switching it off using the switch&lt;br /&gt;
** Workaround: http://www.proli.net/2010/11/19/hidden-wifi-switches/&lt;br /&gt;
** Solution: Waiting for some help from Intel or BIOS updates from Lenovo.&lt;br /&gt;
* Problem: ATHEROS workaround: No way to enable WiFi after switching it off using the switch&lt;br /&gt;
** Workaround: http://forum.meego.com/showthread.php?p=13321&lt;br /&gt;
** Solution: Waiting for some help from Intel or BIOS updates from Lenovo.&lt;br /&gt;
* Problem: [http://bugs.meego.com/show_bug.cgi?id=3276 Resume from suspend to RAM does not work every time]&lt;br /&gt;
** Workaround:&lt;br /&gt;
** Solution:&lt;br /&gt;
&lt;br /&gt;
== Using the Ideapad with MeeGo ==&lt;br /&gt;
&lt;br /&gt;
=== Finger scrolling with Chromium ===&lt;br /&gt;
&lt;br /&gt;
The [https://chrome.google.com/extensions/detail/ncegfehgjifmmpnjaihnjpbpddjjebme ChromeTouch] extension enables kinetic scrolling with the browser and the touch screen.&lt;br /&gt;
&lt;br /&gt;
=== On-screen keyboard ===&lt;br /&gt;
&lt;br /&gt;
See the following resources&lt;br /&gt;
* [[Input Method Framework/MeeGo 1.1]]&lt;br /&gt;
* [http://blog.neteril.org/2010/11/19/turning-your-meego-lenovo-s10-3t-into-a-real-slate/ Turn your Lenovo into a real slate] &lt;br /&gt;
* [http://forum.meego.com/showthread.php?t=1803 forum thread]&lt;br /&gt;
&lt;br /&gt;
=== Software Setup ===&lt;br /&gt;
&lt;br /&gt;
The [[MeeGo 1.0 Netbook FAQ]] has resources on&lt;br /&gt;
* Application installation&lt;br /&gt;
* Dropbox&lt;br /&gt;
* Skype&lt;br /&gt;
* Codecs&lt;br /&gt;
* Changing keyboard layout post-install (since some of us accidently set it to US rather than UK)&lt;br /&gt;
&lt;br /&gt;
== Hardware Configuration ==&lt;br /&gt;
&lt;br /&gt;
[http://consumersupport.lenovo.com/ie/en/DriversDownloads/drivers_list.aspx?CategoryID=45252 Chipset listing (for Windows Drivers)]&lt;br /&gt;
&lt;br /&gt;
=== Touchpad ===&lt;br /&gt;
&lt;br /&gt;
To enable RMB in the RightBottom corner of the touchpad issue the following command:&lt;br /&gt;
  synclient RBCornerButton=3&lt;/div&gt;</summary>
		<author><name>Epage</name></author>	</entry>

	<entry>
		<id>http://wiki.meego.com/Devices/Ideapad</id>
		<title>Devices/Ideapad</title>
		<link rel="alternate" type="text/html" href="http://wiki.meego.com/Devices/Ideapad"/>
				<updated>2010-11-22T16:37:35Z</updated>
		
		<summary type="html">&lt;p&gt;Epage: /* Using the Ideapad with MeeGo */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The Lenovo S10-3t IdeaPads were given to attendees of the [[MeeGo Conference 2010]] (Thanks Intel and Nokia!). This page aims to collect issues, solutions and hacks by the MeeGo Community for this device. It is mostly collected from the [http://forum.meego.com/showthread.php?t=1995 Lenovo S10-3t improvements] thread on MeeGo Forums.&lt;br /&gt;
&lt;br /&gt;
== Big issues ==&lt;br /&gt;
&lt;br /&gt;
It seems that some users get their wifi (and bluetooth) disabled and/or the battery status. There is some talk going on these two links, with work around that may or may not work. For the atheros folks it worked but the ones with broadcom it didn't.&lt;br /&gt;
&lt;br /&gt;
* [http://www.proli.net/2010/11/19/hidden-wifi-switches/ BROADCOM workaround: No way to enable WiFi after switching it off using the switch]&lt;br /&gt;
* [http://forum.meego.com/showthread.php?p=13321 ATHEROS workaround: No way to enable WiFi after switching it off using the switch]&lt;br /&gt;
* [http://bugs.meego.com/show_bug.cgi?id=3276 Resume from suspend to RAM does not work every time]&lt;br /&gt;
&lt;br /&gt;
Waiting for some help from Intel or BIOS updates from Lenovo.&lt;br /&gt;
&lt;br /&gt;
== Using the Ideapad with MeeGo ==&lt;br /&gt;
&lt;br /&gt;
=== Finger scrolling with Chromium ===&lt;br /&gt;
&lt;br /&gt;
The [https://chrome.google.com/extensions/detail/ncegfehgjifmmpnjaihnjpbpddjjebme ChromeTouch] extension enables kinetic scrolling with the browser and the touch screen.&lt;br /&gt;
&lt;br /&gt;
=== On-screen keyboard ===&lt;br /&gt;
&lt;br /&gt;
See the following resources&lt;br /&gt;
* [[Input Method Framework/MeeGo 1.1]]&lt;br /&gt;
* [http://blog.neteril.org/2010/11/19/turning-your-meego-lenovo-s10-3t-into-a-real-slate/ Turn your Lenovo into a real slate] &lt;br /&gt;
* [http://forum.meego.com/showthread.php?t=1803 forum thread]&lt;br /&gt;
&lt;br /&gt;
=== Software Setup ===&lt;br /&gt;
&lt;br /&gt;
The [[MeeGo 1.0 Netbook FAQ]] has resources on&lt;br /&gt;
* Application installation&lt;br /&gt;
* Dropbox&lt;br /&gt;
* Skype&lt;br /&gt;
* Codecs&lt;br /&gt;
* Changing keyboard layout post-install (since some of us accidently set it to US rather than UK)&lt;br /&gt;
&lt;br /&gt;
== Hardware Configuration ==&lt;br /&gt;
=== Touchpad ===&lt;br /&gt;
&lt;br /&gt;
To enable RMB in the RightBottom corner of the touchpad issue the following command:&lt;br /&gt;
  synclient RBCornerButton=3&lt;/div&gt;</summary>
		<author><name>Epage</name></author>	</entry>

	<entry>
		<id>http://wiki.meego.com/Devices/Ideapad</id>
		<title>Devices/Ideapad</title>
		<link rel="alternate" type="text/html" href="http://wiki.meego.com/Devices/Ideapad"/>
				<updated>2010-11-22T16:35:35Z</updated>
		
		<summary type="html">&lt;p&gt;Epage: /* On-screen keyboard */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The Lenovo S10-3t IdeaPads were given to attendees of the [[MeeGo Conference 2010]] (Thanks Intel and Nokia!). This page aims to collect issues, solutions and hacks by the MeeGo Community for this device. It is mostly collected from the [http://forum.meego.com/showthread.php?t=1995 Lenovo S10-3t improvements] thread on MeeGo Forums.&lt;br /&gt;
&lt;br /&gt;
== Big issues ==&lt;br /&gt;
&lt;br /&gt;
It seems that some users get their wifi (and bluetooth) disabled and/or the battery status. There is some talk going on these two links, with work around that may or may not work. For the atheros folks it worked but the ones with broadcom it didn't.&lt;br /&gt;
&lt;br /&gt;
* [http://www.proli.net/2010/11/19/hidden-wifi-switches/ BROADCOM workaround: No way to enable WiFi after switching it off using the switch]&lt;br /&gt;
* [http://forum.meego.com/showthread.php?p=13321 ATHEROS workaround: No way to enable WiFi after switching it off using the switch]&lt;br /&gt;
* [http://bugs.meego.com/show_bug.cgi?id=3276 Resume from suspend to RAM does not work every time]&lt;br /&gt;
&lt;br /&gt;
Waiting for some help from Intel or BIOS updates from Lenovo.&lt;br /&gt;
&lt;br /&gt;
== Using the Ideapad with MeeGo ==&lt;br /&gt;
&lt;br /&gt;
=== Finger scrolling with Chromium ===&lt;br /&gt;
&lt;br /&gt;
The [https://chrome.google.com/extensions/detail/ncegfehgjifmmpnjaihnjpbpddjjebme ChromeTouch] extension enables kinetic scrolling with the browser and the touch screen.&lt;br /&gt;
&lt;br /&gt;
=== On-screen keyboard ===&lt;br /&gt;
&lt;br /&gt;
See the following resources&lt;br /&gt;
* [[Input Method Framework/MeeGo 1.1]]&lt;br /&gt;
* [http://blog.neteril.org/2010/11/19/turning-your-meego-lenovo-s10-3t-into-a-real-slate/ Turn your Lenovo into a real slate] &lt;br /&gt;
* [http://forum.meego.com/showthread.php?t=1803 forum thread]&lt;br /&gt;
&lt;br /&gt;
== Hardware Configuration ==&lt;br /&gt;
=== Touchpad ===&lt;br /&gt;
&lt;br /&gt;
To enable RMB in the RightBottom corner of the touchpad issue the following command:&lt;br /&gt;
  synclient RBCornerButton=3&lt;/div&gt;</summary>
		<author><name>Epage</name></author>	</entry>

	<entry>
		<id>http://wiki.meego.com/MeeGo_Conference_2010/Feedback</id>
		<title>MeeGo Conference 2010/Feedback</title>
		<link rel="alternate" type="text/html" href="http://wiki.meego.com/MeeGo_Conference_2010/Feedback"/>
				<updated>2010-11-22T16:28:14Z</updated>
		
		<summary type="html">&lt;p&gt;Epage: /* What Else? */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;We'll probably gather some more formal feedback later, but this is a good place to gather feedback in the meantime.&lt;br /&gt;
&lt;br /&gt;
== What Worked? ==&lt;br /&gt;
&lt;br /&gt;
We'll try to make sure we keep these and don't change the things that people liked.&lt;br /&gt;
&lt;br /&gt;
=== Logistics ===&lt;br /&gt;
* Printouts of the sessions (both the big handbook and the small pocket-sized list)&lt;br /&gt;
* Useful gifts in the give-away bag (the umbrella)&lt;br /&gt;
* Hotel reservation&lt;br /&gt;
* The registration&lt;br /&gt;
* The style of venue was a great choice&lt;br /&gt;
&lt;br /&gt;
=== Live Stream / Video / AV ===&lt;br /&gt;
* Streamed over the Internet just fine&lt;br /&gt;
* Videos captured sound properly&lt;br /&gt;
&lt;br /&gt;
=== Early Bird Events ===&lt;br /&gt;
&lt;br /&gt;
=== Hacker Lounge ===&lt;br /&gt;
* Free beer and collaborative creative party games and sports&lt;br /&gt;
&lt;br /&gt;
=== Sessions / Program ===&lt;br /&gt;
* Schedule in the website combining videos (live and recorded), slides and abstracts&lt;br /&gt;
* Uploading of slides centralised in program website&lt;br /&gt;
&lt;br /&gt;
=== Unconference ===&lt;br /&gt;
* Tone-setting and handling of sessions&lt;br /&gt;
* Organisation of sessions&lt;br /&gt;
* The number of rooms (10+)&lt;br /&gt;
&lt;br /&gt;
=== Lightning Talks ===&lt;br /&gt;
* Presenters kept to the allotted time&lt;br /&gt;
&lt;br /&gt;
=== Other / General ===&lt;br /&gt;
&lt;br /&gt;
== What Didn't Work? ==&lt;br /&gt;
&lt;br /&gt;
We'll try to fix any issues before the next conference&lt;br /&gt;
&lt;br /&gt;
=== Logistics ===&lt;br /&gt;
* Some registrations were lost in the system (software glitch?)&lt;br /&gt;
* Registration bags could not be dropped at the hotels&lt;br /&gt;
* Website sign-up link wasn't easy to find (centre of the homepage)&lt;br /&gt;
* Once the block hotel booking is made, website/wiki must have clear guidance on how/whom to contact.  If necessary management should reserve their rooms but ask the hotel to continue to allow reservations via promotional code so that a deposit is taken but those rooms are accounted for out of the block booking remainder.&lt;br /&gt;
&lt;br /&gt;
=== Live Stream / Video / AV ===&lt;br /&gt;
&lt;br /&gt;
=== Early Bird Events ===&lt;br /&gt;
&lt;br /&gt;
=== Hacker Lounge ===&lt;br /&gt;
&lt;br /&gt;
=== Sessions / Program ===&lt;br /&gt;
* Presenters had to sign up to meego.com, to the conference and confirm they were presenting&lt;br /&gt;
* Confirmations for accepted speakers should be sooner&lt;br /&gt;
&lt;br /&gt;
=== Unconference ===&lt;br /&gt;
* Schedule board could be larger&lt;br /&gt;
* More sessions in the afternoon&lt;br /&gt;
&lt;br /&gt;
=== Lightning Talks ===&lt;br /&gt;
&lt;br /&gt;
=== Other / General ===&lt;br /&gt;
&lt;br /&gt;
=== What Else? ===&lt;br /&gt;
* Better profile of the audience (hackers, corporate developers, corporate decision-makers, press, etc.)&lt;br /&gt;
* Often the internet connection was not enough for all people. Maybe because there was more people than expected...&lt;br /&gt;
* The WLAN should account for every person having two devices (and for unexpected last minute higher turnout)&lt;br /&gt;
* Not many places to charge, could be even more convenient by having some socket adapters&lt;br /&gt;
&lt;br /&gt;
Add other feedback, suggestions and misc. comments here.&lt;/div&gt;</summary>
		<author><name>Epage</name></author>	</entry>

	<entry>
		<id>http://wiki.meego.com/MeeGo_Conference_2010</id>
		<title>MeeGo Conference 2010</title>
		<link rel="alternate" type="text/html" href="http://wiki.meego.com/MeeGo_Conference_2010"/>
				<updated>2010-11-22T16:25:11Z</updated>
		
		<summary type="html">&lt;p&gt;Epage: /* Pictures */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Conference Wrap-up ==&lt;br /&gt;
&lt;br /&gt;
=== Informal Feedback ===&lt;br /&gt;
&lt;br /&gt;
We might do something more formal (survey) later, but for now, you can add your feedback about the conference to the [[MeeGo_Conference_2010/Feedback]] page.&lt;br /&gt;
&lt;br /&gt;
=== Session Presentations ===&lt;br /&gt;
* Please add session notes from your unconference sessions to the wiki, and include a link to them in [[MeeGo Conference 2010/Unconference]]&lt;br /&gt;
* Presenters - Your presentation materials should be uploaded and posted on [http://conference2010.meego.com/program/schedule your session page]&lt;br /&gt;
* Note: Videos of most sessions will also be posted to each [http://conference2010.meego.com/program/schedule your session page]&lt;br /&gt;
&lt;br /&gt;
=== Blog Posts ===&lt;br /&gt;
Did you write a wrap-up blog post about MeeGoConference 2010? Link to it here:&lt;br /&gt;
* [http://labs.qt.nokia.com/2010/11/19/meego-conference-2010-wrap-up/ MeeGo Conference 2010 wrap-up] by [http://meego.com/users/thiago Thiago]&lt;br /&gt;
* [http://revdkathy.livejournal.com/61968.html Reflections on Meego Conference] by [http://meego.com/users/revdkathy revdkathy]&lt;br /&gt;
* [http://marnanel.dreamwidth.org/173066.html The last day, with links to posts about other days] by [http://meego.com/users/tthurman tthurman]&lt;br /&gt;
* [http://www.carrypad.com/2010/11/15/meego-conference-to-create-the-meego-way-of-working/ MeeGo Conference to “Create the MeeGo way of Working.”] by [http://meego.com/users/chippy chippy]&lt;br /&gt;
* [http://www.carrypad.com/2010/11/17/meego-conference-day-2-touch-and-mobile-dominate/ MeeGo Conference Day 2 – Touch and Mobile Dominate] by [http://meego.com/users/chippy chippy]&lt;br /&gt;
* [http://thpmaemo.blogspot.com/2010/11/meegoconf-2010-fun-qml-gpodder-python.html MeeGoConf 2010: Fun, QML, gPodder, Python] by [http://meego.com/users/thp thp]&lt;br /&gt;
*[http://chani.wordpress.com/2010/11/19/meeeeeeeego/ meeeego] by [http://meego.com/users/chani Chani]&lt;br /&gt;
* [http://www.maemopeople.org/index.php/jaffa/2010/11/20/we_go_to_meego We go to MeeGo] by [http://meego.com/users/jaffa Jaffa]&lt;br /&gt;
* [http://fastwonderblog.com/2010/11/20/meego-conference-geeks-in-dublin/ MeeGo Conference: Geeks in Dublin] by [http://meego.com/users/dawnfoster Dawn Foster]&lt;br /&gt;
* [http://www.umpcportal.com/2010/11/report-timeline-for-meego-netbooks-tablets-and-smartphones/ Report: Timeline for MeeGo Netbooks, Tablets and Smartphones] - by [http://meego.com/users/chippy chippy]&lt;br /&gt;
* [http://wp.me/pPWnp-bM MeeGo Install on Lenovo Ideapad in less than 9mins] - by [http://meego.com/users/julienf julienf]&lt;br /&gt;
* [http://bergie.iki.fi/blog/initial_look_at_meego_netbook-a_minimalistic_computer_interface/ Initial look at MeeGo Netbook - a minimalistic computer interface] - by [http://meego.com/users/bergie bergie]&lt;br /&gt;
* [http://eopage.blogspot.com/2010/11/dublin-and-meego-conference.html Dublin and Meego Conference] - by [http://meego.com/users/Epage epage]&lt;br /&gt;
&lt;br /&gt;
=== Pictures ===&lt;br /&gt;
Please link to a set of pictures (not individual photos) if possible:&lt;br /&gt;
* Consider adding yourself and your photos to the [http://www.flickr.com/groups/meegoconf2010/ MeeGo Conference 2010 Flickr group]&lt;br /&gt;
* [http://www.flickr.com/photos/thp4/sets/72157625424106592/with/5188992035/ MeeGo Conference 2010 / Aviva Stadium / Dublin] - by [http://meego.com/users/thp thp]&lt;br /&gt;
* [http://www.flickr.com/photos/lucbyhet/sets/72157625295691137/with/5187831075/ MeeGo Conference 2010] by [http://meego.com/users/lucbyhet2 lucbyhet2]&lt;br /&gt;
* [http://www.flickr.com/photos/78178692@N00/sets/72157625315828025/ MeeGo Conference 2010] by [http://meego.com/users/reggie reggie]&lt;br /&gt;
* [http://picasaweb.google.com/martin.grimme/Dublin2010MeeGoConference Dublin and MeeGo Conference 2010 - Picasa Web Album] - by [http://meego.com/users/pycage pycage]&lt;br /&gt;
* [http://www.flickr.com/search/?q=meegoconf&amp;amp;ss=2&amp;amp;ct=0&amp;amp;mt=all&amp;amp;w=all&amp;amp;adv=1 Flickr images tagged with MeeGoConf]&lt;br /&gt;
* [http://picasaweb.google.com/xmlich02/MeeGoConference2010# MeeGo Conference 2010 and Wax Museum] by [http://www.fit.vutbr.cz/~imlich Jozef Mlich]&lt;br /&gt;
* [http://picasaweb.google.com/eopage/MeegoConference?feat=directlink Meego Conference / Dublin] - by [http://meego.com/users/Epage epage]&lt;br /&gt;
&lt;br /&gt;
== About ==&lt;br /&gt;
&lt;br /&gt;
''' [http://conference2010.meego.com/ MeeGo Conference] will be held at Aviva Stadium in Dublin, Ireland November 15-17th, 2010'''&lt;br /&gt;
&lt;br /&gt;
The MeeGo Conference replaces the Maemo Summit. We're using the term &amp;quot;conference&amp;quot; because The Linux Foundation usually uses the term &amp;quot;summit&amp;quot; to refer to invitation-only events, and since the MeeGo conference is open to anyone who would like to attend, we decided to refer to it as the MeeGo Conference to avoid confusion.&lt;br /&gt;
&lt;br /&gt;
Registration is [http://conference2010.meego.com/ still open] and you can [http://conference2010.meego.com/logistics/hotels reserve your room] in our hotel block at the D4 complex right next to the Aviva Stadium.&lt;br /&gt;
&lt;br /&gt;
The Twitter hashtag for the MeeGo Conference is '''[http://search.twitter.com/search?q=%23meegoconf #MeeGoConf]'''. There will also be a Qaiku thread on the [http://www.qaiku.com/channels/show/meego/ MeeGo channel].&lt;br /&gt;
&lt;br /&gt;
There is an Identi.ca group tag [http://identi.ca/group/meegoconf !meegoconf]&lt;br /&gt;
&lt;br /&gt;
Flickr group: http://www.flickr.com/groups/meegoconf2010/&lt;br /&gt;
&lt;br /&gt;
== Sponsors ==&lt;br /&gt;
&lt;br /&gt;
Prospectus is now available, please send to anyone who is interested in sponsoring MeeGo Conference 2010! [http://wiki.meego.com/images/MeeGo_Prospectus_2010_%282%29.pdf MeeGo Conference Prospectus]&lt;br /&gt;
&lt;br /&gt;
== Audience ==&lt;br /&gt;
&lt;br /&gt;
The MeeGo Conference targets a technical audience of:&lt;br /&gt;
* MeeGo developers&lt;br /&gt;
* OSVs, OEMs, and other integrators&lt;br /&gt;
* Other MeeGo project contributors&lt;br /&gt;
&lt;br /&gt;
'''Other target audience suggestions'''&lt;br /&gt;
* Relevant media representatives (bloggers, promoters)&lt;br /&gt;
&lt;br /&gt;
== Format and Logistical Details ==&lt;br /&gt;
&lt;br /&gt;
* There are firm plans for some [[MeeGo_Conference_2010/Early_Bird_Events|early bird sessions]] organized by community members on the afternoon of Saturday, November 13 and all day Sunday, November 14.&lt;br /&gt;
* The main event is a 3 day event, begins Monday Nov. 15th thru Wednesday Nov. 17th&lt;br /&gt;
* The first two days (Monday and Tuesday) will have scheduled sessions&lt;br /&gt;
* Wednesday will be an [[MeeGo Conference 2010/Unconference|unconference day]]&lt;br /&gt;
* [[MeeGo_Conference_2010/Lightning_talks|Lightning Talks]] will be held on Wednesday.&lt;br /&gt;
* Some unofficial conference document templates are available for those who like these kinds of things:&lt;br /&gt;
** [[File:Meego conference template.otp| Simple OpenOffice tutorial with MeeGo logo and &amp;quot;conference 2010&amp;quot; underneath]]&lt;br /&gt;
** [[File:Meego conference template 2.otp| Simple OpenOffice tutorial with MeeGo logo]]&lt;br /&gt;
* We currently have evening events planned on Monday Nov. 15th at the Stadium, Tuesday Nov. 16th at Guinness Storehouse and will have tickets to the Ireland / Norway football game on Wednesday Nov. 17th. &lt;br /&gt;
* Conference Held at Aviva stadium&lt;br /&gt;
* Conference Space that we have:&lt;br /&gt;
** Presidents Terrace for Keynotes Day 1 sits 1200 theatre style or 580 cab ([http://www.lmc.ac.uk/home/hiring/seating.php cabaret style]) - suggesting theatre style for the keynotes&lt;br /&gt;
** Breakout session will be used as follows:&lt;br /&gt;
*** Level 02&lt;br /&gt;
**** 1. Presidents area split in half area 1 sits 300 cab&lt;br /&gt;
**** 2. Presidents area 2 sits 280 cab&lt;br /&gt;
**** 3. Vavasour suite sits 80 cab&lt;br /&gt;
*** Level 03 (where you enter)&lt;br /&gt;
**** The Atrium- registration/welcome/tea and coffee breaks&lt;br /&gt;
**** The flow between the Atrium and the next break out area called the Henry suite will be an area for a proposed Technology Showcase for MeeGo projects to be displayed and demo's. &lt;br /&gt;
**** 4. 1872 area sits 120 cab is the 4th breakout area opposite the atrium on the other side of the stadium.&lt;br /&gt;
*** Level 04 (stairs/elevator from the atrium)&lt;br /&gt;
**** 5. Havelock suite sits 130 cab- 5th breakout area&lt;br /&gt;
**** 6. Media center- in another part of the stadium: Perfect for a Graphics track or UI track based on the space.&lt;br /&gt;
* Hotels being used  are the D4 hotels and you may book through registration site (read about details on site below)&lt;br /&gt;
* Registration site is planned to go up no later than August 7. but we are aiming for it to be up mid-July.&lt;br /&gt;
* The Registration will have a place for submissions to the call for papers (including submissions from Intel / Nokia) and a small selection committee will be responsible for choosing the presentations based on the merits of each submission.&lt;br /&gt;
* Anyone is welcome to submit a proposal or attend the event.&lt;br /&gt;
* The event will be free for attendees &lt;br /&gt;
* Sponsorship Prospectus is attached under Sponsor section, please send to anyone interested&lt;br /&gt;
* Updated 6/22/10 AL&lt;br /&gt;
&lt;br /&gt;
== Location ==&lt;br /&gt;
&lt;br /&gt;
Aviva Stadium in Dublin, Ireland- November 15-17th, 2010&lt;br /&gt;
&lt;br /&gt;
Contract is in place and planning information will be updated online for your involvement:)&lt;br /&gt;
&lt;br /&gt;
* [http://www.avivastadiumevents.ie/stadium.aspx Aviva Stadium]&lt;br /&gt;
* Conference facility has held for us one plenary room for the keynote session, and 6-8 breakout rooms to seat 100, I will be creating a presentation to place online, so everyone will see where and what rooms we will be the seesions of the conference in.&lt;br /&gt;
* Dublin is an easy city to get to for international travelers&lt;br /&gt;
* Venue is right on mass transit line (DART)&lt;br /&gt;
* Outside of Schengen area, non-EU citizens would require visa [http://www.dfa.ie/home/index.aspx?id=8777 Visa information for Ireland]&lt;br /&gt;
&lt;br /&gt;
== Accommodation ==&lt;br /&gt;
&lt;br /&gt;
See [[MeeGo Conference 2010/Accommodation]]&lt;br /&gt;
&lt;br /&gt;
* We have reserved a block of 530 rooms with D4 Hotels, in three hotels near the location. Rooms bookings are available [http://conference2010.meego.com/logistics/hotels through the conference site]. We will also have a 24hr networking room in the hotels during the conference&lt;br /&gt;
* Sponsored accommodation will be in this venue only - see [[#Sponsored_participants | sponsored participants]] for more information on requesting sponsorship. In the event of cancellation, the intial deposit on reservation will not be refunded&lt;br /&gt;
* Rooms are available from €65 per night to €115 per night through the conference registration system &lt;br /&gt;
* We are also holding 100 rooms at the Herbert Park hotel again only a couple blocks from the stadium&lt;br /&gt;
&lt;br /&gt;
== Flight Information ==&lt;br /&gt;
&lt;br /&gt;
See [[MeeGo Conference 2010/Flight Information]]&lt;br /&gt;
&lt;br /&gt;
== Video coverage ==&lt;br /&gt;
This is the plan so far:&lt;br /&gt;
&lt;br /&gt;
* There is a professional team dedicated to record, stream, edit and upload all the videos.&lt;br /&gt;
* All the tracks of the first two days will be recorded. The videos will be uploaded on the same evening or up to 48 hours later. The limitations are the editing work and also the risk of overloading the network bandwidth during the conference hours.&lt;br /&gt;
* In addition to this, the main room will have live streaming for all sessions during the first two days.&lt;br /&gt;
* The plan for the unconference day still needs to be defined but in any case the same video crew and equipment will be available.&lt;br /&gt;
&lt;br /&gt;
Volunteering: is someone is interested in shooting additional video coverage please share your ideas at the meego-community mailing list.&lt;br /&gt;
&lt;br /&gt;
== Sponsored participants ==&lt;br /&gt;
The organization has a budget to sponsor the travel and accommodation of selected community contributors. Participants willing to be sponsored must request it through the conference registration. The requests will be evaluated by the Sponsoring Committee (see below).&lt;br /&gt;
&lt;br /&gt;
The idea is to handle the approvals through several rounds of acceptance: first the speakers approved, then the requesters obtaining unanimous support, then the rest until all the sponsorship budget is allocated. An private online spreadsheet will be used to register the votes of the committee members. The discussion will be held through mail and we will organize IRC or conference meetings if needed. The rough prioritisation used by the committee shall be:&lt;br /&gt;
&lt;br /&gt;
# Speakers.&lt;br /&gt;
# Organisers/conference logistical people who aren't being paid to.&lt;br /&gt;
# Active MeeGo community members:&lt;br /&gt;
## Developers (both of MeeGo, and MeeGo applications)&lt;br /&gt;
## Bug reporters&lt;br /&gt;
## Community office-type stuff&lt;br /&gt;
## Anyone else making a valuable contribution&lt;br /&gt;
# Active legacy community members:&lt;br /&gt;
#*  Maemo community members (karma ''helps'' here, but isn't a be-all and end-all)&lt;br /&gt;
#* Moblin community members&lt;br /&gt;
# Members of core upstream projects&lt;br /&gt;
&lt;br /&gt;
Each request shall, of course, be made on a case-by-case basis.&lt;br /&gt;
&lt;br /&gt;
If you have requested sponsorship and you require a 'complicated' visa please contact Quim Gil explaining your case and adding a URL to your meego.com profile.&lt;br /&gt;
&lt;br /&gt;
If you have applied for sponsorship and you can only attend the conference if being sponsored, then don't book anything until you have got a confirmation. The first round of sponsorship confirmations will be sent out on 24th September.&lt;br /&gt;
&lt;br /&gt;
The way the Linux Foundation handles this process in their conferences is simple: you find the best trip, get approval from Angela Brown (Linux Foundation), book your trip and the LF will reimburse you. If you have been approved and you don't have anybody around you with a credit card to do the booking then contact Angela and explain your case. This is no guarantee for anything but she is the one that will be coordinating these reimbursements.&lt;br /&gt;
&lt;br /&gt;
The hotel reservation of sponsored participants will be booked by the Linux Foundation directly. The organization will sponsor you 4 nights and you must decide which ones you choose. For instance, you can fly in on Saturday morning in order to take part in the [[MeeGo_Conference_2010/Early_Bird_Events|Early Bird Events]] but then you'll need to check out on Wednesday morning or cover the extra nights yourself.&lt;br /&gt;
&lt;br /&gt;
=== Time line ===&lt;br /&gt;
* Sep 20: Infra setup. Fine tuning details. Sponsorship approval of accepted speakers starts.&lt;br /&gt;
* Sep 24: Checkbox to request sponsorship removed from registration. No new sponsorship requests accepted.&lt;br /&gt;
* Sep 24: First wave of sponsorship requests approved: accepted speakers.&lt;br /&gt;
* Sep 28: Each sponsorship committee member has gone through all the candidates voting Yes/No in the private spreadsheet.&lt;br /&gt;
* Oct 1: Second wave completed: candidates with 5/5 votes.&lt;br /&gt;
* Oct 8: Third wave completed: candidates with 4-3 votes, depending on budget available.&lt;br /&gt;
* Oct 15: Resolution on remaining cases. All requests are accepted/declined at this point.&lt;br /&gt;
&lt;br /&gt;
== Team ==&lt;br /&gt;
* Coordination: [http://meego.com/users/dawnfoster Dawn Foster] and [http://meego.com/users/qgil Quim Gil].&lt;br /&gt;
* Logistics: [http://meego.com/users/amyleeland Amy Leeland] coordinates. Specific areas and people in charge to be listed below.&lt;br /&gt;
** Specific areas go here.&lt;br /&gt;
* Content committee: [http://meego.com/users/hohndel Dirk Hohndel] (coordination), [http://meego.com/users/thiago Thiago Macieira], [http://meego.com/users/mmeeks Michael Meeks] and [http://meego.com/users/stskeeps Carsten Munk].&lt;br /&gt;
&lt;br /&gt;
=== Sponsoring Committee ===&lt;br /&gt;
&lt;br /&gt;
The Sponsoring Committee is in charge of reviewing the sponsorship requests sent by individuals registering to the conference. It is formed by five members: [http://meego.com/users/qgil Quim Gil] (coordinator, [http://wiki.meego.com/Community_Office Community Office]), [http://meego.com/users/dawnfoster Dawn Foster] ([http://wiki.meego.com/Community_Office Community Office]), Angela Brown (Linux Foundation), [http://meego.com/users/slaine Glen Gray] (Moblin/netbook bg) and [http://meego.com/users/jaffa Andrew Flegg] (Maemo/handset bg).&lt;br /&gt;
&lt;br /&gt;
== Volunteering ==&lt;br /&gt;
&lt;br /&gt;
To run a smooth and successful MeeGo Conference will require a number of volunteers. If you want to volunteer for a certain part of the conference, please add your name below that heading, linked to your meego.com profile. You can follow the conference organization work at the [http://forum.meego.com/forumdisplay.php?f=5 Community Matters forum] (specifically [http://forum.meego.com/showthread.php?t=95 this thread]).&lt;br /&gt;
&lt;br /&gt;
=== General ===&lt;br /&gt;
Not sure where you want to volunteer yet until the conference schedule is finalized? Put your name here and we'll add more detailed volunteer tables in the months to come.&lt;br /&gt;
&lt;br /&gt;
'''Volunteers:''' [http://meego.com/users/dneary Dave Neary/dneary], [http://meego.com/users/texrat Randall Arnold/Texrat], [http://meego.com/users/chippy Steve Paine/Chippy], [http://meego.com/users/timsamoff Tim Samoff/timsamoff], [http://meego.com/users/andreagrandi Andrea Grandi/andy80], [http://meego.com/users/ferwakeup Fernando Martin/ferwakeup], [http://meego.com/users/jnwi Jens Wiik/jnwi], [http://meego.com/users/thp Thomas Perl/thp], [http://meego.com/users/sivan Sivan Greenberg], [http://meego.com/users/anidel Aniello Del Sorbo/anidel], [http://meego.com/users/andrei1089 Andrei Mirestean/andrei1089], [http://meego.com/users/ryanware Ryan Ware/ryanware], [http://meego.com/users/saviq Michał Sawicz/saviq], [http://meego.com/users/vdvsx Valerio Valerio/VDVsx], [http://meego.com/users/nononoyes Alessandro Peralma/No!No!No!Yes!].&lt;br /&gt;
&lt;br /&gt;
=== Scheduled Opportunities ===&lt;br /&gt;
'''Please commit to specific tasks and times on the [[MeeGo_Conference_2010/Volunteering|Volunteer Grid]]'''&lt;br /&gt;
&lt;br /&gt;
There are a number of volunteer opportunities that people can signup for specific time slots, such as manning the information desk or session tech support. Since the final conference schedule isn't available yet, people can signup for the tasks now and then shift around the times they are available later. These are the types of volunteer opportunities:&lt;br /&gt;
&lt;br /&gt;
* IRC Chat Moderators&lt;br /&gt;
* Information Desk Helpers&lt;br /&gt;
* Session Tech Support&lt;br /&gt;
* Conference Setup - Sunday 14&lt;br /&gt;
* Conference Cleanup - Wednesday 17&lt;br /&gt;
* Speaker Assistants&lt;br /&gt;
* Conference Room Reservation Table&lt;br /&gt;
* Hacking Session Helpers&lt;br /&gt;
&lt;br /&gt;
'''Volunteers:'''&lt;br /&gt;
* [http://meego.com/users/ferwakeup Fernando Martin/ferwakeup] for Speaker Assistant.&lt;br /&gt;
* [http://meego.com/users/leinir Dan Leinir Turthra Jensen] for Conference Setup, Conference Cleanup and Hacking Session Helper (depending on sponsorship)&lt;br /&gt;
&lt;br /&gt;
=== Organizing Opportunities ===&lt;br /&gt;
A number of the conference activities have yet to be fully organized and the conference committee would love help with these tasks. Here is a list of activities still needing to be organized. It might be best to start forum threads for each of the specific organizing tasks and then document here the decisions. &lt;br /&gt;
&lt;br /&gt;
* Organize [[MeeGo_Conference_2010/Early_Bird_Events|Early Bird Events]]&lt;br /&gt;
* Organize Hacking Sessions&lt;br /&gt;
* Organize Temple Bar Night&lt;br /&gt;
* Organize Signup for Guinness Shuttles&lt;br /&gt;
* Reach out to local businesses for conference deals&lt;br /&gt;
&lt;br /&gt;
'''Volunteers:'''&lt;br /&gt;
&lt;br /&gt;
* [http://meego.com/users/andreagrandi Andrea Grandi/andy80]: I propose myself for '''Organize [http://wiki.meego.com/MeeGo_Conference_2010/Early_Bird_Events Early Bird Events]'''. I'd like to lead the organization of two days ('''November 13th, 14th''') in the similar way we (Maemo Community) organized the [http://wiki.maemo.org/Maemo-Barcelona_Long_Weekend Barcelona Long Weekend]. More details soon.&lt;br /&gt;
* [http://meego.com/users/thp thp] - Early Bird Events w/ Andrea&lt;br /&gt;
* [http://meego.com/users/revdkathy RevdKathy]: Organise the Meego Greeters to provide mobile information and help around the conference.&lt;br /&gt;
&lt;br /&gt;
== Topics ==&lt;br /&gt;
&lt;br /&gt;
Potential themes for the conference which suit a first conference.&lt;br /&gt;
&lt;br /&gt;
; MeeGo for Maemo &amp;amp; Moblin application developers &lt;br /&gt;
: Bringing developers from old platform to new &lt;br /&gt;
: please define here how the old differs from the new. I am assuming the new platform includes using the Qt framework as the standard, but what else? What is the smooth way to move RPM -&amp;gt; DEB?&lt;br /&gt;
; MeeGo for N900 and N8x0 owners&lt;br /&gt;
: What is MeeGo in a concrete way? Is it a set of userland libraries and applications that you can run on your N900 in a chrooted environment for example?&lt;br /&gt;
: Bring our old power users over&lt;br /&gt;
: dual booting a &amp;quot;Meego flash image&amp;quot; on your N?x? device? What about MER?&lt;br /&gt;
; New developers coming to MeeGo&lt;br /&gt;
: Qt and WRT, and maybe Clutter&lt;br /&gt;
; Distributing MeeGo software&lt;br /&gt;
: yes, please explain how to do this in light of the current system of uploading Debian packages &amp;amp; promoting?&lt;br /&gt;
: What comes after Extras?&lt;br /&gt;
; MeeGo platform&lt;br /&gt;
: Getting more developers involved in the MeeGo platform, and reaching out to upstream to have a critical mass of MeeGo middleware developers there&lt;br /&gt;
; Cool stuff (hardware &amp;amp; software) coming out of Helsinki &amp;amp; Portland&lt;br /&gt;
: Target press &amp;amp; new users&lt;br /&gt;
; Building a healthy MeeGo community&lt;br /&gt;
: Involving Intel and Nokia engineers, upstream, platform hackers, application developers and power users in the MeeGo community - covering things like outreach and events, community infrastructure (including the Technical Steering Group, working groups, council?), social dynamics &amp;amp; policies, and community involvement in product roadmaps, etc&lt;br /&gt;
;Testing with MeeGo&lt;br /&gt;
:Test development, image creation, test execution and debugging as a smooth ride along development.&lt;br /&gt;
;The Community Development Ecosystem around MeeGo (lbt)&lt;br /&gt;
: Building against MeeGo - the Maemo and MeeGo community OBSes&lt;br /&gt;
: Application development and community application QA - Extras and PPAs(?)&lt;br /&gt;
: Experimental development - MeeGo on N8x0&lt;br /&gt;
&lt;br /&gt;
'''''A first draft of the Call for Papers is up: [[MeeGo_Conference_2010/DraftCFP]]'''''&lt;br /&gt;
&lt;br /&gt;
== Other suggestions for the event ==&lt;br /&gt;
* 3 days event, 2 days organized by the community and one organized by the companies involved. Developers, platform and power users tracks. --[[User:Vdvsx|Vdvsx]] 22:24, 12 March 2010 (UTC)&lt;br /&gt;
* In addition to 20 minute talks and 5 minute lightning talks, a provision for talks that fit in between (10 minutes) --[[User:Texrat|Texrat]] 03:47, 14 March 2010 (UTC)&lt;br /&gt;
* team-building, brainstorming exercises on a large scale (like the [http://maemo.nokia.com/news/maemo-co-creation-workshop-video/ Co-Creation Workshop held before Maemo Summit 2009] --[[User:Texrat|Texrat]] 03:47, 14 March 2010 (UTC)&lt;br /&gt;
* themed tracks with breakout sessions between X sets of presentations (where X can be number of sessions or time duration). --[[User:Texrat|Texrat]] 05:41, 27 April 2010 (UTC)&lt;br /&gt;
* Birds Of Feather [http://en.wikipedia.org/wiki/Birds_of_a_Feather_(computing) (BOFs)]- for casual non formal feature planning and development specification: --[[User:sivan|sivan]]&lt;br /&gt;
** A group of people interested in a feature or a process gather around a round table.&lt;br /&gt;
** A driver for the discussion presents the topic he wants to spec out or a topic assigned to him to present from the list of process and features desired.&lt;br /&gt;
** Input is arriving from participants, and is ironed out as &amp;quot;[http://en.wikipedia.org/wiki/User_story user stories]&amp;quot; , as well as leads, references tips and hints for undertaking the development.&lt;br /&gt;
** The driver after finishing the session sets to finish the spec in terms of completeness and publish it on the wiki for peer review of the BOF participants and/or a review board that accepts features and new takes for the project.&lt;br /&gt;
* Recognize the '''non-technical''' contributor of the year. This is important since we have so many needs on the community side. --[[User:Texrat|Texrat]] 01:35, 17 August 2010 (UTC)&lt;br /&gt;
* Recognize the most popular presentations. There should be a formal survey for every talk and workshop, as well as a summary survey. Use the findings to reward those who stood out. --[[User:Texrat|Texrat]] 01:35, 17 August 2010 (UTC)&lt;br /&gt;
* Games. Some sort of intramural sports or activities. Hey, we're in a stadium, right? Let's take advantage! Okay, maybe we can't use the field, but surely we can come up with something... even tug-of-war would be fun --[[User:Texrat|Texrat]] 01:35, 17 August 2010 (UTC)&lt;br /&gt;
** Treasure/scavenger hunt for meego goodies and prizes.&lt;br /&gt;
* [http://wiki.meego.com/MeeGo_Greeters MeeGo Greeters] would make great volunteers! --[[User:Texrat|Texrat]] 19:58, 31 August 2010 (UTC)&lt;/div&gt;</summary>
		<author><name>Epage</name></author>	</entry>

	<entry>
		<id>http://wiki.meego.com/MeeGo_Conference_2010</id>
		<title>MeeGo Conference 2010</title>
		<link rel="alternate" type="text/html" href="http://wiki.meego.com/MeeGo_Conference_2010"/>
				<updated>2010-11-22T16:24:24Z</updated>
		
		<summary type="html">&lt;p&gt;Epage: /* Blog Posts */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Conference Wrap-up ==&lt;br /&gt;
&lt;br /&gt;
=== Informal Feedback ===&lt;br /&gt;
&lt;br /&gt;
We might do something more formal (survey) later, but for now, you can add your feedback about the conference to the [[MeeGo_Conference_2010/Feedback]] page.&lt;br /&gt;
&lt;br /&gt;
=== Session Presentations ===&lt;br /&gt;
* Please add session notes from your unconference sessions to the wiki, and include a link to them in [[MeeGo Conference 2010/Unconference]]&lt;br /&gt;
* Presenters - Your presentation materials should be uploaded and posted on [http://conference2010.meego.com/program/schedule your session page]&lt;br /&gt;
* Note: Videos of most sessions will also be posted to each [http://conference2010.meego.com/program/schedule your session page]&lt;br /&gt;
&lt;br /&gt;
=== Blog Posts ===&lt;br /&gt;
Did you write a wrap-up blog post about MeeGoConference 2010? Link to it here:&lt;br /&gt;
* [http://labs.qt.nokia.com/2010/11/19/meego-conference-2010-wrap-up/ MeeGo Conference 2010 wrap-up] by [http://meego.com/users/thiago Thiago]&lt;br /&gt;
* [http://revdkathy.livejournal.com/61968.html Reflections on Meego Conference] by [http://meego.com/users/revdkathy revdkathy]&lt;br /&gt;
* [http://marnanel.dreamwidth.org/173066.html The last day, with links to posts about other days] by [http://meego.com/users/tthurman tthurman]&lt;br /&gt;
* [http://www.carrypad.com/2010/11/15/meego-conference-to-create-the-meego-way-of-working/ MeeGo Conference to “Create the MeeGo way of Working.”] by [http://meego.com/users/chippy chippy]&lt;br /&gt;
* [http://www.carrypad.com/2010/11/17/meego-conference-day-2-touch-and-mobile-dominate/ MeeGo Conference Day 2 – Touch and Mobile Dominate] by [http://meego.com/users/chippy chippy]&lt;br /&gt;
* [http://thpmaemo.blogspot.com/2010/11/meegoconf-2010-fun-qml-gpodder-python.html MeeGoConf 2010: Fun, QML, gPodder, Python] by [http://meego.com/users/thp thp]&lt;br /&gt;
*[http://chani.wordpress.com/2010/11/19/meeeeeeeego/ meeeego] by [http://meego.com/users/chani Chani]&lt;br /&gt;
* [http://www.maemopeople.org/index.php/jaffa/2010/11/20/we_go_to_meego We go to MeeGo] by [http://meego.com/users/jaffa Jaffa]&lt;br /&gt;
* [http://fastwonderblog.com/2010/11/20/meego-conference-geeks-in-dublin/ MeeGo Conference: Geeks in Dublin] by [http://meego.com/users/dawnfoster Dawn Foster]&lt;br /&gt;
* [http://www.umpcportal.com/2010/11/report-timeline-for-meego-netbooks-tablets-and-smartphones/ Report: Timeline for MeeGo Netbooks, Tablets and Smartphones] - by [http://meego.com/users/chippy chippy]&lt;br /&gt;
* [http://wp.me/pPWnp-bM MeeGo Install on Lenovo Ideapad in less than 9mins] - by [http://meego.com/users/julienf julienf]&lt;br /&gt;
* [http://bergie.iki.fi/blog/initial_look_at_meego_netbook-a_minimalistic_computer_interface/ Initial look at MeeGo Netbook - a minimalistic computer interface] - by [http://meego.com/users/bergie bergie]&lt;br /&gt;
* [http://eopage.blogspot.com/2010/11/dublin-and-meego-conference.html Dublin and Meego Conference] - by [http://meego.com/users/Epage epage]&lt;br /&gt;
&lt;br /&gt;
=== Pictures ===&lt;br /&gt;
Please link to a set of pictures (not individual photos) if possible:&lt;br /&gt;
* Consider adding yourself and your photos to the [http://www.flickr.com/groups/meegoconf2010/ MeeGo Conference 2010 Flickr group]&lt;br /&gt;
* [http://www.flickr.com/photos/thp4/sets/72157625424106592/with/5188992035/ MeeGo Conference 2010 / Aviva Stadium / Dublin] - by [http://meego.com/users/thp thp]&lt;br /&gt;
* [http://www.flickr.com/photos/lucbyhet/sets/72157625295691137/with/5187831075/ MeeGo Conference 2010] by [http://meego.com/users/lucbyhet2 lucbyhet2]&lt;br /&gt;
* [http://www.flickr.com/photos/78178692@N00/sets/72157625315828025/ MeeGo Conference 2010] by [http://meego.com/users/reggie reggie]&lt;br /&gt;
* [http://picasaweb.google.com/martin.grimme/Dublin2010MeeGoConference Dublin and MeeGo Conference 2010 - Picasa Web Album] - by [http://meego.com/users/pycage pycage]&lt;br /&gt;
* [http://www.flickr.com/search/?q=meegoconf&amp;amp;ss=2&amp;amp;ct=0&amp;amp;mt=all&amp;amp;w=all&amp;amp;adv=1 Flickr images tagged with MeeGoConf]&lt;br /&gt;
* [http://picasaweb.google.com/xmlich02/MeeGoConference2010# MeeGo Conference 2010 and Wax Museum] by [http://www.fit.vutbr.cz/~imlich Jozef Mlich]&lt;br /&gt;
&lt;br /&gt;
== About ==&lt;br /&gt;
&lt;br /&gt;
''' [http://conference2010.meego.com/ MeeGo Conference] will be held at Aviva Stadium in Dublin, Ireland November 15-17th, 2010'''&lt;br /&gt;
&lt;br /&gt;
The MeeGo Conference replaces the Maemo Summit. We're using the term &amp;quot;conference&amp;quot; because The Linux Foundation usually uses the term &amp;quot;summit&amp;quot; to refer to invitation-only events, and since the MeeGo conference is open to anyone who would like to attend, we decided to refer to it as the MeeGo Conference to avoid confusion.&lt;br /&gt;
&lt;br /&gt;
Registration is [http://conference2010.meego.com/ still open] and you can [http://conference2010.meego.com/logistics/hotels reserve your room] in our hotel block at the D4 complex right next to the Aviva Stadium.&lt;br /&gt;
&lt;br /&gt;
The Twitter hashtag for the MeeGo Conference is '''[http://search.twitter.com/search?q=%23meegoconf #MeeGoConf]'''. There will also be a Qaiku thread on the [http://www.qaiku.com/channels/show/meego/ MeeGo channel].&lt;br /&gt;
&lt;br /&gt;
There is an Identi.ca group tag [http://identi.ca/group/meegoconf !meegoconf]&lt;br /&gt;
&lt;br /&gt;
Flickr group: http://www.flickr.com/groups/meegoconf2010/&lt;br /&gt;
&lt;br /&gt;
== Sponsors ==&lt;br /&gt;
&lt;br /&gt;
Prospectus is now available, please send to anyone who is interested in sponsoring MeeGo Conference 2010! [http://wiki.meego.com/images/MeeGo_Prospectus_2010_%282%29.pdf MeeGo Conference Prospectus]&lt;br /&gt;
&lt;br /&gt;
== Audience ==&lt;br /&gt;
&lt;br /&gt;
The MeeGo Conference targets a technical audience of:&lt;br /&gt;
* MeeGo developers&lt;br /&gt;
* OSVs, OEMs, and other integrators&lt;br /&gt;
* Other MeeGo project contributors&lt;br /&gt;
&lt;br /&gt;
'''Other target audience suggestions'''&lt;br /&gt;
* Relevant media representatives (bloggers, promoters)&lt;br /&gt;
&lt;br /&gt;
== Format and Logistical Details ==&lt;br /&gt;
&lt;br /&gt;
* There are firm plans for some [[MeeGo_Conference_2010/Early_Bird_Events|early bird sessions]] organized by community members on the afternoon of Saturday, November 13 and all day Sunday, November 14.&lt;br /&gt;
* The main event is a 3 day event, begins Monday Nov. 15th thru Wednesday Nov. 17th&lt;br /&gt;
* The first two days (Monday and Tuesday) will have scheduled sessions&lt;br /&gt;
* Wednesday will be an [[MeeGo Conference 2010/Unconference|unconference day]]&lt;br /&gt;
* [[MeeGo_Conference_2010/Lightning_talks|Lightning Talks]] will be held on Wednesday.&lt;br /&gt;
* Some unofficial conference document templates are available for those who like these kinds of things:&lt;br /&gt;
** [[File:Meego conference template.otp| Simple OpenOffice tutorial with MeeGo logo and &amp;quot;conference 2010&amp;quot; underneath]]&lt;br /&gt;
** [[File:Meego conference template 2.otp| Simple OpenOffice tutorial with MeeGo logo]]&lt;br /&gt;
* We currently have evening events planned on Monday Nov. 15th at the Stadium, Tuesday Nov. 16th at Guinness Storehouse and will have tickets to the Ireland / Norway football game on Wednesday Nov. 17th. &lt;br /&gt;
* Conference Held at Aviva stadium&lt;br /&gt;
* Conference Space that we have:&lt;br /&gt;
** Presidents Terrace for Keynotes Day 1 sits 1200 theatre style or 580 cab ([http://www.lmc.ac.uk/home/hiring/seating.php cabaret style]) - suggesting theatre style for the keynotes&lt;br /&gt;
** Breakout session will be used as follows:&lt;br /&gt;
*** Level 02&lt;br /&gt;
**** 1. Presidents area split in half area 1 sits 300 cab&lt;br /&gt;
**** 2. Presidents area 2 sits 280 cab&lt;br /&gt;
**** 3. Vavasour suite sits 80 cab&lt;br /&gt;
*** Level 03 (where you enter)&lt;br /&gt;
**** The Atrium- registration/welcome/tea and coffee breaks&lt;br /&gt;
**** The flow between the Atrium and the next break out area called the Henry suite will be an area for a proposed Technology Showcase for MeeGo projects to be displayed and demo's. &lt;br /&gt;
**** 4. 1872 area sits 120 cab is the 4th breakout area opposite the atrium on the other side of the stadium.&lt;br /&gt;
*** Level 04 (stairs/elevator from the atrium)&lt;br /&gt;
**** 5. Havelock suite sits 130 cab- 5th breakout area&lt;br /&gt;
**** 6. Media center- in another part of the stadium: Perfect for a Graphics track or UI track based on the space.&lt;br /&gt;
* Hotels being used  are the D4 hotels and you may book through registration site (read about details on site below)&lt;br /&gt;
* Registration site is planned to go up no later than August 7. but we are aiming for it to be up mid-July.&lt;br /&gt;
* The Registration will have a place for submissions to the call for papers (including submissions from Intel / Nokia) and a small selection committee will be responsible for choosing the presentations based on the merits of each submission.&lt;br /&gt;
* Anyone is welcome to submit a proposal or attend the event.&lt;br /&gt;
* The event will be free for attendees &lt;br /&gt;
* Sponsorship Prospectus is attached under Sponsor section, please send to anyone interested&lt;br /&gt;
* Updated 6/22/10 AL&lt;br /&gt;
&lt;br /&gt;
== Location ==&lt;br /&gt;
&lt;br /&gt;
Aviva Stadium in Dublin, Ireland- November 15-17th, 2010&lt;br /&gt;
&lt;br /&gt;
Contract is in place and planning information will be updated online for your involvement:)&lt;br /&gt;
&lt;br /&gt;
* [http://www.avivastadiumevents.ie/stadium.aspx Aviva Stadium]&lt;br /&gt;
* Conference facility has held for us one plenary room for the keynote session, and 6-8 breakout rooms to seat 100, I will be creating a presentation to place online, so everyone will see where and what rooms we will be the seesions of the conference in.&lt;br /&gt;
* Dublin is an easy city to get to for international travelers&lt;br /&gt;
* Venue is right on mass transit line (DART)&lt;br /&gt;
* Outside of Schengen area, non-EU citizens would require visa [http://www.dfa.ie/home/index.aspx?id=8777 Visa information for Ireland]&lt;br /&gt;
&lt;br /&gt;
== Accommodation ==&lt;br /&gt;
&lt;br /&gt;
See [[MeeGo Conference 2010/Accommodation]]&lt;br /&gt;
&lt;br /&gt;
* We have reserved a block of 530 rooms with D4 Hotels, in three hotels near the location. Rooms bookings are available [http://conference2010.meego.com/logistics/hotels through the conference site]. We will also have a 24hr networking room in the hotels during the conference&lt;br /&gt;
* Sponsored accommodation will be in this venue only - see [[#Sponsored_participants | sponsored participants]] for more information on requesting sponsorship. In the event of cancellation, the intial deposit on reservation will not be refunded&lt;br /&gt;
* Rooms are available from €65 per night to €115 per night through the conference registration system &lt;br /&gt;
* We are also holding 100 rooms at the Herbert Park hotel again only a couple blocks from the stadium&lt;br /&gt;
&lt;br /&gt;
== Flight Information ==&lt;br /&gt;
&lt;br /&gt;
See [[MeeGo Conference 2010/Flight Information]]&lt;br /&gt;
&lt;br /&gt;
== Video coverage ==&lt;br /&gt;
This is the plan so far:&lt;br /&gt;
&lt;br /&gt;
* There is a professional team dedicated to record, stream, edit and upload all the videos.&lt;br /&gt;
* All the tracks of the first two days will be recorded. The videos will be uploaded on the same evening or up to 48 hours later. The limitations are the editing work and also the risk of overloading the network bandwidth during the conference hours.&lt;br /&gt;
* In addition to this, the main room will have live streaming for all sessions during the first two days.&lt;br /&gt;
* The plan for the unconference day still needs to be defined but in any case the same video crew and equipment will be available.&lt;br /&gt;
&lt;br /&gt;
Volunteering: is someone is interested in shooting additional video coverage please share your ideas at the meego-community mailing list.&lt;br /&gt;
&lt;br /&gt;
== Sponsored participants ==&lt;br /&gt;
The organization has a budget to sponsor the travel and accommodation of selected community contributors. Participants willing to be sponsored must request it through the conference registration. The requests will be evaluated by the Sponsoring Committee (see below).&lt;br /&gt;
&lt;br /&gt;
The idea is to handle the approvals through several rounds of acceptance: first the speakers approved, then the requesters obtaining unanimous support, then the rest until all the sponsorship budget is allocated. An private online spreadsheet will be used to register the votes of the committee members. The discussion will be held through mail and we will organize IRC or conference meetings if needed. The rough prioritisation used by the committee shall be:&lt;br /&gt;
&lt;br /&gt;
# Speakers.&lt;br /&gt;
# Organisers/conference logistical people who aren't being paid to.&lt;br /&gt;
# Active MeeGo community members:&lt;br /&gt;
## Developers (both of MeeGo, and MeeGo applications)&lt;br /&gt;
## Bug reporters&lt;br /&gt;
## Community office-type stuff&lt;br /&gt;
## Anyone else making a valuable contribution&lt;br /&gt;
# Active legacy community members:&lt;br /&gt;
#*  Maemo community members (karma ''helps'' here, but isn't a be-all and end-all)&lt;br /&gt;
#* Moblin community members&lt;br /&gt;
# Members of core upstream projects&lt;br /&gt;
&lt;br /&gt;
Each request shall, of course, be made on a case-by-case basis.&lt;br /&gt;
&lt;br /&gt;
If you have requested sponsorship and you require a 'complicated' visa please contact Quim Gil explaining your case and adding a URL to your meego.com profile.&lt;br /&gt;
&lt;br /&gt;
If you have applied for sponsorship and you can only attend the conference if being sponsored, then don't book anything until you have got a confirmation. The first round of sponsorship confirmations will be sent out on 24th September.&lt;br /&gt;
&lt;br /&gt;
The way the Linux Foundation handles this process in their conferences is simple: you find the best trip, get approval from Angela Brown (Linux Foundation), book your trip and the LF will reimburse you. If you have been approved and you don't have anybody around you with a credit card to do the booking then contact Angela and explain your case. This is no guarantee for anything but she is the one that will be coordinating these reimbursements.&lt;br /&gt;
&lt;br /&gt;
The hotel reservation of sponsored participants will be booked by the Linux Foundation directly. The organization will sponsor you 4 nights and you must decide which ones you choose. For instance, you can fly in on Saturday morning in order to take part in the [[MeeGo_Conference_2010/Early_Bird_Events|Early Bird Events]] but then you'll need to check out on Wednesday morning or cover the extra nights yourself.&lt;br /&gt;
&lt;br /&gt;
=== Time line ===&lt;br /&gt;
* Sep 20: Infra setup. Fine tuning details. Sponsorship approval of accepted speakers starts.&lt;br /&gt;
* Sep 24: Checkbox to request sponsorship removed from registration. No new sponsorship requests accepted.&lt;br /&gt;
* Sep 24: First wave of sponsorship requests approved: accepted speakers.&lt;br /&gt;
* Sep 28: Each sponsorship committee member has gone through all the candidates voting Yes/No in the private spreadsheet.&lt;br /&gt;
* Oct 1: Second wave completed: candidates with 5/5 votes.&lt;br /&gt;
* Oct 8: Third wave completed: candidates with 4-3 votes, depending on budget available.&lt;br /&gt;
* Oct 15: Resolution on remaining cases. All requests are accepted/declined at this point.&lt;br /&gt;
&lt;br /&gt;
== Team ==&lt;br /&gt;
* Coordination: [http://meego.com/users/dawnfoster Dawn Foster] and [http://meego.com/users/qgil Quim Gil].&lt;br /&gt;
* Logistics: [http://meego.com/users/amyleeland Amy Leeland] coordinates. Specific areas and people in charge to be listed below.&lt;br /&gt;
** Specific areas go here.&lt;br /&gt;
* Content committee: [http://meego.com/users/hohndel Dirk Hohndel] (coordination), [http://meego.com/users/thiago Thiago Macieira], [http://meego.com/users/mmeeks Michael Meeks] and [http://meego.com/users/stskeeps Carsten Munk].&lt;br /&gt;
&lt;br /&gt;
=== Sponsoring Committee ===&lt;br /&gt;
&lt;br /&gt;
The Sponsoring Committee is in charge of reviewing the sponsorship requests sent by individuals registering to the conference. It is formed by five members: [http://meego.com/users/qgil Quim Gil] (coordinator, [http://wiki.meego.com/Community_Office Community Office]), [http://meego.com/users/dawnfoster Dawn Foster] ([http://wiki.meego.com/Community_Office Community Office]), Angela Brown (Linux Foundation), [http://meego.com/users/slaine Glen Gray] (Moblin/netbook bg) and [http://meego.com/users/jaffa Andrew Flegg] (Maemo/handset bg).&lt;br /&gt;
&lt;br /&gt;
== Volunteering ==&lt;br /&gt;
&lt;br /&gt;
To run a smooth and successful MeeGo Conference will require a number of volunteers. If you want to volunteer for a certain part of the conference, please add your name below that heading, linked to your meego.com profile. You can follow the conference organization work at the [http://forum.meego.com/forumdisplay.php?f=5 Community Matters forum] (specifically [http://forum.meego.com/showthread.php?t=95 this thread]).&lt;br /&gt;
&lt;br /&gt;
=== General ===&lt;br /&gt;
Not sure where you want to volunteer yet until the conference schedule is finalized? Put your name here and we'll add more detailed volunteer tables in the months to come.&lt;br /&gt;
&lt;br /&gt;
'''Volunteers:''' [http://meego.com/users/dneary Dave Neary/dneary], [http://meego.com/users/texrat Randall Arnold/Texrat], [http://meego.com/users/chippy Steve Paine/Chippy], [http://meego.com/users/timsamoff Tim Samoff/timsamoff], [http://meego.com/users/andreagrandi Andrea Grandi/andy80], [http://meego.com/users/ferwakeup Fernando Martin/ferwakeup], [http://meego.com/users/jnwi Jens Wiik/jnwi], [http://meego.com/users/thp Thomas Perl/thp], [http://meego.com/users/sivan Sivan Greenberg], [http://meego.com/users/anidel Aniello Del Sorbo/anidel], [http://meego.com/users/andrei1089 Andrei Mirestean/andrei1089], [http://meego.com/users/ryanware Ryan Ware/ryanware], [http://meego.com/users/saviq Michał Sawicz/saviq], [http://meego.com/users/vdvsx Valerio Valerio/VDVsx], [http://meego.com/users/nononoyes Alessandro Peralma/No!No!No!Yes!].&lt;br /&gt;
&lt;br /&gt;
=== Scheduled Opportunities ===&lt;br /&gt;
'''Please commit to specific tasks and times on the [[MeeGo_Conference_2010/Volunteering|Volunteer Grid]]'''&lt;br /&gt;
&lt;br /&gt;
There are a number of volunteer opportunities that people can signup for specific time slots, such as manning the information desk or session tech support. Since the final conference schedule isn't available yet, people can signup for the tasks now and then shift around the times they are available later. These are the types of volunteer opportunities:&lt;br /&gt;
&lt;br /&gt;
* IRC Chat Moderators&lt;br /&gt;
* Information Desk Helpers&lt;br /&gt;
* Session Tech Support&lt;br /&gt;
* Conference Setup - Sunday 14&lt;br /&gt;
* Conference Cleanup - Wednesday 17&lt;br /&gt;
* Speaker Assistants&lt;br /&gt;
* Conference Room Reservation Table&lt;br /&gt;
* Hacking Session Helpers&lt;br /&gt;
&lt;br /&gt;
'''Volunteers:'''&lt;br /&gt;
* [http://meego.com/users/ferwakeup Fernando Martin/ferwakeup] for Speaker Assistant.&lt;br /&gt;
* [http://meego.com/users/leinir Dan Leinir Turthra Jensen] for Conference Setup, Conference Cleanup and Hacking Session Helper (depending on sponsorship)&lt;br /&gt;
&lt;br /&gt;
=== Organizing Opportunities ===&lt;br /&gt;
A number of the conference activities have yet to be fully organized and the conference committee would love help with these tasks. Here is a list of activities still needing to be organized. It might be best to start forum threads for each of the specific organizing tasks and then document here the decisions. &lt;br /&gt;
&lt;br /&gt;
* Organize [[MeeGo_Conference_2010/Early_Bird_Events|Early Bird Events]]&lt;br /&gt;
* Organize Hacking Sessions&lt;br /&gt;
* Organize Temple Bar Night&lt;br /&gt;
* Organize Signup for Guinness Shuttles&lt;br /&gt;
* Reach out to local businesses for conference deals&lt;br /&gt;
&lt;br /&gt;
'''Volunteers:'''&lt;br /&gt;
&lt;br /&gt;
* [http://meego.com/users/andreagrandi Andrea Grandi/andy80]: I propose myself for '''Organize [http://wiki.meego.com/MeeGo_Conference_2010/Early_Bird_Events Early Bird Events]'''. I'd like to lead the organization of two days ('''November 13th, 14th''') in the similar way we (Maemo Community) organized the [http://wiki.maemo.org/Maemo-Barcelona_Long_Weekend Barcelona Long Weekend]. More details soon.&lt;br /&gt;
* [http://meego.com/users/thp thp] - Early Bird Events w/ Andrea&lt;br /&gt;
* [http://meego.com/users/revdkathy RevdKathy]: Organise the Meego Greeters to provide mobile information and help around the conference.&lt;br /&gt;
&lt;br /&gt;
== Topics ==&lt;br /&gt;
&lt;br /&gt;
Potential themes for the conference which suit a first conference.&lt;br /&gt;
&lt;br /&gt;
; MeeGo for Maemo &amp;amp; Moblin application developers &lt;br /&gt;
: Bringing developers from old platform to new &lt;br /&gt;
: please define here how the old differs from the new. I am assuming the new platform includes using the Qt framework as the standard, but what else? What is the smooth way to move RPM -&amp;gt; DEB?&lt;br /&gt;
; MeeGo for N900 and N8x0 owners&lt;br /&gt;
: What is MeeGo in a concrete way? Is it a set of userland libraries and applications that you can run on your N900 in a chrooted environment for example?&lt;br /&gt;
: Bring our old power users over&lt;br /&gt;
: dual booting a &amp;quot;Meego flash image&amp;quot; on your N?x? device? What about MER?&lt;br /&gt;
; New developers coming to MeeGo&lt;br /&gt;
: Qt and WRT, and maybe Clutter&lt;br /&gt;
; Distributing MeeGo software&lt;br /&gt;
: yes, please explain how to do this in light of the current system of uploading Debian packages &amp;amp; promoting?&lt;br /&gt;
: What comes after Extras?&lt;br /&gt;
; MeeGo platform&lt;br /&gt;
: Getting more developers involved in the MeeGo platform, and reaching out to upstream to have a critical mass of MeeGo middleware developers there&lt;br /&gt;
; Cool stuff (hardware &amp;amp; software) coming out of Helsinki &amp;amp; Portland&lt;br /&gt;
: Target press &amp;amp; new users&lt;br /&gt;
; Building a healthy MeeGo community&lt;br /&gt;
: Involving Intel and Nokia engineers, upstream, platform hackers, application developers and power users in the MeeGo community - covering things like outreach and events, community infrastructure (including the Technical Steering Group, working groups, council?), social dynamics &amp;amp; policies, and community involvement in product roadmaps, etc&lt;br /&gt;
;Testing with MeeGo&lt;br /&gt;
:Test development, image creation, test execution and debugging as a smooth ride along development.&lt;br /&gt;
;The Community Development Ecosystem around MeeGo (lbt)&lt;br /&gt;
: Building against MeeGo - the Maemo and MeeGo community OBSes&lt;br /&gt;
: Application development and community application QA - Extras and PPAs(?)&lt;br /&gt;
: Experimental development - MeeGo on N8x0&lt;br /&gt;
&lt;br /&gt;
'''''A first draft of the Call for Papers is up: [[MeeGo_Conference_2010/DraftCFP]]'''''&lt;br /&gt;
&lt;br /&gt;
== Other suggestions for the event ==&lt;br /&gt;
* 3 days event, 2 days organized by the community and one organized by the companies involved. Developers, platform and power users tracks. --[[User:Vdvsx|Vdvsx]] 22:24, 12 March 2010 (UTC)&lt;br /&gt;
* In addition to 20 minute talks and 5 minute lightning talks, a provision for talks that fit in between (10 minutes) --[[User:Texrat|Texrat]] 03:47, 14 March 2010 (UTC)&lt;br /&gt;
* team-building, brainstorming exercises on a large scale (like the [http://maemo.nokia.com/news/maemo-co-creation-workshop-video/ Co-Creation Workshop held before Maemo Summit 2009] --[[User:Texrat|Texrat]] 03:47, 14 March 2010 (UTC)&lt;br /&gt;
* themed tracks with breakout sessions between X sets of presentations (where X can be number of sessions or time duration). --[[User:Texrat|Texrat]] 05:41, 27 April 2010 (UTC)&lt;br /&gt;
* Birds Of Feather [http://en.wikipedia.org/wiki/Birds_of_a_Feather_(computing) (BOFs)]- for casual non formal feature planning and development specification: --[[User:sivan|sivan]]&lt;br /&gt;
** A group of people interested in a feature or a process gather around a round table.&lt;br /&gt;
** A driver for the discussion presents the topic he wants to spec out or a topic assigned to him to present from the list of process and features desired.&lt;br /&gt;
** Input is arriving from participants, and is ironed out as &amp;quot;[http://en.wikipedia.org/wiki/User_story user stories]&amp;quot; , as well as leads, references tips and hints for undertaking the development.&lt;br /&gt;
** The driver after finishing the session sets to finish the spec in terms of completeness and publish it on the wiki for peer review of the BOF participants and/or a review board that accepts features and new takes for the project.&lt;br /&gt;
* Recognize the '''non-technical''' contributor of the year. This is important since we have so many needs on the community side. --[[User:Texrat|Texrat]] 01:35, 17 August 2010 (UTC)&lt;br /&gt;
* Recognize the most popular presentations. There should be a formal survey for every talk and workshop, as well as a summary survey. Use the findings to reward those who stood out. --[[User:Texrat|Texrat]] 01:35, 17 August 2010 (UTC)&lt;br /&gt;
* Games. Some sort of intramural sports or activities. Hey, we're in a stadium, right? Let's take advantage! Okay, maybe we can't use the field, but surely we can come up with something... even tug-of-war would be fun --[[User:Texrat|Texrat]] 01:35, 17 August 2010 (UTC)&lt;br /&gt;
** Treasure/scavenger hunt for meego goodies and prizes.&lt;br /&gt;
* [http://wiki.meego.com/MeeGo_Greeters MeeGo Greeters] would make great volunteers! --[[User:Texrat|Texrat]] 19:58, 31 August 2010 (UTC)&lt;/div&gt;</summary>
		<author><name>Epage</name></author>	</entry>

	<entry>
		<id>http://wiki.meego.com/Devices</id>
		<title>Devices</title>
		<link rel="alternate" type="text/html" href="http://wiki.meego.com/Devices"/>
				<updated>2010-11-21T03:36:44Z</updated>
		
		<summary type="html">&lt;p&gt;Epage: A thread started, discussing how to optimize the S10-3t, so linking to it&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Below you find devices where MeeGo was used successfully (atm only user reports, the list below is compiled from [http://forum.meego.com/showthread.php?t=83 this] forum thread). The list is not complete and waits for your input. &lt;br /&gt;
&lt;br /&gt;
==Devices compatible with MeeGo==&lt;br /&gt;
''sorted alphabetically''&lt;br /&gt;
&lt;br /&gt;
===Handsets===&lt;br /&gt;
&lt;br /&gt;
General information user and developers for [[Handsets]].&lt;br /&gt;
&lt;br /&gt;
*[[Devices/Aava|Aava]] ([[Developing_With_The_Aava|Tips for developing with the Aava]])&lt;br /&gt;
*[[Devices/N900|Nokia N900]] (see install instructions at: [[ARM]])&lt;br /&gt;
*[[Devices/U8500|ST-Ericsson U8500]]&lt;br /&gt;
&lt;br /&gt;
[[Devices/Unlisted_Handsets|Unlisted Handsets]]&lt;br /&gt;
&lt;br /&gt;
===Netbooks===&lt;br /&gt;
&lt;br /&gt;
General information user and developers for [[Netbooks]].&lt;br /&gt;
&lt;br /&gt;
We have a list of [http://meego.com/devices/netbook/supported-hardware-platforms supported netbook platforms] that we run through QA. If you have another netbook that you have confirmed works with MeeGo, please add it below.&lt;br /&gt;
&lt;br /&gt;
*[[wikipedia:Acer Aspire One|Acer Aspire]]&lt;br /&gt;
** One AO532-h&lt;br /&gt;
** One A110L&lt;br /&gt;
** One A150L and A150X&lt;br /&gt;
** One D250&lt;br /&gt;
** One ZG5&lt;br /&gt;
 &lt;br /&gt;
*[[wikipedia:Asus Eee PC|Asus EeePC]]&lt;br /&gt;
** 701 (root partition formatted with ext3)&lt;br /&gt;
** 900 (root partition formatted with ext3)&lt;br /&gt;
** 900A (wireless works only with MeeGo 1.0.90+)&lt;br /&gt;
** 900HA&lt;br /&gt;
** 901&lt;br /&gt;
** 901 Go (3G not supported yet)&lt;br /&gt;
** s101&lt;br /&gt;
** 1000&lt;br /&gt;
** 1000H &lt;br /&gt;
** 1002H (not yet tested for wireless etc)&lt;br /&gt;
** 1005HA &lt;br /&gt;
** 1005PE (Intel(R) Atom(TM) N450)&lt;br /&gt;
** 1008HA ([http://forum.meego.com/showthread.php?p=1330#post1330 well tested])&lt;br /&gt;
* Dell&lt;br /&gt;
** Latitude 2100 (including optional touchscreen)&lt;br /&gt;
** Inspiron Mini 9 ([http://forum.meego.com/showthread.php?t=287 some issues])&lt;br /&gt;
** Vostro A90 (same issues as Mini 9)&lt;br /&gt;
* HERCULES&lt;br /&gt;
** EC-900&lt;br /&gt;
* HP&lt;br /&gt;
** Mini 110 ([http://slaine.org/_slaine/Meego_1.0_Wifi.html Broadcom WiFi needs to be compiled separately])&lt;br /&gt;
** Mini 210 1022eo,1030-NR, others ([http://forum.meego.com/showthread.php?t=328 Broadcom WiFi needs to be compiled separately])&lt;br /&gt;
** Mini 5101 HD ([http://forum.meego.com/showthread.php?t=328 Broadcom WiFi needs to be compiled separately])&lt;br /&gt;
* Lenovo&lt;br /&gt;
** [http://forum.meego.com/showthread.php?t=1995 s10-3t]&lt;br /&gt;
* Medion Akoya Mini E1210&lt;br /&gt;
*[[wikipedia:MSI_Wind_Netbook|MSI Wind]]&lt;br /&gt;
** U130&lt;br /&gt;
** L1350&lt;br /&gt;
* Samsung&lt;br /&gt;
** N130&lt;br /&gt;
** N140&lt;br /&gt;
** N150 (except for some hotkeys (2010-11-20))&lt;br /&gt;
** [[wikipedia:Samsung NC10|NC10]]&lt;br /&gt;
* [[wikipedia:VAIO|Sony VAIO]]&lt;br /&gt;
** VPCW211AX (Intel(R) Atom(TM) N450)&lt;br /&gt;
** VGN-TX3XP (Intel(R) Core(R) Solo(R) 1.2GHz, Intel 945GMS video card)&lt;br /&gt;
* Toshiba Mini&lt;br /&gt;
** NB100&lt;br /&gt;
** NB200&lt;br /&gt;
** NB205&lt;br /&gt;
** NB305&lt;br /&gt;
&lt;br /&gt;
*[[wikipedia:eMachines_Netbook|eMachines]]&lt;br /&gt;
** eM350 (Intel(R) Atom(TM) N450 )&lt;br /&gt;
&lt;br /&gt;
===Nettops===&lt;br /&gt;
*Acer&lt;br /&gt;
**[[wikipedia:Acer Aspire Revo|Revo]] GN40 &lt;br /&gt;
**eMachine EZ1601 and KAV60&lt;br /&gt;
*Asus&lt;br /&gt;
**[[wikipedia:ASUS Eee Box|Eeebox]] B202 &lt;br /&gt;
**[[wikipedia:ASUS Eee Top|Eeetop]] ET1602 &lt;br /&gt;
*[[wikipedia:Micro-Star International|MSI]]&lt;br /&gt;
**AE1900&lt;br /&gt;
*Samsung&lt;br /&gt;
**[[wikipedia:Samsung N130|n130]]&lt;br /&gt;
&lt;br /&gt;
*Intel Desktop Board&lt;br /&gt;
**D410PT&lt;br /&gt;
**D510MO&lt;br /&gt;
**D945GCLF2 (Should work on near-identical D945GCLF as well)&lt;br /&gt;
&lt;br /&gt;
===Notebooks===&lt;br /&gt;
* Acer Travelmate 6292&lt;br /&gt;
* Asus F2F (Celeron M)&lt;br /&gt;
* Asus U1F (Core Duo)&lt;br /&gt;
* Dell Inspiron 1525 (without wireless networking) [http://forum.meego.com/showthread.php?t=371]&lt;br /&gt;
* Dell Latitude D630 (Broadcom [http://slaine.org/_slaine/Meego_1.0_Wifi.html] wifi driver might be needed)&lt;br /&gt;
* Dell Latitude E6400 (Broadcom [http://slaine.org/_slaine/Meego_1.0_Wifi.html] wifi driver might be needed)&lt;br /&gt;
* Dell XPS M1210 CoreDuo T2400, Intel 950GM, Intel Wireless 3945abg, Linksys Webcam. [http://forum.meego.com/showthread.php?t=433]&lt;br /&gt;
* Fujitsu Lifebook P1610: Working: wifi, sound, screen brightness/sound volume via function keys, SD card reader, trackpoint. Not Working: touchscreenn  [--[[User:Rokky|Rokky]] 22:17, 2 June 2010 (UTC)]&lt;br /&gt;
* Lenovo IdeaPad Y450 [http://forum.meego.com/showthread.php?t=265]&lt;br /&gt;
* Lenovo T60 / T61 [http://forum.meego.com/showthread.php?t=323]&lt;br /&gt;
* Lenovo ThinkPad R500 [http://forum.meego.com/showthread.php?t=371]&lt;br /&gt;
* Panasonic CF-52 (Centrino2)&lt;br /&gt;
* Toshiba L500 Satellite low-end Notebook (needs rtl8192se driver from RealTek for wireless)&lt;br /&gt;
* Toshiba Satellite U305 S5077 &lt;br /&gt;
* Wipro WNB7PBC4830R (needs wireless driver code compilation)&lt;br /&gt;
&lt;br /&gt;
===Laptop===&lt;br /&gt;
* Toshiba Satellite A300 -&amp;gt; Pentium Dual Core T4200 2GHz X2&lt;br /&gt;
     ·Work: -Trackpad&lt;br /&gt;
            -Keyboard&lt;br /&gt;
            -Webcam&lt;br /&gt;
            -Sound&lt;br /&gt;
            -Video card (Intel GMA x4500HD) -&amp;gt; HDMI and VGA work&lt;br /&gt;
            -Wi-fi&lt;br /&gt;
            -Bluetooth&lt;br /&gt;
            -USB ports&lt;br /&gt;
            -Card Reader&lt;br /&gt;
      ·Not Tested:&lt;br /&gt;
            -ExpressCard&lt;br /&gt;
     &lt;br /&gt;
&lt;br /&gt;
* Dell Inspiron 1545 -&amp;gt; Intel® Core™ 2 Duo T6600 (2.20GHz/800Mhz FSB/2MB cache)&lt;br /&gt;
     ·Work: -Trackpad&lt;br /&gt;
            -Keyboard&lt;br /&gt;
            -Sound&lt;br /&gt;
            -Video card&lt;br /&gt;
            -Wi-fi ([http://slaine.org/_slaine/Meego_1.0_Wifi.html After installing Broadcom drivers])&lt;br /&gt;
            -USB ports&lt;br /&gt;
            -Card Reader&lt;br /&gt;
     ·Not Tested:&lt;br /&gt;
            -Bluetooth&lt;br /&gt;
            -ExpressCard&lt;br /&gt;
&lt;br /&gt;
* Dell XPS L701x -&amp;gt; Intel Core i5 560M (2.66GHz/3MB cache)&lt;br /&gt;
     ·Work: -Trackpad&lt;br /&gt;
            -Keyboard&lt;br /&gt;
            -Sound&lt;br /&gt;
            -Video card&lt;br /&gt;
            -Wi-fi&lt;br /&gt;
            -USB ports&lt;br /&gt;
            -Card Reader&lt;br /&gt;
            -Bluetooth&lt;br /&gt;
     ·Not Tested:&lt;br /&gt;
            -ExpressCard&lt;br /&gt;
     ·Not Working:&lt;br /&gt;
            -Touchscreen&lt;br /&gt;
            -Trackpad scrolling (Standard uses different gestures than normal)&lt;br /&gt;
&lt;br /&gt;
===other===&lt;br /&gt;
*[[wikipedia:Beagle Board|Beagle Board]], see [[ARM/Meego on the Beagle]]* &lt;br /&gt;
*[[wikipedia:Archos_Internet_Media_Tablet#Archos_5|Archos 5 IT]], simmilar specs like the Beagle, more RAM though.&lt;br /&gt;
&lt;br /&gt;
* See http://www.youtube.com/watch?v=vnwfVtHuhoI for GMA500 based O2 Joggler running Meego 1.0 Netbook UX&lt;br /&gt;
&lt;br /&gt;
* See http://www.youtube.com/watch?v=JVL8I1B6uPs for GMA500 based O2 Joggler running Meego 1.0.1 IVI UX&lt;br /&gt;
&lt;br /&gt;
* See http://youtu.be/6ix6Ux8NqYU for Meego 1.0 on GMA500 based Nokia Booklet (who said it could not be done)&lt;br /&gt;
&lt;br /&gt;
* See http://www.openaos.org/ Archos A9&lt;br /&gt;
&lt;br /&gt;
*[[wikipedia:PandaBoard|Panda Board]], see [[ARM/OMAP4_Panda]]*&lt;br /&gt;
&lt;br /&gt;
* See http://wiki.meego.com/Installation_of_MeeGo_on_notebook&lt;br /&gt;
&lt;br /&gt;
==Known problems==&lt;br /&gt;
*'Netbooks requiring GMA500 drivers are not supported', see [[wikipedia:Intel GMA#GMA 500 on Linux]] and [[wikipedia:Poulsbo_(chipset)#Linux_support]]&lt;br /&gt;
** Try this Poulsbo/GMA500 Netbook Kickstart [[User:vgrade]]&lt;br /&gt;
*'MeeGo will not work on non-SSSE3 CPUs'&lt;br /&gt;
** Community page to try and rectify this [[Devices/nonSSSE3|nonSSSE3]]&lt;/div&gt;</summary>
		<author><name>Epage</name></author>	</entry>

	<entry>
		<id>http://wiki.meego.com/MeeGo_Conference_2010/Flight_Information</id>
		<title>MeeGo Conference 2010/Flight Information</title>
		<link rel="alternate" type="text/html" href="http://wiki.meego.com/MeeGo_Conference_2010/Flight_Information"/>
				<updated>2010-11-11T16:46:22Z</updated>
		
		<summary type="html">&lt;p&gt;Epage: /* Friday 19 */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Flight Information ==&lt;br /&gt;
&lt;br /&gt;
''Wouldn't it make sense to split the table for arrivals and departures and then sort each table by date and time as with the [http://wiki.maemo.org/Maemo_Summit_2009/Travel Maemo Summit 2009 travel wiki page]?''&lt;br /&gt;
&lt;br /&gt;
Please move your entry from below to the new tables here. Keep the entries sorted by time and date.&lt;br /&gt;
&lt;br /&gt;
===Arrivals===&lt;br /&gt;
&lt;br /&gt;
====Friday 12====&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Time&lt;br /&gt;
! Name&lt;br /&gt;
! Place of arrival&lt;br /&gt;
! Means of transport&lt;br /&gt;
! Comments&lt;br /&gt;
|-&lt;br /&gt;
| 12:00&lt;br /&gt;
| [[user:Nightrose | Lydia Pintscher]]&lt;br /&gt;
| Airport (DUB)&lt;br /&gt;
| from FRA&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| 12:45&lt;br /&gt;
| [[user:pycage | Martin Grimme]]&lt;br /&gt;
| Airport (DUB)&lt;br /&gt;
| from MUC&lt;br /&gt;
|&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====Saturday 13====&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Time&lt;br /&gt;
! Name&lt;br /&gt;
! Place of arrival&lt;br /&gt;
! Means of transport&lt;br /&gt;
! Comments&lt;br /&gt;
|-&lt;br /&gt;
| 06:50&lt;br /&gt;
| [[user:Epage | Ed Page]]&lt;br /&gt;
| Airport (DUB)&lt;br /&gt;
| from Atlanta&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| 08:55&lt;br /&gt;
| [[user:timsamoff | Tim Samoff]]&lt;br /&gt;
| Airport (DUB)&lt;br /&gt;
| from JFK&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| 09:00&lt;br /&gt;
| [[user:dawnfoster | Dawn Foster]]&lt;br /&gt;
| Airport (DUB)&lt;br /&gt;
| from ORD&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| 09:20&lt;br /&gt;
| [[user:texrat | Randall Arnold ]] ([http://meego.com/users/texrat texrat])&lt;br /&gt;
| Airport (DUB)&lt;br /&gt;
| United 3261 from EWR&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| 09:40&lt;br /&gt;
| Timo Rongas ([http://meego.com/users/ronksu ronksu])&lt;br /&gt;
| Airport (DUB)&lt;br /&gt;
| from CPH&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| 09:40&lt;br /&gt;
| Tatu Lahtela ([http://meego.com/users/tatlahte tatlahte])&lt;br /&gt;
| Airport (DUB)&lt;br /&gt;
| from CPH&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| 10:30&lt;br /&gt;
| David Greaves ([http://meego.com/users/lbt lbt])&lt;br /&gt;
| Airport (DUB)&lt;br /&gt;
| from LHR&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| 12:05&lt;br /&gt;
| Dan Leinir Turthra Jensen ([http://meego.com/users/leinir leinir])&lt;br /&gt;
| Aurport (DUB)&lt;br /&gt;
| EI0235 from LGW&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| 13:25&lt;br /&gt;
| Andrew Flegg ([http://meego.com/users/jaffa Jaffa])&lt;br /&gt;
| Airport (DUB)&lt;br /&gt;
| EI0267 from BHX&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| 14:05&lt;br /&gt;
| Josep Roura ([http://meego.com/users/netoak netoak])&lt;br /&gt;
| Airport (DUB)&lt;br /&gt;
| FR7039 from GRO&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| 16:40&lt;br /&gt;
| Henri Bergius ([http://meego.com/users/bergie bergie])&lt;br /&gt;
| Airport (DUB)&lt;br /&gt;
| AF5014 from CDG&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| 16:40&lt;br /&gt;
| Susanna Huhtanen ([http://maemo.org/profile/view/ihmis-suski/ ihmis-suski])&lt;br /&gt;
| Airport (DUB)&lt;br /&gt;
| AF5014 from CDG&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| 17:20&lt;br /&gt;
| Attila Csipa ([http://meego.com/users/achipa achipa])&lt;br /&gt;
| Airport (DUB)&lt;br /&gt;
| LH980 from FRA&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| 17:35&lt;br /&gt;
| [[user:thp|thp]]&lt;br /&gt;
| Airport (DUB)&lt;br /&gt;
| from LHR&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| 18:50&lt;br /&gt;
| Leonardo da Mata ([http://meego.com/users/barroca barroca])&lt;br /&gt;
| Airport (DUB)&lt;br /&gt;
| JJ 7922 from LHR&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| 14:25&lt;br /&gt;
| [[user:sivan|sivang]]&lt;br /&gt;
| Airport (DUB)&lt;br /&gt;
| From LHR&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| 00:00&lt;br /&gt;
| [[user:username|Firstname Lastname]]&lt;br /&gt;
| Airport (DUB)&lt;br /&gt;
| Flight number from airport&lt;br /&gt;
| ...&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====Sunday 14====&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Time&lt;br /&gt;
! Name&lt;br /&gt;
! Place of arrival&lt;br /&gt;
! Means of transport&lt;br /&gt;
! Comments&lt;br /&gt;
|-&lt;br /&gt;
| 8:50&lt;br /&gt;
| Ryan Abel ([http://meego.com/users/generalantilles GeneralAntilles])&lt;br /&gt;
| Airport (DUB)&lt;br /&gt;
| US Air 722 from PHL&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| 08:50&lt;br /&gt;
| Stephen Gadsby ([http://meego.com/users/sjgadsby sjgadsby])&lt;br /&gt;
| Airport (DUB)&lt;br /&gt;
| US Air 722 from PHL&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| 08:55&lt;br /&gt;
| Gary Birkett ([http://meego.com/users/lcuk lcuk])&lt;br /&gt;
| Airport (DUB)&lt;br /&gt;
| FR553 from MAN&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| 08:55&lt;br /&gt;
| Mike Jipping ([http://meego.com/users/frethop frethop])&lt;br /&gt;
| Airport (DUB)&lt;br /&gt;
| DL164 from JFK&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| 09:00&lt;br /&gt;
| Reggie Suplido ([http://meego.com/users/reggie reggie])&lt;br /&gt;
| Airport (DUB)&lt;br /&gt;
| EI124 from ORD (Chicago, IL)&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| 09:20&lt;br /&gt;
| Aniello Del Sorbo ([http://meego.com/users/anidel anidel])&lt;br /&gt;
| Airport (DUB)&lt;br /&gt;
| Flight 126 (Continental) from EWR (Newark, NJ)&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| 09:40&lt;br /&gt;
| Arek Stopczynski ([http://meego.com/users/hopbeat hopbeat])&lt;br /&gt;
| Airport (DUB)&lt;br /&gt;
| SK537 from CPH&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| 09:40&lt;br /&gt;
| Brendan Le Foll ([http://meego.com/users/arfoll arfoll])&lt;br /&gt;
| Airport (DUB)&lt;br /&gt;
| 6394 from BCN&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| 10:10&lt;br /&gt;
| Valério Valério ([http://meego.com/users/vdvsx VDVsx])&lt;br /&gt;
| Airport (DUB)&lt;br /&gt;
| KL3153 from AMS&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| 12:20&lt;br /&gt;
| Daniele Maio ([http://meego.com/users/b0unc3 b0unc3])&lt;br /&gt;
| Airport (DUB)&lt;br /&gt;
| FR 9427 from BGY&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| 12:40&lt;br /&gt;
| Andrew Olmsted ([http://meego.com/users/fiferboy fiferboy])&lt;br /&gt;
| Airport (DUB)&lt;br /&gt;
| AC848/BMI123 from YYZ/LHR&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| 13.35 &lt;br /&gt;
| Kathy Smith ([http://meego.com/users/revdkathy RevdKathy])&lt;br /&gt;
| Airport (DUB) &lt;br /&gt;
| SZ593 from NQY &lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| 13.55 &lt;br /&gt;
| Andrew Zhilin ([http://meego.com/users/wazd wazd])&lt;br /&gt;
| Airport (DUB) &lt;br /&gt;
| AF5006 from CDG &lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| 14.10 &lt;br /&gt;
| Carsten Munk ([http://meego.com/users/stskeeps Stskeeps])&lt;br /&gt;
| Airport (DUB) &lt;br /&gt;
| EI0363 from WAW &lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| 16:40&lt;br /&gt;
| timeless&lt;br /&gt;
| Airport (DUB)&lt;br /&gt;
| AF1099/AF5014&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| 16:40&lt;br /&gt;
| Jeremiah C. Foster ([http://meego.com/users/jeremiah jeremiah])&lt;br /&gt;
| Airport (DUB)&lt;br /&gt;
| AF 5014 from CDG&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| 16:40&lt;br /&gt;
| Mikael Söderberg &lt;br /&gt;
| Airport (DUB)&lt;br /&gt;
| AF 5014 from CDG&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| 17:20&lt;br /&gt;
| Eero af Heurlin ([http://meego.com/users/rambo rambo])&lt;br /&gt;
| Airport (DUB)&lt;br /&gt;
| LH 980&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| 17:20&lt;br /&gt;
| Lauri Manner&lt;br /&gt;
| Airport (DUB)&lt;br /&gt;
| LH 980&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| 17:25&lt;br /&gt;
| Andre Klapper ([http://meego.com/users/andre andre])&lt;br /&gt;
| Airport (DUB)&lt;br /&gt;
| EI0645 from PRG&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| 18:00&lt;br /&gt;
| Timo Härkönen ([http://meego.com/users/timoph timoph])&lt;br /&gt;
| Airport (DUB)&lt;br /&gt;
| SK2537 from CPH&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| 21:55&lt;br /&gt;
| Piotr Pokora ([http://meego.com/users/piotras piotras])&lt;br /&gt;
| Airport (DUB)&lt;br /&gt;
| FR1979&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| 00:00&lt;br /&gt;
| [[user:username|Firstname Lastname]]&lt;br /&gt;
| Airport (DUB)&lt;br /&gt;
| Flight number from airport&lt;br /&gt;
| ...&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====Monday 15====&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Time&lt;br /&gt;
! Name&lt;br /&gt;
! Place of arrival&lt;br /&gt;
! Means of transport&lt;br /&gt;
! Comments&lt;br /&gt;
|-&lt;br /&gt;
| 06:50&lt;br /&gt;
| Sanjeev Visvanatha ([http://meego.com/users/eipi eipi])&lt;br /&gt;
| Airport (DUB)&lt;br /&gt;
| Flight CO22 from EWR&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| 07:55&lt;br /&gt;
| Lucas Maneos ([http://meego.com/users/lm lm])&lt;br /&gt;
| Airport (DUB)&lt;br /&gt;
| Flight BD0121 from LHR&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| 08:55&lt;br /&gt;
| Mart Roosmaa ([http://meego.com/users/roosmaa roosmaa])&lt;br /&gt;
| Airport (DUB)&lt;br /&gt;
| Flight FR553 from MAN&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| 00:00&lt;br /&gt;
| [[user:username|Firstname Lastname]]&lt;br /&gt;
| Airport (DUB)&lt;br /&gt;
| Flight number from airport&lt;br /&gt;
| ...&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Departures===&lt;br /&gt;
&lt;br /&gt;
====Wednesday 17====&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Time&lt;br /&gt;
! Name&lt;br /&gt;
! Place of departure&lt;br /&gt;
! Means of transport&lt;br /&gt;
! Comments&lt;br /&gt;
|-&lt;br /&gt;
| 09:00&lt;br /&gt;
| Sanjeev Visvanatha ([http://meego.com/users/eipi eipi])&lt;br /&gt;
| Airport (DUB)&lt;br /&gt;
| CO23 to EWR (Newark, NJ)&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| 09:00&lt;br /&gt;
| Aniello Del Sorbo ([http://meego.com/users/ anidel])&lt;br /&gt;
| Airport (DUB)&lt;br /&gt;
| to EWR (Newark, NJ)&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| 13:45&lt;br /&gt;
| Kathy Smith ([http://meego.com/users/revdkathy RevdKathy])&lt;br /&gt;
| Airport (DUB)&lt;br /&gt;
| to NQY (Newquay, Cornwall)&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| 16:00&lt;br /&gt;
| Piotr Pokora ([http://meego.com/users/piotras piotras])&lt;br /&gt;
| Airport (DUB)&lt;br /&gt;
| FR1978&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| 16:30&lt;br /&gt;
| [[user:thp|thp]]&lt;br /&gt;
| Airport (DUB)&lt;br /&gt;
| to VIE&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| 18:10&lt;br /&gt;
| Mart Roosmaa ([http://meego.com/users/roosmaa roosmaa])&lt;br /&gt;
| Airport (DUB)&lt;br /&gt;
| to MAN&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| 18:40&lt;br /&gt;
| Andrew Flegg ([http://meego.com/users/jaffa Jaffa])&lt;br /&gt;
| Airport (DUB)&lt;br /&gt;
| EI0276 to BHX&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| 18:45&lt;br /&gt;
| Eero af Heurlin ([http://meego.com/users/rambo rambo])&lt;br /&gt;
| Airport (DUB)&lt;br /&gt;
| SK 2538&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| 18:45&lt;br /&gt;
| Tatu Lahtela ([http://meego.com/users/tatlahte tatlahte])&lt;br /&gt;
| Airport (DUB)&lt;br /&gt;
| SK 2538&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| 18:45&lt;br /&gt;
| Lauri Manner&lt;br /&gt;
| Airport (DUB)&lt;br /&gt;
| SK 2538&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| 20:00&lt;br /&gt;
| Adam Reviczky ([[user:Reviczky|reviczky]])&lt;br /&gt;
| Airport (DUB)&lt;br /&gt;
| FR118 to LGW&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| 21:05&lt;br /&gt;
| Lucas Maneos ([http://meego.com/users/lm lm])&lt;br /&gt;
| Airport (DUB)&lt;br /&gt;
| BD0132 to LHR&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| 00:00&lt;br /&gt;
| [[user:username|Firstname Lastname]]&lt;br /&gt;
| Airport (DUB)&lt;br /&gt;
| Flight number from airport&lt;br /&gt;
| ...&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====Thursday 18====&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Time&lt;br /&gt;
! Name&lt;br /&gt;
! Place of departure&lt;br /&gt;
! Means of transport&lt;br /&gt;
! Comments&lt;br /&gt;
|-&lt;br /&gt;
| 06:00&lt;br /&gt;
| Valério Valério ([http://meego.com/users/vdvsx VDVsx])&lt;br /&gt;
| Airport (DUB)&lt;br /&gt;
| KL3152 to AMS&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| 06:35&lt;br /&gt;
| Daniele Maio ([http://meego.com/users/b0unc3 b0unc3])&lt;br /&gt;
| Airport (DUB)&lt;br /&gt;
| FR 9426 to BGY&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| 07:00&lt;br /&gt;
| Lydia Pintscher ([http://meego.com/users/Nightrose Nightrose])&lt;br /&gt;
| Airport (DUB)&lt;br /&gt;
| to FRA&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| 07:20&lt;br /&gt;
| Carsten Munk ([http://meego.com/users/stskeeps Stskeeps])&lt;br /&gt;
| Airport (DUB)&lt;br /&gt;
| EI0362 to WAW&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| 09:10&lt;br /&gt;
| Henri Bergius ([http://meego.com/users/bergie bergie])&lt;br /&gt;
| Airport (DUB)&lt;br /&gt;
| AF5001 to CDG&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| 09:10&lt;br /&gt;
| Susanna Huhtanen ([http://maemo.org/profile/view/ihmis-suski/ ihmis-suski])&lt;br /&gt;
| Airport (DUB)&lt;br /&gt;
| AF5001 to CDG&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| 10:20&lt;br /&gt;
| Josep Roura ([http://meego.com/users/netoak NetOak])&lt;br /&gt;
| Airport (DUB)&lt;br /&gt;
| FR7038 to GRO&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| 10:45&lt;br /&gt;
| [http://meego.com/users/dawnfoster Dawn Foster]&lt;br /&gt;
| Airport (DUB)&lt;br /&gt;
| to JFK&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| 10:45&lt;br /&gt;
| Mike Jipping [http://meego.com/users/frethop frethop]&lt;br /&gt;
| Airport (DUB)&lt;br /&gt;
| DL165 to JFK&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| 11:05&lt;br /&gt;
| Reggie Suplido ([http://meego.com/users/reggie reggie])&lt;br /&gt;
| Airport (DUB)&lt;br /&gt;
| SK538 to CPH&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| 11:05&lt;br /&gt;
| Ryan Abel ([http://meego.com/users/generalantilles GeneralAntilles])&lt;br /&gt;
| Airport (DUB)&lt;br /&gt;
| US Air 723 to PHL&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| 11:05&lt;br /&gt;
| Stephen Gadsby ([http://meego.com/users/sjgadsby sjgadsby])&lt;br /&gt;
| Airport (DUB)&lt;br /&gt;
| US Air 723 to PHL&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| 11:40&lt;br /&gt;
| Andre Klapper ([http://meego.com/users/andre andre])&lt;br /&gt;
| Airport (DUB)&lt;br /&gt;
| IE0644 to PRG&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| 11:55&lt;br /&gt;
| Andrew Zhilin ([http://meego.com/users/wazd wazd])&lt;br /&gt;
| Airport (DUB)&lt;br /&gt;
| AF5005 to CDG&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| 12:00&lt;br /&gt;
| Timo Härkönen ([http://meego.com/users/timoph timoph])&lt;br /&gt;
| Airport (DUB)&lt;br /&gt;
| SK536 to ARN&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| 13:00&lt;br /&gt;
| Randall Arnold (texrat)&lt;br /&gt;
| Airport (DUB)&lt;br /&gt;
| United 4925 to ORD&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| 13:55&lt;br /&gt;
| Brendan Le Foll ([http://meego.com/users/arfoll arfoll])&lt;br /&gt;
| Airport (DUB)&lt;br /&gt;
| 6395&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| 14:50&lt;br /&gt;
| timeless&lt;br /&gt;
| Airport (DUB)&lt;br /&gt;
| AF5009/AF1798&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| 14:50&lt;br /&gt;
| [[user:jeremiah|Jeremiah Foster]]&lt;br /&gt;
| Airport (DUB)&lt;br /&gt;
| AF 5009 CDG -&amp;gt; GOT&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| 14:50&lt;br /&gt;
| Mikael Söderberg&lt;br /&gt;
| Airport (DUB)&lt;br /&gt;
| AF 5009 CDG -&amp;gt; GOT&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| 15:00&lt;br /&gt;
| Andrew Olmsted ([http://meego.com/users/fiferboy fiferboy])&lt;br /&gt;
| Airport (DUB)&lt;br /&gt;
| EI3296 to CWL&lt;br /&gt;
| Staying extra days after conference&lt;br /&gt;
|-&lt;br /&gt;
| 16:00&lt;br /&gt;
| Martin Grimme ([http://meego.com/users/pycage pycage])&lt;br /&gt;
| Airport (DUB)&lt;br /&gt;
| EI356 to MUC&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| 18:10&lt;br /&gt;
| Gary Birkett ([http://meego.com/users/lcuk lcuk])&lt;br /&gt;
| Airport (DUB)&lt;br /&gt;
| FR556 to MAN&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| 18:45&lt;br /&gt;
| Arek Stopczynski ([http://meego.com/users/hopbeat hopbeat])&lt;br /&gt;
| Airport (DUB)&lt;br /&gt;
| SK2538 to CPH&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| 20:30&lt;br /&gt;
| Dan Leinir Turthra Jensen ([http://meego.com/users/leinir leinir])&lt;br /&gt;
| Airport (DUB)&lt;br /&gt;
| EI0248 to LGW&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| 00:00&lt;br /&gt;
| [[user:username|Firstname Lastname]]&lt;br /&gt;
| Airport (DUB)&lt;br /&gt;
| Flight number to airport&lt;br /&gt;
| ...&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====Friday 19 ====&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Time&lt;br /&gt;
! Name&lt;br /&gt;
! Place of departure&lt;br /&gt;
! Means of transport&lt;br /&gt;
! Comments&lt;br /&gt;
|-&lt;br /&gt;
| 08:40&lt;br /&gt;
| [[user:Epage | Ed Page]]&lt;br /&gt;
| Airport (DUB)&lt;br /&gt;
| to Atlanta&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| 13:15&lt;br /&gt;
| David Greaves ([http://meego.com/users/lbt lbt])&lt;br /&gt;
| Airport (DUB)&lt;br /&gt;
| to LHR&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====Saturday 20====&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Time&lt;br /&gt;
! Name&lt;br /&gt;
! Place of departure&lt;br /&gt;
! Means of transport&lt;br /&gt;
! Comments&lt;br /&gt;
|-&lt;br /&gt;
| 10:45&lt;br /&gt;
| [[user:timsamoff | Tim Samoff]]&lt;br /&gt;
| Airport (DUB)&lt;br /&gt;
| to JFK&lt;br /&gt;
| My wife arrives on the 17th and we're staying through Saturday.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Old list (please don't add anything here - move to the tables above)==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Participant name&lt;br /&gt;
! Arrival flight info&lt;br /&gt;
! Departure flight info&lt;br /&gt;
! Comments&lt;br /&gt;
|-&lt;br /&gt;
| Andrea Grandi ([http://meego.com/users/andreagrandi andreagrandi])&lt;br /&gt;
| Flight 9907 Depart PSA at 07:00 and arrive DUB at 08:45 - Sat, 13/November/2010&lt;br /&gt;
| Dublin BA British Airways 5964 at 13:15, Wed 17th Nov --&amp;gt; London BA British Airways 602 at 16:45 --&amp;gt; Pisa at 19:55&lt;br /&gt;
| &lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Epage</name></author>	</entry>

	<entry>
		<id>http://wiki.meego.com/MeeGo_Conference_2010/Flight_Information</id>
		<title>MeeGo Conference 2010/Flight Information</title>
		<link rel="alternate" type="text/html" href="http://wiki.meego.com/MeeGo_Conference_2010/Flight_Information"/>
				<updated>2010-11-11T16:43:46Z</updated>
		
		<summary type="html">&lt;p&gt;Epage: Adding epage&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Flight Information ==&lt;br /&gt;
&lt;br /&gt;
''Wouldn't it make sense to split the table for arrivals and departures and then sort each table by date and time as with the [http://wiki.maemo.org/Maemo_Summit_2009/Travel Maemo Summit 2009 travel wiki page]?''&lt;br /&gt;
&lt;br /&gt;
Please move your entry from below to the new tables here. Keep the entries sorted by time and date.&lt;br /&gt;
&lt;br /&gt;
===Arrivals===&lt;br /&gt;
&lt;br /&gt;
====Friday 12====&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Time&lt;br /&gt;
! Name&lt;br /&gt;
! Place of arrival&lt;br /&gt;
! Means of transport&lt;br /&gt;
! Comments&lt;br /&gt;
|-&lt;br /&gt;
| 12:00&lt;br /&gt;
| [[user:Nightrose | Lydia Pintscher]]&lt;br /&gt;
| Airport (DUB)&lt;br /&gt;
| from FRA&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| 12:45&lt;br /&gt;
| [[user:pycage | Martin Grimme]]&lt;br /&gt;
| Airport (DUB)&lt;br /&gt;
| from MUC&lt;br /&gt;
|&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====Saturday 13====&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Time&lt;br /&gt;
! Name&lt;br /&gt;
! Place of arrival&lt;br /&gt;
! Means of transport&lt;br /&gt;
! Comments&lt;br /&gt;
|-&lt;br /&gt;
| 06:50&lt;br /&gt;
| [[user:Epage | Ed Page]]&lt;br /&gt;
| Airport (DUB)&lt;br /&gt;
| from Atlanta&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| 08:55&lt;br /&gt;
| [[user:timsamoff | Tim Samoff]]&lt;br /&gt;
| Airport (DUB)&lt;br /&gt;
| from JFK&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| 09:00&lt;br /&gt;
| [[user:dawnfoster | Dawn Foster]]&lt;br /&gt;
| Airport (DUB)&lt;br /&gt;
| from ORD&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| 09:20&lt;br /&gt;
| [[user:texrat | Randall Arnold ]] ([http://meego.com/users/texrat texrat])&lt;br /&gt;
| Airport (DUB)&lt;br /&gt;
| United 3261 from EWR&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| 09:40&lt;br /&gt;
| Timo Rongas ([http://meego.com/users/ronksu ronksu])&lt;br /&gt;
| Airport (DUB)&lt;br /&gt;
| from CPH&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| 09:40&lt;br /&gt;
| Tatu Lahtela ([http://meego.com/users/tatlahte tatlahte])&lt;br /&gt;
| Airport (DUB)&lt;br /&gt;
| from CPH&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| 10:30&lt;br /&gt;
| David Greaves ([http://meego.com/users/lbt lbt])&lt;br /&gt;
| Airport (DUB)&lt;br /&gt;
| from LHR&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| 12:05&lt;br /&gt;
| Dan Leinir Turthra Jensen ([http://meego.com/users/leinir leinir])&lt;br /&gt;
| Aurport (DUB)&lt;br /&gt;
| EI0235 from LGW&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| 13:25&lt;br /&gt;
| Andrew Flegg ([http://meego.com/users/jaffa Jaffa])&lt;br /&gt;
| Airport (DUB)&lt;br /&gt;
| EI0267 from BHX&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| 14:05&lt;br /&gt;
| Josep Roura ([http://meego.com/users/netoak netoak])&lt;br /&gt;
| Airport (DUB)&lt;br /&gt;
| FR7039 from GRO&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| 16:40&lt;br /&gt;
| Henri Bergius ([http://meego.com/users/bergie bergie])&lt;br /&gt;
| Airport (DUB)&lt;br /&gt;
| AF5014 from CDG&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| 16:40&lt;br /&gt;
| Susanna Huhtanen ([http://maemo.org/profile/view/ihmis-suski/ ihmis-suski])&lt;br /&gt;
| Airport (DUB)&lt;br /&gt;
| AF5014 from CDG&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| 17:20&lt;br /&gt;
| Attila Csipa ([http://meego.com/users/achipa achipa])&lt;br /&gt;
| Airport (DUB)&lt;br /&gt;
| LH980 from FRA&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| 17:35&lt;br /&gt;
| [[user:thp|thp]]&lt;br /&gt;
| Airport (DUB)&lt;br /&gt;
| from LHR&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| 18:50&lt;br /&gt;
| Leonardo da Mata ([http://meego.com/users/barroca barroca])&lt;br /&gt;
| Airport (DUB)&lt;br /&gt;
| JJ 7922 from LHR&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| 14:25&lt;br /&gt;
| [[user:sivan|sivang]]&lt;br /&gt;
| Airport (DUB)&lt;br /&gt;
| From LHR&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| 00:00&lt;br /&gt;
| [[user:username|Firstname Lastname]]&lt;br /&gt;
| Airport (DUB)&lt;br /&gt;
| Flight number from airport&lt;br /&gt;
| ...&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====Sunday 14====&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Time&lt;br /&gt;
! Name&lt;br /&gt;
! Place of arrival&lt;br /&gt;
! Means of transport&lt;br /&gt;
! Comments&lt;br /&gt;
|-&lt;br /&gt;
| 8:50&lt;br /&gt;
| Ryan Abel ([http://meego.com/users/generalantilles GeneralAntilles])&lt;br /&gt;
| Airport (DUB)&lt;br /&gt;
| US Air 722 from PHL&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| 08:50&lt;br /&gt;
| Stephen Gadsby ([http://meego.com/users/sjgadsby sjgadsby])&lt;br /&gt;
| Airport (DUB)&lt;br /&gt;
| US Air 722 from PHL&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| 08:55&lt;br /&gt;
| Gary Birkett ([http://meego.com/users/lcuk lcuk])&lt;br /&gt;
| Airport (DUB)&lt;br /&gt;
| FR553 from MAN&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| 08:55&lt;br /&gt;
| Mike Jipping ([http://meego.com/users/frethop frethop])&lt;br /&gt;
| Airport (DUB)&lt;br /&gt;
| DL164 from JFK&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| 09:00&lt;br /&gt;
| Reggie Suplido ([http://meego.com/users/reggie reggie])&lt;br /&gt;
| Airport (DUB)&lt;br /&gt;
| EI124 from ORD (Chicago, IL)&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| 09:20&lt;br /&gt;
| Aniello Del Sorbo ([http://meego.com/users/anidel anidel])&lt;br /&gt;
| Airport (DUB)&lt;br /&gt;
| Flight 126 (Continental) from EWR (Newark, NJ)&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| 09:40&lt;br /&gt;
| Arek Stopczynski ([http://meego.com/users/hopbeat hopbeat])&lt;br /&gt;
| Airport (DUB)&lt;br /&gt;
| SK537 from CPH&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| 09:40&lt;br /&gt;
| Brendan Le Foll ([http://meego.com/users/arfoll arfoll])&lt;br /&gt;
| Airport (DUB)&lt;br /&gt;
| 6394 from BCN&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| 10:10&lt;br /&gt;
| Valério Valério ([http://meego.com/users/vdvsx VDVsx])&lt;br /&gt;
| Airport (DUB)&lt;br /&gt;
| KL3153 from AMS&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| 12:20&lt;br /&gt;
| Daniele Maio ([http://meego.com/users/b0unc3 b0unc3])&lt;br /&gt;
| Airport (DUB)&lt;br /&gt;
| FR 9427 from BGY&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| 12:40&lt;br /&gt;
| Andrew Olmsted ([http://meego.com/users/fiferboy fiferboy])&lt;br /&gt;
| Airport (DUB)&lt;br /&gt;
| AC848/BMI123 from YYZ/LHR&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| 13.35 &lt;br /&gt;
| Kathy Smith ([http://meego.com/users/revdkathy RevdKathy])&lt;br /&gt;
| Airport (DUB) &lt;br /&gt;
| SZ593 from NQY &lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| 13.55 &lt;br /&gt;
| Andrew Zhilin ([http://meego.com/users/wazd wazd])&lt;br /&gt;
| Airport (DUB) &lt;br /&gt;
| AF5006 from CDG &lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| 14.10 &lt;br /&gt;
| Carsten Munk ([http://meego.com/users/stskeeps Stskeeps])&lt;br /&gt;
| Airport (DUB) &lt;br /&gt;
| EI0363 from WAW &lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| 16:40&lt;br /&gt;
| timeless&lt;br /&gt;
| Airport (DUB)&lt;br /&gt;
| AF1099/AF5014&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| 16:40&lt;br /&gt;
| Jeremiah C. Foster ([http://meego.com/users/jeremiah jeremiah])&lt;br /&gt;
| Airport (DUB)&lt;br /&gt;
| AF 5014 from CDG&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| 16:40&lt;br /&gt;
| Mikael Söderberg &lt;br /&gt;
| Airport (DUB)&lt;br /&gt;
| AF 5014 from CDG&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| 17:20&lt;br /&gt;
| Eero af Heurlin ([http://meego.com/users/rambo rambo])&lt;br /&gt;
| Airport (DUB)&lt;br /&gt;
| LH 980&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| 17:20&lt;br /&gt;
| Lauri Manner&lt;br /&gt;
| Airport (DUB)&lt;br /&gt;
| LH 980&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| 17:25&lt;br /&gt;
| Andre Klapper ([http://meego.com/users/andre andre])&lt;br /&gt;
| Airport (DUB)&lt;br /&gt;
| EI0645 from PRG&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| 18:00&lt;br /&gt;
| Timo Härkönen ([http://meego.com/users/timoph timoph])&lt;br /&gt;
| Airport (DUB)&lt;br /&gt;
| SK2537 from CPH&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| 21:55&lt;br /&gt;
| Piotr Pokora ([http://meego.com/users/piotras piotras])&lt;br /&gt;
| Airport (DUB)&lt;br /&gt;
| FR1979&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| 00:00&lt;br /&gt;
| [[user:username|Firstname Lastname]]&lt;br /&gt;
| Airport (DUB)&lt;br /&gt;
| Flight number from airport&lt;br /&gt;
| ...&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====Monday 15====&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Time&lt;br /&gt;
! Name&lt;br /&gt;
! Place of arrival&lt;br /&gt;
! Means of transport&lt;br /&gt;
! Comments&lt;br /&gt;
|-&lt;br /&gt;
| 06:50&lt;br /&gt;
| Sanjeev Visvanatha ([http://meego.com/users/eipi eipi])&lt;br /&gt;
| Airport (DUB)&lt;br /&gt;
| Flight CO22 from EWR&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| 07:55&lt;br /&gt;
| Lucas Maneos ([http://meego.com/users/lm lm])&lt;br /&gt;
| Airport (DUB)&lt;br /&gt;
| Flight BD0121 from LHR&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| 08:55&lt;br /&gt;
| Mart Roosmaa ([http://meego.com/users/roosmaa roosmaa])&lt;br /&gt;
| Airport (DUB)&lt;br /&gt;
| Flight FR553 from MAN&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| 00:00&lt;br /&gt;
| [[user:username|Firstname Lastname]]&lt;br /&gt;
| Airport (DUB)&lt;br /&gt;
| Flight number from airport&lt;br /&gt;
| ...&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Departures===&lt;br /&gt;
&lt;br /&gt;
====Wednesday 17====&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Time&lt;br /&gt;
! Name&lt;br /&gt;
! Place of departure&lt;br /&gt;
! Means of transport&lt;br /&gt;
! Comments&lt;br /&gt;
|-&lt;br /&gt;
| 09:00&lt;br /&gt;
| Sanjeev Visvanatha ([http://meego.com/users/eipi eipi])&lt;br /&gt;
| Airport (DUB)&lt;br /&gt;
| CO23 to EWR (Newark, NJ)&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| 09:00&lt;br /&gt;
| Aniello Del Sorbo ([http://meego.com/users/ anidel])&lt;br /&gt;
| Airport (DUB)&lt;br /&gt;
| to EWR (Newark, NJ)&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| 13:45&lt;br /&gt;
| Kathy Smith ([http://meego.com/users/revdkathy RevdKathy])&lt;br /&gt;
| Airport (DUB)&lt;br /&gt;
| to NQY (Newquay, Cornwall)&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| 16:00&lt;br /&gt;
| Piotr Pokora ([http://meego.com/users/piotras piotras])&lt;br /&gt;
| Airport (DUB)&lt;br /&gt;
| FR1978&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| 16:30&lt;br /&gt;
| [[user:thp|thp]]&lt;br /&gt;
| Airport (DUB)&lt;br /&gt;
| to VIE&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| 18:10&lt;br /&gt;
| Mart Roosmaa ([http://meego.com/users/roosmaa roosmaa])&lt;br /&gt;
| Airport (DUB)&lt;br /&gt;
| to MAN&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| 18:40&lt;br /&gt;
| Andrew Flegg ([http://meego.com/users/jaffa Jaffa])&lt;br /&gt;
| Airport (DUB)&lt;br /&gt;
| EI0276 to BHX&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| 18:45&lt;br /&gt;
| Eero af Heurlin ([http://meego.com/users/rambo rambo])&lt;br /&gt;
| Airport (DUB)&lt;br /&gt;
| SK 2538&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| 18:45&lt;br /&gt;
| Tatu Lahtela ([http://meego.com/users/tatlahte tatlahte])&lt;br /&gt;
| Airport (DUB)&lt;br /&gt;
| SK 2538&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| 18:45&lt;br /&gt;
| Lauri Manner&lt;br /&gt;
| Airport (DUB)&lt;br /&gt;
| SK 2538&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| 20:00&lt;br /&gt;
| Adam Reviczky ([[user:Reviczky|reviczky]])&lt;br /&gt;
| Airport (DUB)&lt;br /&gt;
| FR118 to LGW&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| 21:05&lt;br /&gt;
| Lucas Maneos ([http://meego.com/users/lm lm])&lt;br /&gt;
| Airport (DUB)&lt;br /&gt;
| BD0132 to LHR&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| 00:00&lt;br /&gt;
| [[user:username|Firstname Lastname]]&lt;br /&gt;
| Airport (DUB)&lt;br /&gt;
| Flight number from airport&lt;br /&gt;
| ...&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====Thursday 18====&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Time&lt;br /&gt;
! Name&lt;br /&gt;
! Place of departure&lt;br /&gt;
! Means of transport&lt;br /&gt;
! Comments&lt;br /&gt;
|-&lt;br /&gt;
| 06:00&lt;br /&gt;
| Valério Valério ([http://meego.com/users/vdvsx VDVsx])&lt;br /&gt;
| Airport (DUB)&lt;br /&gt;
| KL3152 to AMS&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| 06:35&lt;br /&gt;
| Daniele Maio ([http://meego.com/users/b0unc3 b0unc3])&lt;br /&gt;
| Airport (DUB)&lt;br /&gt;
| FR 9426 to BGY&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| 07:00&lt;br /&gt;
| Lydia Pintscher ([http://meego.com/users/Nightrose Nightrose])&lt;br /&gt;
| Airport (DUB)&lt;br /&gt;
| to FRA&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| 07:20&lt;br /&gt;
| Carsten Munk ([http://meego.com/users/stskeeps Stskeeps])&lt;br /&gt;
| Airport (DUB)&lt;br /&gt;
| EI0362 to WAW&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| 09:10&lt;br /&gt;
| Henri Bergius ([http://meego.com/users/bergie bergie])&lt;br /&gt;
| Airport (DUB)&lt;br /&gt;
| AF5001 to CDG&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| 09:10&lt;br /&gt;
| Susanna Huhtanen ([http://maemo.org/profile/view/ihmis-suski/ ihmis-suski])&lt;br /&gt;
| Airport (DUB)&lt;br /&gt;
| AF5001 to CDG&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| 10:20&lt;br /&gt;
| Josep Roura ([http://meego.com/users/netoak NetOak])&lt;br /&gt;
| Airport (DUB)&lt;br /&gt;
| FR7038 to GRO&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| 10:45&lt;br /&gt;
| [http://meego.com/users/dawnfoster Dawn Foster]&lt;br /&gt;
| Airport (DUB)&lt;br /&gt;
| to JFK&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| 10:45&lt;br /&gt;
| Mike Jipping [http://meego.com/users/frethop frethop]&lt;br /&gt;
| Airport (DUB)&lt;br /&gt;
| DL165 to JFK&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| 11:05&lt;br /&gt;
| Reggie Suplido ([http://meego.com/users/reggie reggie])&lt;br /&gt;
| Airport (DUB)&lt;br /&gt;
| SK538 to CPH&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| 11:05&lt;br /&gt;
| Ryan Abel ([http://meego.com/users/generalantilles GeneralAntilles])&lt;br /&gt;
| Airport (DUB)&lt;br /&gt;
| US Air 723 to PHL&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| 11:05&lt;br /&gt;
| Stephen Gadsby ([http://meego.com/users/sjgadsby sjgadsby])&lt;br /&gt;
| Airport (DUB)&lt;br /&gt;
| US Air 723 to PHL&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| 11:40&lt;br /&gt;
| Andre Klapper ([http://meego.com/users/andre andre])&lt;br /&gt;
| Airport (DUB)&lt;br /&gt;
| IE0644 to PRG&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| 11:55&lt;br /&gt;
| Andrew Zhilin ([http://meego.com/users/wazd wazd])&lt;br /&gt;
| Airport (DUB)&lt;br /&gt;
| AF5005 to CDG&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| 12:00&lt;br /&gt;
| Timo Härkönen ([http://meego.com/users/timoph timoph])&lt;br /&gt;
| Airport (DUB)&lt;br /&gt;
| SK536 to ARN&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| 13:00&lt;br /&gt;
| Randall Arnold (texrat)&lt;br /&gt;
| Airport (DUB)&lt;br /&gt;
| United 4925 to ORD&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| 13:55&lt;br /&gt;
| Brendan Le Foll ([http://meego.com/users/arfoll arfoll])&lt;br /&gt;
| Airport (DUB)&lt;br /&gt;
| 6395&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| 14:50&lt;br /&gt;
| timeless&lt;br /&gt;
| Airport (DUB)&lt;br /&gt;
| AF5009/AF1798&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| 14:50&lt;br /&gt;
| [[user:jeremiah|Jeremiah Foster]]&lt;br /&gt;
| Airport (DUB)&lt;br /&gt;
| AF 5009 CDG -&amp;gt; GOT&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| 14:50&lt;br /&gt;
| Mikael Söderberg&lt;br /&gt;
| Airport (DUB)&lt;br /&gt;
| AF 5009 CDG -&amp;gt; GOT&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| 15:00&lt;br /&gt;
| Andrew Olmsted ([http://meego.com/users/fiferboy fiferboy])&lt;br /&gt;
| Airport (DUB)&lt;br /&gt;
| EI3296 to CWL&lt;br /&gt;
| Staying extra days after conference&lt;br /&gt;
|-&lt;br /&gt;
| 16:00&lt;br /&gt;
| Martin Grimme ([http://meego.com/users/pycage pycage])&lt;br /&gt;
| Airport (DUB)&lt;br /&gt;
| EI356 to MUC&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| 18:10&lt;br /&gt;
| Gary Birkett ([http://meego.com/users/lcuk lcuk])&lt;br /&gt;
| Airport (DUB)&lt;br /&gt;
| FR556 to MAN&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| 18:45&lt;br /&gt;
| Arek Stopczynski ([http://meego.com/users/hopbeat hopbeat])&lt;br /&gt;
| Airport (DUB)&lt;br /&gt;
| SK2538 to CPH&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| 20:30&lt;br /&gt;
| Dan Leinir Turthra Jensen ([http://meego.com/users/leinir leinir])&lt;br /&gt;
| Airport (DUB)&lt;br /&gt;
| EI0248 to LGW&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| 00:00&lt;br /&gt;
| [[user:username|Firstname Lastname]]&lt;br /&gt;
| Airport (DUB)&lt;br /&gt;
| Flight number to airport&lt;br /&gt;
| ...&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====Friday 19 ====&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Time&lt;br /&gt;
! Name&lt;br /&gt;
! Place of departure&lt;br /&gt;
! Means of transport&lt;br /&gt;
! Comments&lt;br /&gt;
|-&lt;br /&gt;
| 13:15&lt;br /&gt;
| David Greaves ([http://meego.com/users/lbt lbt])&lt;br /&gt;
| Airport (DUB)&lt;br /&gt;
| to LHR&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
====Saturday 20====&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Time&lt;br /&gt;
! Name&lt;br /&gt;
! Place of departure&lt;br /&gt;
! Means of transport&lt;br /&gt;
! Comments&lt;br /&gt;
|-&lt;br /&gt;
| 10:45&lt;br /&gt;
| [[user:timsamoff | Tim Samoff]]&lt;br /&gt;
| Airport (DUB)&lt;br /&gt;
| to JFK&lt;br /&gt;
| My wife arrives on the 17th and we're staying through Saturday.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Old list (please don't add anything here - move to the tables above)==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Participant name&lt;br /&gt;
! Arrival flight info&lt;br /&gt;
! Departure flight info&lt;br /&gt;
! Comments&lt;br /&gt;
|-&lt;br /&gt;
| Andrea Grandi ([http://meego.com/users/andreagrandi andreagrandi])&lt;br /&gt;
| Flight 9907 Depart PSA at 07:00 and arrive DUB at 08:45 - Sat, 13/November/2010&lt;br /&gt;
| Dublin BA British Airways 5964 at 13:15, Wed 17th Nov --&amp;gt; London BA British Airways 602 at 16:45 --&amp;gt; Pisa at 19:55&lt;br /&gt;
| &lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Epage</name></author>	</entry>

	<entry>
		<id>http://wiki.meego.com/User:Epage</id>
		<title>User:Epage</title>
		<link rel="alternate" type="text/html" href="http://wiki.meego.com/User:Epage"/>
				<updated>2010-11-11T16:42:42Z</updated>
		
		<summary type="html">&lt;p&gt;Epage: Created page with &amp;quot;= Personal =  Background * BS in Computer Engineering * Driver developer  Hardware * Nokia 770 * Nokia n810 - Maemo 4.1 * Nokia n900 - Maemo 5  Expertise * Adapting desktop appli…&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Personal =&lt;br /&gt;
&lt;br /&gt;
Background&lt;br /&gt;
* BS in Computer Engineering&lt;br /&gt;
* Driver developer&lt;br /&gt;
&lt;br /&gt;
Hardware&lt;br /&gt;
* Nokia 770&lt;br /&gt;
* Nokia n810 - Maemo 4.1&lt;br /&gt;
* Nokia n900 - Maemo 5&lt;br /&gt;
&lt;br /&gt;
Expertise&lt;br /&gt;
* Adapting desktop applications to being polished touch friendly applications&lt;br /&gt;
* [http://telepathy.freedesktop.org/spec/ Telepathy]&lt;br /&gt;
* Python, PyGTK, PyQt&lt;/div&gt;</summary>
		<author><name>Epage</name></author>	</entry>

	<entry>
		<id>http://wiki.meego.com/MeeGo_Conference_2010/Accommodation</id>
		<title>MeeGo Conference 2010/Accommodation</title>
		<link rel="alternate" type="text/html" href="http://wiki.meego.com/MeeGo_Conference_2010/Accommodation"/>
				<updated>2010-10-07T00:37:17Z</updated>
		
		<summary type="html">&lt;p&gt;Epage: Adding myself to sponsored list&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The MeeGo Conference has a deal with the [http://www.d4hotels.ie/ D4 Hotels]: we have made a group booking and they provide us 24h hackers rooms with great connectivity, a games room, basic infrastructure for the Early MeeGo Birds activities, etc.&lt;br /&gt;
&lt;br /&gt;
If you haven't booked your room please do it now through this link: https://cpregistrations.com/MeeGo2010/ &lt;br /&gt;
&lt;br /&gt;
If you have booked elsewhere please consider re-booking at the D4 hotels, where most conference participants will be hosted. Thank you!&lt;br /&gt;
&lt;br /&gt;
== Shared rooms ==&lt;br /&gt;
This table helps participants getting organized sharing rooms and costs. If you would like to share a double room with someone, please add your name to the table below.&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Hotel&lt;br /&gt;
! Roommate 1&lt;br /&gt;
! Roommate 2&lt;br /&gt;
! Check in / check out / Considerations&lt;br /&gt;
|-&lt;br /&gt;
| Ballbridge Inn&lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| Ballsbridge Towers&lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| D4 Berkeley&lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Add more lines to the table if needed. Just keep the rooms grouped by hotels.&lt;br /&gt;
&lt;br /&gt;
== Sponsored participants ==&lt;br /&gt;
&lt;br /&gt;
Sponsored participants get 4 nights in a shared double room covered by the organization. The reservation is done as a group booking by the organization directly.&lt;br /&gt;
&lt;br /&gt;
'''Don't add yourself to this table unless you are an accepted sponsored participant.''' &lt;br /&gt;
&lt;br /&gt;
If you want to swap room with a non-sponsored participant please do it directly at the hotel desk once you are in Dublin. To avoid mistakes, the group booking made by the organization will include only the names of the accepted sponsored participants included in this table.&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
! # Room&lt;br /&gt;
! Roommate 1&lt;br /&gt;
! Roommate 2&lt;br /&gt;
! Check in / check out / Considerations&lt;br /&gt;
|-&lt;br /&gt;
| 1&lt;br /&gt;
| Dan Jensen (leinir)&lt;br /&gt;
| &lt;br /&gt;
| Arriving 13th - leaving 18th&lt;br /&gt;
|-&lt;br /&gt;
| 2&lt;br /&gt;
| Arek Stopczynski (hopbeat)&lt;br /&gt;
| &lt;br /&gt;
| arriving 14th - leaving 18th &lt;br /&gt;
|-&lt;br /&gt;
| 3&lt;br /&gt;
| Till Harbaum (harbaum)&lt;br /&gt;
| &lt;br /&gt;
| arriving 13th - leaving 17th&lt;br /&gt;
|-&lt;br /&gt;
| 4&lt;br /&gt;
| Brendan Le Foll (arfoll)&lt;br /&gt;
| &lt;br /&gt;
| arriving 14th - leaving 18th&lt;br /&gt;
|-&lt;br /&gt;
| 5&lt;br /&gt;
| Andrea Grandi (andreagrandi)&lt;br /&gt;
| &lt;br /&gt;
| arriving 13th - leaving ???&lt;br /&gt;
|-&lt;br /&gt;
| 6&lt;br /&gt;
| Lydia Pintscher (nightrose)&lt;br /&gt;
| &lt;br /&gt;
| arriving 14th - leaving 18th&lt;br /&gt;
|-&lt;br /&gt;
| 7&lt;br /&gt;
| Sivan Greenberg (sivang)&lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| 8&lt;br /&gt;
| Randall Arnold (texrat)&lt;br /&gt;
| (awaiting word from eipi)&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| 9&lt;br /&gt;
| Kathryn Smith (RevdKathy)&lt;br /&gt;
| &lt;br /&gt;
| arriving 13th - leaving 17th&lt;br /&gt;
|-&lt;br /&gt;
| 10&lt;br /&gt;
| Dave Neary (dneary)&lt;br /&gt;
| &lt;br /&gt;
| Arriving Saturday, leaving Thursday (paying 1 extra night)&lt;br /&gt;
|-&lt;br /&gt;
| 11&lt;br /&gt;
| Leonardo da Mata (barroca)&lt;br /&gt;
| &lt;br /&gt;
| arriving 14th - leaving 18th (maybe arrive early paying 1 extra night)&lt;br /&gt;
|-&lt;br /&gt;
| 12&lt;br /&gt;
| Felipe Crochik (fcrochik)&lt;br /&gt;
| &lt;br /&gt;
| arriving 14th - leaving 18th (not confirmed yet)&lt;br /&gt;
|-&lt;br /&gt;
| 13&lt;br /&gt;
| Jonathan Tebaldi Petro (bioldo)&lt;br /&gt;
| &lt;br /&gt;
| arriving 14th - leaving 18th&lt;br /&gt;
|-&lt;br /&gt;
| 14&lt;br /&gt;
| Joshua Smith Soref (timeless)&lt;br /&gt;
| &lt;br /&gt;
| arriving 14th - leaving 18th (flights not booked yet...)&lt;br /&gt;
|-&lt;br /&gt;
| 15&lt;br /&gt;
| Dimitris Glezos (glezos)&lt;br /&gt;
| Diego Búrigo Zacarão (diegobz)&lt;br /&gt;
| arriving 14th - leaving 17th or 18th&lt;br /&gt;
|-&lt;br /&gt;
| 16&lt;br /&gt;
| Edward Oren Page (epage)&lt;br /&gt;
| &lt;br /&gt;
| arriving 13th - leaving 19th (handling extra days personally, I assume the sponsored booking covers 14th-18th)&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Epage</name></author>	</entry>

	<entry>
		<id>http://wiki.meego.com/Developer_engagement</id>
		<title>Developer engagement</title>
		<link rel="alternate" type="text/html" href="http://wiki.meego.com/Developer_engagement"/>
				<updated>2010-06-25T19:18:40Z</updated>
		
		<summary type="html">&lt;p&gt;Epage: /* Who? */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= MeeGo Application Developer Engagement =&lt;br /&gt;
&lt;br /&gt;
This is mostly targetted at existing application developer-type people, especially those with Qt knowledge, although all are welcome to participate in some way or another.&lt;br /&gt;
&lt;br /&gt;
Some background:&lt;br /&gt;
We have a lot of highly productive developers that are not sure how their skills will remain relevant in a MeeGo context. We can't afford to lose them through neglect.&lt;br /&gt;
There are also even more developers not familiar with MeeGo. When they find us, we have to grab them and keep them.&lt;br /&gt;
&lt;br /&gt;
Basically, we can't afford to lose our developers, and we need to gain more. I need help. I've written tutorials and helped a lot of people in the past, but frankly, it is not enough. We need to do more. The hands of many lighten that load.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== What? ==&lt;br /&gt;
The success of a platform is usually directly linked to its support and nurturing of developer talent. Great platforms have often withered without developer attention, and bad platforms have survived technical flaws thanks to high developer engagement and retention.&lt;br /&gt;
&lt;br /&gt;
I think we need this around MeeGo, and our related platform - Qt.&lt;br /&gt;
&lt;br /&gt;
Specifically, we need to provide education, support (moral and technical), and a feedback cycle - for application developers.&lt;br /&gt;
&lt;br /&gt;
Or, in a word: Mentoring.&lt;br /&gt;
 - Helping new developers find their feet&lt;br /&gt;
 - Teaching developers new tricks&lt;br /&gt;
 - Exchanging knowledge throughout the community to ensure equal footing&lt;br /&gt;
&lt;br /&gt;
A simple summary would be that *no* application developer should feel alone, or be confused. ;)&lt;br /&gt;
&lt;br /&gt;
As an added benefit, rough edges and other nasties become more obvious, and can (hopefully) be addressed instead of falling to the wayside, and losing valuable developers as a consequence.&lt;br /&gt;
&lt;br /&gt;
== How? ==&lt;br /&gt;
Tutorials&lt;br /&gt;
 - Wiki based&lt;br /&gt;
 - Forum threads for feedback and questions&lt;br /&gt;
&lt;br /&gt;
Classes&lt;br /&gt;
 - On IRC&lt;br /&gt;
 - Covering tutorial material and topics which don't quite fit into a tutorial, e.g. &amp;quot;how to write responsive UI&amp;quot;&lt;br /&gt;
 - Possibly split out into a tutorial *after* each class, if the topic is self-contained enough&lt;br /&gt;
 &lt;br /&gt;
Mentoring&lt;br /&gt;
 - A 'buddy' type system. Skilled developers offer to take on an eager trainee or two (or three or four) and 'show them the ropes'.&lt;br /&gt;
   It might be as simple as asking them how their project is going, and where they're getting stuck - from time to time - or as&lt;br /&gt;
   difficult as actually pitching in and helping them hack. Not really a role I want to define in terms beyond something like a&lt;br /&gt;
   'big geeky brother'. :)&lt;br /&gt;
&lt;br /&gt;
== Who? ==&lt;br /&gt;
If you're interested in helping out, please note the areas (tutorials, classes, mentoring) that you're willing to help out with - and a (very) brief rundown on your skills.&lt;br /&gt;
&lt;br /&gt;
*   [http://meego.com/users/w00t Robin Burchell] - coordination, tutorials, classes, mentoring - Python, C++, Qt, git, misc.&lt;br /&gt;
*   [http://meego.com/users/digitalsurgeon Ahmad Mushtaq] - classes, C++, Qt, git, QML/QtQuick.&lt;br /&gt;
*   [http://meego.com/users/venemo Timur Kristóf] - C++ and SVN, Qt basics, helping .NET developers to get started with Qt.&lt;br /&gt;
*   [http://meego.com/users/jflatt Jason Flatt] - tutorials, classes, mentoring - C++, Qt, OOP&lt;br /&gt;
*   [http://meego.com/users/weggi Veikko Tapaninen] - tutorials, classes - Qt, Qt Mobility API&lt;br /&gt;
*   [http://meego.com/users/fcrochik Felipe Crochik] - tutorials, mentoring  - OOP (C++, JAVA, C#), Qt/Qt Mobility (maemo)&lt;br /&gt;
*   [http://meego.com/users/timoph Timo Härkönen] - tutorials, mentoring  - OOP, C++, Qt&lt;br /&gt;
*   [http://meego.com/users/profebral Tyler Starke] - mentoring - Python, PyQt4 (Portable UI's with PyQt and Python)&lt;br /&gt;
*   [http://meego.com/users/ehamloptiran Robbie Newman] - tutorials, mentoring, classes - C++, QT, QT Mobility, OOP&lt;br /&gt;
*   [http://meego.com/users/niqt Nicola De Filippo] - tutorials, mentoring  - OOP, C++, Qt, Qt/Qt Mobility (maemo)&lt;br /&gt;
*   [http://meego.com/users/epage Ed Page] - tutorial, mentoring  - C++, Python, (Py)Qt, GIT, Portable UIs also&lt;/div&gt;</summary>
		<author><name>Epage</name></author>	</entry>

	<entry>
		<id>http://wiki.meego.com/Developer_engagement</id>
		<title>Developer engagement</title>
		<link rel="alternate" type="text/html" href="http://wiki.meego.com/Developer_engagement"/>
				<updated>2010-06-25T19:18:27Z</updated>
		
		<summary type="html">&lt;p&gt;Epage: /* Who? */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= MeeGo Application Developer Engagement =&lt;br /&gt;
&lt;br /&gt;
This is mostly targetted at existing application developer-type people, especially those with Qt knowledge, although all are welcome to participate in some way or another.&lt;br /&gt;
&lt;br /&gt;
Some background:&lt;br /&gt;
We have a lot of highly productive developers that are not sure how their skills will remain relevant in a MeeGo context. We can't afford to lose them through neglect.&lt;br /&gt;
There are also even more developers not familiar with MeeGo. When they find us, we have to grab them and keep them.&lt;br /&gt;
&lt;br /&gt;
Basically, we can't afford to lose our developers, and we need to gain more. I need help. I've written tutorials and helped a lot of people in the past, but frankly, it is not enough. We need to do more. The hands of many lighten that load.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== What? ==&lt;br /&gt;
The success of a platform is usually directly linked to its support and nurturing of developer talent. Great platforms have often withered without developer attention, and bad platforms have survived technical flaws thanks to high developer engagement and retention.&lt;br /&gt;
&lt;br /&gt;
I think we need this around MeeGo, and our related platform - Qt.&lt;br /&gt;
&lt;br /&gt;
Specifically, we need to provide education, support (moral and technical), and a feedback cycle - for application developers.&lt;br /&gt;
&lt;br /&gt;
Or, in a word: Mentoring.&lt;br /&gt;
 - Helping new developers find their feet&lt;br /&gt;
 - Teaching developers new tricks&lt;br /&gt;
 - Exchanging knowledge throughout the community to ensure equal footing&lt;br /&gt;
&lt;br /&gt;
A simple summary would be that *no* application developer should feel alone, or be confused. ;)&lt;br /&gt;
&lt;br /&gt;
As an added benefit, rough edges and other nasties become more obvious, and can (hopefully) be addressed instead of falling to the wayside, and losing valuable developers as a consequence.&lt;br /&gt;
&lt;br /&gt;
== How? ==&lt;br /&gt;
Tutorials&lt;br /&gt;
 - Wiki based&lt;br /&gt;
 - Forum threads for feedback and questions&lt;br /&gt;
&lt;br /&gt;
Classes&lt;br /&gt;
 - On IRC&lt;br /&gt;
 - Covering tutorial material and topics which don't quite fit into a tutorial, e.g. &amp;quot;how to write responsive UI&amp;quot;&lt;br /&gt;
 - Possibly split out into a tutorial *after* each class, if the topic is self-contained enough&lt;br /&gt;
 &lt;br /&gt;
Mentoring&lt;br /&gt;
 - A 'buddy' type system. Skilled developers offer to take on an eager trainee or two (or three or four) and 'show them the ropes'.&lt;br /&gt;
   It might be as simple as asking them how their project is going, and where they're getting stuck - from time to time - or as&lt;br /&gt;
   difficult as actually pitching in and helping them hack. Not really a role I want to define in terms beyond something like a&lt;br /&gt;
   'big geeky brother'. :)&lt;br /&gt;
&lt;br /&gt;
== Who? ==&lt;br /&gt;
If you're interested in helping out, please note the areas (tutorials, classes, mentoring) that you're willing to help out with - and a (very) brief rundown on your skills.&lt;br /&gt;
&lt;br /&gt;
*   [http://meego.com/users/w00t Robin Burchell] - coordination, tutorials, classes, mentoring - Python, C++, Qt, git, misc.&lt;br /&gt;
*   [http://meego.com/users/digitalsurgeon Ahmad Mushtaq] - classes, C++, Qt, git, QML/QtQuick.&lt;br /&gt;
*   [http://meego.com/users/venemo Timur Kristóf] - C++ and SVN, Qt basics, helping .NET developers to get started with Qt.&lt;br /&gt;
*   [http://meego.com/users/jflatt Jason Flatt] - tutorials, classes, mentoring - C++, Qt, OOP&lt;br /&gt;
*   [http://meego.com/users/weggi Veikko Tapaninen] - tutorials, classes - Qt, Qt Mobility API&lt;br /&gt;
*   [http://meego.com/users/fcrochik Felipe Crochik] - tutorials, mentoring  - OOP (C++, JAVA, C#), Qt/Qt Mobility (maemo)&lt;br /&gt;
*   [http://meego.com/users/timoph Timo Härkönen] - tutorials, mentoring  - OOP, C++, Qt&lt;br /&gt;
*   [http://meego.com/users/profebral Tyler Starke] - mentoring - Python, PyQt4 (Portable UI's with PyQt and Python)&lt;br /&gt;
*   [http://meego.com/users/ehamloptiran Robbie Newman] - tutorials, mentoring, classes - C++, QT, QT Mobility, OOP&lt;br /&gt;
*   [http://meego.com/users/niqt Nicola De Filippo] - tutorials, mentoring  - OOP, C++, Qt, Qt/Qt Mobility (maemo)&lt;br /&gt;
*   [http://meego.com/users/epage Ed Page] - mentoring  - C++, Python, (Py)Qt, GIT, Portable UIs also&lt;/div&gt;</summary>
		<author><name>Epage</name></author>	</entry>

	<entry>
		<id>http://wiki.meego.com/Who%27s_who</id>
		<title>Who's who</title>
		<link rel="alternate" type="text/html" href="http://wiki.meego.com/Who%27s_who"/>
				<updated>2010-02-22T15:48:14Z</updated>
		
		<summary type="html">&lt;p&gt;Epage: Adding epage to the mix&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Technical Steering Group ==&lt;br /&gt;
''Members of the [http://meego.com/about/governance TSG]''&lt;br /&gt;
&lt;br /&gt;
* [http://meego.com/users/valhalla Valtteri Halla] - Benevolent dictator&lt;br /&gt;
* [http://meego.com/users/imad Imad Sousou/imad] - Benevolent dictator&lt;br /&gt;
&lt;br /&gt;
== Maemo community stakeholders ==&lt;br /&gt;
''Official representatives of the Maemo community''&lt;br /&gt;
&lt;br /&gt;
==== Nokia ====&lt;br /&gt;
&lt;br /&gt;
* [http://meego.com/users/qgil Quim Gil/qgil] - Nokia's Open Source Advocate&lt;br /&gt;
* [http://meego.com/users/tekojo Tero Kojo/tekojo] - Nokia's Maemo Technical Project Manager&lt;br /&gt;
&lt;br /&gt;
==== maemo.org ====&lt;br /&gt;
&lt;br /&gt;
* [http://meego.com/users/bergie Henri Bergius/bergie] - maemo.org web/Midgard developer&lt;br /&gt;
* [http://meego.com/users/xfade Niels Breet/X-Fade] - maemo.org webmaster&lt;br /&gt;
* [http://meego.com/users/jeremiah Jeremiah Foster/jeremiah] - maemo.org debmaster &lt;br /&gt;
* [http://meego.com/users/andre André Klapper/andre__] - maemo.org bugmaster&lt;br /&gt;
* Karsten Bräckelmann/karstenb - maemo.org bugmaster&lt;br /&gt;
* [http://meego.com/users/stskeeps Carsten Munk/Stskeeps] - maemo.org distmaster &amp;amp; Mer project lead&lt;br /&gt;
* Dave Neary/dneary - maemo.org docmaster&lt;br /&gt;
* [http://meego.com/users/reggie Reggie Suplido] - maemo.org talkmaster&lt;br /&gt;
&lt;br /&gt;
==== Maemo Community Council ====&lt;br /&gt;
&lt;br /&gt;
* [http://meego.com/users/texrat Randall Arnold/Texrat] - Maemo Community Council member&lt;br /&gt;
* [http://meego.com/users/qole Alan Bruce/qole] - Maemo Community Council member&lt;br /&gt;
* [http://meego.com/users/gcobb Graham Cobb/gcobb] - Maemo Commnunity Council member&lt;br /&gt;
* [http://meego.com/users/penguinbait Matthew Lewis/penguinbait] - Maemo Community Council member&lt;br /&gt;
* [http://meego.com/users/vdvsx Valério Valério/VDVsx] - Maemo Community Council chair&lt;br /&gt;
&lt;br /&gt;
== Moblin community stakeholders ==&lt;br /&gt;
''Representatives of the Moblin community''&lt;br /&gt;
&lt;br /&gt;
* [http://meego.com/users/dirkhh Dirk Hohndel/dirkhh] - Chief Linux and open source technologist at Intel&lt;br /&gt;
* [http://meego.com/users/margie Margie Foster/mlfoster] - Localization project manager for Moblin &amp;amp; meego.com website developer&lt;br /&gt;
* [http://meego.com/users/mshaver Michael Shaver/mshaver] - Moblin.org webmaster &amp;amp; meego.com website developer&lt;br /&gt;
* [http://meego.com/users/townxelliot Elliot Smith/townxelliot] - Moblin.org &amp;amp; meego.com website techy&lt;br /&gt;
&lt;br /&gt;
== Linux Foundation  stakeholders ==&lt;br /&gt;
'' Staff Members of Linux Foundation''&lt;br /&gt;
&lt;br /&gt;
* [http://meego.com/users/martinmohring Martin Mohring/ScriptRipper ] - Build Platform Developer, long-term Novell OBS contributor, Linux Foundation Staff Member&lt;br /&gt;
* [http://meego.com/users/dl9pf Jan-Simon Möller/dl9pf ] - Build Platform Developer, long-term Novell OBS contributor, Linux Foundation Staff Member&lt;br /&gt;
&lt;br /&gt;
== MeeGo developers ==&lt;br /&gt;
'' People paid to contribute to MeeGo and/or have commit rights''&lt;br /&gt;
&lt;br /&gt;
* [http://meego.com/users/hbons Hylke Bons/hbons] - User Experience Designer&lt;br /&gt;
* [http://meego.com/users/auke Auke Kok/auke] - Release developer, fast boot&lt;br /&gt;
* [http://meego.com/users/jku Jussi Kukkonen/jku] - Developer&lt;br /&gt;
* [http://meego.com/users/nmcgovern Neil McGovern/nmcgovern] - Developer&lt;br /&gt;
* [http://meego.com/users/nashif Anas Nashif/anaZ] - Distribution developer&lt;br /&gt;
* [http://meego.com/users/pohly Patrick Ohly/pohly] - Developer&lt;br /&gt;
* [http://meego.com/users/quang Quang Pham/quang] - Developer&lt;br /&gt;
&lt;br /&gt;
== MeeGo community ==&lt;br /&gt;
''Anyone not in the above sections'' (Please keep this list alphabetically-ordered, as it will make finding people easier.)&lt;br /&gt;
&lt;br /&gt;
* [http://meego.com/users/generalantilles Ryan Abel/GeneralAntilles] - Long term Maemo community member&lt;br /&gt;
* [http://meego.com/users/amby Gabor Ambrozy/Amby] - Maemo community member, Save the End-Users advocate&lt;br /&gt;
* [http://meego.com/users/debernardis Ernesto de Bernardis/debernardis] - Maemo community member, mobile device tinkerer&lt;br /&gt;
* [http://meego.com/users/andrewfblack Andrew F Black/AndrewFBlack] - Maemo community member / Theme Designer / talk.maemo.org Moderator and Theme Designer.&lt;br /&gt;
* [http://meego.com/users/ab Alexander Bokovoy/ab] - Senior Architect, Media applications, Nokia, Samba Team member&lt;br /&gt;
* [http://borasky-research.net M. Edward (Ed) Borasky] - Linux capacity planning / audio / openSUSE / Twitter geek&lt;br /&gt;
* [http://meego.com/users/aboaboit Andrea Borgia/aboaboit] - Maemo community member&lt;br /&gt;
* [http://meego.com/users/fabo Fathi Boudra/fabo] - Debian developer, Maemo community member, software engineer&lt;br /&gt;
* [http://meego.com/users/w00t Robin Burchell/w00t] - Developer of random things, gadget enthusiast, Maemo community member&lt;br /&gt;
* [http://meego.com/users/zerojay Jason Carter/zerojay] - Long term Maemo community member&lt;br /&gt;
* [http://meego.com/users/niqt Nicola De FIlippo/niqt] - Qt4 Maemo Contributor, Maemo community member, software engineer&lt;br /&gt;
* [http://meego.com/users/jaffa Andrew Flegg/Jaffa] - Long term gadget freak &amp;amp; Maemo community member&lt;br /&gt;
* [http://meego.com/users/sjgadsby Stephen Gadsby/sjgadsby] - Maemo community member&lt;br /&gt;
* [http://meego.com/users/glezos Dimitris Glezos/glezos] - Localization Engineer ([http://www.transifex.net/ Transifex])&lt;br /&gt;
* [http://meego.com/users/slaine Glen Gray/slaine] - Moblin community member, software engineer&lt;br /&gt;
* [http://meego.com/users/lbt David Greaves/lbt] - Mer OBS build guy&lt;br /&gt;
* [http://meego.com/users/mandrake Pasi Heinonen/ode2] - Qt4/GTK+ developer, .NET guy, daddy (read RTL)&lt;br /&gt;
* [http://meego.com/users/rhertzog Raphaël Hertzog/buxy ] - Debian developer, [http://www.freexian.com self-employed] as free software consultant/developer.&lt;br /&gt;
* [http://meego.com/users/hrw Marcin Juszkiewicz/hrw ] - OpenEmbedded developer, [http://marcin.juszkiewicz.com.pl/ self-employed] as OpenEmbedded/Poky Linux consultant/developer.&lt;br /&gt;
* [http://meego.com/users/jak Julian Andres Klode/jak] - Debian developer, Ubuntu member&lt;br /&gt;
* [http://meego.com/users/leinir Dan Leinir Turthra Jensen/leinir] N810 owner, MeeGo community member (via Mer)&lt;br /&gt;
* [http://meego.com/users/slauwers Sebastian Lauwers/crashanddie] - Maemo community member, talk.maemo.org moderator / ActivIdentity Professional Services Technical Consultant&lt;br /&gt;
* [http://meego.com/users/ianbrasil Ian Lawrence/ianbrasil] - Author - Professional Ubuntu Mobile Development, Moblin and Maemo community member &lt;br /&gt;
* [http://meego.com/users/jebba Jeff Moe/jebba] - [http://wiki.maemo.org/User:Jebba Maemo Contributor]&lt;br /&gt;
* [http://meego.com/users/camahueto Alberto O./camahueto] - Lawyer working in an unidentified Intellectual Property office. Free Software aficionado.&lt;br /&gt;
* [http://meego.com/users/fpp Fred Pacquier/fpp] - maemo.org old-timer, platform-neutrality advocate, Python evangelist, and big mouth.&lt;br /&gt;
* [http://wiki.meego.com/User:Epage Ed Page/epage] - Maemo community member, software developer&lt;br /&gt;
* [http://meego.com/users/javispedro Javier S. Pedro/javispedro] - Maemo community member&lt;br /&gt;
* [http://meego.com/users/corsac Yves-Alexis Perez/Corsac] - Debian developer, Maemo community member, security engineer&lt;br /&gt;
* [http://meego.com/users/lpotter Lorn Potter/lpotter/ljp] - QDF, Mobility, Nokia&lt;br /&gt;
* [http://meego.com/users/timsamoff Tim Samoff/timsamoff] - Designer (graphic, UI, interaction, web), long-time Maemo Community member (two-term Maemo Community Council Member), and forever open source advocate&lt;br /&gt;
* [http://meego.com/users/fgs Floriano Scioscia/fgs] - Maemo community member, CS engineer and junior researcher&lt;br /&gt;
* [http://meego.com/users/timeless timeless/timeless] - Mozilla contributor, Nokia employee&lt;br /&gt;
* [http://meego.com/users/bundyo Bundyo/Bundyo] - Maemo community member, contributor&lt;br /&gt;
__NOTOC__ &amp;lt;!-- disable the table of contents from ever being shown --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:Community]]&lt;/div&gt;</summary>
		<author><name>Epage</name></author>	</entry>

	</feed>