<?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/Texrat&amp;feed=atom&amp;limit=50&amp;target=Texrat&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/Texrat&amp;feed=atom&amp;limit=50&amp;target=Texrat&amp;year=&amp;month="/>
		<link rel="alternate" type="text/html" href="http://wiki.meego.com/Special:Contributions/Texrat"/>
		<updated>2013-06-19T17:58:39Z</updated>
		<subtitle>From MeeGo wiki</subtitle>
		<generator>MediaWiki 1.16.2</generator>

	<entry>
		<id>http://wiki.meego.com/QML/Get_GPS_data</id>
		<title>QML/Get GPS data</title>
		<link rel="alternate" type="text/html" href="http://wiki.meego.com/QML/Get_GPS_data"/>
				<updated>2011-11-30T03:38:46Z</updated>
		
		<summary type="html">&lt;p&gt;Texrat: /* How to get GPS data in QML? */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= How to get GPS data in QML =&lt;br /&gt;
&lt;br /&gt;
Code snippet that draws ui and shows GPS data and accuracy, also with GPS on/off switch if one wants to conserve power.&lt;br /&gt;
&lt;br /&gt;
* Made by: Ossipena&lt;br /&gt;
* Modified by: Venemo&lt;br /&gt;
* Modified by: texrat&lt;br /&gt;
&lt;br /&gt;
== main.qml ==&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
// original code by Ossipena.&lt;br /&gt;
// Modified by Venemo and Texrat&lt;br /&gt;
&lt;br /&gt;
import QtQuick 1.1&lt;br /&gt;
import com.nokia.meego 1.0&lt;br /&gt;
&lt;br /&gt;
PageStackWindow {&lt;br /&gt;
    id: appWindow&lt;br /&gt;
    initialPage: mainPage&lt;br /&gt;
    showStatusBar: true&lt;br /&gt;
&lt;br /&gt;
    MainPage {&lt;br /&gt;
        id: mainPage&lt;br /&gt;
    }&lt;br /&gt;
    ToolBarLayout {&lt;br /&gt;
        id: commonTools&lt;br /&gt;
        visible: true&lt;br /&gt;
        parent: appWindow.pageStack.currentPage&lt;br /&gt;
&lt;br /&gt;
        Item {&lt;br /&gt;
            id: switchRow&lt;br /&gt;
            width: 300&lt;br /&gt;
            height: 32&lt;br /&gt;
            anchors.verticalCenter: parent.verticalCenter&lt;br /&gt;
&lt;br /&gt;
            // Switch for power saving: toggle gps on/off&lt;br /&gt;
            Switch {&lt;br /&gt;
                id: gpsSwitch&lt;br /&gt;
                anchors.verticalCenter: parent.verticalCenter&lt;br /&gt;
                checked: false&lt;br /&gt;
                anchors.right: parent.right&lt;br /&gt;
                anchors.rightMargin: 50&lt;br /&gt;
            }&lt;br /&gt;
            Text {&lt;br /&gt;
                id:switchText&lt;br /&gt;
                font.pointSize: 24&lt;br /&gt;
                text: gpsSwitch.checked ? &amp;quot;GPS ON&amp;quot; : &amp;quot;GPS OFF&amp;quot;&lt;br /&gt;
                horizontalAlignment: Text.AlignRight&lt;br /&gt;
                anchors.verticalCenter: parent.verticalCenter&lt;br /&gt;
                anchors.right: gpsSwitch.left&lt;br /&gt;
                anchors.rightMargin: 25&lt;br /&gt;
                font.family: &amp;quot;Nokia Pure&amp;quot;&lt;br /&gt;
            }&lt;br /&gt;
&lt;br /&gt;
        }&lt;br /&gt;
// menu not yet implemented&lt;br /&gt;
        ToolIcon {&lt;br /&gt;
            platformIconId: &amp;quot;toolbar-view-menu&amp;quot;;&lt;br /&gt;
        }&lt;br /&gt;
    }&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== MainPage.qml ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
import QtQuick 1.1&lt;br /&gt;
import com.nokia.meego 1.0&lt;br /&gt;
import com.nokia.extras 1.1&lt;br /&gt;
import Qt 4.7&lt;br /&gt;
import QtMobility.location 1.2&lt;br /&gt;
//import QtMultimediaKit 1.1  //for future audio handling&lt;br /&gt;
&lt;br /&gt;
Page {&lt;br /&gt;
    id: mainPage&lt;br /&gt;
    tools: commonTools&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
    function printableMethod(method) {&lt;br /&gt;
        if (method == PositionSource.SatellitePositioningMethod)&lt;br /&gt;
            return &amp;quot;Satellite&amp;quot;;&lt;br /&gt;
        else if (method == PositionSource.NoPositioningMethod)&lt;br /&gt;
            return &amp;quot;Not available&amp;quot;;&lt;br /&gt;
        else if (method == PositionSouce.NonSatellitePositioningMethod)&lt;br /&gt;
            return &amp;quot;Non-satellite&amp;quot;;&lt;br /&gt;
        else if (method == PositionSource.AllPositioningMethods)&lt;br /&gt;
            return &amp;quot;All/multiple&amp;quot;&lt;br /&gt;
        return &amp;quot;source error&amp;quot;;&lt;br /&gt;
    }&lt;br /&gt;
&lt;br /&gt;
    // the following function handles switching between&lt;br /&gt;
    // kilometers per hour and miles per hour for speed&lt;br /&gt;
    function speedConvert(speedState) {&lt;br /&gt;
        if (speedState == buttonMetric)&lt;br /&gt;
            return 1.00;&lt;br /&gt;
        else&lt;br /&gt;
            return 0.62;&lt;br /&gt;
    }&lt;br /&gt;
    // the following function handles switching between&lt;br /&gt;
    // meters and feet for altitude&lt;br /&gt;
    function heightConvert(heightState) {&lt;br /&gt;
        if (heightState == buttonMetric)&lt;br /&gt;
            return 1.00;&lt;br /&gt;
        else&lt;br /&gt;
            return 3.28;&lt;br /&gt;
    }&lt;br /&gt;
&lt;br /&gt;
    //init GPS etc&lt;br /&gt;
    PositionSource {&lt;br /&gt;
        id: positionSource&lt;br /&gt;
        updateInterval: 1000&lt;br /&gt;
        //active: false&lt;br /&gt;
        active: gpsSwitch.checked&lt;br /&gt;
    }&lt;br /&gt;
&lt;br /&gt;
    Item {&lt;br /&gt;
        id: rowItem&lt;br /&gt;
        width: 360&lt;br /&gt;
        anchors.horizontalCenter: parent.horizontalCenter&lt;br /&gt;
        anchors.top: parent.top&lt;br /&gt;
        anchors.topMargin: 25&lt;br /&gt;
        height: 32&lt;br /&gt;
&lt;br /&gt;
        ButtonRow {&lt;br /&gt;
            id: unitRow&lt;br /&gt;
            x: -115&lt;br /&gt;
            y: 0&lt;br /&gt;
            width: 230&lt;br /&gt;
            height: 32&lt;br /&gt;
            anchors.horizontalCenterOffset: 0&lt;br /&gt;
            anchors.horizontalCenter: parent.horizontalCenter&lt;br /&gt;
            anchors.top: parent.top&lt;br /&gt;
            anchors.topMargin: 0&lt;br /&gt;
            z: 1&lt;br /&gt;
            Button {&lt;br /&gt;
                id: buttonImperial&lt;br /&gt;
                text: &amp;quot;Imperial&amp;quot;&lt;br /&gt;
            }&lt;br /&gt;
            Button {&lt;br /&gt;
                id: buttonMetric&lt;br /&gt;
                text: &amp;quot;Metric&amp;quot;&lt;br /&gt;
            }&lt;br /&gt;
        }&lt;br /&gt;
    }&lt;br /&gt;
&lt;br /&gt;
    Grid {&lt;br /&gt;
        id: positionData&lt;br /&gt;
        x: 10&lt;br /&gt;
        y: 50&lt;br /&gt;
        width: 891&lt;br /&gt;
        height: 268&lt;br /&gt;
        anchors.top: rowItem.bottom&lt;br /&gt;
        anchors.topMargin: 50&lt;br /&gt;
        anchors.left:  parent.left&lt;br /&gt;
        anchors.leftMargin: 10&lt;br /&gt;
        columns: 2&lt;br /&gt;
        spacing: 5&lt;br /&gt;
&lt;br /&gt;
        Text {&lt;br /&gt;
            id: speedLabel&lt;br /&gt;
            text: &amp;quot;Speed:&amp;quot;&lt;br /&gt;
            font.pointSize: 24&lt;br /&gt;
            font.family: &amp;quot;Nokia Pure&amp;quot;&lt;br /&gt;
        }&lt;br /&gt;
        // units are returned in meters per second by default&lt;br /&gt;
        //here they are converted to either kph or mph&lt;br /&gt;
        //using factor shown along with unitConvert function&lt;br /&gt;
        Text{&lt;br /&gt;
            id: speed&lt;br /&gt;
            font.pointSize: 24&lt;br /&gt;
            text: (3.6 * gpsSwitch.checked) * speedConvert(unitRow.checkedButton) * positionSource.position.speed.toFixed(2)&lt;br /&gt;
            font.family: &amp;quot;Nokia Pure&amp;quot;&lt;br /&gt;
        }&lt;br /&gt;
        Text {&lt;br /&gt;
            id: latitudeLabel&lt;br /&gt;
            font.pointSize: 24&lt;br /&gt;
            text: &amp;quot;Latitude:&amp;quot;&lt;br /&gt;
            font.family: &amp;quot;Nokia Pure&amp;quot;&lt;br /&gt;
        }&lt;br /&gt;
        Text {&lt;br /&gt;
            id: latitudeText&lt;br /&gt;
            font.pointSize: 24&lt;br /&gt;
            text: positionSource.position.coordinate.latitude.toFixed(5)&lt;br /&gt;
            font.family: &amp;quot;Nokia Pure&amp;quot;&lt;br /&gt;
        }&lt;br /&gt;
        Text {&lt;br /&gt;
            id: longitudeLabel&lt;br /&gt;
            font.pointSize: 24&lt;br /&gt;
            text: &amp;quot;Longitude:&amp;quot;&lt;br /&gt;
            font.family: &amp;quot;Nokia Pure&amp;quot;&lt;br /&gt;
        }&lt;br /&gt;
        Text {&lt;br /&gt;
            id: longitudeText&lt;br /&gt;
            font.pointSize: 24&lt;br /&gt;
            text: positionSource.position.coordinate.longitude.toFixed(5)&lt;br /&gt;
            font.family: &amp;quot;Nokia Pure&amp;quot;&lt;br /&gt;
        }&lt;br /&gt;
        Text{&lt;br /&gt;
            id: accuracyLabel1&lt;br /&gt;
            font.pointSize: 18&lt;br /&gt;
            text: &amp;quot;Horizontal accuracy:&amp;quot;&lt;br /&gt;
            font.family: &amp;quot;Nokia Pure&amp;quot;&lt;br /&gt;
        }&lt;br /&gt;
        Text{&lt;br /&gt;
            id: horiz_accuracyText&lt;br /&gt;
            font.pointSize: 18&lt;br /&gt;
            text: positionSource.position.horizontalAccuracy.toFixed(2)&lt;br /&gt;
            font.family: &amp;quot;Nokia Pure&amp;quot;&lt;br /&gt;
        }&lt;br /&gt;
        Text {&lt;br /&gt;
            id:heightLabel&lt;br /&gt;
            font.pointSize: 24&lt;br /&gt;
            text: &amp;quot;Height:&amp;quot;&lt;br /&gt;
            font.family: &amp;quot;Nokia Pure&amp;quot;&lt;br /&gt;
        }&lt;br /&gt;
        Text {&lt;br /&gt;
            id: heightText&lt;br /&gt;
            font.pointSize: 24&lt;br /&gt;
            text: heightConvert(unitRow.checkedButton) * positionSource.position.coordinate.altitude.toFixed(5)&lt;br /&gt;
            font.family: &amp;quot;Nokia Pure&amp;quot;&lt;br /&gt;
        }&lt;br /&gt;
        Text{&lt;br /&gt;
            id: accuracyLabel2&lt;br /&gt;
            font.pointSize: 18&lt;br /&gt;
            text: &amp;quot;Altitude accuracy:&amp;quot;&lt;br /&gt;
            font.family: &amp;quot;Nokia Pure&amp;quot;&lt;br /&gt;
        }&lt;br /&gt;
        Text{&lt;br /&gt;
            id: vert_accuracyText&lt;br /&gt;
            font.pointSize: 18&lt;br /&gt;
            text: positionSource.position.verticalAccuracy.toFixed(2)&lt;br /&gt;
            font.family: &amp;quot;Nokia Pure&amp;quot;&lt;br /&gt;
        }&lt;br /&gt;
    }&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;/div&gt;</summary>
		<author><name>Texrat</name></author>	</entry>

	<entry>
		<id>http://wiki.meego.com/QML/Get_GPS_data</id>
		<title>QML/Get GPS data</title>
		<link rel="alternate" type="text/html" href="http://wiki.meego.com/QML/Get_GPS_data"/>
				<updated>2011-11-06T10:40:28Z</updated>
		
		<summary type="html">&lt;p&gt;Texrat: removed extra braces&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Code snippet that draws ui and shows GPS data and accuracy, also with GPS on/off switch if one wants to conserve power.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
// Made by: Ossipena&lt;br /&gt;
&lt;br /&gt;
This is done with PageStack so you need main.qml that defines pagestackwindow and MainPage.qml that is loaded &lt;br /&gt;
within the pagestack (here appWindow)&lt;br /&gt;
&lt;br /&gt;
main.qml:&lt;br /&gt;
&lt;br /&gt;
import QtQuick 1.1&lt;br /&gt;
import com.nokia.meego 1.0&lt;br /&gt;
&lt;br /&gt;
PageStackWindow {&lt;br /&gt;
    id: appWindow&lt;br /&gt;
&lt;br /&gt;
    MainPage {id: mainPage}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
   &lt;br /&gt;
    ToolBarLayout {&lt;br /&gt;
        id: commonTools&lt;br /&gt;
        visible: true&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
        TabButton {&lt;br /&gt;
            text: &amp;quot;View trackings&amp;quot;&lt;br /&gt;
            height: parent.height&lt;br /&gt;
            width: 400&lt;br /&gt;
            onClicked: appWindow.pageStack.push(Qt.resolvedUrl(&amp;quot;ViewPage.qml&amp;quot;))&lt;br /&gt;
&lt;br /&gt;
        }&lt;br /&gt;
&lt;br /&gt;
        ToolIcon { platformIconId: &amp;quot;toolbar-view-menu&amp;quot;;&lt;br /&gt;
             onClicked: (myMenu.status == DialogStatus.Closed) ? myMenu.open() : myMenu.close()&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
        }&lt;br /&gt;
&lt;br /&gt;
    }&lt;br /&gt;
   &lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
MainPage.qml:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
import QtQuick 1.1&lt;br /&gt;
import com.meego 1.0&lt;br /&gt;
import Qt 4.7&lt;br /&gt;
import QtMobility.location 1.1&lt;br /&gt;
&lt;br /&gt;
Page {&lt;br /&gt;
    id: mainPage&lt;br /&gt;
    tools: commonTools&lt;br /&gt;
    //init GPS etc&lt;br /&gt;
    PositionSource {&lt;br /&gt;
        id: positionSource&lt;br /&gt;
        updateInterval: 1000&lt;br /&gt;
        //active: false&lt;br /&gt;
        active: gpsswitch.checked&lt;br /&gt;
    }&lt;br /&gt;
    function printableMethod(method) {&lt;br /&gt;
        if (method == PositionSource.SatellitePositioningMethod)&lt;br /&gt;
            return &amp;quot;Satellite&amp;quot;;&lt;br /&gt;
        else if (method == PositionSource.NoPositioningMethod)&lt;br /&gt;
            return &amp;quot;Not available&amp;quot;;&lt;br /&gt;
        else if (method == PositionSouce.NonSatellitePositioningMethod)&lt;br /&gt;
            return &amp;quot;Non-satellite&amp;quot;;&lt;br /&gt;
        else if (method == PositionSource.AllPositioningMethods)&lt;br /&gt;
            return &amp;quot;All/multiple&amp;quot;&lt;br /&gt;
        return &amp;quot;source error&amp;quot;;&lt;br /&gt;
    }&lt;br /&gt;
    Grid {&lt;br /&gt;
        id: positiondata&lt;br /&gt;
        anchors.top: parent.top&lt;br /&gt;
        anchors.topMargin: 50&lt;br /&gt;
        anchors.left:  parent.left&lt;br /&gt;
        anchors.leftMargin: 10&lt;br /&gt;
        columns: 2&lt;br /&gt;
        spacing: 5&lt;br /&gt;
        //visible: false&lt;br /&gt;
        Text {&lt;br /&gt;
            id:latitudelabel&lt;br /&gt;
            font.pointSize: 32&lt;br /&gt;
            text: &amp;quot;Latitude:&amp;quot;&lt;br /&gt;
        }&lt;br /&gt;
        Text {&lt;br /&gt;
            id: latitudetext&lt;br /&gt;
            font.pointSize: 32&lt;br /&gt;
            text: positionSource.position.coordinate.latitude&lt;br /&gt;
        }&lt;br /&gt;
        Text {&lt;br /&gt;
            id:longitudelabel&lt;br /&gt;
            font.pointSize: 32&lt;br /&gt;
            text: &amp;quot;Longitude: &amp;quot;&lt;br /&gt;
        }&lt;br /&gt;
        Text {&lt;br /&gt;
            id: longitudetext&lt;br /&gt;
            font.pointSize: 32&lt;br /&gt;
            text: positionSource.position.coordinate.longitude&lt;br /&gt;
        }&lt;br /&gt;
        Text{&lt;br /&gt;
            id:accuracylabel1&lt;br /&gt;
            font.pointSize:  16&lt;br /&gt;
            text: &amp;quot;Horizontal accuracy:&amp;quot;&lt;br /&gt;
        }&lt;br /&gt;
        Text{&lt;br /&gt;
            id: horiz_accuracy&lt;br /&gt;
            font.pointSize: 16&lt;br /&gt;
            text: positionSource.position.horizontalAccuracy&lt;br /&gt;
        }&lt;br /&gt;
        Text {&lt;br /&gt;
            id:heightlabel&lt;br /&gt;
            font.pointSize: 32&lt;br /&gt;
            text: &amp;quot;Height: &amp;quot;&lt;br /&gt;
        }&lt;br /&gt;
        Text {&lt;br /&gt;
            id: heighttext&lt;br /&gt;
            font.pointSize: 32&lt;br /&gt;
            text: positionSource.position.coordinate.altitude&lt;br /&gt;
        }&lt;br /&gt;
        Text{&lt;br /&gt;
            id:accuracylabel2&lt;br /&gt;
            font.pointSize:  16&lt;br /&gt;
            text: &amp;quot;Altitude accuracy:&amp;quot;&lt;br /&gt;
        }&lt;br /&gt;
        Text{&lt;br /&gt;
            id: vert_accuracy&lt;br /&gt;
            font.pointSize: 16&lt;br /&gt;
            text: positionSource.position.verticalAccuracy&lt;br /&gt;
        }&lt;br /&gt;
    }&lt;br /&gt;
        Row {&lt;br /&gt;
            id: switchrow&lt;br /&gt;
            width: 300&lt;br /&gt;
            spacing: 10&lt;br /&gt;
            anchors.top:  positiondata.bottom&lt;br /&gt;
            anchors.left:  positiondata.left&lt;br /&gt;
            anchors.topMargin: 50&lt;br /&gt;
        // Switch for power saving: toggle gps on/off&lt;br /&gt;
        Text {&lt;br /&gt;
            id:switchtext&lt;br /&gt;
            anchors.left: parent.left&lt;br /&gt;
            font.pointSize: 32&lt;br /&gt;
            text: gpsswitch.checked ? &amp;quot;GPS ON&amp;quot; : &amp;quot;GPS OFF&amp;quot;&lt;br /&gt;
        }&lt;br /&gt;
        Switch {&lt;br /&gt;
            id: gpsswitch&lt;br /&gt;
            checked: false&lt;br /&gt;
            anchors.left: switchtext.right&lt;br /&gt;
            anchors.leftMargin: 50&lt;br /&gt;
         }&lt;br /&gt;
    }&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;/div&gt;</summary>
		<author><name>Texrat</name></author>	</entry>

	<entry>
		<id>http://wiki.meego.com/Talk:QML/Get_GPS_data</id>
		<title>Talk:QML/Get GPS data</title>
		<link rel="alternate" type="text/html" href="http://wiki.meego.com/Talk:QML/Get_GPS_data"/>
				<updated>2011-11-06T01:17:56Z</updated>
		
		<summary type="html">&lt;p&gt;Texrat: Created page with &amp;quot;I can't get this to work.  Error on:  import com.meego 1.0  (Package not found)  I am assuming there's a required download somewhere?&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;I can't get this to work.  Error on:&lt;br /&gt;
&lt;br /&gt;
import com.meego 1.0&lt;br /&gt;
&lt;br /&gt;
(Package not found)&lt;br /&gt;
&lt;br /&gt;
I am assuming there's a required download somewhere?&lt;/div&gt;</summary>
		<author><name>Texrat</name></author>	</entry>

	<entry>
		<id>http://wiki.meego.com/Community_Office/Community_device_program/Design_and_Documentation</id>
		<title>Community Office/Community device program/Design and Documentation</title>
		<link rel="alternate" type="text/html" href="http://wiki.meego.com/Community_Office/Community_device_program/Design_and_Documentation"/>
				<updated>2011-08-02T04:47:35Z</updated>
		
		<summary type="html">&lt;p&gt;Texrat: /* Allocations */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This page will cover the design and documentation of the device program's setup, workflows, data model, forms and other aspects *in process*&lt;br /&gt;
&lt;br /&gt;
= Requirements =&lt;br /&gt;
&lt;br /&gt;
== Setup ==&lt;br /&gt;
&lt;br /&gt;
Preliminary configuration.  See '''Structure''' for pre-populated data.&lt;br /&gt;
&lt;br /&gt;
== Workflow ==&lt;br /&gt;
&lt;br /&gt;
Typical process&lt;br /&gt;
&lt;br /&gt;
== Structure ==&lt;br /&gt;
&lt;br /&gt;
The following tables describe suggested data structures.  Where ever ''Values'' are shown, they are meant to be pre-populated.&lt;br /&gt;
&lt;br /&gt;
=== Platforms ===&lt;br /&gt;
&lt;br /&gt;
This table lists the platforms supported by MeeGo.  The values are editable only by program coordinators.&lt;br /&gt;
&lt;br /&gt;
Definitions:&lt;br /&gt;
&lt;br /&gt;
: Fields&lt;br /&gt;
&lt;br /&gt;
:: ID (autonumber, Primary Key, required)&lt;br /&gt;
:: '''Name''' (Varchar, required), ''Platform name''&lt;br /&gt;
:: Description (Text), ''Description of platform''&lt;br /&gt;
&lt;br /&gt;
Values:&lt;br /&gt;
&lt;br /&gt;
: '''Name'''&lt;br /&gt;
&lt;br /&gt;
:: Netbook&lt;br /&gt;
:: Entry-level Desktop&lt;br /&gt;
:: Nettop&lt;br /&gt;
:: Tablet Computer&lt;br /&gt;
:: Mobile Computers/Handset&lt;br /&gt;
:: In-Vehicle Infotainment (IVI) System&lt;br /&gt;
:: Smart TV/Connected TV&lt;br /&gt;
:: IP TV Box&lt;br /&gt;
:: Development Device&lt;br /&gt;
:: Other Embedded System&lt;br /&gt;
&lt;br /&gt;
=== Devices ===&lt;br /&gt;
&lt;br /&gt;
This table lists Devices made available by Providers.  Platform values are linked in and associated to specific devices by the data entrant.&lt;br /&gt;
&lt;br /&gt;
Definitions:&lt;br /&gt;
&lt;br /&gt;
: Fields&lt;br /&gt;
&lt;br /&gt;
:: ID (autonumber, Primary Key, required)&lt;br /&gt;
:: Creator_ID &lt;br /&gt;
:: Platform_ID (Foreign Key) ''Links to Platforms.ID''&lt;br /&gt;
:: Name (Varchar, required), ''Device name''&lt;br /&gt;
:: Model (Varchar)&lt;br /&gt;
:: Description (Text), ''Description of device''&lt;br /&gt;
:: DateAdded (DateTime, required), ''automatic DateTime stamp''&lt;br /&gt;
&lt;br /&gt;
=== Providers ===&lt;br /&gt;
&lt;br /&gt;
List of Device Providers participating in the program.&lt;br /&gt;
&lt;br /&gt;
Definitions:&lt;br /&gt;
&lt;br /&gt;
: Fields&lt;br /&gt;
&lt;br /&gt;
:: ID (autonumber, Primary Key, required)&lt;br /&gt;
:: CompanyName&lt;br /&gt;
:: PrimaryContactName&lt;br /&gt;
:: PrimaryContactEmail&lt;br /&gt;
:: PrimaryContactPhone&lt;br /&gt;
:: CustomForm (Binary Y/N), ''Does the Provider require their own form for requests?''&lt;br /&gt;
:: CustomFormLink (Hyperlink), ''Link to Provider's custom form''&lt;br /&gt;
&lt;br /&gt;
=== Device-Provider Matrix ===&lt;br /&gt;
&lt;br /&gt;
This table establishes a matrix between Devices and Providers, since Devices can be offered by more than one Provider.  When applicants request a device, they will be presented with at least one Provider and multiple Provider choices if they are available.&lt;br /&gt;
&lt;br /&gt;
Definitions:&lt;br /&gt;
&lt;br /&gt;
: Fields&lt;br /&gt;
&lt;br /&gt;
:: ID (autonumber, Primary Key, required)&lt;br /&gt;
:: Device_ID&lt;br /&gt;
:: Nature&lt;br /&gt;
:: DiscountPercentage&lt;br /&gt;
:: AllowedDuration&lt;br /&gt;
:: InventoryQuantity&lt;br /&gt;
:: Terms&lt;br /&gt;
:: DateAdded&lt;br /&gt;
&lt;br /&gt;
=== Requestors ===&lt;br /&gt;
&lt;br /&gt;
Device applicants.  Note that many of these fields are in MeeGo Member table(s) and need not be replicated.  Instead, the program Requestor table should contain only a foreign key plus those fields unique to this program.  This needs to be accurately documented.&lt;br /&gt;
&lt;br /&gt;
Definitions:&lt;br /&gt;
&lt;br /&gt;
: Fields&lt;br /&gt;
&lt;br /&gt;
:: ID (autonumber, Primary Key, required)&lt;br /&gt;
:: UserName&lt;br /&gt;
:: GivenName&lt;br /&gt;
:: FamilyName&lt;br /&gt;
:: UserEmail&lt;br /&gt;
:: PhoneNumber&lt;br /&gt;
:: Biography&lt;br /&gt;
:: LocationName&lt;br /&gt;
:: StreetAddress1&lt;br /&gt;
:: StreetAddress2&lt;br /&gt;
:: City&lt;br /&gt;
:: Region&lt;br /&gt;
:: Country&lt;br /&gt;
:: PostalCode&lt;br /&gt;
:: UserStatus&lt;br /&gt;
:: ActiveProvidersPKID&lt;br /&gt;
&lt;br /&gt;
=== Requests ===&lt;br /&gt;
&lt;br /&gt;
Applicant requests for devices.&lt;br /&gt;
&lt;br /&gt;
Definitions:&lt;br /&gt;
&lt;br /&gt;
: Fields&lt;br /&gt;
&lt;br /&gt;
:: ID (autonumber, Primary Key, required)&lt;br /&gt;
:: Requestor_ID&lt;br /&gt;
:: DeviceProviderMatrix_ID&lt;br /&gt;
:: DateOpened&lt;br /&gt;
:: DesiredQuantity&lt;br /&gt;
:: TeamName&lt;br /&gt;
:: ProjectName&lt;br /&gt;
:: ProjectURL&lt;br /&gt;
:: PrimaryUse&lt;br /&gt;
:: DevicePlans&lt;br /&gt;
:: ProviderSpecificNotes&lt;br /&gt;
:: RequestStatus&lt;br /&gt;
:: Remarks&lt;br /&gt;
:: DateUpdatedPlatforms&lt;br /&gt;
&lt;br /&gt;
=== Approvers ===&lt;br /&gt;
&lt;br /&gt;
Not yet defined&lt;br /&gt;
&lt;br /&gt;
Definitions:&lt;br /&gt;
&lt;br /&gt;
: Fields&lt;br /&gt;
&lt;br /&gt;
:: ID (autonumber, Primary Key, required)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Allocations ===&lt;br /&gt;
&lt;br /&gt;
Devices that have been approved and allocated.&lt;br /&gt;
&lt;br /&gt;
Definitions:&lt;br /&gt;
&lt;br /&gt;
: Fields&lt;br /&gt;
&lt;br /&gt;
:: ID (autonumber, Primary Key, required)&lt;br /&gt;
:: Request_ID&lt;br /&gt;
:: DeviceSN&lt;br /&gt;
:: DateAssigned&lt;br /&gt;
:: AllocatedQuantity  &amp;lt;-- will verify; may not be correct&lt;br /&gt;
:: DateDue&lt;br /&gt;
:: Notes&lt;br /&gt;
:: DateClosed&lt;br /&gt;
&lt;br /&gt;
== Forms ==&lt;br /&gt;
&lt;br /&gt;
(this needs updating)&lt;br /&gt;
&lt;br /&gt;
* (drop down) Select device provider&lt;br /&gt;
* (drop down) Select device (add any available devices to drop down)&lt;br /&gt;
* (drop down) Select primary use (fields: platform / project development, app development, design, localization, peripherals, other)&lt;br /&gt;
* (text box) Project Name (if applicable)&lt;br /&gt;
* (text box) Project URL (this is a requirement for TI; can be link to a forum thread, et al)&lt;br /&gt;
* (text box) Describe in more detail your plans for the device.&lt;br /&gt;
* (text box) Describe your past (if any) contributions to the MeeGo, Maemo and/or Moblin project(s).&lt;br /&gt;
* (drop down) MeeGo member name  [] meego.com  [] forum.meego.com&lt;br /&gt;
* (text field) Full Name&lt;br /&gt;
* (text field) Shipping Location (organization name or use 'home' if shipping to a residential address)&lt;br /&gt;
* (text field) Shipping Address&lt;br /&gt;
* (text field) Phone Number&lt;br /&gt;
* (text field) Email Address&lt;br /&gt;
* [] I confirm that I asked my employer for a device (if applicable) and have been turned down.&lt;br /&gt;
* [] I agree to use the device for the purpose stated above.&lt;br /&gt;
* [] I agree to blog/tweet/present about my experience with the device.&lt;br /&gt;
* [] I confirm that I have met all other requirements to receive this device.&lt;/div&gt;</summary>
		<author><name>Texrat</name></author>	</entry>

	<entry>
		<id>http://wiki.meego.com/Community_Office/Community_device_program/Design_and_Documentation</id>
		<title>Community Office/Community device program/Design and Documentation</title>
		<link rel="alternate" type="text/html" href="http://wiki.meego.com/Community_Office/Community_device_program/Design_and_Documentation"/>
				<updated>2011-08-02T04:26:15Z</updated>
		
		<summary type="html">&lt;p&gt;Texrat: /* Structure */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This page will cover the design and documentation of the device program's setup, workflows, data model, forms and other aspects *in process*&lt;br /&gt;
&lt;br /&gt;
= Requirements =&lt;br /&gt;
&lt;br /&gt;
== Setup ==&lt;br /&gt;
&lt;br /&gt;
Preliminary configuration.  See '''Structure''' for pre-populated data.&lt;br /&gt;
&lt;br /&gt;
== Workflow ==&lt;br /&gt;
&lt;br /&gt;
Typical process&lt;br /&gt;
&lt;br /&gt;
== Structure ==&lt;br /&gt;
&lt;br /&gt;
The following tables describe suggested data structures.  Where ever ''Values'' are shown, they are meant to be pre-populated.&lt;br /&gt;
&lt;br /&gt;
=== Platforms ===&lt;br /&gt;
&lt;br /&gt;
This table lists the platforms supported by MeeGo.  The values are editable only by program coordinators.&lt;br /&gt;
&lt;br /&gt;
Definitions:&lt;br /&gt;
&lt;br /&gt;
: Fields&lt;br /&gt;
&lt;br /&gt;
:: ID (autonumber, Primary Key, required)&lt;br /&gt;
:: '''Name''' (Varchar, required), ''Platform name''&lt;br /&gt;
:: Description (Text), ''Description of platform''&lt;br /&gt;
&lt;br /&gt;
Values:&lt;br /&gt;
&lt;br /&gt;
: '''Name'''&lt;br /&gt;
&lt;br /&gt;
:: Netbook&lt;br /&gt;
:: Entry-level Desktop&lt;br /&gt;
:: Nettop&lt;br /&gt;
:: Tablet Computer&lt;br /&gt;
:: Mobile Computers/Handset&lt;br /&gt;
:: In-Vehicle Infotainment (IVI) System&lt;br /&gt;
:: Smart TV/Connected TV&lt;br /&gt;
:: IP TV Box&lt;br /&gt;
:: Development Device&lt;br /&gt;
:: Other Embedded System&lt;br /&gt;
&lt;br /&gt;
=== Devices ===&lt;br /&gt;
&lt;br /&gt;
This table lists Devices made available by Providers.  Platform values are linked in and associated to specific devices by the data entrant.&lt;br /&gt;
&lt;br /&gt;
Definitions:&lt;br /&gt;
&lt;br /&gt;
: Fields&lt;br /&gt;
&lt;br /&gt;
:: ID (autonumber, Primary Key, required)&lt;br /&gt;
:: Creator_ID &lt;br /&gt;
:: Platform_ID (Foreign Key) ''Links to Platforms.ID''&lt;br /&gt;
:: Name (Varchar, required), ''Device name''&lt;br /&gt;
:: Model (Varchar)&lt;br /&gt;
:: Description (Text), ''Description of device''&lt;br /&gt;
:: DateAdded (DateTime, required), ''automatic DateTime stamp''&lt;br /&gt;
&lt;br /&gt;
=== Providers ===&lt;br /&gt;
&lt;br /&gt;
List of Device Providers participating in the program.&lt;br /&gt;
&lt;br /&gt;
Definitions:&lt;br /&gt;
&lt;br /&gt;
: Fields&lt;br /&gt;
&lt;br /&gt;
:: ID (autonumber, Primary Key, required)&lt;br /&gt;
:: CompanyName&lt;br /&gt;
:: PrimaryContactName&lt;br /&gt;
:: PrimaryContactEmail&lt;br /&gt;
:: PrimaryContactPhone&lt;br /&gt;
:: CustomForm (Binary Y/N), ''Does the Provider require their own form for requests?''&lt;br /&gt;
:: CustomFormLink (Hyperlink), ''Link to Provider's custom form''&lt;br /&gt;
&lt;br /&gt;
=== Device-Provider Matrix ===&lt;br /&gt;
&lt;br /&gt;
This table establishes a matrix between Devices and Providers, since Devices can be offered by more than one Provider.  When applicants request a device, they will be presented with at least one Provider and multiple Provider choices if they are available.&lt;br /&gt;
&lt;br /&gt;
Definitions:&lt;br /&gt;
&lt;br /&gt;
: Fields&lt;br /&gt;
&lt;br /&gt;
:: ID (autonumber, Primary Key, required)&lt;br /&gt;
:: Device_ID&lt;br /&gt;
:: Nature&lt;br /&gt;
:: DiscountPercentage&lt;br /&gt;
:: AllowedDuration&lt;br /&gt;
:: InventoryQuantity&lt;br /&gt;
:: Terms&lt;br /&gt;
:: DateAdded&lt;br /&gt;
&lt;br /&gt;
=== Requestors ===&lt;br /&gt;
&lt;br /&gt;
Device applicants.  Note that many of these fields are in MeeGo Member table(s) and need not be replicated.  Instead, the program Requestor table should contain only a foreign key plus those fields unique to this program.  This needs to be accurately documented.&lt;br /&gt;
&lt;br /&gt;
Definitions:&lt;br /&gt;
&lt;br /&gt;
: Fields&lt;br /&gt;
&lt;br /&gt;
:: ID (autonumber, Primary Key, required)&lt;br /&gt;
:: UserName&lt;br /&gt;
:: GivenName&lt;br /&gt;
:: FamilyName&lt;br /&gt;
:: UserEmail&lt;br /&gt;
:: PhoneNumber&lt;br /&gt;
:: Biography&lt;br /&gt;
:: LocationName&lt;br /&gt;
:: StreetAddress1&lt;br /&gt;
:: StreetAddress2&lt;br /&gt;
:: City&lt;br /&gt;
:: Region&lt;br /&gt;
:: Country&lt;br /&gt;
:: PostalCode&lt;br /&gt;
:: UserStatus&lt;br /&gt;
:: ActiveProvidersPKID&lt;br /&gt;
&lt;br /&gt;
=== Requests ===&lt;br /&gt;
&lt;br /&gt;
Applicant requests for devices.&lt;br /&gt;
&lt;br /&gt;
Definitions:&lt;br /&gt;
&lt;br /&gt;
: Fields&lt;br /&gt;
&lt;br /&gt;
:: ID (autonumber, Primary Key, required)&lt;br /&gt;
:: Requestor_ID&lt;br /&gt;
:: DeviceProviderMatrix_ID&lt;br /&gt;
:: DateOpened&lt;br /&gt;
:: DesiredQuantity&lt;br /&gt;
:: TeamName&lt;br /&gt;
:: ProjectName&lt;br /&gt;
:: ProjectURL&lt;br /&gt;
:: PrimaryUse&lt;br /&gt;
:: DevicePlans&lt;br /&gt;
:: ProviderSpecificNotes&lt;br /&gt;
:: RequestStatus&lt;br /&gt;
:: Remarks&lt;br /&gt;
:: DateUpdatedPlatforms&lt;br /&gt;
&lt;br /&gt;
=== Approvers ===&lt;br /&gt;
&lt;br /&gt;
Not yet defined&lt;br /&gt;
&lt;br /&gt;
Definitions:&lt;br /&gt;
&lt;br /&gt;
: Fields&lt;br /&gt;
&lt;br /&gt;
:: ID (autonumber, Primary Key, required)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Allocations ===&lt;br /&gt;
&lt;br /&gt;
Devices that have been approved and allocated.&lt;br /&gt;
&lt;br /&gt;
Definitions:&lt;br /&gt;
&lt;br /&gt;
: Fields&lt;br /&gt;
&lt;br /&gt;
:: ID (autonumber, Primary Key, required)&lt;br /&gt;
:: Request_ID&lt;br /&gt;
:: DeviceSN&lt;br /&gt;
:: DateAssigned&lt;br /&gt;
:: AllocatedQuantity&lt;br /&gt;
:: DateDue&lt;br /&gt;
:: Notes&lt;br /&gt;
:: DateClosed&lt;br /&gt;
&lt;br /&gt;
== Forms ==&lt;br /&gt;
&lt;br /&gt;
(this needs updating)&lt;br /&gt;
&lt;br /&gt;
* (drop down) Select device provider&lt;br /&gt;
* (drop down) Select device (add any available devices to drop down)&lt;br /&gt;
* (drop down) Select primary use (fields: platform / project development, app development, design, localization, peripherals, other)&lt;br /&gt;
* (text box) Project Name (if applicable)&lt;br /&gt;
* (text box) Project URL (this is a requirement for TI; can be link to a forum thread, et al)&lt;br /&gt;
* (text box) Describe in more detail your plans for the device.&lt;br /&gt;
* (text box) Describe your past (if any) contributions to the MeeGo, Maemo and/or Moblin project(s).&lt;br /&gt;
* (drop down) MeeGo member name  [] meego.com  [] forum.meego.com&lt;br /&gt;
* (text field) Full Name&lt;br /&gt;
* (text field) Shipping Location (organization name or use 'home' if shipping to a residential address)&lt;br /&gt;
* (text field) Shipping Address&lt;br /&gt;
* (text field) Phone Number&lt;br /&gt;
* (text field) Email Address&lt;br /&gt;
* [] I confirm that I asked my employer for a device (if applicable) and have been turned down.&lt;br /&gt;
* [] I agree to use the device for the purpose stated above.&lt;br /&gt;
* [] I agree to blog/tweet/present about my experience with the device.&lt;br /&gt;
* [] I confirm that I have met all other requirements to receive this device.&lt;/div&gt;</summary>
		<author><name>Texrat</name></author>	</entry>

	<entry>
		<id>http://wiki.meego.com/Community_Office/Community_device_program/Design_and_Documentation</id>
		<title>Community Office/Community device program/Design and Documentation</title>
		<link rel="alternate" type="text/html" href="http://wiki.meego.com/Community_Office/Community_device_program/Design_and_Documentation"/>
				<updated>2011-08-02T04:12:38Z</updated>
		
		<summary type="html">&lt;p&gt;Texrat: /* Structure */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This page will cover the design and documentation of the device program's setup, workflows, data model, forms and other aspects *in process*&lt;br /&gt;
&lt;br /&gt;
= Requirements =&lt;br /&gt;
&lt;br /&gt;
== Setup ==&lt;br /&gt;
&lt;br /&gt;
Preliminary configuration.  See '''Structure''' for pre-populated data.&lt;br /&gt;
&lt;br /&gt;
== Workflow ==&lt;br /&gt;
&lt;br /&gt;
Typical process&lt;br /&gt;
&lt;br /&gt;
== Structure ==&lt;br /&gt;
&lt;br /&gt;
The following tables describe suggested data structures.  Where ever ''Values'' are shown, they are meant to be pre-populated.&lt;br /&gt;
&lt;br /&gt;
=== Platforms ===&lt;br /&gt;
&lt;br /&gt;
This table lists the platforms supported by MeeGo.  The values are editable only by program coordinators.&lt;br /&gt;
&lt;br /&gt;
Definitions:&lt;br /&gt;
&lt;br /&gt;
: Fields&lt;br /&gt;
&lt;br /&gt;
:: ID (autonumber, Primary Key, required)&lt;br /&gt;
:: '''Name''' (Varchar, required), ''Platform name''&lt;br /&gt;
:: Description (Text), ''Description of platform''&lt;br /&gt;
&lt;br /&gt;
Values:&lt;br /&gt;
&lt;br /&gt;
: '''Name'''&lt;br /&gt;
&lt;br /&gt;
:: Netbook&lt;br /&gt;
:: Entry-level Desktop&lt;br /&gt;
:: Nettop&lt;br /&gt;
:: Tablet Computer&lt;br /&gt;
:: Mobile Computers/Handset&lt;br /&gt;
:: In-Vehicle Infotainment (IVI) System&lt;br /&gt;
:: Smart TV/Connected TV&lt;br /&gt;
:: IP TV Box&lt;br /&gt;
:: Development Device&lt;br /&gt;
:: Other Embedded System&lt;br /&gt;
&lt;br /&gt;
=== Devices ===&lt;br /&gt;
&lt;br /&gt;
This table lists Devices made available by Providers.  Platform values are linked in and associated to specific devices by the data entrant.&lt;br /&gt;
&lt;br /&gt;
Definitions:&lt;br /&gt;
&lt;br /&gt;
: Fields&lt;br /&gt;
&lt;br /&gt;
:: ID (autonumber, Primary Key, required)&lt;br /&gt;
:: Creator_ID &lt;br /&gt;
:: Platform_ID (Foreign Key) ''Links to Platforms.ID''&lt;br /&gt;
:: Name (Varchar, required), ''Device name''&lt;br /&gt;
:: Model (Varchar)&lt;br /&gt;
:: Description (Text), ''Description of device''&lt;br /&gt;
:: DateAdded (DateTime, required), ''automatic DateTime stamp''&lt;br /&gt;
&lt;br /&gt;
=== Providers ===&lt;br /&gt;
&lt;br /&gt;
List of Device Providers participating in the program.&lt;br /&gt;
&lt;br /&gt;
Definitions:&lt;br /&gt;
&lt;br /&gt;
: Fields&lt;br /&gt;
&lt;br /&gt;
:: ID (autonumber, Primary Key, required)&lt;br /&gt;
:: CompanyName&lt;br /&gt;
:: PrimaryContactName&lt;br /&gt;
:: PrimaryContactEmail&lt;br /&gt;
:: PrimaryContactPhone&lt;br /&gt;
:: CustomForm (Binary Y/N), ''Does the Provider require their own form for requests?''&lt;br /&gt;
:: CustomFormLink (Hyperlink), ''Link to Provider's custom form''&lt;br /&gt;
&lt;br /&gt;
=== Device-Provider Matrix ===&lt;br /&gt;
&lt;br /&gt;
This table establishes a matrix between Devices and Providers, since Devices can be offered by more than one Provider.  When applicants request a device, they will be presented with at least one Provider and multiple Provider choices if they are available.&lt;br /&gt;
&lt;br /&gt;
Definitions:&lt;br /&gt;
&lt;br /&gt;
: Fields&lt;br /&gt;
&lt;br /&gt;
:: ID (autonumber, Primary Key, required)&lt;br /&gt;
:: Device_ID&lt;br /&gt;
:: Nature&lt;br /&gt;
:: DiscountPercentage&lt;br /&gt;
:: AllowedDuration&lt;br /&gt;
:: InventoryQuantity&lt;br /&gt;
:: Terms&lt;br /&gt;
:: DateAdded&lt;br /&gt;
&lt;br /&gt;
=== Requestors ===&lt;br /&gt;
&lt;br /&gt;
Device applicants.&lt;br /&gt;
&lt;br /&gt;
Definitions:&lt;br /&gt;
&lt;br /&gt;
: Fields&lt;br /&gt;
&lt;br /&gt;
:: ID (autonumber, Primary Key, required)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Requests ===&lt;br /&gt;
&lt;br /&gt;
Applicant requests for devices.&lt;br /&gt;
&lt;br /&gt;
Definitions:&lt;br /&gt;
&lt;br /&gt;
: Fields&lt;br /&gt;
&lt;br /&gt;
:: ID (autonumber, Primary Key, required)&lt;br /&gt;
:: Requestor_ID&lt;br /&gt;
:: DeviceProviderMatrix_ID&lt;br /&gt;
:: DateOpened&lt;br /&gt;
:: DesiredQuantity&lt;br /&gt;
:: TeamName&lt;br /&gt;
:: ProjectName&lt;br /&gt;
:: ProjectURL&lt;br /&gt;
:: PrimaryUse&lt;br /&gt;
:: DevicePlans&lt;br /&gt;
:: ProviderSpecificNotes&lt;br /&gt;
:: RequestStatus&lt;br /&gt;
:: Remarks&lt;br /&gt;
:: DateUpdatedPlatforms&lt;br /&gt;
&lt;br /&gt;
=== Approvers ===&lt;br /&gt;
&lt;br /&gt;
Not yet defined&lt;br /&gt;
&lt;br /&gt;
Definitions:&lt;br /&gt;
&lt;br /&gt;
: Fields&lt;br /&gt;
&lt;br /&gt;
:: ID (autonumber, Primary Key, required)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Allocations ===&lt;br /&gt;
&lt;br /&gt;
Devices that have been approved and allocated.&lt;br /&gt;
&lt;br /&gt;
Definitions:&lt;br /&gt;
&lt;br /&gt;
: Fields&lt;br /&gt;
&lt;br /&gt;
:: ID (autonumber, Primary Key, required)&lt;br /&gt;
:: Request_ID&lt;br /&gt;
:: DeviceSN&lt;br /&gt;
:: DateAssigned&lt;br /&gt;
:: AllocatedQuantity&lt;br /&gt;
:: DateDue&lt;br /&gt;
:: Notes&lt;br /&gt;
:: DateClosed&lt;br /&gt;
&lt;br /&gt;
== Forms ==&lt;br /&gt;
&lt;br /&gt;
(this needs updating)&lt;br /&gt;
&lt;br /&gt;
* (drop down) Select device provider&lt;br /&gt;
* (drop down) Select device (add any available devices to drop down)&lt;br /&gt;
* (drop down) Select primary use (fields: platform / project development, app development, design, localization, peripherals, other)&lt;br /&gt;
* (text box) Project Name (if applicable)&lt;br /&gt;
* (text box) Project URL (this is a requirement for TI; can be link to a forum thread, et al)&lt;br /&gt;
* (text box) Describe in more detail your plans for the device.&lt;br /&gt;
* (text box) Describe your past (if any) contributions to the MeeGo, Maemo and/or Moblin project(s).&lt;br /&gt;
* (drop down) MeeGo member name  [] meego.com  [] forum.meego.com&lt;br /&gt;
* (text field) Full Name&lt;br /&gt;
* (text field) Shipping Location (organization name or use 'home' if shipping to a residential address)&lt;br /&gt;
* (text field) Shipping Address&lt;br /&gt;
* (text field) Phone Number&lt;br /&gt;
* (text field) Email Address&lt;br /&gt;
* [] I confirm that I asked my employer for a device (if applicable) and have been turned down.&lt;br /&gt;
* [] I agree to use the device for the purpose stated above.&lt;br /&gt;
* [] I agree to blog/tweet/present about my experience with the device.&lt;br /&gt;
* [] I confirm that I have met all other requirements to receive this device.&lt;/div&gt;</summary>
		<author><name>Texrat</name></author>	</entry>

	<entry>
		<id>http://wiki.meego.com/Community_Office/Community_device_program/Design_and_Documentation</id>
		<title>Community Office/Community device program/Design and Documentation</title>
		<link rel="alternate" type="text/html" href="http://wiki.meego.com/Community_Office/Community_device_program/Design_and_Documentation"/>
				<updated>2011-08-02T04:04:43Z</updated>
		
		<summary type="html">&lt;p&gt;Texrat: /* Structure */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This page will cover the design and documentation of the device program's setup, workflows, data model, forms and other aspects *in process*&lt;br /&gt;
&lt;br /&gt;
= Requirements =&lt;br /&gt;
&lt;br /&gt;
== Setup ==&lt;br /&gt;
&lt;br /&gt;
Preliminary configuration.  See '''Structure''' for pre-populated data.&lt;br /&gt;
&lt;br /&gt;
== Workflow ==&lt;br /&gt;
&lt;br /&gt;
Typical process&lt;br /&gt;
&lt;br /&gt;
== Structure ==&lt;br /&gt;
&lt;br /&gt;
The following tables describe suggested data structures.  Where ever ''Values'' are shown, they are meant to be pre-populated.&lt;br /&gt;
&lt;br /&gt;
=== Platforms ===&lt;br /&gt;
&lt;br /&gt;
Definitions:&lt;br /&gt;
&lt;br /&gt;
: Fields&lt;br /&gt;
&lt;br /&gt;
:: ID (autonumber, Primary Key, required)&lt;br /&gt;
:: '''Name''' (Varchar, required), ''Platform name''&lt;br /&gt;
:: Description (Text), ''Description of platform''&lt;br /&gt;
&lt;br /&gt;
Values:&lt;br /&gt;
&lt;br /&gt;
: '''Name'''&lt;br /&gt;
&lt;br /&gt;
:: Netbook&lt;br /&gt;
:: Entry-level Desktop&lt;br /&gt;
:: Nettop&lt;br /&gt;
:: Tablet Computer&lt;br /&gt;
:: Mobile Computers/Handset&lt;br /&gt;
:: In-Vehicle Infotainment (IVI) System&lt;br /&gt;
:: Smart TV/Connected TV&lt;br /&gt;
:: IP TV Box&lt;br /&gt;
:: Development Device&lt;br /&gt;
:: Other Embedded System&lt;br /&gt;
&lt;br /&gt;
=== Devices ===&lt;br /&gt;
&lt;br /&gt;
Definitions:&lt;br /&gt;
&lt;br /&gt;
: Fields&lt;br /&gt;
&lt;br /&gt;
:: ID (autonumber, Primary Key, required)&lt;br /&gt;
:: Creator_ID &lt;br /&gt;
:: Platform_ID (Foreign Key) ''Links to Platforms.ID''&lt;br /&gt;
:: Name (Varchar, required), ''Device name''&lt;br /&gt;
:: Model (Varchar)&lt;br /&gt;
:: Description (Text), ''Description of device''&lt;br /&gt;
:: DateAdded (DateTime, required), ''automatic DateTime stamp''&lt;br /&gt;
&lt;br /&gt;
=== Providers ===&lt;br /&gt;
&lt;br /&gt;
Definitions:&lt;br /&gt;
&lt;br /&gt;
: Fields&lt;br /&gt;
&lt;br /&gt;
:: ID (autonumber, Primary Key, required)&lt;br /&gt;
:: CompanyName&lt;br /&gt;
:: PrimaryContactName&lt;br /&gt;
:: PrimaryContactEmail&lt;br /&gt;
:: PrimaryContactPhone&lt;br /&gt;
:: CustomForm&lt;br /&gt;
:: CustomFormLink&lt;br /&gt;
&lt;br /&gt;
=== Device-Provider Matrix ===&lt;br /&gt;
&lt;br /&gt;
Definitions:&lt;br /&gt;
&lt;br /&gt;
: Fields&lt;br /&gt;
&lt;br /&gt;
:: ID (autonumber, Primary Key, required)&lt;br /&gt;
:: Device_ID&lt;br /&gt;
:: Nature&lt;br /&gt;
:: DiscountPercentage&lt;br /&gt;
:: AllowedDuration&lt;br /&gt;
:: InventoryQuantity&lt;br /&gt;
:: Terms&lt;br /&gt;
:: DateAdded&lt;br /&gt;
&lt;br /&gt;
=== Requestors ===&lt;br /&gt;
&lt;br /&gt;
Definitions:&lt;br /&gt;
&lt;br /&gt;
: Fields&lt;br /&gt;
&lt;br /&gt;
:: ID (autonumber, Primary Key, required)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Requests ===&lt;br /&gt;
&lt;br /&gt;
Definitions:&lt;br /&gt;
&lt;br /&gt;
: Fields&lt;br /&gt;
&lt;br /&gt;
:: ID (autonumber, Primary Key, required)&lt;br /&gt;
:: Requestor_ID&lt;br /&gt;
:: DeviceProviderMatrix_ID&lt;br /&gt;
:: DateOpened&lt;br /&gt;
:: DesiredQuantity&lt;br /&gt;
:: TeamName&lt;br /&gt;
:: ProjectName&lt;br /&gt;
:: ProjectURL&lt;br /&gt;
:: PrimaryUse&lt;br /&gt;
:: DevicePlans&lt;br /&gt;
:: ProviderSpecificNotes&lt;br /&gt;
:: RequestStatus&lt;br /&gt;
:: Remarks&lt;br /&gt;
:: DateUpdatedPlatforms&lt;br /&gt;
&lt;br /&gt;
=== Approvers ===&lt;br /&gt;
&lt;br /&gt;
Definitions:&lt;br /&gt;
&lt;br /&gt;
: Fields&lt;br /&gt;
&lt;br /&gt;
:: ID (autonumber, Primary Key, required)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Allocations ===&lt;br /&gt;
&lt;br /&gt;
Definitions:&lt;br /&gt;
&lt;br /&gt;
: Fields&lt;br /&gt;
&lt;br /&gt;
:: ID (autonumber, Primary Key, required)&lt;br /&gt;
:: Request_ID&lt;br /&gt;
:: DeviceSN&lt;br /&gt;
:: DateAssigned&lt;br /&gt;
:: AllocatedQuantity&lt;br /&gt;
:: DateDue&lt;br /&gt;
:: Notes&lt;br /&gt;
:: DateClosed&lt;br /&gt;
&lt;br /&gt;
== Forms ==&lt;br /&gt;
&lt;br /&gt;
(this needs updating)&lt;br /&gt;
&lt;br /&gt;
* (drop down) Select device provider&lt;br /&gt;
* (drop down) Select device (add any available devices to drop down)&lt;br /&gt;
* (drop down) Select primary use (fields: platform / project development, app development, design, localization, peripherals, other)&lt;br /&gt;
* (text box) Project Name (if applicable)&lt;br /&gt;
* (text box) Project URL (this is a requirement for TI; can be link to a forum thread, et al)&lt;br /&gt;
* (text box) Describe in more detail your plans for the device.&lt;br /&gt;
* (text box) Describe your past (if any) contributions to the MeeGo, Maemo and/or Moblin project(s).&lt;br /&gt;
* (drop down) MeeGo member name  [] meego.com  [] forum.meego.com&lt;br /&gt;
* (text field) Full Name&lt;br /&gt;
* (text field) Shipping Location (organization name or use 'home' if shipping to a residential address)&lt;br /&gt;
* (text field) Shipping Address&lt;br /&gt;
* (text field) Phone Number&lt;br /&gt;
* (text field) Email Address&lt;br /&gt;
* [] I confirm that I asked my employer for a device (if applicable) and have been turned down.&lt;br /&gt;
* [] I agree to use the device for the purpose stated above.&lt;br /&gt;
* [] I agree to blog/tweet/present about my experience with the device.&lt;br /&gt;
* [] I confirm that I have met all other requirements to receive this device.&lt;/div&gt;</summary>
		<author><name>Texrat</name></author>	</entry>

	<entry>
		<id>http://wiki.meego.com/Community_Office/Community_device_program/Design_and_Documentation</id>
		<title>Community Office/Community device program/Design and Documentation</title>
		<link rel="alternate" type="text/html" href="http://wiki.meego.com/Community_Office/Community_device_program/Design_and_Documentation"/>
				<updated>2011-08-02T03:56:14Z</updated>
		
		<summary type="html">&lt;p&gt;Texrat: /* Platforms */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This page will cover the design and documentation of the device program's setup, workflows, data model, forms and other aspects *in process*&lt;br /&gt;
&lt;br /&gt;
= Requirements =&lt;br /&gt;
&lt;br /&gt;
== Setup ==&lt;br /&gt;
&lt;br /&gt;
Preliminary configuration.  See '''Structure''' for pre-populated data.&lt;br /&gt;
&lt;br /&gt;
== Workflow ==&lt;br /&gt;
&lt;br /&gt;
Typical process&lt;br /&gt;
&lt;br /&gt;
== Structure ==&lt;br /&gt;
&lt;br /&gt;
The following tables describe suggested data structures.  Where ever ''Values'' are shown, they are meant to be pre-populated.&lt;br /&gt;
&lt;br /&gt;
=== Platforms ===&lt;br /&gt;
&lt;br /&gt;
Definitions:&lt;br /&gt;
&lt;br /&gt;
: Fields&lt;br /&gt;
&lt;br /&gt;
:: ID (autonumber, Primary Key, required)&lt;br /&gt;
:: '''Name''' (Varchar, required), ''Platform name''&lt;br /&gt;
:: Description (Text), ''Description of platform''&lt;br /&gt;
&lt;br /&gt;
Values:&lt;br /&gt;
&lt;br /&gt;
: '''Name'''&lt;br /&gt;
&lt;br /&gt;
:: Netbook&lt;br /&gt;
:: Entry-level Desktop&lt;br /&gt;
:: Nettop&lt;br /&gt;
:: Tablet Computer&lt;br /&gt;
:: Mobile Computers/Handset&lt;br /&gt;
:: In-Vehicle Infotainment (IVI) System&lt;br /&gt;
:: Smart TV/Connected TV&lt;br /&gt;
:: IP TV Box&lt;br /&gt;
:: Development Device&lt;br /&gt;
:: Other Embedded System&lt;br /&gt;
&lt;br /&gt;
=== Devices ===&lt;br /&gt;
&lt;br /&gt;
Definitions:&lt;br /&gt;
&lt;br /&gt;
: Fields&lt;br /&gt;
&lt;br /&gt;
:: ID (autonumber, Primary Key, required)&lt;br /&gt;
:: Creator_ID &lt;br /&gt;
:: Platform_ID (Foreign Key) ''Links to Platforms.ID''&lt;br /&gt;
:: Name (Varchar, required), ''Device name''&lt;br /&gt;
:: Model (Varchar)&lt;br /&gt;
:: Description (Text), ''Description of device''&lt;br /&gt;
:: DateAdded (DateTime, required), ''automatic DateTime stamp''&lt;br /&gt;
&lt;br /&gt;
=== Providers ===&lt;br /&gt;
&lt;br /&gt;
Definitions:&lt;br /&gt;
&lt;br /&gt;
: Fields&lt;br /&gt;
&lt;br /&gt;
:: ID (autonumber, Primary Key, required)&lt;br /&gt;
:: CompanyName&lt;br /&gt;
:: PrimaryContactName&lt;br /&gt;
:: PrimaryContactEmail&lt;br /&gt;
:: PrimaryContactPhone&lt;br /&gt;
:: CustomForm&lt;br /&gt;
:: CustomFormLink&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Device-Provider Matrix ===&lt;br /&gt;
&lt;br /&gt;
=== Requestors ===&lt;br /&gt;
&lt;br /&gt;
=== Requests ===&lt;br /&gt;
&lt;br /&gt;
=== Approvers ===&lt;br /&gt;
&lt;br /&gt;
=== Allocations ===&lt;br /&gt;
&lt;br /&gt;
== Forms ==&lt;br /&gt;
&lt;br /&gt;
(this needs updating)&lt;br /&gt;
&lt;br /&gt;
* (drop down) Select device provider&lt;br /&gt;
* (drop down) Select device (add any available devices to drop down)&lt;br /&gt;
* (drop down) Select primary use (fields: platform / project development, app development, design, localization, peripherals, other)&lt;br /&gt;
* (text box) Project Name (if applicable)&lt;br /&gt;
* (text box) Project URL (this is a requirement for TI; can be link to a forum thread, et al)&lt;br /&gt;
* (text box) Describe in more detail your plans for the device.&lt;br /&gt;
* (text box) Describe your past (if any) contributions to the MeeGo, Maemo and/or Moblin project(s).&lt;br /&gt;
* (drop down) MeeGo member name  [] meego.com  [] forum.meego.com&lt;br /&gt;
* (text field) Full Name&lt;br /&gt;
* (text field) Shipping Location (organization name or use 'home' if shipping to a residential address)&lt;br /&gt;
* (text field) Shipping Address&lt;br /&gt;
* (text field) Phone Number&lt;br /&gt;
* (text field) Email Address&lt;br /&gt;
* [] I confirm that I asked my employer for a device (if applicable) and have been turned down.&lt;br /&gt;
* [] I agree to use the device for the purpose stated above.&lt;br /&gt;
* [] I agree to blog/tweet/present about my experience with the device.&lt;br /&gt;
* [] I confirm that I have met all other requirements to receive this device.&lt;/div&gt;</summary>
		<author><name>Texrat</name></author>	</entry>

	<entry>
		<id>http://wiki.meego.com/Community_Office/Community_device_program/Design_and_Documentation</id>
		<title>Community Office/Community device program/Design and Documentation</title>
		<link rel="alternate" type="text/html" href="http://wiki.meego.com/Community_Office/Community_device_program/Design_and_Documentation"/>
				<updated>2011-08-02T03:54:21Z</updated>
		
		<summary type="html">&lt;p&gt;Texrat: /* Structure */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This page will cover the design and documentation of the device program's setup, workflows, data model, forms and other aspects *in process*&lt;br /&gt;
&lt;br /&gt;
= Requirements =&lt;br /&gt;
&lt;br /&gt;
== Setup ==&lt;br /&gt;
&lt;br /&gt;
Preliminary configuration.  See '''Structure''' for pre-populated data.&lt;br /&gt;
&lt;br /&gt;
== Workflow ==&lt;br /&gt;
&lt;br /&gt;
Typical process&lt;br /&gt;
&lt;br /&gt;
== Structure ==&lt;br /&gt;
&lt;br /&gt;
The following tables describe suggested data structures.  Where ever ''Values'' are shown, they are meant to be pre-populated.&lt;br /&gt;
&lt;br /&gt;
=== Platforms ===&lt;br /&gt;
&lt;br /&gt;
Definitions:&lt;br /&gt;
&lt;br /&gt;
: Fields&lt;br /&gt;
&lt;br /&gt;
:: ID (autonumber, Primary Key, required)&lt;br /&gt;
:: '''Name''' (Varchar, required), ''Platform name''&lt;br /&gt;
:: Description (Text), ''Description of platform''&lt;br /&gt;
&lt;br /&gt;
Values:&lt;br /&gt;
&lt;br /&gt;
: '''Name'''&lt;br /&gt;
&lt;br /&gt;
:: Netbooks&lt;br /&gt;
:: Entry-level Desktops&lt;br /&gt;
:: Nettops&lt;br /&gt;
:: Tablet Computers&lt;br /&gt;
:: Mobile Computers/Handsets&lt;br /&gt;
:: In-Vehicle Infotainment (IVI) Systems&lt;br /&gt;
:: Smart TV/Connected TV&lt;br /&gt;
:: IP TV Boxes&lt;br /&gt;
:: Development Devices&lt;br /&gt;
:: Other Embedded Systems&lt;br /&gt;
&lt;br /&gt;
=== Devices ===&lt;br /&gt;
&lt;br /&gt;
Definitions:&lt;br /&gt;
&lt;br /&gt;
: Fields&lt;br /&gt;
&lt;br /&gt;
:: ID (autonumber, Primary Key, required)&lt;br /&gt;
:: Creator_ID &lt;br /&gt;
:: Platform_ID (Foreign Key) ''Links to Platforms.ID''&lt;br /&gt;
:: Name (Varchar, required), ''Device name''&lt;br /&gt;
:: Model (Varchar)&lt;br /&gt;
:: Description (Text), ''Description of device''&lt;br /&gt;
:: DateAdded (DateTime, required), ''automatic DateTime stamp''&lt;br /&gt;
&lt;br /&gt;
=== Providers ===&lt;br /&gt;
&lt;br /&gt;
Definitions:&lt;br /&gt;
&lt;br /&gt;
: Fields&lt;br /&gt;
&lt;br /&gt;
:: ID (autonumber, Primary Key, required)&lt;br /&gt;
:: CompanyName&lt;br /&gt;
:: PrimaryContactName&lt;br /&gt;
:: PrimaryContactEmail&lt;br /&gt;
:: PrimaryContactPhone&lt;br /&gt;
:: CustomForm&lt;br /&gt;
:: CustomFormLink&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Device-Provider Matrix ===&lt;br /&gt;
&lt;br /&gt;
=== Requestors ===&lt;br /&gt;
&lt;br /&gt;
=== Requests ===&lt;br /&gt;
&lt;br /&gt;
=== Approvers ===&lt;br /&gt;
&lt;br /&gt;
=== Allocations ===&lt;br /&gt;
&lt;br /&gt;
== Forms ==&lt;br /&gt;
&lt;br /&gt;
(this needs updating)&lt;br /&gt;
&lt;br /&gt;
* (drop down) Select device provider&lt;br /&gt;
* (drop down) Select device (add any available devices to drop down)&lt;br /&gt;
* (drop down) Select primary use (fields: platform / project development, app development, design, localization, peripherals, other)&lt;br /&gt;
* (text box) Project Name (if applicable)&lt;br /&gt;
* (text box) Project URL (this is a requirement for TI; can be link to a forum thread, et al)&lt;br /&gt;
* (text box) Describe in more detail your plans for the device.&lt;br /&gt;
* (text box) Describe your past (if any) contributions to the MeeGo, Maemo and/or Moblin project(s).&lt;br /&gt;
* (drop down) MeeGo member name  [] meego.com  [] forum.meego.com&lt;br /&gt;
* (text field) Full Name&lt;br /&gt;
* (text field) Shipping Location (organization name or use 'home' if shipping to a residential address)&lt;br /&gt;
* (text field) Shipping Address&lt;br /&gt;
* (text field) Phone Number&lt;br /&gt;
* (text field) Email Address&lt;br /&gt;
* [] I confirm that I asked my employer for a device (if applicable) and have been turned down.&lt;br /&gt;
* [] I agree to use the device for the purpose stated above.&lt;br /&gt;
* [] I agree to blog/tweet/present about my experience with the device.&lt;br /&gt;
* [] I confirm that I have met all other requirements to receive this device.&lt;/div&gt;</summary>
		<author><name>Texrat</name></author>	</entry>

	<entry>
		<id>http://wiki.meego.com/Community_Office/Community_device_program/Design_and_Documentation</id>
		<title>Community Office/Community device program/Design and Documentation</title>
		<link rel="alternate" type="text/html" href="http://wiki.meego.com/Community_Office/Community_device_program/Design_and_Documentation"/>
				<updated>2011-08-02T03:53:02Z</updated>
		
		<summary type="html">&lt;p&gt;Texrat: /* Structure */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This page will cover the design and documentation of the device program's setup, workflows, data model, forms and other aspects *in process*&lt;br /&gt;
&lt;br /&gt;
= Requirements =&lt;br /&gt;
&lt;br /&gt;
== Setup ==&lt;br /&gt;
&lt;br /&gt;
Preliminary configuration.  See '''Structure''' for pre-populated data.&lt;br /&gt;
&lt;br /&gt;
== Workflow ==&lt;br /&gt;
&lt;br /&gt;
Typical process&lt;br /&gt;
&lt;br /&gt;
== Structure ==&lt;br /&gt;
&lt;br /&gt;
The following tables describe suggested data structures.  Where ever ''Values'' are shown, they are meant to be pre-populated.&lt;br /&gt;
&lt;br /&gt;
=== Platforms ===&lt;br /&gt;
&lt;br /&gt;
Definitions:&lt;br /&gt;
&lt;br /&gt;
: '''Fields'''&lt;br /&gt;
&lt;br /&gt;
:: ID (autonumber, Primary Key, required)&lt;br /&gt;
:: Name (Varchar, required), ''Platform name''&lt;br /&gt;
:: Description (Text), ''Description of platform''&lt;br /&gt;
&lt;br /&gt;
Values:&lt;br /&gt;
&lt;br /&gt;
: '''Name'''&lt;br /&gt;
&lt;br /&gt;
:: Netbooks&lt;br /&gt;
:: Entry-level Desktops&lt;br /&gt;
:: Nettops&lt;br /&gt;
:: Tablet Computers&lt;br /&gt;
:: Mobile Computers/Handsets&lt;br /&gt;
:: In-Vehicle Infotainment (IVI) Systems&lt;br /&gt;
:: Smart TV/Connected TV&lt;br /&gt;
:: IP TV Boxes&lt;br /&gt;
:: Development Devices&lt;br /&gt;
:: Other Embedded Systems&lt;br /&gt;
&lt;br /&gt;
=== Devices ===&lt;br /&gt;
&lt;br /&gt;
Definitions:&lt;br /&gt;
&lt;br /&gt;
: '''Fields'''&lt;br /&gt;
&lt;br /&gt;
:: ID (autonumber, Primary Key, required)&lt;br /&gt;
:: Creator_ID &lt;br /&gt;
:: Platform_ID (Foreign Key) ''Links to Platforms.ID''&lt;br /&gt;
:: Name (Varchar, required), ''Device name''&lt;br /&gt;
:: Model (Varchar)&lt;br /&gt;
:: Description (Text), ''Description of device''&lt;br /&gt;
:: DateAdded (DateTime, required), ''automatic DateTime stamp''&lt;br /&gt;
&lt;br /&gt;
=== Providers ===&lt;br /&gt;
&lt;br /&gt;
Definitions:&lt;br /&gt;
&lt;br /&gt;
: '''Fields'''&lt;br /&gt;
&lt;br /&gt;
:: ID (autonumber, Primary Key, required)&lt;br /&gt;
:: CompanyName&lt;br /&gt;
:: PrimaryContactName&lt;br /&gt;
:: PrimaryContactEmail&lt;br /&gt;
:: PrimaryContactPhone&lt;br /&gt;
:: CustomForm&lt;br /&gt;
:: CustomFormLink&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Device-Provider Matrix ===&lt;br /&gt;
&lt;br /&gt;
=== Requestors ===&lt;br /&gt;
&lt;br /&gt;
=== Requests ===&lt;br /&gt;
&lt;br /&gt;
=== Approvers ===&lt;br /&gt;
&lt;br /&gt;
=== Allocations ===&lt;br /&gt;
&lt;br /&gt;
== Forms ==&lt;br /&gt;
&lt;br /&gt;
(this needs updating)&lt;br /&gt;
&lt;br /&gt;
* (drop down) Select device provider&lt;br /&gt;
* (drop down) Select device (add any available devices to drop down)&lt;br /&gt;
* (drop down) Select primary use (fields: platform / project development, app development, design, localization, peripherals, other)&lt;br /&gt;
* (text box) Project Name (if applicable)&lt;br /&gt;
* (text box) Project URL (this is a requirement for TI; can be link to a forum thread, et al)&lt;br /&gt;
* (text box) Describe in more detail your plans for the device.&lt;br /&gt;
* (text box) Describe your past (if any) contributions to the MeeGo, Maemo and/or Moblin project(s).&lt;br /&gt;
* (drop down) MeeGo member name  [] meego.com  [] forum.meego.com&lt;br /&gt;
* (text field) Full Name&lt;br /&gt;
* (text field) Shipping Location (organization name or use 'home' if shipping to a residential address)&lt;br /&gt;
* (text field) Shipping Address&lt;br /&gt;
* (text field) Phone Number&lt;br /&gt;
* (text field) Email Address&lt;br /&gt;
* [] I confirm that I asked my employer for a device (if applicable) and have been turned down.&lt;br /&gt;
* [] I agree to use the device for the purpose stated above.&lt;br /&gt;
* [] I agree to blog/tweet/present about my experience with the device.&lt;br /&gt;
* [] I confirm that I have met all other requirements to receive this device.&lt;/div&gt;</summary>
		<author><name>Texrat</name></author>	</entry>

	<entry>
		<id>http://wiki.meego.com/Community_Office/Community_device_program/Design_and_Documentation</id>
		<title>Community Office/Community device program/Design and Documentation</title>
		<link rel="alternate" type="text/html" href="http://wiki.meego.com/Community_Office/Community_device_program/Design_and_Documentation"/>
				<updated>2011-08-02T03:45:18Z</updated>
		
		<summary type="html">&lt;p&gt;Texrat: /* Setup */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This page will cover the design and documentation of the device program's setup, workflows, data model, forms and other aspects *in process*&lt;br /&gt;
&lt;br /&gt;
= Requirements =&lt;br /&gt;
&lt;br /&gt;
== Setup ==&lt;br /&gt;
&lt;br /&gt;
Preliminary configuration.  See '''Structure''' for pre-populated data.&lt;br /&gt;
&lt;br /&gt;
== Workflow ==&lt;br /&gt;
&lt;br /&gt;
Typical process&lt;br /&gt;
&lt;br /&gt;
== Structure ==&lt;br /&gt;
&lt;br /&gt;
The following tables describe suggested data structures.  Where ever ''Values'' are shown, they are meant to be pre-populated.&lt;br /&gt;
&lt;br /&gt;
=== Platforms ===&lt;br /&gt;
&lt;br /&gt;
Definitions:&lt;br /&gt;
&lt;br /&gt;
: '''Fields'''&lt;br /&gt;
&lt;br /&gt;
:: ID (autonumber, Primary Key, required)&lt;br /&gt;
:: Name (Varchar, required), ''Platform name''&lt;br /&gt;
:: Description (Text), ''Description of platform''&lt;br /&gt;
&lt;br /&gt;
Values:&lt;br /&gt;
&lt;br /&gt;
: '''Name'''&lt;br /&gt;
&lt;br /&gt;
:: Netbooks&lt;br /&gt;
:: Entry-level Desktops&lt;br /&gt;
:: Nettops&lt;br /&gt;
:: Tablet Computers&lt;br /&gt;
:: Mobile Computers/Handsets&lt;br /&gt;
:: In-Vehicle Infotainment (IVI) Systems&lt;br /&gt;
:: Smart TV/Connected TV&lt;br /&gt;
:: IP TV Boxes&lt;br /&gt;
:: Development Devices&lt;br /&gt;
:: Other Embedded Systems&lt;br /&gt;
&lt;br /&gt;
=== Devices ===&lt;br /&gt;
&lt;br /&gt;
Definitions:&lt;br /&gt;
&lt;br /&gt;
: '''Fields'''&lt;br /&gt;
&lt;br /&gt;
:: ID (autonumber, Primary Key, required)&lt;br /&gt;
:: Creator_ID &lt;br /&gt;
:: Platform_ID (Foreign Key) ''Links to Platforms.ID''&lt;br /&gt;
:: Name (Varchar, required), ''Device name''&lt;br /&gt;
:: Model (Varchar)&lt;br /&gt;
:: Description (Text), ''Description of device''&lt;br /&gt;
:: DateAdded (DateTime, required), ''automatic DateTime stamp''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Providers ===&lt;br /&gt;
&lt;br /&gt;
=== Device-Provider Matrix ===&lt;br /&gt;
&lt;br /&gt;
=== Requestors ===&lt;br /&gt;
&lt;br /&gt;
=== Requests ===&lt;br /&gt;
&lt;br /&gt;
=== Approvers ===&lt;br /&gt;
&lt;br /&gt;
=== Allocations ===&lt;br /&gt;
&lt;br /&gt;
== Forms ==&lt;br /&gt;
&lt;br /&gt;
(this needs updating)&lt;br /&gt;
&lt;br /&gt;
* (drop down) Select device provider&lt;br /&gt;
* (drop down) Select device (add any available devices to drop down)&lt;br /&gt;
* (drop down) Select primary use (fields: platform / project development, app development, design, localization, peripherals, other)&lt;br /&gt;
* (text box) Project Name (if applicable)&lt;br /&gt;
* (text box) Project URL (this is a requirement for TI; can be link to a forum thread, et al)&lt;br /&gt;
* (text box) Describe in more detail your plans for the device.&lt;br /&gt;
* (text box) Describe your past (if any) contributions to the MeeGo, Maemo and/or Moblin project(s).&lt;br /&gt;
* (drop down) MeeGo member name  [] meego.com  [] forum.meego.com&lt;br /&gt;
* (text field) Full Name&lt;br /&gt;
* (text field) Shipping Location (organization name or use 'home' if shipping to a residential address)&lt;br /&gt;
* (text field) Shipping Address&lt;br /&gt;
* (text field) Phone Number&lt;br /&gt;
* (text field) Email Address&lt;br /&gt;
* [] I confirm that I asked my employer for a device (if applicable) and have been turned down.&lt;br /&gt;
* [] I agree to use the device for the purpose stated above.&lt;br /&gt;
* [] I agree to blog/tweet/present about my experience with the device.&lt;br /&gt;
* [] I confirm that I have met all other requirements to receive this device.&lt;/div&gt;</summary>
		<author><name>Texrat</name></author>	</entry>

	<entry>
		<id>http://wiki.meego.com/Community_Office/Community_device_program/Design_and_Documentation</id>
		<title>Community Office/Community device program/Design and Documentation</title>
		<link rel="alternate" type="text/html" href="http://wiki.meego.com/Community_Office/Community_device_program/Design_and_Documentation"/>
				<updated>2011-08-02T03:43:41Z</updated>
		
		<summary type="html">&lt;p&gt;Texrat: /* Structure */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This page will cover the design and documentation of the device program's setup, workflows, data model, forms and other aspects *in process*&lt;br /&gt;
&lt;br /&gt;
= Requirements =&lt;br /&gt;
&lt;br /&gt;
== Setup ==&lt;br /&gt;
&lt;br /&gt;
Preliminary configuration&lt;br /&gt;
&lt;br /&gt;
== Workflow ==&lt;br /&gt;
&lt;br /&gt;
Typical process&lt;br /&gt;
&lt;br /&gt;
== Structure ==&lt;br /&gt;
&lt;br /&gt;
The following tables describe suggested data structures.  Where ever ''Values'' are shown, they are meant to be pre-populated.&lt;br /&gt;
&lt;br /&gt;
=== Platforms ===&lt;br /&gt;
&lt;br /&gt;
Definitions:&lt;br /&gt;
&lt;br /&gt;
: '''Fields'''&lt;br /&gt;
&lt;br /&gt;
:: ID (autonumber, Primary Key, required)&lt;br /&gt;
:: Name (Varchar, required), ''Platform name''&lt;br /&gt;
:: Description (Text), ''Description of platform''&lt;br /&gt;
&lt;br /&gt;
Values:&lt;br /&gt;
&lt;br /&gt;
: '''Name'''&lt;br /&gt;
&lt;br /&gt;
:: Netbooks&lt;br /&gt;
:: Entry-level Desktops&lt;br /&gt;
:: Nettops&lt;br /&gt;
:: Tablet Computers&lt;br /&gt;
:: Mobile Computers/Handsets&lt;br /&gt;
:: In-Vehicle Infotainment (IVI) Systems&lt;br /&gt;
:: Smart TV/Connected TV&lt;br /&gt;
:: IP TV Boxes&lt;br /&gt;
:: Development Devices&lt;br /&gt;
:: Other Embedded Systems&lt;br /&gt;
&lt;br /&gt;
=== Devices ===&lt;br /&gt;
&lt;br /&gt;
Definitions:&lt;br /&gt;
&lt;br /&gt;
: '''Fields'''&lt;br /&gt;
&lt;br /&gt;
:: ID (autonumber, Primary Key, required)&lt;br /&gt;
:: Creator_ID &lt;br /&gt;
:: Platform_ID (Foreign Key) ''Links to Platforms.ID''&lt;br /&gt;
:: Name (Varchar, required), ''Device name''&lt;br /&gt;
:: Model (Varchar)&lt;br /&gt;
:: Description (Text), ''Description of device''&lt;br /&gt;
:: DateAdded (DateTime, required), ''automatic DateTime stamp''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Providers ===&lt;br /&gt;
&lt;br /&gt;
=== Device-Provider Matrix ===&lt;br /&gt;
&lt;br /&gt;
=== Requestors ===&lt;br /&gt;
&lt;br /&gt;
=== Requests ===&lt;br /&gt;
&lt;br /&gt;
=== Approvers ===&lt;br /&gt;
&lt;br /&gt;
=== Allocations ===&lt;br /&gt;
&lt;br /&gt;
== Forms ==&lt;br /&gt;
&lt;br /&gt;
(this needs updating)&lt;br /&gt;
&lt;br /&gt;
* (drop down) Select device provider&lt;br /&gt;
* (drop down) Select device (add any available devices to drop down)&lt;br /&gt;
* (drop down) Select primary use (fields: platform / project development, app development, design, localization, peripherals, other)&lt;br /&gt;
* (text box) Project Name (if applicable)&lt;br /&gt;
* (text box) Project URL (this is a requirement for TI; can be link to a forum thread, et al)&lt;br /&gt;
* (text box) Describe in more detail your plans for the device.&lt;br /&gt;
* (text box) Describe your past (if any) contributions to the MeeGo, Maemo and/or Moblin project(s).&lt;br /&gt;
* (drop down) MeeGo member name  [] meego.com  [] forum.meego.com&lt;br /&gt;
* (text field) Full Name&lt;br /&gt;
* (text field) Shipping Location (organization name or use 'home' if shipping to a residential address)&lt;br /&gt;
* (text field) Shipping Address&lt;br /&gt;
* (text field) Phone Number&lt;br /&gt;
* (text field) Email Address&lt;br /&gt;
* [] I confirm that I asked my employer for a device (if applicable) and have been turned down.&lt;br /&gt;
* [] I agree to use the device for the purpose stated above.&lt;br /&gt;
* [] I agree to blog/tweet/present about my experience with the device.&lt;br /&gt;
* [] I confirm that I have met all other requirements to receive this device.&lt;/div&gt;</summary>
		<author><name>Texrat</name></author>	</entry>

	<entry>
		<id>http://wiki.meego.com/Community_Office/Community_device_program/Design_and_Documentation</id>
		<title>Community Office/Community device program/Design and Documentation</title>
		<link rel="alternate" type="text/html" href="http://wiki.meego.com/Community_Office/Community_device_program/Design_and_Documentation"/>
				<updated>2011-08-02T03:30:45Z</updated>
		
		<summary type="html">&lt;p&gt;Texrat: /* Platforms */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This page will cover the design and documentation of the device program's setup, workflows, data model, forms and other aspects *in process*&lt;br /&gt;
&lt;br /&gt;
= Requirements =&lt;br /&gt;
&lt;br /&gt;
== Setup ==&lt;br /&gt;
&lt;br /&gt;
Preliminary configuration&lt;br /&gt;
&lt;br /&gt;
== Workflow ==&lt;br /&gt;
&lt;br /&gt;
Typical process&lt;br /&gt;
&lt;br /&gt;
== Structure ==&lt;br /&gt;
&lt;br /&gt;
The following tables describe suggested data structures:&lt;br /&gt;
&lt;br /&gt;
=== Platforms ===&lt;br /&gt;
&lt;br /&gt;
Definitions:&lt;br /&gt;
&lt;br /&gt;
: '''Fields'''&lt;br /&gt;
&lt;br /&gt;
:: ID (autonumber, Primary Key, required)&lt;br /&gt;
:: Name (Varchar, required), ''Platform name''&lt;br /&gt;
:: Descr (Text), ''Description of platform''&lt;br /&gt;
&lt;br /&gt;
Values:&lt;br /&gt;
&lt;br /&gt;
: '''Name'''&lt;br /&gt;
&lt;br /&gt;
:: Netbooks&lt;br /&gt;
:: Entry-level Desktops&lt;br /&gt;
:: Nettops&lt;br /&gt;
:: Tablet Computers&lt;br /&gt;
:: Mobile Computers/Handsets&lt;br /&gt;
:: In-Vehicle Infotainment (IVI) Systems&lt;br /&gt;
:: Smart TV/Connected TV&lt;br /&gt;
:: IP TV Boxes&lt;br /&gt;
:: Development Devices&lt;br /&gt;
:: Other Embedded Systems&lt;br /&gt;
&lt;br /&gt;
=== Devices ===&lt;br /&gt;
&lt;br /&gt;
=== Providers ===&lt;br /&gt;
&lt;br /&gt;
=== Device-Provider Matrix ===&lt;br /&gt;
&lt;br /&gt;
=== Requestors ===&lt;br /&gt;
&lt;br /&gt;
=== Requests ===&lt;br /&gt;
&lt;br /&gt;
=== Approvers ===&lt;br /&gt;
&lt;br /&gt;
=== Allocations ===&lt;br /&gt;
&lt;br /&gt;
== Forms ==&lt;br /&gt;
&lt;br /&gt;
(this needs updating)&lt;br /&gt;
&lt;br /&gt;
* (drop down) Select device provider&lt;br /&gt;
* (drop down) Select device (add any available devices to drop down)&lt;br /&gt;
* (drop down) Select primary use (fields: platform / project development, app development, design, localization, peripherals, other)&lt;br /&gt;
* (text box) Project Name (if applicable)&lt;br /&gt;
* (text box) Project URL (this is a requirement for TI; can be link to a forum thread, et al)&lt;br /&gt;
* (text box) Describe in more detail your plans for the device.&lt;br /&gt;
* (text box) Describe your past (if any) contributions to the MeeGo, Maemo and/or Moblin project(s).&lt;br /&gt;
* (drop down) MeeGo member name  [] meego.com  [] forum.meego.com&lt;br /&gt;
* (text field) Full Name&lt;br /&gt;
* (text field) Shipping Location (organization name or use 'home' if shipping to a residential address)&lt;br /&gt;
* (text field) Shipping Address&lt;br /&gt;
* (text field) Phone Number&lt;br /&gt;
* (text field) Email Address&lt;br /&gt;
* [] I confirm that I asked my employer for a device (if applicable) and have been turned down.&lt;br /&gt;
* [] I agree to use the device for the purpose stated above.&lt;br /&gt;
* [] I agree to blog/tweet/present about my experience with the device.&lt;br /&gt;
* [] I confirm that I have met all other requirements to receive this device.&lt;/div&gt;</summary>
		<author><name>Texrat</name></author>	</entry>

	<entry>
		<id>http://wiki.meego.com/Community_Office/Community_device_program/Design_and_Documentation</id>
		<title>Community Office/Community device program/Design and Documentation</title>
		<link rel="alternate" type="text/html" href="http://wiki.meego.com/Community_Office/Community_device_program/Design_and_Documentation"/>
				<updated>2011-08-02T03:28:33Z</updated>
		
		<summary type="html">&lt;p&gt;Texrat: /* Platforms */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This page will cover the design and documentation of the device program's setup, workflows, data model, forms and other aspects *in process*&lt;br /&gt;
&lt;br /&gt;
= Requirements =&lt;br /&gt;
&lt;br /&gt;
== Setup ==&lt;br /&gt;
&lt;br /&gt;
Preliminary configuration&lt;br /&gt;
&lt;br /&gt;
== Workflow ==&lt;br /&gt;
&lt;br /&gt;
Typical process&lt;br /&gt;
&lt;br /&gt;
== Structure ==&lt;br /&gt;
&lt;br /&gt;
The following tables describe suggested data structures:&lt;br /&gt;
&lt;br /&gt;
=== Platforms ===&lt;br /&gt;
&lt;br /&gt;
Definitions:&lt;br /&gt;
&lt;br /&gt;
: '''Fields'''&lt;br /&gt;
&lt;br /&gt;
:: ID (autonumber, Primary Key, required)&lt;br /&gt;
:: Name (Varchar, required)&lt;br /&gt;
&lt;br /&gt;
Values:&lt;br /&gt;
&lt;br /&gt;
: '''Name'''&lt;br /&gt;
&lt;br /&gt;
:: Netbooks&lt;br /&gt;
:: Entry-level Desktops&lt;br /&gt;
:: Nettops&lt;br /&gt;
:: Tablet Computers&lt;br /&gt;
:: Mobile Computers/Handsets&lt;br /&gt;
:: In-Vehicle Infotainment (IVI) Systems&lt;br /&gt;
:: Smart TV/Connected TV&lt;br /&gt;
:: IP TV Boxes&lt;br /&gt;
:: Development Devices&lt;br /&gt;
:: Other Embedded Systems&lt;br /&gt;
&lt;br /&gt;
=== Devices ===&lt;br /&gt;
&lt;br /&gt;
=== Providers ===&lt;br /&gt;
&lt;br /&gt;
=== Device-Provider Matrix ===&lt;br /&gt;
&lt;br /&gt;
=== Requestors ===&lt;br /&gt;
&lt;br /&gt;
=== Requests ===&lt;br /&gt;
&lt;br /&gt;
=== Approvers ===&lt;br /&gt;
&lt;br /&gt;
=== Allocations ===&lt;br /&gt;
&lt;br /&gt;
== Forms ==&lt;br /&gt;
&lt;br /&gt;
(this needs updating)&lt;br /&gt;
&lt;br /&gt;
* (drop down) Select device provider&lt;br /&gt;
* (drop down) Select device (add any available devices to drop down)&lt;br /&gt;
* (drop down) Select primary use (fields: platform / project development, app development, design, localization, peripherals, other)&lt;br /&gt;
* (text box) Project Name (if applicable)&lt;br /&gt;
* (text box) Project URL (this is a requirement for TI; can be link to a forum thread, et al)&lt;br /&gt;
* (text box) Describe in more detail your plans for the device.&lt;br /&gt;
* (text box) Describe your past (if any) contributions to the MeeGo, Maemo and/or Moblin project(s).&lt;br /&gt;
* (drop down) MeeGo member name  [] meego.com  [] forum.meego.com&lt;br /&gt;
* (text field) Full Name&lt;br /&gt;
* (text field) Shipping Location (organization name or use 'home' if shipping to a residential address)&lt;br /&gt;
* (text field) Shipping Address&lt;br /&gt;
* (text field) Phone Number&lt;br /&gt;
* (text field) Email Address&lt;br /&gt;
* [] I confirm that I asked my employer for a device (if applicable) and have been turned down.&lt;br /&gt;
* [] I agree to use the device for the purpose stated above.&lt;br /&gt;
* [] I agree to blog/tweet/present about my experience with the device.&lt;br /&gt;
* [] I confirm that I have met all other requirements to receive this device.&lt;/div&gt;</summary>
		<author><name>Texrat</name></author>	</entry>

	<entry>
		<id>http://wiki.meego.com/Community_Office/Community_device_program/Design_and_Documentation</id>
		<title>Community Office/Community device program/Design and Documentation</title>
		<link rel="alternate" type="text/html" href="http://wiki.meego.com/Community_Office/Community_device_program/Design_and_Documentation"/>
				<updated>2011-07-31T08:06:11Z</updated>
		
		<summary type="html">&lt;p&gt;Texrat: /* Structure */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This page will cover the design and documentation of the device program's setup, workflows, data model, forms and other aspects *in process*&lt;br /&gt;
&lt;br /&gt;
= Requirements =&lt;br /&gt;
&lt;br /&gt;
== Setup ==&lt;br /&gt;
&lt;br /&gt;
Preliminary configuration&lt;br /&gt;
&lt;br /&gt;
== Workflow ==&lt;br /&gt;
&lt;br /&gt;
Typical process&lt;br /&gt;
&lt;br /&gt;
== Structure ==&lt;br /&gt;
&lt;br /&gt;
The following tables describe suggested data structures:&lt;br /&gt;
&lt;br /&gt;
=== Platforms ===&lt;br /&gt;
&lt;br /&gt;
Definition:&lt;br /&gt;
&lt;br /&gt;
: ID (autonumber, Primary Key, required)&lt;br /&gt;
: Name (Varchar, required)&lt;br /&gt;
&lt;br /&gt;
Name values:&lt;br /&gt;
&lt;br /&gt;
: Netbooks&lt;br /&gt;
: Entry-level Desktops&lt;br /&gt;
: Nettops&lt;br /&gt;
: Tablet Computers&lt;br /&gt;
: Mobile Computers/Handsets&lt;br /&gt;
: In-Vehicle Infotainment (IVI) Systems&lt;br /&gt;
: Smart TV/Connected TV&lt;br /&gt;
: IP TV Boxes&lt;br /&gt;
: Development Devices&lt;br /&gt;
: Other Embedded Systems&lt;br /&gt;
&lt;br /&gt;
=== Devices ===&lt;br /&gt;
&lt;br /&gt;
=== Providers ===&lt;br /&gt;
&lt;br /&gt;
=== Device-Provider Matrix ===&lt;br /&gt;
&lt;br /&gt;
=== Requestors ===&lt;br /&gt;
&lt;br /&gt;
=== Requests ===&lt;br /&gt;
&lt;br /&gt;
=== Approvers ===&lt;br /&gt;
&lt;br /&gt;
=== Allocations ===&lt;br /&gt;
&lt;br /&gt;
== Forms ==&lt;br /&gt;
&lt;br /&gt;
(this needs updating)&lt;br /&gt;
&lt;br /&gt;
* (drop down) Select device provider&lt;br /&gt;
* (drop down) Select device (add any available devices to drop down)&lt;br /&gt;
* (drop down) Select primary use (fields: platform / project development, app development, design, localization, peripherals, other)&lt;br /&gt;
* (text box) Project Name (if applicable)&lt;br /&gt;
* (text box) Project URL (this is a requirement for TI; can be link to a forum thread, et al)&lt;br /&gt;
* (text box) Describe in more detail your plans for the device.&lt;br /&gt;
* (text box) Describe your past (if any) contributions to the MeeGo, Maemo and/or Moblin project(s).&lt;br /&gt;
* (drop down) MeeGo member name  [] meego.com  [] forum.meego.com&lt;br /&gt;
* (text field) Full Name&lt;br /&gt;
* (text field) Shipping Location (organization name or use 'home' if shipping to a residential address)&lt;br /&gt;
* (text field) Shipping Address&lt;br /&gt;
* (text field) Phone Number&lt;br /&gt;
* (text field) Email Address&lt;br /&gt;
* [] I confirm that I asked my employer for a device (if applicable) and have been turned down.&lt;br /&gt;
* [] I agree to use the device for the purpose stated above.&lt;br /&gt;
* [] I agree to blog/tweet/present about my experience with the device.&lt;br /&gt;
* [] I confirm that I have met all other requirements to receive this device.&lt;/div&gt;</summary>
		<author><name>Texrat</name></author>	</entry>

	<entry>
		<id>http://wiki.meego.com/Community_Office/Community_device_program/Design_and_Documentation</id>
		<title>Community Office/Community device program/Design and Documentation</title>
		<link rel="alternate" type="text/html" href="http://wiki.meego.com/Community_Office/Community_device_program/Design_and_Documentation"/>
				<updated>2011-07-31T06:43:38Z</updated>
		
		<summary type="html">&lt;p&gt;Texrat: /* Structure */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This page will cover the design and documentation of the device program's setup, workflows, data model, forms and other aspects *in process*&lt;br /&gt;
&lt;br /&gt;
= Requirements =&lt;br /&gt;
&lt;br /&gt;
== Setup ==&lt;br /&gt;
&lt;br /&gt;
Preliminary configuration&lt;br /&gt;
&lt;br /&gt;
== Workflow ==&lt;br /&gt;
&lt;br /&gt;
Typical process&lt;br /&gt;
&lt;br /&gt;
== Structure ==&lt;br /&gt;
&lt;br /&gt;
The following tables describe suggested data structures:&lt;br /&gt;
&lt;br /&gt;
=== Platforms ===&lt;br /&gt;
&lt;br /&gt;
Definition:&lt;br /&gt;
&lt;br /&gt;
: ID (autonumber, Primary Key, required)&lt;br /&gt;
: Name (Varchar, required)&lt;br /&gt;
&lt;br /&gt;
Name values:&lt;br /&gt;
&lt;br /&gt;
: Netbooks&lt;br /&gt;
: Entry-level Desktops&lt;br /&gt;
: Nettops&lt;br /&gt;
: Tablet Computers&lt;br /&gt;
: Mobile Computers/Handsets&lt;br /&gt;
: In-Vehicle Infotainment (IVI) Systems&lt;br /&gt;
: Smart TV/Connected TV&lt;br /&gt;
: IP TV Boxes&lt;br /&gt;
: Development Devices&lt;br /&gt;
: Other Embedded Systems&lt;br /&gt;
&lt;br /&gt;
=== Devices ===&lt;br /&gt;
&lt;br /&gt;
=== Providers ===&lt;br /&gt;
&lt;br /&gt;
=== Device-Provider Matrix ===&lt;br /&gt;
&lt;br /&gt;
=== Requestors ===&lt;br /&gt;
&lt;br /&gt;
=== Requests ===&lt;br /&gt;
&lt;br /&gt;
=== Allocations ===&lt;br /&gt;
&lt;br /&gt;
== Forms ==&lt;br /&gt;
&lt;br /&gt;
(this needs updating)&lt;br /&gt;
&lt;br /&gt;
* (drop down) Select device provider&lt;br /&gt;
* (drop down) Select device (add any available devices to drop down)&lt;br /&gt;
* (drop down) Select primary use (fields: platform / project development, app development, design, localization, peripherals, other)&lt;br /&gt;
* (text box) Project Name (if applicable)&lt;br /&gt;
* (text box) Project URL (this is a requirement for TI; can be link to a forum thread, et al)&lt;br /&gt;
* (text box) Describe in more detail your plans for the device.&lt;br /&gt;
* (text box) Describe your past (if any) contributions to the MeeGo, Maemo and/or Moblin project(s).&lt;br /&gt;
* (drop down) MeeGo member name  [] meego.com  [] forum.meego.com&lt;br /&gt;
* (text field) Full Name&lt;br /&gt;
* (text field) Shipping Location (organization name or use 'home' if shipping to a residential address)&lt;br /&gt;
* (text field) Shipping Address&lt;br /&gt;
* (text field) Phone Number&lt;br /&gt;
* (text field) Email Address&lt;br /&gt;
* [] I confirm that I asked my employer for a device (if applicable) and have been turned down.&lt;br /&gt;
* [] I agree to use the device for the purpose stated above.&lt;br /&gt;
* [] I agree to blog/tweet/present about my experience with the device.&lt;br /&gt;
* [] I confirm that I have met all other requirements to receive this device.&lt;/div&gt;</summary>
		<author><name>Texrat</name></author>	</entry>

	<entry>
		<id>http://wiki.meego.com/Community_Office/Community_device_program/Design_and_Documentation</id>
		<title>Community Office/Community device program/Design and Documentation</title>
		<link rel="alternate" type="text/html" href="http://wiki.meego.com/Community_Office/Community_device_program/Design_and_Documentation"/>
				<updated>2011-07-31T06:30:26Z</updated>
		
		<summary type="html">&lt;p&gt;Texrat: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This page will cover the design and documentation of the device program's setup, workflows, data model, forms and other aspects *in process*&lt;br /&gt;
&lt;br /&gt;
= Requirements =&lt;br /&gt;
&lt;br /&gt;
== Setup ==&lt;br /&gt;
&lt;br /&gt;
Preliminary configuration&lt;br /&gt;
&lt;br /&gt;
== Workflow ==&lt;br /&gt;
&lt;br /&gt;
Typical process&lt;br /&gt;
&lt;br /&gt;
== Structure ==&lt;br /&gt;
&lt;br /&gt;
The following tables describe suggested data structures:&lt;br /&gt;
&lt;br /&gt;
=== Platforms ===&lt;br /&gt;
&lt;br /&gt;
Definition:&lt;br /&gt;
&lt;br /&gt;
: ID (autonumber, Primary Key, required)&lt;br /&gt;
: Name (Varchar, required)&lt;br /&gt;
&lt;br /&gt;
Name values:&lt;br /&gt;
&lt;br /&gt;
: Netbooks&lt;br /&gt;
: Entry-level Desktops&lt;br /&gt;
: Nettops&lt;br /&gt;
: Tablet Computers&lt;br /&gt;
: Mobile Computers/Handsets&lt;br /&gt;
: In-Vehicle Infotainment (IVI) Systems&lt;br /&gt;
: Smart TV/Connected TV&lt;br /&gt;
: IP TV Boxes&lt;br /&gt;
: Development Devices&lt;br /&gt;
: Other Embedded Systems&lt;br /&gt;
&lt;br /&gt;
== Forms ==&lt;br /&gt;
&lt;br /&gt;
(this needs updating)&lt;br /&gt;
&lt;br /&gt;
* (drop down) Select device provider&lt;br /&gt;
* (drop down) Select device (add any available devices to drop down)&lt;br /&gt;
* (drop down) Select primary use (fields: platform / project development, app development, design, localization, peripherals, other)&lt;br /&gt;
* (text box) Project Name (if applicable)&lt;br /&gt;
* (text box) Project URL (this is a requirement for TI; can be link to a forum thread, et al)&lt;br /&gt;
* (text box) Describe in more detail your plans for the device.&lt;br /&gt;
* (text box) Describe your past (if any) contributions to the MeeGo, Maemo and/or Moblin project(s).&lt;br /&gt;
* (drop down) MeeGo member name  [] meego.com  [] forum.meego.com&lt;br /&gt;
* (text field) Full Name&lt;br /&gt;
* (text field) Shipping Location (organization name or use 'home' if shipping to a residential address)&lt;br /&gt;
* (text field) Shipping Address&lt;br /&gt;
* (text field) Phone Number&lt;br /&gt;
* (text field) Email Address&lt;br /&gt;
* [] I confirm that I asked my employer for a device (if applicable) and have been turned down.&lt;br /&gt;
* [] I agree to use the device for the purpose stated above.&lt;br /&gt;
* [] I agree to blog/tweet/present about my experience with the device.&lt;br /&gt;
* [] I confirm that I have met all other requirements to receive this device.&lt;/div&gt;</summary>
		<author><name>Texrat</name></author>	</entry>

	<entry>
		<id>http://wiki.meego.com/Community_Office/Community_device_program/Design_and_Documentation</id>
		<title>Community Office/Community device program/Design and Documentation</title>
		<link rel="alternate" type="text/html" href="http://wiki.meego.com/Community_Office/Community_device_program/Design_and_Documentation"/>
				<updated>2011-07-31T05:19:37Z</updated>
		
		<summary type="html">&lt;p&gt;Texrat: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This page will cover the design and documentation of the device program's setup, workflows, data model, forms and other aspects *in process*&lt;br /&gt;
&lt;br /&gt;
= Requirements =&lt;br /&gt;
&lt;br /&gt;
== Setup ==&lt;br /&gt;
&lt;br /&gt;
Preliminary configuration&lt;br /&gt;
&lt;br /&gt;
== Workflow ==&lt;br /&gt;
&lt;br /&gt;
Typical process&lt;br /&gt;
&lt;br /&gt;
== Data ==&lt;br /&gt;
&lt;br /&gt;
The following tables describe suggested data structures:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Forms ==&lt;br /&gt;
&lt;br /&gt;
(this needs updating)&lt;br /&gt;
&lt;br /&gt;
* (drop down) Select device provider&lt;br /&gt;
* (drop down) Select device (add any available devices to drop down)&lt;br /&gt;
* (drop down) Select primary use (fields: platform / project development, app development, design, localization, peripherals, other)&lt;br /&gt;
* (text box) Project Name (if applicable)&lt;br /&gt;
* (text box) Project URL (this is a requirement for TI; can be link to a forum thread, et al)&lt;br /&gt;
* (text box) Describe in more detail your plans for the device.&lt;br /&gt;
* (text box) Describe your past (if any) contributions to the MeeGo, Maemo and/or Moblin project(s).&lt;br /&gt;
* (drop down) MeeGo member name  [] meego.com  [] forum.meego.com&lt;br /&gt;
* (text field) Full Name&lt;br /&gt;
* (text field) Shipping Location (organization name or use 'home' if shipping to a residential address)&lt;br /&gt;
* (text field) Shipping Address&lt;br /&gt;
* (text field) Phone Number&lt;br /&gt;
* (text field) Email Address&lt;br /&gt;
* [] I confirm that I asked my employer for a device (if applicable) and have been turned down.&lt;br /&gt;
* [] I agree to use the device for the purpose stated above.&lt;br /&gt;
* [] I agree to blog/tweet/present about my experience with the device.&lt;br /&gt;
* [] I confirm that I have met all other requirements to receive this device.&lt;/div&gt;</summary>
		<author><name>Texrat</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-29T17:05:38Z</updated>
		
		<summary type="html">&lt;p&gt;Texrat: /* FIXME Unclear cases &amp;amp; lazy wiki editors */&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;
* 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;
&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;
** Your entry here.&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&lt;br /&gt;
** [[User:Blackwicked|Edvin Rab]], '''Developer ID sent''', '''Applied for Launchpad''', '''Device Ordered''', '''Waiting for Arrival'''. (Device was sent to Moscow first(?!), and then I ordered again to Hungary) [http://t.co/4Os8iIh EvidenceHunt Game]&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;
[[User:Qole|qole]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[http://maemo.org/downloads/product/Maemo5/easy-deb-chroot/ Easy Debian] and other projects as they arise&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;
Aleix Pol (apol) '''ID sent''', '''accepted on Nokia Launchpad''', '''Ordered N950, waiting for some DHL e-mail'''&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;
[[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;
Assaf Paz (damagedspline) '''ID sent''', '''applied for Nokia Launchpad, Launchpad for individuals (06-Jul-2011–06-Jul-2012)''','''Order committed (7-Jul-2011)'''&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) '''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;
[[User:druid23 | Dru Moore]] '''ID sent''', '''Applied for the Nokia Developer Launchpad program''' | '''N950eMail:Yes''' | ''' Ordered:Yes ''' | '''DispatchEmail:Yes''' | '''Received:Yes'''&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 (potentially video editing)&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;
&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;
Gary Birkett '''ID sent :: Launchpaded :: Ordered :: Arrived!'''&amp;lt;br/&amp;gt;&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 '''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;
[[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 '''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:Divan|Ivan Daniluk]] ''' Device received. COMPLETED.'''&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;
[http://meego.com/users/karljohang Karl Johan Grøttum] '''Order: OID-053015''' | '''Device: Nokia N950''' &amp;lt;br/&amp;gt;&lt;br /&gt;
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;
[[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;
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.'''I received my device on July 21, 2011.   It is one really beautiful device!''' &amp;lt;br /&amp;gt;&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;
[[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;
'''Launchpad: Accepted(05-Jul-2011) | N950 eMail: Thu, Jul 7, 2011 at 5:27 AM | Ordered: Thu, Jul 7, 2011 at 7:56 AM | Received: No''' &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;
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;
[[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 '''ID sent''',  '''Accepted for the Nokia Developer Launchpad program'''&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 (zchydem) '''ID sent''',  '''Applied for the Nokia Developer Launchpad program'''&amp;lt;br /&amp;gt;&lt;br /&gt;
QuickFlickr, QML based Flickr client for mobile handsets.&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;
[[User:twoboxen|Matt Hawkins]] (twoboxen) '''ID sent''', '''Already a Launchpad member''' | '''N950 eMail:Yes''' | ''' Ordered:Yes ''' | '''Received:No'''&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)  - '''Device arrived, Thank You.'''&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://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''',   '''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;
[[User:olka|Oleksandr Kachur]] '''ID sent'''. '''Device Received'''&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;
Ray Donnelly&lt;br /&gt;
&lt;br /&gt;
Roman Morawek&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;
[[User:v13|Stefanos Harhalakis]]: '''Nokia Developer ID Sent''', '''Applied for Nokia Developer Launchpad Program''', Waiting for reply&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;
&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;
[http://teom.wordpress.com Teo Mrnjavac] '''ID sent, Launchpad:Accepted | N950eMail:Yes | Ordered:Yes | Received:Yes, everything works&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 - '''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;
[[user:harbaum|Till Harbaum]] '''Received device'''&lt;br /&gt;
* First action: Try to get [http://www.harbaum.org/till/cacheme CacheMe] to work nicely (qml UI port)&lt;br /&gt;
* [https://build.pub.meego.com/project/show?project=home%3Aharbaum Community OBS home project]&lt;br /&gt;
* Zeemote driver&lt;br /&gt;
* And of course i'd like to port some of my previous Maemo projects ...&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]] '''ID sent''', '''applied for Nokia Launchpad. Awaiting any reply'''&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;
Tuomas Kulve&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Ville Jyrkkä&lt;br /&gt;
&lt;br /&gt;
[[User:Vranki|Ville Ranki]] '''ID sent, applied for Nokia Launchpad '''&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;
Willem Liu&lt;br /&gt;
&lt;br /&gt;
Yann Bieber '''Device received'''&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;
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;
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;
[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;
[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;
[[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, 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;
[https://meego.com/users/smoku Tomasz Sterna] '''Device Received'''&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;
Shane Bryan&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;
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;
thebootroo | Thomas Boutroue '''ID sent''',  '''Applied for the Nokia Developer Launchpad program'''&amp;lt;br /&amp;gt;&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;
[[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;
[[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;
&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;
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;
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'''&lt;br /&gt;
&lt;br /&gt;
Pawel Kurdybacha '''ID sent, already a Launchpad member''' | '''N950eMail:Yes''' | ''' Ordered:Yes ''' | '''Received:Yes'''&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;
* various applications (words trainer, taxi checker, ...)&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;
Frank Banul '''ID sent, Applied for the Nokia Developer Launchpad program. Device ordered.'''&lt;br /&gt;
* Port TabletBridge and RadioTimeToGo&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;
[[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;
&lt;br /&gt;
[[User:w00t|Robin Burchell]] (w00t) '''Device Ordered, Waiting for Arrival'''&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 '''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;
Rich Jones&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;
Hussain Shafiu '''ID sent''', '''LaunchPad account 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;
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;
Thomas B. Ruecker '''Approved 2011-07-07, Ordered 2011-07-07, Device is with courier since 2011-07-12''' &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.&amp;lt;br /&amp;gt;&lt;br /&gt;
LiveView daemon/application based on code found here: http://code.google.com/p/adqmisc/source/browse/#svn%2Ftrunk%2Fliveview&amp;lt;br /&amp;gt;&lt;br /&gt;
USB host mode &amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Antti Raina '''ID sent''',  '''Applied for the Nokia Developer Launchpad program'''&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;
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;
[[user:n8willis|Nathan Willis]] '''Nokia Dev ID sent. Launchpad accepted. Awaiting any reply.'''&lt;br /&gt;
* Font packaging, porting DIN 1451 designs to open font license&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;
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;
[[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;
Klaus Rotter (klausr) -'''ID sent, Applied for Nokia Launchpad program''' &amp;lt;br /&amp;gt; &lt;br /&gt;
Projects are porting/rewriting EasyPlayer (audiobook player) and some kind of a HAM (amateur radio) app (PSK31) for MeeGo. I'm also interested in low latency audio apps (drum-studio, recording), if this is possible with the N950/N9.&lt;br /&gt;
&lt;br /&gt;
[[User:ivan4th|Ivan Shvedunov]] '''Device received'''&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;
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;
[[User:Lizardo|Anderson Lizardo Gomes]] '''ID sent, Accepted for the Nokia Developer Launchpad program (06-Jul-2011–06-Jul-2012), device ordered (07-Jul), waiting for arrival.'''.&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;
[[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;
Rodrigo Vivi&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;
Robert Marki - '''Device Ordered, Waiting for Arrival.'''&amp;lt;br/&amp;gt;&lt;br /&gt;
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.&amp;lt;br/&amp;gt;&lt;br /&gt;
Would like to develop image processing related applications like:&amp;lt;br/&amp;gt;&lt;br /&gt;
Image translation application&amp;lt;br/&amp;gt;&lt;br /&gt;
Image gallery with face recognition&amp;lt;br/&amp;gt;&lt;br /&gt;
Porting control software of a hexapod robot, or at least the module which helps the robot orient itself and navigate based on the images acquired from the camera&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Roman Deninberg([http://maemo.team16.ru/ Bonapart]) - '''ID sent, Waiting for response from the Nokia Developer Launchpad program'''&amp;lt;br/&amp;gt;&lt;br /&gt;
Psx4m\PCSX-rearmed\Psx4m-gui projects basically&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 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;
Jukka Nousiainen '''- Device received''', Creating a tethering application for DSLR cameras, and porting needed libraries, e.g. libgphoto2&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;
Philipp Andreas '''Device Received, Thanks''', Porting [https://garage.maemo.org/project fahrplan] for the N9&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: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;
#[[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: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) '''ID sent''', '''Applied for the Nokia Developer Launchpad program'''&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:daperl|daperl]]&amp;lt;br/&amp;gt;&lt;br /&gt;
#* Porting the Sudoku clone Tomiku&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;
# [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: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: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: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 driverwawa&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: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: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: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;
# [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:kojacker|Kojacker]] (Ryan Faulkner)&lt;br /&gt;
#* Various applications, bits and bobs (links coming)&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;
#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: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: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: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: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]] (Sfiet Konstantin) - ('''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]&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: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: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:texrat|texrat]] (Randall Arnold, Community Device Program Lead)&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: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: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: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: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;
&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>Texrat</name></author>	</entry>

	<entry>
		<id>http://wiki.meego.com/Architecture/MeeGo_FRAME_Resource</id>
		<title>Architecture/MeeGo FRAME Resource</title>
		<link rel="alternate" type="text/html" href="http://wiki.meego.com/Architecture/MeeGo_FRAME_Resource"/>
				<updated>2011-07-22T18:40:15Z</updated>
		
		<summary type="html">&lt;p&gt;Texrat: /* Related projects and resources */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;FRAME stands for &amp;quot;Feedback, Rating, Augmented reality, Metadata and Engagement&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
We support development of a comprehensive solution or solutions that makes bug reporting, applications testing and developer donations easier on end-users, and places the mobile user experience (feedback) in more useful locations and contexts (rating items of interest, gaming achievements, etc on-the-go).&lt;br /&gt;
&lt;br /&gt;
=== Introduction ===&lt;br /&gt;
&lt;br /&gt;
Think of this as a sort of ''meta''-project.  We are the volunteer research arm, pipeline and clearinghouse for all things feedback-related.  Maybe umbrella is a better term.  The hope is that we will identify key areas of a mobilized feedback ecosystem, perform landscape and gap analysis, then list needs for tasks and/or sub-projects. Ultimately, we hope that our research will stimulate real development projects.  Consider us one of your resources!&lt;br /&gt;
&lt;br /&gt;
'''So why do we need an open, mobilized feedback ecosystem?'''&lt;br /&gt;
&lt;br /&gt;
* A mobile Internet is the future (per recent Gartner study)&lt;br /&gt;
* We (users) want to be fully engaged in Internet activities&lt;br /&gt;
* We (users) are more interested in the opinions of friends than strangers (ratings context)&lt;br /&gt;
* Walled garden social networks will stifle the free flow of information and cripple discovery opportunities&lt;br /&gt;
* Feedback enables developers to provide better products and services than their competitors&lt;br /&gt;
&lt;br /&gt;
=== Scope ===&lt;br /&gt;
&lt;br /&gt;
The main areas addressed are (in no particular order):&lt;br /&gt;
&lt;br /&gt;
* '''Infrastructure''' : Add/use necessary “hooks” (APIs, metadata) to the current infrastructures (Ovi Store / Intel App Store).&lt;br /&gt;
* '''Bug reporting''' : Provide end-users with a device-based wizard that walks them through the process, and also automate log file submission.  Discussion with the [[Quality|Quality Assurance working group]] will be necessary.&lt;br /&gt;
&lt;br /&gt;
:Here is what MeeGo 1.0 currently presents on bootup:&lt;br /&gt;
&lt;br /&gt;
::'''Backtrace Collection'''&lt;br /&gt;
::Automatically submit application crash reports to MeeGo reporting database?&lt;br /&gt;
::* Yes&lt;br /&gt;
::* No&lt;br /&gt;
::PRIVACY NOTE:&lt;br /&gt;
::Enabling this option causes your system to submit certain application output to the crashdb.meego.com website, which then allows the information to be viewed by developers and end users.&lt;br /&gt;
::The information submitted includes a &amp;quot;backtrace&amp;quot;, which is an application's crash signature. However, due to the nature of backtraces, it may happen that a few instances of user input will be sent with the backtrace.&lt;br /&gt;
&lt;br /&gt;
* '''Developer donation''' : Educate end-users on the vital role played by developers in creating an ecosystem and provide them an easy and trusted way to make donations.  Discussion with the relevant [[Community Office|Community working group]] will be necessary on certain points.&lt;br /&gt;
* '''Feedback / Rating''' : Provide end-users with an operating system and applications integrated solution for items of interest:&lt;br /&gt;
** Media (Videos, Images, Music, Podcasting, eBooks, Websites, etc)&lt;br /&gt;
** Applications (Utilities, Games, etc)&lt;br /&gt;
** Events (Concerts, Movies, Conferences, etc)&lt;br /&gt;
** Services&lt;br /&gt;
** Location-based feedback (point-of-interest identification and ratings)&lt;br /&gt;
** Improvement of documentation&lt;br /&gt;
* '''Gaming achievement''' : Create and promote a proper achievement system (possible strategy with Ovi?).&lt;br /&gt;
* '''Karma''' : Push the concept of karma (personal recognition) up and out (note: this is highly controversial and will likely have low priority).&lt;br /&gt;
* '''Open Social Networking (eg, Diaspora*)'''&lt;br /&gt;
* '''Augmented reality'''&lt;br /&gt;
&lt;br /&gt;
Note: there may very well end up being separate projects wrapped around any or all of the above topics.&lt;br /&gt;
&lt;br /&gt;
=== How to contribute ===&lt;br /&gt;
&lt;br /&gt;
We are currently looking for the following:&lt;br /&gt;
&lt;br /&gt;
* whitepapers/studies on ratings systems, especially those touching on media ratings, points of interest ratings, psychology of participants, science behind such systems and current open source solutions.  Also, any studies showing the value of ratings systems in search (internet mostly) would be VERY helpful!&lt;br /&gt;
* usage of metadata in audio, video, podcasting, image and gaming ratings systems&lt;br /&gt;
* pointers to existing projects that are already doing what we propose!&lt;br /&gt;
&lt;br /&gt;
We also need help turning the theoretical into the practical!  Before anything material can be done, the landscape needs assessing.  Ready to help shape this project?  Then--&lt;br /&gt;
&lt;br /&gt;
* Identify an area that interests you&lt;br /&gt;
* Research the subject matter. Try to find existing best practices, preferrably open source BUT it can also help to point out successful endeavors in closed source that have no open equivalent (challenge the community!). Independent studies and academic papers can also be very helpful.&lt;br /&gt;
* Synthesize your findings, and update where appropriate (see below)&lt;br /&gt;
Communicate your thoughts! Don't be shy!&lt;br /&gt;
&lt;br /&gt;
This project needs people with the following experience or interests (in no particular order):&lt;br /&gt;
&lt;br /&gt;
* Audio metadata (id3v2)&lt;br /&gt;
* RPM packaging (especially extending XML metadata)&lt;br /&gt;
* Bugzilla API&lt;br /&gt;
* Online payment API(s) (Paypal, Obopay, Flattr, et al)&lt;br /&gt;
* Qt&lt;br /&gt;
* Feedback and/or Usability science&lt;br /&gt;
* Media ratings systems&lt;br /&gt;
* Social Media&lt;br /&gt;
* Gaming ecosystems (especially in an open, mobile context such as Gluon provides)&lt;br /&gt;
* Augmented reality (it's coming!)&lt;br /&gt;
&lt;br /&gt;
Feel free to add to this if you see a missing need.  We could especially use help with implementation details (libraries, functions, services, etc) as well as simulations and actual applications.&lt;br /&gt;
&lt;br /&gt;
=== Related projects and resources ===&lt;br /&gt;
&lt;br /&gt;
* MeeGo Projects&lt;br /&gt;
** [http://meego.com/developers/meego-architecture/data-management MeeGo Data Management] (including Tracker, ContextKit, PackageKit)&lt;br /&gt;
** [[Quality|MeeGo Quality Assurance]]&lt;br /&gt;
* External Projects and Solutions&lt;br /&gt;
** [https://wiki.ubuntu.com/SoftwareCenter Ubuntu Software Center] is an ongoing effort to aggregate software management (aimed at a better end-user experience) such as application rating/reviews, categorized applications list and application information.  The link is full of ideas.&lt;br /&gt;
*** The Ubuntu SoftwareCenter is sheer brilliance!  Almost exactly what was originally imagined, and they've done the homework!  We definitely need to keep an eye on this.&lt;br /&gt;
** KDE's [http://lwn.net/Articles/353630/ Project Silk] looks potentially useful.&lt;br /&gt;
** KDE's [http://mbatle.wordpress.com/2010/10/16/open-collaboration-services-and-libattica-on-meego/ Libattica] is &amp;quot;a library in KDE implementing a client for the [http://www.freedesktop.org/wiki/Specifications/open-collaboration-services Open Collaboration Services protocol (OCS)]. OCS is a Free Desktop specification, with the purpose of integrating web communities and web based services into desktop applications&amp;quot;. &lt;br /&gt;
** [http://www.joindiaspora.com/project.html Project Diaspora*] will be an open, distributed alternative to Facebook.&lt;br /&gt;
** [http://nepomuk.semanticdesktop.org/xwiki/bin/view/Main1/ Nepomuk] - the Social Semantic Desktop (VERY interesting!)&lt;br /&gt;
** [http://www.gamingfreedom.org/ Gluon project:] open source gaming&lt;br /&gt;
** [http://www.dopplr.com/ Dopplr] - &amp;quot;Share your personal and business travel plans with the people you trust.  Notice coincidences when your travels overlap&amp;quot;&lt;br /&gt;
** [https://wiki.mozilla.org/Badges Mozilla's Open Badges project]&lt;br /&gt;
* References&lt;br /&gt;
** [http://www.nytimes.com/external/readwriteweb/2010/05/31/31readwriteweb-the-coming-data-explosion-13154.html &amp;quot;The Coming Data Explosion&amp;quot;]&lt;br /&gt;
** [http://www.emc.com/collateral/analyst-reports/expanding-digital-idc-white-paper.pdf The Expanding Digital Universe {2010}]&lt;br /&gt;
** [http://communities-dominate.blogs.com/brands/2010/06/full-analysis-of-iphone-economics-its-bad-news-and-then-it-gets-worse.html iPhone economics] (a lot of useful info for this project)&lt;br /&gt;
* Applications testing&lt;br /&gt;
** [http://quality.mozilla.org/ QMO] - The home of Mozilla QA&lt;br /&gt;
** [https://wiki.mozilla.org/Litmus Litmus] - &amp;quot;the new integrated testcase management and QA tool that is designed to improve workflow, visibility, and turnaround time in the Mozilla QA process.  It was originally designed as a replacement for Testrunner, but also has additional functionality.&amp;quot;&lt;br /&gt;
* Bug Reporting:&lt;br /&gt;
** [http://www.bugzilla.org/docs/3.0/html/api/ Bugzilla 3.0.11+ API Documentation]&lt;br /&gt;
** [http://www.bugzilla.org/docs/tip/en/html/api/ Bugzilla 3.7 API Documentation]&lt;br /&gt;
** [https://wiki.mozilla.org/Bugzilla:REST_API Bugzilla:REST API]&lt;br /&gt;
** As a starting point, [http://fedoraproject.org/wiki/Features/ABRTF12 ABRT 1.0] is an implemented (Fedora 12) and tested tool to help end-users with bug reporting.&lt;br /&gt;
** [http://almworks.com/deskzilla/overview.html Deskzilla]&lt;br /&gt;
** Ubuntu's [https://wiki.ubuntu.com/Apport Apport] also looks promising (thanks Mandor)&lt;br /&gt;
* Donations:&lt;br /&gt;
** Monetary donations to an open source software platform (Research Policy Volume 38, Issue 2, March 2009, Pages 404-414) [http://www.sciencedirect.com/science?_ob=ArticleURL&amp;amp;_udi=B6V77-4V6YSW1-1&amp;amp;_user=10&amp;amp;_coverDate=03%2F31%2F2009&amp;amp;_rdoc=1&amp;amp;_fmt=high&amp;amp;_orig=search&amp;amp;_sort=d&amp;amp;_docanchor=&amp;amp;view=c&amp;amp;_searchStrId=1263842519&amp;amp;_rerunOrigin=google&amp;amp;_acct=C000050221&amp;amp;_version=1&amp;amp;_urlVersion=0&amp;amp;_userid=10&amp;amp;md5=27ae17462f87e0f72bc504566073f846]&lt;br /&gt;
** [http://www.onlinepaysystems.info/systems/list Online payment systems list]&lt;br /&gt;
** Another alternative to PayPal: [http://www.paybycash.com/ Pay By Cash]&lt;br /&gt;
* Media Metadata (audio, video, podcasting, images)&lt;br /&gt;
** Ultimate metadata resource!  [http://microformats.org/wiki/media-metadata-examples Media Metadata Examples]&lt;br /&gt;
** [http://www.jiscdigitalmedia.ac.uk/audio/advice/metadata-and-audio-resources/ Metadata and Audio Resources]&lt;br /&gt;
** [http://id3lib.sourceforge.net/ id3lib (Audio Metadata)]&lt;br /&gt;
* Ratings Systems:&lt;br /&gt;
** [http://www.ecis2009.it/papers/ecis2009-0607.pdf Discussion of Functional Design Options for Online Rating Systems: A State-of-the-Art Analysis]&lt;br /&gt;
* MeeGo FRAME Resource Materials&lt;br /&gt;
** Enhancing User Engagement on Mobile Devices] presentation for [http://akademy.kde.org/program Akademy 2010]&lt;br /&gt;
*** [http://www.slideshare.net/Texrat/enhancing-user-engagement-on-mobile-devices-4699421 Slideshare]&lt;br /&gt;
*** [http://meego.com/sites/all/files/Enhancing_User_Engagement_on_Mobile_Devices.pdf PDF hosted at MeeGo.com]&lt;br /&gt;
** [http://docs.google.com/Doc?docid=0AQAht1tOx2U6ZGRoYmg4eGdfNWNkMjhid2Nm&amp;amp;hl=en Akademy 2010 whitepaper (editable by community)]&lt;br /&gt;
** [http://forum.meego.com/showthread.php?t=123 MeeGo Discussion Forum thread]&lt;br /&gt;
&lt;br /&gt;
([[Proposal_for_a_User_Experience_working_group|Original project page]]).&lt;br /&gt;
&lt;br /&gt;
=== Contributors ===&lt;br /&gt;
&lt;br /&gt;
Coordinators (co-coordinators welcome):&lt;br /&gt;
&lt;br /&gt;
* [http://meego.com/users/texrat Randall Arnold/Texrat] - Community device program coordinator.&lt;br /&gt;
* [http://meego.com/users/toninikkanen Toni Nikkanen]&lt;br /&gt;
&lt;br /&gt;
MeeGo members identifying and adding relevant resources as well as external project coordinators:&lt;br /&gt;
&lt;br /&gt;
* [http://meego.com/users/mandor Jean-Philipe Morin/Mandor] - Maemo5/Ubuntu/Debian user and part time wiki editor.&lt;br /&gt;
* [http://meego.com/users/timsamoff Tim Samoff/timsamoff]&lt;br /&gt;
* [http://meego.com/users/niqt Nicola De Filippo] - Maemo5 Qt4 contributor; technical skills: Qt (from 1997), C++, Javascript, Php, Java, Python&lt;br /&gt;
* [http://meego.com/users/markc Mark Constable] - Javascript, PHP&lt;br /&gt;
* [http://meego.com/users/thomas @thomaslp] - Diaspora, Flattr&lt;br /&gt;
* [http://meego.com/users/arjwright Antoine RJ Wright] - Mobile Ministry Magazine, part-time Maemo/MeeGo user, backgrounds (web and mobile UI development and testing; various mobile platform use and analytics)&lt;br /&gt;
* [http://meego.com/users/timoph Timo Härkönen/timoph] - [http://wiki.meego.com/Quality/QA-tools MeeGo QA Tools] team member, MeeGo greeter and application developer (C/C++, Qt, etc.).&lt;br /&gt;
* [http://meego.com/users/dedual Nicolas Dedual] - Augmented Reality (AR) Researcher, interested in developing AR applications for the MeeGo platform&lt;br /&gt;
* [http://meego.com/users/tswindell Tom Swindell/Alterego] - Application Developer Maemo, MeeGo Handset, Ubuntu, C/C++/Qt/QtQuick-QML etc, etc. :)&lt;/div&gt;</summary>
		<author><name>Texrat</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-22T16:42:02Z</updated>
		
		<summary type="html">&lt;p&gt;Texrat: /* Completed */&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;
== '''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;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;
=== 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: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: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;
# [[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: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) '''ID sent''', '''Applied for the Nokia Developer Launchpad program'''&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:daperl|daperl]]&amp;lt;br/&amp;gt;&lt;br /&gt;
#* Porting the Sudoku clone Tomiku&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: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: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: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 driverwawa&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: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;
#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: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;
# [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: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;
#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: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: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: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;
# [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: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: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: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]] (Sfiet Konstantin) - ('''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]&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: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: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: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:texrat|texrat]] (Randall Arnold, Community Device Program Lead)&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: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: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: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: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: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;
&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;
=== Accepted, waiting for the N950 ===&lt;br /&gt;
&lt;br /&gt;
==== Batch One ====&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:Qole|qole]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[http://maemo.org/downloads/product/Maemo5/easy-deb-chroot/ Easy Debian] and other projects as they arise&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;
Aleix Pol (apol) '''ID sent''', '''accepted on Nokia Launchpad''', '''Ordered N950, waiting for some DHL e-mail'''&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''' | '''N950eMail:No''' | ''' Ordered:Yes ''' | '''Received:No'''&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;
[https://meego.com/users/andrei1089 Andrei Mirestean] (andrei1089) '''ID sent, applied for Nokia Launchpad, waiting for reply'''&lt;br /&gt;
&amp;lt;br /&amp;gt; Develop a pedometer application based on the [http://maemo.org/downloads/product/Maemo5/pedometerhomewidget/ Pedometer Widget for N900]&lt;br /&gt;
&lt;br /&gt;
[[User:wazd|Andrew Zhilin]] (wazd) '''ID sent''', '''Launchpad activated, order email sent, waiting for delivery details'''&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: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 NDL program''' - '''(Done) Launchpad for individuals(05-Jul-2011–05-Jul-2012)''' | N950eMail:'''No''' &amp;lt;-strange | Ordered(07-Jul-2011 via NDD):'''Yes ''' - Status &amp;quot;Device Sent to Customer&amp;quot;(11.7.2011) '''No mail still - looks like global ban from nokia.com to mail.ru direction''' | Received:'''No''' &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 (damagedspline) '''ID sent''', '''applied for Nokia Launchpad, Launchpad for individuals (06-Jul-2011–06-Jul-2012)''','''Order committed (7-Jul-2011)'''&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) '''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, 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;
[[User:druid23 | Dru Moore]] '''ID sent''', '''Applied for the Nokia Developer Launchpad program''' | '''N950eMail:Yes''' | ''' Ordered:Yes ''' | '''DispatchEmail:Yes''' | '''Received:Yes'''&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 (potentially video editing)&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;
&lt;br /&gt;
Felipe Crochik '''::Ordered''' device on 07/08 but the status hasn't changed and I haven't received any update/confirmation since&amp;lt;br/&amp;gt;&lt;br /&gt;
Port (depending on need and when possible) macuco, mobwebmail, geeps, dbbrowser, wakeonlan, ... from maemo5 to harmattan. &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;
Gary Birkett '''ID sent :: Launchpaded :: Ordered'''&amp;lt;br/&amp;gt;&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 '''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 Braad]] '''ID sent''' | '''Launchpad: waiting''' | '''N950eMail: Yes''' | ''' Ordered :Yes ''' | '''Received: No'''&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;
[[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 '''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: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;
Karl Johan Grøttum&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;
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.'''I received my device on July 21, 2011.   It is one really beautiful device!''' &amp;lt;br /&amp;gt;&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;
[[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;
'''Launchpad: Accepted(05-Jul-2011) | N950 eMail: Thu, Jul 7, 2011 at 5:27 AM | Ordered: Thu, Jul 7, 2011 at 7:56 AM | Received: No''' &lt;br /&gt;
&lt;br /&gt;
[[User:Creamygoodness|Lance Colton]]    ID sent | Launchpad:Accepted(05-Jul-2011) | N950eMail:Yes | Ordered:07-Jul-11 | Received:No&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 '''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;
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;
[[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 '''ID sent''',  '''Accepted for the Nokia Developer Launchpad program'''&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 (zchydem) '''ID sent''',  '''Applied for the Nokia Developer Launchpad program'''&amp;lt;br /&amp;gt;&lt;br /&gt;
QuickFlickr, QML based Flickr client for mobile handsets.&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;
[[User:twoboxen|Matt Hawkins]] (twoboxen) '''ID sent''', '''Already a Launchpad member''' | '''N950 eMail:Yes''' | ''' Ordered:Yes ''' | '''Received:No'''&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)  - '''Device arrived, Thank You.'''&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://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''',   '''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;
[[User:Nielsmayer|Niels Mayer]] '''[https://projects.developer.nokia.com/home/user/NielsMayer Nokia Developer ID] sent''', '''Email: A Nokia N950 is waiting for you''', '''Your order has been received: OID-052885, Device: Nokia N950''', '''7/7/11 status: Waiting for device'''&amp;lt;br /&amp;gt;&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.&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;
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, N950 Email: Received, Ordered: Yes, Received Device: No''' &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;
Roman Morawek&lt;br /&gt;
&lt;br /&gt;
[[User:generalantilles|Ryan Abel]] (GeneralAntilles)  '''ID sent''',  '''Accepted the Nokia Developer Launchpad program''', '''Device shipped''' &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: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;
Stani Michiels '''ID sent''',  '''Applied for the Nokia Developer Launchpad program'''&amp;lt;br /&amp;gt;&lt;br /&gt;
* Develop a creative photo and/or camera application based on the code of the [http://www.phatch.org Phatch] project.&lt;br /&gt;
* 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;
&lt;br /&gt;
[[User:v13|Stefanos Harhalakis]]: '''Nokia Developer ID Sent''', '''Applied for Nokia Developer Launchpad Program''', Waiting for reply&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;
&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;
[http://teom.wordpress.com Teo Mrnjavac] '''ID sent, Launchpad:Accepted | N950eMail:Yes | Ordered:Yes | Received:Yes, everything works&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 - '''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;
[[user:harbaum|Till Harbaum]] '''Received device'''&lt;br /&gt;
* First action: Try to get [http://www.harbaum.org/till/cacheme CacheMe] to work nicely (qml UI port)&lt;br /&gt;
* [https://build.pub.meego.com/project/show?project=home%3Aharbaum Community OBS home project]&lt;br /&gt;
* Zeemote driver&lt;br /&gt;
* And of course i'd like to port some of my previous Maemo projects ...&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]] '''ID sent''', '''applied for Nokia Launchpad. Awaiting any reply'''&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;
Tuomas Kulve&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Ville Jyrkkä&lt;br /&gt;
&lt;br /&gt;
[[User:Vranki|Ville Ranki]] '''ID sent, applied for Nokia Launchpad '''&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;
Willem Liu&lt;br /&gt;
&lt;br /&gt;
Yann Bieber '''ID sent, applied and accepted for Nokia Launchpad, order received by Nokia, waiting for device '''&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;
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;
&lt;br /&gt;
Zeeshan Ali&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;
[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;
[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;
[[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, 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]]  '''ID sent, applied for launchpad, device ordered, waiting for arrival.'''&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;
Shane Bryan&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;
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;
thebootroo | Thomas Boutroue '''ID sent''',  '''Applied for the Nokia Developer Launchpad program'''&amp;lt;br /&amp;gt;&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;
[[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;
[[User:mdengler|Martin Dengler]] '''ID sent''',  '''Accepted for the Nokia Developer Launchpad program''' '''Ordered: OID-052797'''&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''', '''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;
&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;
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;
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'''&lt;br /&gt;
&lt;br /&gt;
Pawel Kurdybacha '''ID sent, already a Launchpad member''' | '''N950eMail:Yes''' | ''' Ordered:Yes ''' | '''Received:Yes'''&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;
* various applications (words trainer, taxi checker, ...)&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) '''ID sent. Accepted onto Launchpad. Device ordered.'''&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;
Frank Banul '''ID sent, Applied for the Nokia Developer Launchpad program. Device ordered.'''&lt;br /&gt;
* Port TabletBridge and RadioTimeToGo&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;
[[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;
&lt;br /&gt;
&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;
&lt;br /&gt;
[[User:w00t|Robin Burchell]] (w00t) '''Device Ordered, Waiting for Arrival'''&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 '''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;
Ilya Skriblovsky '''[https://www.developer.nokia.com/Profile/?u=IlyaSkriblovsky Nokia Developer ID] sent, applied for Nokia Developer Launchpad, Order placed'''&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]] '''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;
Hussain Shafiu '''ID sent''', '''LaunchPad account 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;
==== Batch Three ====&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 '''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 '''ID sent''', '''Applied for the Nokia Developer Launchpad program''' &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;
Thomas B. Ruecker '''Approved 2011-07-07, Ordered 2011-07-07, Device is with courier since 2011-07-12''' &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.&amp;lt;br /&amp;gt;&lt;br /&gt;
LiveView daemon/application based on code found here: http://code.google.com/p/adqmisc/source/browse/#svn%2Ftrunk%2Fliveview&amp;lt;br /&amp;gt;&lt;br /&gt;
USB host mode &amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Damion Yates '''ID sent'''. '''Applied for the Nokia Developer Launchpad programme''' &amp;lt;br /&amp;gt;&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;
&lt;br /&gt;
Antti Raina '''ID sent''',  '''Applied for the Nokia Developer Launchpad program'''&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;
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;
[[user:n8willis|Nathan Willis]] '''Nokia Dev ID sent. Launchpad accepted. Awaiting any reply.'''&lt;br /&gt;
* Font packaging, porting DIN 1451 designs to open font license&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;
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;
[[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 (klausr) -'''ID sent, Applied for Nokia Launchpad program''' &amp;lt;br /&amp;gt; &lt;br /&gt;
Projects are porting/rewriting EasyPlayer (audiobook player) and some kind of a HAM (amateur radio) app (PSK31) for MeeGo. I'm also interested in low latency audio apps (drum-studio, recording), if this is possible with the N950/N9.&lt;br /&gt;
&lt;br /&gt;
Piotr Pokora (piotras)&lt;br /&gt;
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). &lt;br /&gt;
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;
&lt;br /&gt;
[[User:ivan4th|Ivan Shvedunov]] '''ID sent''',  '''accepted into Launchpad (06-Jul-2011–06-Jul-2012), ordered the device, not delivered yet'''&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;
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;
Jason Flatt (jflatt) '''ID sent''',  '''ID sent, Accepted for the Nokia Developer Launchpad program (06-Jul-2011–06-Jul-2012), device ordered (07-Jul)'''&lt;br /&gt;
QML nonograms game (in case anyone wants to contribute), various other bits&lt;br /&gt;
&lt;br /&gt;
[[User:Lizardo|Anderson Lizardo Gomes]] '''ID sent, Accepted for the Nokia Developer Launchpad program (06-Jul-2011–06-Jul-2012), device ordered (07-Jul), waiting for arrival.'''.&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;
[[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;
Rodrigo Vivi&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;
[[User:Blackwicked|Edvin Rab]], '''Developer ID sent''', '''Applied for Launchpad''', '''Device Ordered''', '''Waiting for Arrival'''.&amp;lt;br/&amp;gt;&lt;br /&gt;
Porting [http://t.co/4Os8iIh EvidenceHunt Game] to MeeGo. Also have plans to work on augmented reality projects.&lt;br /&gt;
&lt;br /&gt;
==== Batch Four ====&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;
Robert Marki - '''Device Ordered, Waiting for Arrival.'''&amp;lt;br/&amp;gt;&lt;br /&gt;
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.&amp;lt;br/&amp;gt;&lt;br /&gt;
Would like to develop image processing related applications like:&amp;lt;br/&amp;gt;&lt;br /&gt;
Image translation application&amp;lt;br/&amp;gt;&lt;br /&gt;
Image gallery with face recognition&amp;lt;br/&amp;gt;&lt;br /&gt;
Porting control software of a hexapod robot, or at least the module which helps the robot orient itself and navigate based on the images acquired from the camera&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Roman Deninberg([http://maemo.team16.ru/ Bonapart]) - '''ID sent, Waiting for response from the Nokia Developer Launchpad program'''&amp;lt;br/&amp;gt;&lt;br /&gt;
Psx4m\PCSX-rearmed\Psx4m-gui projects basically&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;
==== Batch Five ====&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 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;
Jukka Nousiainen '''- Device received''', Creating a tethering application for DSLR cameras, and porting needed libraries, e.g. libgphoto2&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;
Philipp Andreas '''Device Received, Thanks''', Porting [https://garage.maemo.org/project fahrplan] for the N9&lt;/div&gt;</summary>
		<author><name>Texrat</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-22T16:38:32Z</updated>
		
		<summary type="html">&lt;p&gt;Texrat: /* N950 Devkit Program Details */&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;
== '''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;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;
=== 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: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: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;
# [[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: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) '''ID sent''', '''Applied for the Nokia Developer Launchpad program'''&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:daperl|daperl]]&amp;lt;br/&amp;gt;&lt;br /&gt;
#* Porting the Sudoku clone Tomiku&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: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: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: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 driverwawa&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: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;
#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: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;
# [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: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;
#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: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: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: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;
# [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: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: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: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]] (Sfiet Konstantin) - ('''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]&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: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: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: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: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: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: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: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: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: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;
&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;
=== Accepted, waiting for the N950 ===&lt;br /&gt;
&lt;br /&gt;
==== Batch One ====&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:Qole|qole]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[http://maemo.org/downloads/product/Maemo5/easy-deb-chroot/ Easy Debian] and other projects as they arise&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;
Aleix Pol (apol) '''ID sent''', '''accepted on Nokia Launchpad''', '''Ordered N950, waiting for some DHL e-mail'''&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''' | '''N950eMail:No''' | ''' Ordered:Yes ''' | '''Received:No'''&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;
[https://meego.com/users/andrei1089 Andrei Mirestean] (andrei1089) '''ID sent, applied for Nokia Launchpad, waiting for reply'''&lt;br /&gt;
&amp;lt;br /&amp;gt; Develop a pedometer application based on the [http://maemo.org/downloads/product/Maemo5/pedometerhomewidget/ Pedometer Widget for N900]&lt;br /&gt;
&lt;br /&gt;
[[User:wazd|Andrew Zhilin]] (wazd) '''ID sent''', '''Launchpad activated, order email sent, waiting for delivery details'''&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: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 NDL program''' - '''(Done) Launchpad for individuals(05-Jul-2011–05-Jul-2012)''' | N950eMail:'''No''' &amp;lt;-strange | Ordered(07-Jul-2011 via NDD):'''Yes ''' - Status &amp;quot;Device Sent to Customer&amp;quot;(11.7.2011) '''No mail still - looks like global ban from nokia.com to mail.ru direction''' | Received:'''No''' &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 (damagedspline) '''ID sent''', '''applied for Nokia Launchpad, Launchpad for individuals (06-Jul-2011–06-Jul-2012)''','''Order committed (7-Jul-2011)'''&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) '''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, 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;
[[User:druid23 | Dru Moore]] '''ID sent''', '''Applied for the Nokia Developer Launchpad program''' | '''N950eMail:Yes''' | ''' Ordered:Yes ''' | '''DispatchEmail:Yes''' | '''Received:Yes'''&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 (potentially video editing)&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;
&lt;br /&gt;
Felipe Crochik '''::Ordered''' device on 07/08 but the status hasn't changed and I haven't received any update/confirmation since&amp;lt;br/&amp;gt;&lt;br /&gt;
Port (depending on need and when possible) macuco, mobwebmail, geeps, dbbrowser, wakeonlan, ... from maemo5 to harmattan. &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;
Gary Birkett '''ID sent :: Launchpaded :: Ordered'''&amp;lt;br/&amp;gt;&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 '''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 Braad]] '''ID sent''' | '''Launchpad: waiting''' | '''N950eMail: Yes''' | ''' Ordered :Yes ''' | '''Received: No'''&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;
[[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 '''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: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;
Karl Johan Grøttum&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;
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.'''I received my device on July 21, 2011.   It is one really beautiful device!''' &amp;lt;br /&amp;gt;&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;
[[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;
'''Launchpad: Accepted(05-Jul-2011) | N950 eMail: Thu, Jul 7, 2011 at 5:27 AM | Ordered: Thu, Jul 7, 2011 at 7:56 AM | Received: No''' &lt;br /&gt;
&lt;br /&gt;
[[User:Creamygoodness|Lance Colton]]    ID sent | Launchpad:Accepted(05-Jul-2011) | N950eMail:Yes | Ordered:07-Jul-11 | Received:No&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 '''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;
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;
[[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 '''ID sent''',  '''Accepted for the Nokia Developer Launchpad program'''&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 (zchydem) '''ID sent''',  '''Applied for the Nokia Developer Launchpad program'''&amp;lt;br /&amp;gt;&lt;br /&gt;
QuickFlickr, QML based Flickr client for mobile handsets.&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;
[[User:twoboxen|Matt Hawkins]] (twoboxen) '''ID sent''', '''Already a Launchpad member''' | '''N950 eMail:Yes''' | ''' Ordered:Yes ''' | '''Received:No'''&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)  - '''Device arrived, Thank You.'''&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://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''',   '''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;
[[User:Nielsmayer|Niels Mayer]] '''[https://projects.developer.nokia.com/home/user/NielsMayer Nokia Developer ID] sent''', '''Email: A Nokia N950 is waiting for you''', '''Your order has been received: OID-052885, Device: Nokia N950''', '''7/7/11 status: Waiting for device'''&amp;lt;br /&amp;gt;&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.&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;
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, N950 Email: Received, Ordered: Yes, Received Device: No''' &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;
Roman Morawek&lt;br /&gt;
&lt;br /&gt;
[[User:generalantilles|Ryan Abel]] (GeneralAntilles)  '''ID sent''',  '''Accepted the Nokia Developer Launchpad program''', '''Device shipped''' &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: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;
Stani Michiels '''ID sent''',  '''Applied for the Nokia Developer Launchpad program'''&amp;lt;br /&amp;gt;&lt;br /&gt;
* Develop a creative photo and/or camera application based on the code of the [http://www.phatch.org Phatch] project.&lt;br /&gt;
* 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;
&lt;br /&gt;
[[User:v13|Stefanos Harhalakis]]: '''Nokia Developer ID Sent''', '''Applied for Nokia Developer Launchpad Program''', Waiting for reply&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;
&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;
[http://teom.wordpress.com Teo Mrnjavac] '''ID sent, Launchpad:Accepted | N950eMail:Yes | Ordered:Yes | Received:Yes, everything works&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 - '''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;
[[user:harbaum|Till Harbaum]] '''Received device'''&lt;br /&gt;
* First action: Try to get [http://www.harbaum.org/till/cacheme CacheMe] to work nicely (qml UI port)&lt;br /&gt;
* [https://build.pub.meego.com/project/show?project=home%3Aharbaum Community OBS home project]&lt;br /&gt;
* Zeemote driver&lt;br /&gt;
* And of course i'd like to port some of my previous Maemo projects ...&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]] '''ID sent''', '''applied for Nokia Launchpad. Awaiting any reply'''&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;
Tuomas Kulve&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Ville Jyrkkä&lt;br /&gt;
&lt;br /&gt;
[[User:Vranki|Ville Ranki]] '''ID sent, applied for Nokia Launchpad '''&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;
Willem Liu&lt;br /&gt;
&lt;br /&gt;
Yann Bieber '''ID sent, applied and accepted for Nokia Launchpad, order received by Nokia, waiting for device '''&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;
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;
&lt;br /&gt;
Zeeshan Ali&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;
[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;
[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;
[[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, 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]]  '''ID sent, applied for launchpad, device ordered, waiting for arrival.'''&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;
Shane Bryan&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;
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;
thebootroo | Thomas Boutroue '''ID sent''',  '''Applied for the Nokia Developer Launchpad program'''&amp;lt;br /&amp;gt;&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;
[[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;
[[User:mdengler|Martin Dengler]] '''ID sent''',  '''Accepted for the Nokia Developer Launchpad program''' '''Ordered: OID-052797'''&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''', '''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;
&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;
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;
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'''&lt;br /&gt;
&lt;br /&gt;
Pawel Kurdybacha '''ID sent, already a Launchpad member''' | '''N950eMail:Yes''' | ''' Ordered:Yes ''' | '''Received:Yes'''&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;
* various applications (words trainer, taxi checker, ...)&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) '''ID sent. Accepted onto Launchpad. Device ordered.'''&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;
Frank Banul '''ID sent, Applied for the Nokia Developer Launchpad program. Device ordered.'''&lt;br /&gt;
* Port TabletBridge and RadioTimeToGo&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;
[[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;
&lt;br /&gt;
&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;
&lt;br /&gt;
[[User:w00t|Robin Burchell]] (w00t) '''Device Ordered, Waiting for Arrival'''&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 '''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;
Ilya Skriblovsky '''[https://www.developer.nokia.com/Profile/?u=IlyaSkriblovsky Nokia Developer ID] sent, applied for Nokia Developer Launchpad, Order placed'''&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]] '''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;
Hussain Shafiu '''ID sent''', '''LaunchPad account 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;
==== Batch Three ====&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 '''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 '''ID sent''', '''Applied for the Nokia Developer Launchpad program''' &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;
Thomas B. Ruecker '''Approved 2011-07-07, Ordered 2011-07-07, Device is with courier since 2011-07-12''' &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.&amp;lt;br /&amp;gt;&lt;br /&gt;
LiveView daemon/application based on code found here: http://code.google.com/p/adqmisc/source/browse/#svn%2Ftrunk%2Fliveview&amp;lt;br /&amp;gt;&lt;br /&gt;
USB host mode &amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Damion Yates '''ID sent'''. '''Applied for the Nokia Developer Launchpad programme''' &amp;lt;br /&amp;gt;&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;
&lt;br /&gt;
Antti Raina '''ID sent''',  '''Applied for the Nokia Developer Launchpad program'''&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;
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;
[[user:n8willis|Nathan Willis]] '''Nokia Dev ID sent. Launchpad accepted. Awaiting any reply.'''&lt;br /&gt;
* Font packaging, porting DIN 1451 designs to open font license&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;
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;
[[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 (klausr) -'''ID sent, Applied for Nokia Launchpad program''' &amp;lt;br /&amp;gt; &lt;br /&gt;
Projects are porting/rewriting EasyPlayer (audiobook player) and some kind of a HAM (amateur radio) app (PSK31) for MeeGo. I'm also interested in low latency audio apps (drum-studio, recording), if this is possible with the N950/N9.&lt;br /&gt;
&lt;br /&gt;
Piotr Pokora (piotras)&lt;br /&gt;
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). &lt;br /&gt;
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;
&lt;br /&gt;
[[User:ivan4th|Ivan Shvedunov]] '''ID sent''',  '''accepted into Launchpad (06-Jul-2011–06-Jul-2012), ordered the device, not delivered yet'''&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;
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;
Jason Flatt (jflatt) '''ID sent''',  '''ID sent, Accepted for the Nokia Developer Launchpad program (06-Jul-2011–06-Jul-2012), device ordered (07-Jul)'''&lt;br /&gt;
QML nonograms game (in case anyone wants to contribute), various other bits&lt;br /&gt;
&lt;br /&gt;
[[User:Lizardo|Anderson Lizardo Gomes]] '''ID sent, Accepted for the Nokia Developer Launchpad program (06-Jul-2011–06-Jul-2012), device ordered (07-Jul), waiting for arrival.'''.&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;
[[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;
Rodrigo Vivi&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;
[[User:Blackwicked|Edvin Rab]], '''Developer ID sent''', '''Applied for Launchpad''', '''Device Ordered''', '''Waiting for Arrival'''.&amp;lt;br/&amp;gt;&lt;br /&gt;
Porting [http://t.co/4Os8iIh EvidenceHunt Game] to MeeGo. Also have plans to work on augmented reality projects.&lt;br /&gt;
&lt;br /&gt;
==== Batch Four ====&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;
Robert Marki - '''Device Ordered, Waiting for Arrival.'''&amp;lt;br/&amp;gt;&lt;br /&gt;
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.&amp;lt;br/&amp;gt;&lt;br /&gt;
Would like to develop image processing related applications like:&amp;lt;br/&amp;gt;&lt;br /&gt;
Image translation application&amp;lt;br/&amp;gt;&lt;br /&gt;
Image gallery with face recognition&amp;lt;br/&amp;gt;&lt;br /&gt;
Porting control software of a hexapod robot, or at least the module which helps the robot orient itself and navigate based on the images acquired from the camera&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Roman Deninberg([http://maemo.team16.ru/ Bonapart]) - '''ID sent, Waiting for response from the Nokia Developer Launchpad program'''&amp;lt;br/&amp;gt;&lt;br /&gt;
Psx4m\PCSX-rearmed\Psx4m-gui projects basically&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;
==== Batch Five ====&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 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;
Jukka Nousiainen '''- Device received''', Creating a tethering application for DSLR cameras, and porting needed libraries, e.g. libgphoto2&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;
Philipp Andreas '''Device Received, Thanks''', Porting [https://garage.maemo.org/project fahrplan] for the N9&lt;/div&gt;</summary>
		<author><name>Texrat</name></author>	</entry>

	<entry>
		<id>http://wiki.meego.com/Community_Office/Community_device_program</id>
		<title>Community Office/Community device program</title>
		<link rel="alternate" type="text/html" href="http://wiki.meego.com/Community_Office/Community_device_program"/>
				<updated>2011-07-13T20:29:42Z</updated>
		
		<summary type="html">&lt;p&gt;Texrat: /* Definitions */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This page describes the goal, attributes and requirements for a community device program.  Please feel free to discuss further on the [http://lists.meego.com/listinfo/meego-community meego-community list].&lt;br /&gt;
&lt;br /&gt;
If you are looking for the actual on-line application, it is [https://meego.com/community/device-program  located here].&lt;br /&gt;
= Program Goal =&lt;br /&gt;
&lt;br /&gt;
The vision for this program is to put together a framework that makes it very easy for &lt;br /&gt;
anyone to contribute devices and have them go to the most qualified community members in exchange for some commitment to do something cool with the device (attributed to [[User:Dawnfoster|Dawn Foster]]).&lt;br /&gt;
&lt;br /&gt;
== Description ==&lt;br /&gt;
&lt;br /&gt;
The Community Device Program is a way for community members to get devices that they can use for MeeGo work. Devices will be distributed to the most qualified community members in exchange for the commitment to do something cool with the device. Hardware manufacturers can [https://meego.com/node/add/development-device submit a request] to distribute a device to become part of this program.&lt;br /&gt;
&lt;br /&gt;
= Definitions =&lt;br /&gt;
&lt;br /&gt;
== Device Provider ==&lt;br /&gt;
&lt;br /&gt;
Any entity participating in the program, at their own expense, with the agreed goal of getting MeeGo-capable devices into the hands of eligible MeeGo community members.  Some criteria:&lt;br /&gt;
 &lt;br /&gt;
* Devices may be gifted, discounted or loaned (at provider's discretion)&lt;br /&gt;
* Development boards, consumer devices (release status determined by provider; may require separate NDA)&lt;br /&gt;
* Devices requiring legal paperwork for release need to be made available directly from the company providing them and not through the Linux Foundation MeeGo device program&lt;br /&gt;
&lt;br /&gt;
Device Provider program details can be found on pages linked in the [[#Platforms.2FDevices|Platforms/Devices]] section.&lt;br /&gt;
&lt;br /&gt;
== Device Recipient ==&lt;br /&gt;
&lt;br /&gt;
Anyone receiving a device from a Provider.&lt;br /&gt;
&lt;br /&gt;
== Platform or Device Champion ==&lt;br /&gt;
&lt;br /&gt;
Any community member passionate enough to act as a volunteer focal point for platforms or individual devices.  That means researching, blogging, presenting, forum posting, leading discussions on email lists, and any similar highly visible activity in the community space.  Platform or device champions need not be a subject matter expert or developer but should always be willing to help find one.  Note that a Champion may or not be a Device Recipient.  This not an elected or selected position; if you want to help, just do it!&lt;br /&gt;
&lt;br /&gt;
= Program Design and Documentation =&lt;br /&gt;
&lt;br /&gt;
The data model, workflows, forms and other aspects of the device program are described [[/Design_and_Documentation|on this page]].&lt;br /&gt;
&lt;br /&gt;
= Policies and Processes =&lt;br /&gt;
&lt;br /&gt;
== Responsibilities ==&lt;br /&gt;
=== Recipient Eligibility and Responsibilities ===&lt;br /&gt;
* Confirm that you have asked your employer for a device (if applicable), and been turned down.&lt;br /&gt;
* Demonstrate a clear and compelling purpose for the device requested.&lt;br /&gt;
* Agree to use the device for the purpose stated in your application.&lt;br /&gt;
* Agree to publicly communicate about your experience with the device (e.g. blog, tweet, present, post on forum or mailing list, etc).&lt;br /&gt;
* Comply with any vendor-specific requirements (may include shipping restrictions to certain countries).&lt;br /&gt;
* Responsible for any import taxes, fees or other expenses.&lt;br /&gt;
* Member in good standing in MeeGo Community (defined by [[Community_guidelines|Community Guidelines]]).&lt;br /&gt;
* Provide a valid shipping address, phone number, email address, project name and project URL (the latter can point to ''any'' sort of web page describing the project, including a forum thread).&lt;br /&gt;
* Exhibit willingness to share unused devices.&lt;br /&gt;
&lt;br /&gt;
=== MeeGo / LF Responsibilities ===&lt;br /&gt;
* Drive the process for selecting recipients.&lt;br /&gt;
* Provide an application form for people to use.&lt;br /&gt;
* Provide vendor with a list of names, shipping addresses, phone numbers, email addresses and project URLs.&lt;br /&gt;
&lt;br /&gt;
=== Device Provider Responsibilities ===&lt;br /&gt;
* Provider will handle all shipping of systems including any relevant paperwork required.&lt;br /&gt;
* Provider will provide system specifications, number of systems available and deadlines.&lt;br /&gt;
* Provider will provide a list of any additional recipient requirements in addition to the ones stated above.&lt;br /&gt;
* Provider is responsible for all costs associated with providing and shipping the devices.&lt;br /&gt;
&lt;br /&gt;
Device providers can submit devices [https://meego.com/node/add/development-device here].&lt;br /&gt;
&lt;br /&gt;
== Approval Committee ==&lt;br /&gt;
&lt;br /&gt;
Regulars:&lt;br /&gt;
* [[User:Texrat|Randall Arnold]] (Community Device Program Lead)&lt;br /&gt;
* Brian Warner (Linux Foundation Rep)&lt;br /&gt;
* [[User:Dawnfoster|Dawn Foster]] (MeeGo Community Office Rep)&lt;br /&gt;
&lt;br /&gt;
Note that device providers may elect to be part of the MeeGo approval process as well.&lt;br /&gt;
&lt;br /&gt;
== Selection Criteria ==&lt;br /&gt;
* Intended use should be innovative, substantial and well-documented.&lt;br /&gt;
* Intended use should be appropriate and practical for device granted.&lt;br /&gt;
* Looking for a balance of uses for each device (not all one type of primary use).&lt;br /&gt;
* Past contributions to a relevant project may be part of the decision process.  Note that this information shall be kept confidential by the program team.&lt;br /&gt;
* It is important that device awards are not limited to a constant set of contributors.  Prior receipt of a gifted or loaned device would be considered for your future applications.  This may or may not apply to discounted devices.&lt;br /&gt;
&lt;br /&gt;
=== Suggestions ===&lt;br /&gt;
Judges will be looking for truly novel yet practical applications for provided devices.  Filling an obvious gap in the MeeGo ecosystem will help your chances.  Dream big, but have a solid plan for fulfilling it!&lt;br /&gt;
&lt;br /&gt;
We appreciate your understanding that there are a limited number of devices and not all requests can be granted. &lt;br /&gt;
&lt;br /&gt;
We also kindly ask that if/when you no longer need the device, you transfer it to another MeeGo community member or team who can use it.&lt;br /&gt;
&lt;br /&gt;
== On-line Application ==&lt;br /&gt;
&lt;br /&gt;
Use the form [https://meego.com/community/device-program provided here] to submit your request.&lt;br /&gt;
&lt;br /&gt;
= Platforms/Devices =&lt;br /&gt;
&lt;br /&gt;
Following are the MeeGo platforms and devices addressed by the program.  You can find examples of devices running MeeGo [[Devices|here]], and an area to propose devices at the bottom of this page.  Proposal submission tracking is located [[/Contact_Table|here]].&lt;br /&gt;
&lt;br /&gt;
== Netbooks ==&lt;br /&gt;
&lt;br /&gt;
TBD&lt;br /&gt;
&lt;br /&gt;
== Entry-level Desktops ==&lt;br /&gt;
&lt;br /&gt;
Not planned at this time&lt;br /&gt;
&lt;br /&gt;
== Nettops ==&lt;br /&gt;
&lt;br /&gt;
TBD&lt;br /&gt;
&lt;br /&gt;
== Tablet Computers ==&lt;br /&gt;
&lt;br /&gt;
=== ExoPC ===&lt;br /&gt;
:Provider(s): [[/Intel|Intel]]&lt;br /&gt;
&lt;br /&gt;
== Mobile Computers/Handsets ==&lt;br /&gt;
&lt;br /&gt;
=== Nokia N950 (as &amp;quot;Nokia N9 Devkit&amp;quot;) ===&lt;br /&gt;
:Provider(s): [[/Nokia|Nokia]]&lt;br /&gt;
&lt;br /&gt;
== In-Vehicle Infotainment (IVI) Systems ==&lt;br /&gt;
Platform Champion(s): Nathan Willis&lt;br /&gt;
&lt;br /&gt;
== Smart TV/Connected TV ==&lt;br /&gt;
&lt;br /&gt;
TBD&lt;br /&gt;
&lt;br /&gt;
=== Trimslice ===&lt;br /&gt;
:Champion(s): [[User:vgrade|Martin Brook (vgrade)]]&lt;br /&gt;
:Provider(s): [[ARM/TEGRA2#Compulabs_Trimslice|Compulabs Trimslice]]&lt;br /&gt;
&lt;br /&gt;
== IP TV Boxes ==&lt;br /&gt;
&lt;br /&gt;
TBD&lt;br /&gt;
&lt;br /&gt;
== Development Devices ==&lt;br /&gt;
&lt;br /&gt;
=== Beagleboard ===&lt;br /&gt;
:Champion(s): Till Harbaum, Jan-Simon Möller&lt;br /&gt;
:Provider(s): [[/Beagleboard|Beagleboard]]&lt;br /&gt;
&lt;br /&gt;
=== Pandaboard ===&lt;br /&gt;
:Champion(s): [[User:texrat|Randall Arnold]]&lt;br /&gt;
:Provider(s): [[/Texas_Instruments|Texas Instruments]]&lt;br /&gt;
&lt;br /&gt;
==Other Embedded Systems ==&lt;br /&gt;
&lt;br /&gt;
TBD&lt;br /&gt;
&lt;br /&gt;
= Device Proposals =&lt;br /&gt;
&lt;br /&gt;
Feel free to add possible devices (with providers) and information here:&lt;br /&gt;
&lt;br /&gt;
* [http://www.pcmag.com/article2/0,2817,2386151,00.asp Asus EeePC X101 netbook]&lt;br /&gt;
* [http://www.noteslate.com/ noteslate] (submitted by Gary Birkett/lcuk)&lt;br /&gt;
* [http://intellicom.se/linux_oem_hardware.cfm Intellicom Netbiter OEM hardware]&lt;br /&gt;
* [http://www.fujitsu.com/hk/news/pr/fpcap_20110211.html Fujitsu LIFEBOOK MH330] with [http://www.linpus.com/news/2011/03/23.html Linpus Lite for MeeGo]&lt;br /&gt;
* [http://www.czctech.com/en/productView.asp?id=82 CZC Tech P10T]&lt;br /&gt;
&lt;br /&gt;
[[/Contact_Table|This page]] is being used to manage proposals.&lt;/div&gt;</summary>
		<author><name>Texrat</name></author>	</entry>

	<entry>
		<id>http://wiki.meego.com/Community_Office/Community_device_program</id>
		<title>Community Office/Community device program</title>
		<link rel="alternate" type="text/html" href="http://wiki.meego.com/Community_Office/Community_device_program"/>
				<updated>2011-07-12T15:38:14Z</updated>
		
		<summary type="html">&lt;p&gt;Texrat: /* Platform or Device Champion */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This page describes the goal, attributes and requirements for a community device program.  Please feel free to discuss further on the [http://lists.meego.com/listinfo/meego-community meego-community list].&lt;br /&gt;
&lt;br /&gt;
If you are looking for the actual on-line application, it is [https://meego.com/community/device-program  located here].&lt;br /&gt;
= Program Goal =&lt;br /&gt;
&lt;br /&gt;
The vision for this program is to put together a framework that makes it very easy for &lt;br /&gt;
anyone to contribute devices and have them go to the most qualified community members in exchange for some commitment to do something cool with the device (attributed to [[User:Dawnfoster|Dawn Foster]]).&lt;br /&gt;
&lt;br /&gt;
== Description ==&lt;br /&gt;
&lt;br /&gt;
The Community Device Program is a way for community members to get devices that they can use for MeeGo work. Devices will be distributed to the most qualified community members in exchange for the commitment to do something cool with the device. Hardware manufacturers can [https://meego.com/node/add/development-device submit a request] to distribute a device to become part of this program.&lt;br /&gt;
&lt;br /&gt;
= Definitions =&lt;br /&gt;
&lt;br /&gt;
== Platform or Device Champion ==&lt;br /&gt;
&lt;br /&gt;
Any community member passionate enough to act as a volunteer focal point for platforms or individual devices.  That means researching, blogging, presenting, forum posting, leading discussions on email lists, and any similar highly visible activity in the community space.  Platform or device champions need not be a subject matter expert or developer but should always be willing to help find one.  Note that a Champion may or not be a Recipient.  This not an elected or selected position; if you want to help, just do it!&lt;br /&gt;
&lt;br /&gt;
== Device Provider ==&lt;br /&gt;
&lt;br /&gt;
Any entity participating in the program, at their own expense, with the agreed goal of getting MeeGo-capable devices into the hands of eligible MeeGo community members.  Some criteria:&lt;br /&gt;
 &lt;br /&gt;
* Devices may be gifted, discounted or loaned (at provider's discretion)&lt;br /&gt;
* Development boards, consumer devices (release status determined by provider; may require separate NDA)&lt;br /&gt;
* Devices requiring legal paperwork for release need to be made available directly from the company providing them and not through the Linux Foundation MeeGo device program&lt;br /&gt;
&lt;br /&gt;
Device Provider program details can be found on pages linked in the [[#Platforms.2FDevices|Platforms/Devices]] section.&lt;br /&gt;
&lt;br /&gt;
== Device Recipient ==&lt;br /&gt;
&lt;br /&gt;
Anyone receiving a device from a Provider.&lt;br /&gt;
&lt;br /&gt;
= Program Design and Documentation =&lt;br /&gt;
&lt;br /&gt;
The data model, workflows, forms and other aspects of the device program are described [[/Design_and_Documentation|on this page]].&lt;br /&gt;
&lt;br /&gt;
= Policies and Processes =&lt;br /&gt;
&lt;br /&gt;
== Responsibilities ==&lt;br /&gt;
=== Recipient Eligibility and Responsibilities ===&lt;br /&gt;
* Confirm that you have asked your employer for a device (if applicable), and been turned down.&lt;br /&gt;
* Demonstrate a clear and compelling purpose for the device requested.&lt;br /&gt;
* Agree to use the device for the purpose stated in your application.&lt;br /&gt;
* Agree to publicly communicate about your experience with the device (e.g. blog, tweet, present, post on forum or mailing list, etc).&lt;br /&gt;
* Comply with any vendor-specific requirements (may include shipping restrictions to certain countries).&lt;br /&gt;
* Responsible for any import taxes, fees or other expenses.&lt;br /&gt;
* Member in good standing in MeeGo Community (defined by [[Community_guidelines|Community Guidelines]]).&lt;br /&gt;
* Provide a valid shipping address, phone number, email address, project name and project URL (the latter can point to ''any'' sort of web page describing the project, including a forum thread).&lt;br /&gt;
* Exhibit willingness to share unused devices.&lt;br /&gt;
&lt;br /&gt;
=== MeeGo / LF Responsibilities ===&lt;br /&gt;
* Drive the process for selecting recipients.&lt;br /&gt;
* Provide an application form for people to use.&lt;br /&gt;
* Provide vendor with a list of names, shipping addresses, phone numbers, email addresses and project URLs.&lt;br /&gt;
&lt;br /&gt;
=== Device Provider Responsibilities ===&lt;br /&gt;
* Provider will handle all shipping of systems including any relevant paperwork required.&lt;br /&gt;
* Provider will provide system specifications, number of systems available and deadlines.&lt;br /&gt;
* Provider will provide a list of any additional recipient requirements in addition to the ones stated above.&lt;br /&gt;
* Provider is responsible for all costs associated with providing and shipping the devices.&lt;br /&gt;
&lt;br /&gt;
Device providers can submit devices [https://meego.com/node/add/development-device here].&lt;br /&gt;
&lt;br /&gt;
== Approval Committee ==&lt;br /&gt;
&lt;br /&gt;
Regulars:&lt;br /&gt;
* [[User:Texrat|Randall Arnold]] (Community Device Program Lead)&lt;br /&gt;
* Brian Warner (Linux Foundation Rep)&lt;br /&gt;
* [[User:Dawnfoster|Dawn Foster]] (MeeGo Community Office Rep)&lt;br /&gt;
&lt;br /&gt;
Note that device providers may elect to be part of the MeeGo approval process as well.&lt;br /&gt;
&lt;br /&gt;
== Selection Criteria ==&lt;br /&gt;
* Intended use should be innovative, substantial and well-documented.&lt;br /&gt;
* Intended use should be appropriate and practical for device granted.&lt;br /&gt;
* Looking for a balance of uses for each device (not all one type of primary use).&lt;br /&gt;
* Past contributions to a relevant project may be part of the decision process.  Note that this information shall be kept confidential by the program team.&lt;br /&gt;
* It is important that device awards are not limited to a constant set of contributors.  Prior receipt of a gifted or loaned device would be considered for your future applications.  This may or may not apply to discounted devices.&lt;br /&gt;
&lt;br /&gt;
=== Suggestions ===&lt;br /&gt;
Judges will be looking for truly novel yet practical applications for provided devices.  Filling an obvious gap in the MeeGo ecosystem will help your chances.  Dream big, but have a solid plan for fulfilling it!&lt;br /&gt;
&lt;br /&gt;
We appreciate your understanding that there are a limited number of devices and not all requests can be granted. &lt;br /&gt;
&lt;br /&gt;
We also kindly ask that if/when you no longer need the device, you transfer it to another MeeGo community member or team who can use it.&lt;br /&gt;
&lt;br /&gt;
== On-line Application ==&lt;br /&gt;
&lt;br /&gt;
Use the form [https://meego.com/community/device-program provided here] to submit your request.&lt;br /&gt;
&lt;br /&gt;
= Platforms/Devices =&lt;br /&gt;
&lt;br /&gt;
Following are the MeeGo platforms and devices addressed by the program.  You can find examples of devices running MeeGo [[Devices|here]], and an area to propose devices at the bottom of this page.  Proposal submission tracking is located [[/Contact_Table|here]].&lt;br /&gt;
&lt;br /&gt;
== Netbooks ==&lt;br /&gt;
&lt;br /&gt;
TBD&lt;br /&gt;
&lt;br /&gt;
== Entry-level Desktops ==&lt;br /&gt;
&lt;br /&gt;
Not planned at this time&lt;br /&gt;
&lt;br /&gt;
== Nettops ==&lt;br /&gt;
&lt;br /&gt;
TBD&lt;br /&gt;
&lt;br /&gt;
== Tablet Computers ==&lt;br /&gt;
&lt;br /&gt;
=== ExoPC ===&lt;br /&gt;
:Provider(s): [[/Intel|Intel]]&lt;br /&gt;
&lt;br /&gt;
== Mobile Computers/Handsets ==&lt;br /&gt;
&lt;br /&gt;
=== Nokia N950 (as &amp;quot;Nokia N9 Devkit&amp;quot;) ===&lt;br /&gt;
:Provider(s): [[/Nokia|Nokia]]&lt;br /&gt;
&lt;br /&gt;
== In-Vehicle Infotainment (IVI) Systems ==&lt;br /&gt;
Platform Champion(s): Nathan Willis&lt;br /&gt;
&lt;br /&gt;
== Smart TV/Connected TV ==&lt;br /&gt;
&lt;br /&gt;
TBD&lt;br /&gt;
&lt;br /&gt;
== IP TV Boxes ==&lt;br /&gt;
&lt;br /&gt;
TBD&lt;br /&gt;
&lt;br /&gt;
== Development Devices ==&lt;br /&gt;
&lt;br /&gt;
=== Beagleboard ===&lt;br /&gt;
:Champion(s): Till Harbaum, Jan-Simon Möller&lt;br /&gt;
:Provider(s): [[/Beagleboard|Beagleboard]]&lt;br /&gt;
&lt;br /&gt;
=== Pandaboard ===&lt;br /&gt;
:Champion(s): [[User:texrat|Randall Arnold]]&lt;br /&gt;
:Provider(s): [[/Texas_Instruments|Texas Instruments]]&lt;br /&gt;
&lt;br /&gt;
==Other Embedded Systems ==&lt;br /&gt;
&lt;br /&gt;
TBD&lt;br /&gt;
&lt;br /&gt;
= Device Proposals =&lt;br /&gt;
&lt;br /&gt;
Feel free to add possible devices (with providers) and information here:&lt;br /&gt;
&lt;br /&gt;
* [http://www.pcmag.com/article2/0,2817,2386151,00.asp Asus EeePC X101 netbook]&lt;br /&gt;
* [http://www.noteslate.com/ noteslate] (submitted by Gary Birkett/lcuk)&lt;br /&gt;
* [http://intellicom.se/linux_oem_hardware.cfm Intellicom Netbiter OEM hardware]&lt;br /&gt;
* [http://www.fujitsu.com/hk/news/pr/fpcap_20110211.html Fujitsu LIFEBOOK MH330] with [http://www.linpus.com/news/2011/03/23.html Linpus Lite for MeeGo]&lt;br /&gt;
* [http://www.czctech.com/en/productView.asp?id=82 CZC Tech P10T]&lt;br /&gt;
&lt;br /&gt;
[[/Contact_Table|This page]] is being used to manage proposals.&lt;/div&gt;</summary>
		<author><name>Texrat</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-06-30T07:12:35Z</updated>
		
		<summary type="html">&lt;p&gt;Texrat: /* Accepted */&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;
 This is the first list of accepted candidates. More will come! You will receive an email with instructions on 30-06-2011.&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;
Aapo Rantalainen&lt;br /&gt;
&lt;br /&gt;
Ádám Balázs&lt;br /&gt;
&lt;br /&gt;
Adam Pigg &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;
Aguirre Nicolas&lt;br /&gt;
&lt;br /&gt;
Alan M Bruce&lt;br /&gt;
&lt;br /&gt;
Alberto Mardegan&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;
Alexander Terekhov&lt;br /&gt;
&lt;br /&gt;
Amanda Hoi Ching Lam&lt;br /&gt;
&lt;br /&gt;
[https://meego.com/users/andreagrandi Andrea Grandi] (Andy80)&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) &amp;lt;br /&amp;gt;&lt;br /&gt;
Porting apps from Maemo (Attitude &amp;amp; Hermes), developer tools, and apps.meego.com workflow&lt;br /&gt;
&lt;br /&gt;
[[User:fiferboy|Andrew Olmsted]] (fiferboy) &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: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&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;
Artem Sereda &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&lt;br /&gt;
&lt;br /&gt;
Bart Cerneels&lt;br /&gt;
&lt;br /&gt;
Benoît HERVIER&lt;br /&gt;
&lt;br /&gt;
Bradley Smith&lt;br /&gt;
&lt;br /&gt;
Brendan Le Foll&lt;br /&gt;
&lt;br /&gt;
Carsten Munk&lt;br /&gt;
&lt;br /&gt;
Christian Pühringer&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;
Clovis Scotti&lt;br /&gt;
&lt;br /&gt;
Cornelius Hald&lt;br /&gt;
&lt;br /&gt;
Cosimo Kroll&lt;br /&gt;
&lt;br /&gt;
Cristian Grozea&lt;br /&gt;
&lt;br /&gt;
Damian Waradzyn&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&lt;br /&gt;
&lt;br /&gt;
David Galindo&lt;br /&gt;
&lt;br /&gt;
David Greaves&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;
Ferdinand Mayet&lt;br /&gt;
&lt;br /&gt;
Frank Sievertsen&lt;br /&gt;
&lt;br /&gt;
Gary Birkett&lt;br /&gt;
&lt;br /&gt;
Gary Driggs&lt;br /&gt;
&lt;br /&gt;
George Ruinelli&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. I am also working to get a user friendly version of a GPS location alert application as discussed in [http://talk.maemo.org/showthread.php?t=64681&amp;amp;highlight=gps+alert]. Also I am willing to port other apps/libs if requested.&lt;br /&gt;
&lt;br /&gt;
Gerard Braad&lt;br /&gt;
&lt;br /&gt;
Harald Sitter&lt;br /&gt;
&lt;br /&gt;
Heli Hyvättinen&lt;br /&gt;
&lt;br /&gt;
Henri Bergius&lt;br /&gt;
&lt;br /&gt;
Hiemanshu Sharma&lt;br /&gt;
&lt;br /&gt;
Ivan Daniluk&lt;br /&gt;
&lt;br /&gt;
Janne Mäkinen&lt;br /&gt;
&lt;br /&gt;
[[User:Javispedro|Javier de San Pedro Martín]] &amp;lt;br /&amp;gt;&lt;br /&gt;
Porting my Maemo 5 applications and SDL games, and SDL itself.&lt;br /&gt;
&lt;br /&gt;
Jeremias Bosch&lt;br /&gt;
&lt;br /&gt;
Jos van den Oever&lt;br /&gt;
&lt;br /&gt;
Jose Xavier&lt;br /&gt;
&lt;br /&gt;
[[User:Bundyo|Kamen Bundev]] (Bundyo) &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;
kemar grant&lt;br /&gt;
&lt;br /&gt;
Ken Young&lt;br /&gt;
&lt;br /&gt;
[http://wiki.meego.com/User:Kimitake Kimitake]&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;
Kristopher C. Kantor&lt;br /&gt;
&lt;br /&gt;
Kyle Thomas&lt;br /&gt;
creating Reedit: [http://www.shadymilkman.com/p/n9-project.html Reedit] A full featured Reddit list browser&lt;br /&gt;
&lt;br /&gt;
Lance Colton&lt;br /&gt;
&lt;br /&gt;
Lasse Kärkkäinen&lt;br /&gt;
&lt;br /&gt;
Lasse Stenberg&lt;br /&gt;
&lt;br /&gt;
Laszlo Papp&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.&lt;br /&gt;
&lt;br /&gt;
Luis Felipe Strano Moraes&lt;br /&gt;
&lt;br /&gt;
Luiz Augusto von Dentz&lt;br /&gt;
&lt;br /&gt;
Marat Fayzullin&lt;br /&gt;
&lt;br /&gt;
Marco Bavagnoli&lt;br /&gt;
&lt;br /&gt;
[[User:Mece|Marcus Wikström]] (mece)&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;
Marius Gedminas&lt;br /&gt;
&lt;br /&gt;
Marko Mattila&lt;br /&gt;
&lt;br /&gt;
martin brook&lt;br /&gt;
&lt;br /&gt;
Martin Grimme (pycage)&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)&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;
Matt Hawkins&lt;br /&gt;
&lt;br /&gt;
Matti Henrik Karjalainen&lt;br /&gt;
&lt;br /&gt;
Michael Muth (helex)&lt;br /&gt;
&lt;br /&gt;
[http://blog.mikeasoft.com/tag/maemo/ Michael Sheldon] (Elleo)&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;
Michal Čihař&lt;br /&gt;
&lt;br /&gt;
Michele Tameni&lt;br /&gt;
&lt;br /&gt;
Mike Choy&lt;br /&gt;
&lt;br /&gt;
Mikko Vartiainen&lt;br /&gt;
&lt;br /&gt;
[https://projects.developer.nokia.com/home/user/mmlado Mladen Milankovic]&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]]&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;
Oleksandr Kachur&lt;br /&gt;
&lt;br /&gt;
Olle Tränk&lt;br /&gt;
&lt;br /&gt;
Philip Lorenz&lt;br /&gt;
&lt;br /&gt;
Philipp Zabel&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&lt;br /&gt;
&lt;br /&gt;
Ray Donnelly&lt;br /&gt;
&lt;br /&gt;
Rodrigo Linfati&lt;br /&gt;
&lt;br /&gt;
Roman Morawek&lt;br /&gt;
&lt;br /&gt;
[http://wiki.meego.com/User:Wonko Ruediger Gad (wonko)] &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) &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) &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&lt;br /&gt;
&lt;br /&gt;
Sergey Ivanov&lt;br /&gt;
&lt;br /&gt;
[[User:Spenap|Simón Pena]]&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&lt;br /&gt;
&lt;br /&gt;
somnath banik&lt;br /&gt;
&lt;br /&gt;
Stani Michiels&lt;br /&gt;
&lt;br /&gt;
Stefanos Harhalakis&lt;br /&gt;
&lt;br /&gt;
Stephen Gadsby&lt;br /&gt;
&lt;br /&gt;
[[User:vitaminj|Stephen Spencer]] (VitaminJ)&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&lt;br /&gt;
&lt;br /&gt;
[http://wiki.meego.com/User:Kenya888 Takahiro Hashimoto] &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] &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;
Thomas Perl&lt;br /&gt;
&lt;br /&gt;
Till Harbaum&lt;br /&gt;
&lt;br /&gt;
Timo Härkönen&lt;br /&gt;
&lt;br /&gt;
[http://wiki.meego.com/User:Venemo Timur Kristóf]&lt;br /&gt;
&lt;br /&gt;
* [http://wiki.meego.com/User:Venemo/HarmattanPlans My Harmattan Plans]: Puzzle Master, Public transportation app, Memory game, Labirynth game&lt;br /&gt;
&lt;br /&gt;
Tom Swindell&lt;br /&gt;
&lt;br /&gt;
Tommi Laukkanen&lt;br /&gt;
&lt;br /&gt;
Toni Nikkanen&lt;br /&gt;
&lt;br /&gt;
[https://meego.com/users/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;
&lt;br /&gt;
Tuomas Kulve&lt;br /&gt;
&lt;br /&gt;
Uladzislau Vasilyeu&lt;br /&gt;
&lt;br /&gt;
Valerio Di Donato&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;
Xavier Hallade&lt;br /&gt;
&lt;br /&gt;
Yann Bieber&lt;br /&gt;
&lt;br /&gt;
Zaheer Merali&lt;br /&gt;
&lt;br /&gt;
Zap Andersson&lt;br /&gt;
&lt;br /&gt;
Zeeshan Ali&lt;/div&gt;</summary>
		<author><name>Texrat</name></author>	</entry>

	<entry>
		<id>http://wiki.meego.com/Community_Office</id>
		<title>Community Office</title>
		<link rel="alternate" type="text/html" href="http://wiki.meego.com/Community_Office"/>
				<updated>2011-06-29T23:45:00Z</updated>
		
		<summary type="html">&lt;p&gt;Texrat: /* Roles and Responsibilities */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Mission ==&lt;br /&gt;
&lt;br /&gt;
The Community Office (CO) defines and implements the strategy for [[Community Office/Community Management|community collaboration]], [[Community Office/Marketing|project promotion]] and [[Events]].&lt;br /&gt;
&lt;br /&gt;
=== Goals ===&lt;br /&gt;
&lt;br /&gt;
Community Office goals:&lt;br /&gt;
* Encourage participation in the MeeGo community.&lt;br /&gt;
* Generate awareness for the MeeGo project.&lt;br /&gt;
* Overall guidance on tasks and priorities.&lt;br /&gt;
* Decision-making, when needed.&lt;br /&gt;
* Appointments within the Community Office.&lt;br /&gt;
* Connection with the MeeGo Technical Steering Group (TSG).&lt;br /&gt;
&lt;br /&gt;
== Structure ==&lt;br /&gt;
=== Coordination ===&lt;br /&gt;
&lt;br /&gt;
The co-coordinators (appointed by the TSG):&lt;br /&gt;
* [http://meego.com/users/dawnfoster Dawn Foster], since March 24, 2010. ''MeeGo community manager employed by Intel.''&lt;br /&gt;
* [http://meego.com/users/qgil Quim Gil], since March 24, 2010. ''MeeGo advocate, employed by Nokia.''&lt;br /&gt;
&lt;br /&gt;
The work of the CO is organized at the [http://meego.com/community/mailing-lists meego-community mailing list].&lt;br /&gt;
&lt;br /&gt;
=== Roles and Responsibilities ===&lt;br /&gt;
* [[Community Office/Community Management|Community Management and Collaboration]]: [[User:Dawnfoster|Dawn Foster]]&lt;br /&gt;
* [[Community Office/Marketing|Project Marketing and Promotion]]: [[User:Qgil|Quim Gil]]&lt;br /&gt;
* [[Events]]: [http://meego.com/users/amyleeland Amy Leeland]&lt;br /&gt;
* [[Community_Office/Community_device_program|Community Device Program]]: [[User:texrat|Randall Arnold]]&lt;br /&gt;
&lt;br /&gt;
Related areas outside of the Community Office:&lt;br /&gt;
* [[Web infrastructure]]: Michael Shaver&lt;br /&gt;
* Trademark - definition, legal aspects, abuse. Ibrahim Haddad.&lt;br /&gt;
* Brand - Logotype, guidelines, characters. Claire Alexandre.&lt;br /&gt;
* Compliance - OS &amp;amp; application compliance program. Mark Skarpness.&lt;br /&gt;
&lt;br /&gt;
== Meetings ==&lt;br /&gt;
&lt;br /&gt;
Logistics for bi-weekly [[/Meetings|Community Office meetings]] on the first and third Tuesdays of every month. This meeting is open to anyone who wants to attend and contribute.&lt;br /&gt;
&lt;br /&gt;
The purpose of these meetings is to help get people involved in the MeeGo community. The Community Office meetings are group brainstorming sessions designed to make improvements in the MeeGo community and find volunteers to help us implement our suggestions.&lt;br /&gt;
&lt;br /&gt;
== Tasks ==&lt;br /&gt;
&lt;br /&gt;
Work and tasks will be broken down into '''Active Tasks''' and '''Inactive Tasks'''.&lt;br /&gt;
&lt;br /&gt;
=== The Task Force Approach aka You Are Not Alone ===&lt;br /&gt;
&lt;br /&gt;
Most of these are large tasks, and while we expect there to be a single owner of each task, that person is not responsible for doing everything, but they are responsible for leading each small task force of about 3-6 people. The idea is that a smaller group will spend less time discussing and more time doing; and rather than relying on a single individual to attend CO meetings and do all the work it can be shared; finally team members can remind and chase each other rather than relying on the CO to do that. Learn more about this approach by reading the [[Community_Office/So_You_Want_To_Be_A_Task_Force|So You Want To Be A Task Force]] page.&lt;br /&gt;
&lt;br /&gt;
=== Active Tasks ===&lt;br /&gt;
&lt;br /&gt;
Active tasks have a clear owner and are being actively worked on toward completion. Anyone can claim an inactive task and move it to the active list. See the &amp;quot;To claim an inactive task&amp;quot; process below for details about what you need to do before moving a task to the active list.&lt;br /&gt;
&lt;br /&gt;
Every task must point to a bug report and/or a wiki page describing the task, where to help and the progress. One coordinator is assigned to each task but more people might be involved (check the link).&lt;br /&gt;
&lt;br /&gt;
'''Big Ongoing Tasks'''&lt;br /&gt;
&lt;br /&gt;
* [[Metrics]] - [http://meego.com/users/dawnfoster Dawn]&lt;br /&gt;
* Planning for the [[MeeGo Conference Spring 2011]]: [http://meego.com/users/amyleeland Amy Leeland]&lt;br /&gt;
* [[MeeGo Greeters]] program - [http://meego.com/users/revdkathy RevDKathy] &lt;br /&gt;
* [[Marketing/Meego.com 1.2 update|meego.com 1.2 update]] - [http://meego.com/users/qgil Quim Gil]&lt;br /&gt;
* [[MeeGo media coverage | Gather MeeGo media coverage]] - Alison Chaiken&lt;br /&gt;
&lt;br /&gt;
'''Regular Active Tasks'''&lt;br /&gt;
&lt;br /&gt;
# '''[[Web infrastructure/Planning Security Review|Web Infrastructure Planning and Review]] with servers moved to OSUOSL''' - [http://meego.com/users/mshaver Mike Shaver]&lt;br /&gt;
# '''[[Proposal for Community Application Support]]''' - [http://meego.com/users/tekojo Tero Kojo]&lt;br /&gt;
# '''[[Community Office/Collaboration and Contribution Improvements|Collaboration and Contribution Improvements]]''' - [http://meego.com/users/dawnfoster Dawn Foster]&lt;br /&gt;
# '''[[Application developer site]] on meego.com - [http://bugs.meego.com/show_bug.cgi?id=7882 status here]''' - Input requested for related content [[Application_developer_site/Related_content| here]] - [http://meego.com/users/macron Ronan]&lt;br /&gt;
# [[Community Office/Community device program|Community device program]] - [[User:texrat|Randall Arnold]] &lt;br /&gt;
# '''Mail/Forum integration'''. [http://forum.meego.com/showthread.php?t=85 Forum thread] - See [http://talk.maemo.org/showthread.php?t=28924 maemo.org test] - [http://meego.com/users/reggie Reggie] and [http://meego.com/users/bergie Bergie]&lt;br /&gt;
#: On hold until OSU migration --[[User:Dawnfoster|Dawnfoster]] 14:47, 20 September 2010 (UTC)&lt;br /&gt;
# [[DeveloperEngagement|Developer Engagement]] - educating and engaging new &amp;amp; old application developers --[[User:W00t|W00t]] &lt;br /&gt;
# '''Implementation of social [[News and Planet]]''' - [http://meego.com/users/mshaver Mike Shaver]&lt;br /&gt;
#: On hold until OSU migration --[[User:Dawnfoster|Dawnfoster]] 14:47, 20 September 2010 (UTC)&lt;br /&gt;
#: Completed and ready to be moved away from the backlog. Details in the bug report.--[[User:Qgil|Qgil]] 13:54, 21 September 2010 (UTC)&lt;br /&gt;
# '''[[meego.com]] documentation''' - [http://meego.com/users/mshaver Mike Shaver]&lt;br /&gt;
#: On hold until OSU migration --[[User:Dawnfoster|Dawnfoster]] 14:47, 20 September 2010 (UTC)&lt;br /&gt;
# Push fixes for the [http://bugs.meego.com/show_bug.cgi?id=4898 MeeGo openness meta-bug] - [http://meego.com/users/qgil Quim]&lt;br /&gt;
# '''[[Wiki gardening|Wiki gardeners]]''' - there is a team of [[wiki sysops]] and of course, anyone is welcome to edit pages in the wiki.&lt;br /&gt;
# '''[[Community Office/Census|Project Census]]''' - brainstormed at SF2011 MeeGo Conference&lt;br /&gt;
&lt;br /&gt;
Basic rule of prioritization: every coordinator gets one task prioritized before a second task from a same coordinator. &lt;br /&gt;
&lt;br /&gt;
Examples: &lt;br /&gt;
* CORRECT: 1 Mary - 2 John - 3 Mary&lt;br /&gt;
* WRONG: 1 Mary - 2 Mary - 3 John&lt;br /&gt;
&lt;br /&gt;
'''New Active Tasks'''&lt;br /&gt;
&lt;br /&gt;
Created during [[Community_Office/Meetings/Brainstorming_12-7-10|December 7 CO meeting]]. Owners need to create a wiki page or bug report for status, start the discussion on meego-community and move it up to the main active tasks list (prioritized).&lt;br /&gt;
&lt;br /&gt;
* mrshaver: Come up with a tangible task list / bugs to fix for engineers to help them get started. Maybe something like http://wiki.documentfoundation.org/Easy_Hacks&lt;br /&gt;
* lbt: if we can complete the &amp;quot;build for Fremantle on the OBS&amp;quot; then I think we can start to attract maemo users to a new build system&lt;br /&gt;
* qgil: Talk to existing device owners and put together a plan for better engaging those users as MeeGo contributors&lt;br /&gt;
* alterego: Make the N900 adaptation easier for users aka wrap up the complex faff with sd cards and console so that people pop in a card and have meego a few minutes later&lt;br /&gt;
* lbt: &amp;quot;building a QML application for your Ideapad&amp;quot; tutorial&lt;br /&gt;
* DawnFoster / qgil: Revamp the CO task lists &amp;amp; break them down into manageable chunks&lt;br /&gt;
&lt;br /&gt;
=== Inactive Tasks ===&lt;br /&gt;
&lt;br /&gt;
Inactive tasks include all other work that we would someday like to do, but that is not currently being worked on. &lt;br /&gt;
&lt;br /&gt;
Anyone can add a task to see if someone else picks it up. Please click on the button &amp;quot;Your signature with codestamp&amp;quot; at the end of your proposed task to keep a record of who made each proposal when.&lt;br /&gt;
&lt;br /&gt;
'''To claim an inactive task'''&lt;br /&gt;
* Add your task to the list if it is not already in the list below.&lt;br /&gt;
* If an owner is already listed, contact the current owner to get a current status update and see if you can take it over or help them complete it.&lt;br /&gt;
* Start a discussion on [http://lists.meego.com/listinfo/meego-community meego-community] to get feedback about your idea. &lt;br /&gt;
** Make sure that people agree that this task should be completed.&lt;br /&gt;
** Get general agreement on your approach&lt;br /&gt;
** Learn more and get suggestions&lt;br /&gt;
* If you want to proceed:&lt;br /&gt;
** Create a wiki page or bug report for status (see examples from the active task list).&lt;br /&gt;
** Move it to the Active Task list.&lt;br /&gt;
&lt;br /&gt;
'''Inactive Task List'''&lt;br /&gt;
&lt;br /&gt;
* Put together a better incentive / reward structure for volunteer participants - t-shirts for people completing certain tasks, etc. &lt;br /&gt;
* [[Single sign-on|SSO]] decision - needs clarification.&lt;br /&gt;
* [http://bugs.meego.com/show_bug.cgi?id=12682 MeeGo jobs] - combine with http://jobs.linux.com&lt;br /&gt;
* MeeGo marketplace - combine with http://store.linux.com&lt;br /&gt;
* Project Management (recommend Bugzilla integration; see [https://wiki.mozilla.org/Bugzilla:Addons#Project_management_software_integration PM Options].&lt;br /&gt;
* MeeGo document templates - priority on OpenOffice.org &amp;amp; MS Office presentation slides.&lt;br /&gt;
* Something along the lines of http://djangopeople.net/ (note that although that implementation has job-market features the idea is to have an easy-access &amp;quot;Who's Who&amp;quot;)&lt;br /&gt;
* List activities for which rankings of MeeGo users will be provided (see [[reputation]] page for ongoing list)&lt;br /&gt;
* Agreement on 'Should meego.com offer mailing lists to open source community projects?' --[[User:Qgil|Qgil]] 04:15, 20 May 2010 (UTC)&lt;br /&gt;
* Agreement on 'Should meego.com offer a bug tracker tool to open source community projects?' --[[User:Qgil|Qgil]] 04:36, 20 May 2010 (UTC)&lt;br /&gt;
* [http://bugs.meego.com/show_bug.cgi?id=3641 MeeGo Press Kit] --[[User:Qgil|Qgil]] 22:42, 3 August 2010 (UTC)&lt;br /&gt;
* [[Community Office/Marketing/Meego.com 1.2 update|meego.com 1.2 update]] - [http://meego.com/users/qgil Quim Gil]?&lt;br /&gt;
* [[Marketing/Materials|MeeGo &amp;quot;vanilla&amp;quot; marketing materials]] - [http://meego.com/users/texrat Randall Arnold]&lt;br /&gt;
* [[Marketing/Materials/MeeGo_Slogans|MeeGo slogans]] - [http://meego.com/users/texrat Randall Arnold]&lt;br /&gt;
* Consolidate [[Local MeeGo Networks]] - [http://meego.com/users/qgil Quim Gil] (happy to hand this over)&lt;br /&gt;
* Guidelines for [[Community Office/Marketing/Regional MeeGo Summits|Regional MeeGo Summits]] - [[User:Kyber|Kyber]]&lt;br /&gt;
* [[MeeGo vs Android]] for ODMs - Dave Neary&lt;br /&gt;
* [[Qt across MeeGo &amp;amp; Symbian]] for app developers - [http://meego.com/users/sivan Sivan Greenberg]&lt;br /&gt;
* [[Community Store plan]] - (Non-Intel / non-Nokia) Who? &lt;br /&gt;
* [[ARM|The ARM community loves MeeGo]] - Who?&lt;br /&gt;
* [[Handset manufacturers love MeeGo]] - Who?&lt;br /&gt;
* [[iOS to MeeGo Porting Guide]] - Who?&lt;br /&gt;
* [[Android to MeeGo Porting Guide]] - Who?&lt;br /&gt;
* [[Desktop Linux to MeeGo Porting Guide]] - Who?&lt;br /&gt;
* [[MeeGo vs Ubuntu]] - Who?  -- is this actually the &amp;quot;Why MeeGo?&amp;quot; question?  --[[User:Texrat|Texrat]] 15:42, 8 December 2010 (UTC)&lt;br /&gt;
* [[Common_Calendar]] - Who?&lt;br /&gt;
* [[Events/DiY|MeeGo @ Events DiY]] - Who?&lt;br /&gt;
* [[Meegons|MeeGo Avatar Generator]] - Physalis&lt;br /&gt;
* [[MAPS2011|MeeGo 'Summer of Code' program]] - Who?&lt;br /&gt;
* [[Community_Office/Marketing/About Openness|About Openness]], what it is and why is good - Who?&lt;br /&gt;
* [[Community_Office/Marketing/University Collaboration|University Collaboration]] - Who?&lt;br /&gt;
* Policy for Team:* areas on the Community OBS (see Fathi Bhoudra and Matti Airas too) - Who?&lt;br /&gt;
* [http://bugs.meego.com/show_bug.cgi?id=12060 Process missing for meego.com localized websites] - Who?&lt;br /&gt;
* Your proposal.&lt;br /&gt;
&lt;br /&gt;
== How to contribute ==&lt;br /&gt;
&lt;br /&gt;
See the Process section above for current approved work and proposed tasks. You might also find this guide for [[Contributing to MeeGo]] helpful.&lt;br /&gt;
&lt;br /&gt;
== History ==&lt;br /&gt;
The creation of the Community working group was approved by the Technical Steering Group on March 24, 2010. See the [http://trac.tspre.org/meetbot/meego-meeting/2010/meego-meeting.2010-03-24-19.58.html meeting minutes] for more details.&lt;br /&gt;
&lt;br /&gt;
There was a first [[Community_website_meeting_2010_2_24|Community website meeting]] on February 24, 2010. &lt;br /&gt;
&lt;br /&gt;
The role of working groups in the MeeGo project are explained at http://meego.com/about/governance.&lt;/div&gt;</summary>
		<author><name>Texrat</name></author>	</entry>

	<entry>
		<id>http://wiki.meego.com/Community_Office</id>
		<title>Community Office</title>
		<link rel="alternate" type="text/html" href="http://wiki.meego.com/Community_Office"/>
				<updated>2011-06-29T23:44:25Z</updated>
		
		<summary type="html">&lt;p&gt;Texrat: /* Roles and Responsibilities */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Mission ==&lt;br /&gt;
&lt;br /&gt;
The Community Office (CO) defines and implements the strategy for [[Community Office/Community Management|community collaboration]], [[Community Office/Marketing|project promotion]] and [[Events]].&lt;br /&gt;
&lt;br /&gt;
=== Goals ===&lt;br /&gt;
&lt;br /&gt;
Community Office goals:&lt;br /&gt;
* Encourage participation in the MeeGo community.&lt;br /&gt;
* Generate awareness for the MeeGo project.&lt;br /&gt;
* Overall guidance on tasks and priorities.&lt;br /&gt;
* Decision-making, when needed.&lt;br /&gt;
* Appointments within the Community Office.&lt;br /&gt;
* Connection with the MeeGo Technical Steering Group (TSG).&lt;br /&gt;
&lt;br /&gt;
== Structure ==&lt;br /&gt;
=== Coordination ===&lt;br /&gt;
&lt;br /&gt;
The co-coordinators (appointed by the TSG):&lt;br /&gt;
* [http://meego.com/users/dawnfoster Dawn Foster], since March 24, 2010. ''MeeGo community manager employed by Intel.''&lt;br /&gt;
* [http://meego.com/users/qgil Quim Gil], since March 24, 2010. ''MeeGo advocate, employed by Nokia.''&lt;br /&gt;
&lt;br /&gt;
The work of the CO is organized at the [http://meego.com/community/mailing-lists meego-community mailing list].&lt;br /&gt;
&lt;br /&gt;
=== Roles and Responsibilities ===&lt;br /&gt;
* [[Community Office/Community Management|Community Management and Collaboration]]: [[User:Dawnfoster|Dawn Foster]]&lt;br /&gt;
* [[Community Office/Marketing|Project Marketing and Promotion]]: [[User:Qgil|Quim Gil]]&lt;br /&gt;
* [[Events]]: [http://meego.com/users/amyleeland Amy Leeland]&lt;br /&gt;
* [[Community_Office/Community_device_program|Community Device Program]]: [[User:texrat|Randall Arnold]]&lt;br /&gt;
&lt;br /&gt;
Related areas outside of the Community Office:&lt;br /&gt;
* [[Web infrastructure]]&lt;br /&gt;
* Trademark - definition, legal aspects, abuse. Ibrahim Haddad.&lt;br /&gt;
* Brand - Logotype, guidelines, characters. Claire Alexandre.&lt;br /&gt;
* Compliance - OS &amp;amp; application compliance program. Mark Skarpness.&lt;br /&gt;
&lt;br /&gt;
== Meetings ==&lt;br /&gt;
&lt;br /&gt;
Logistics for bi-weekly [[/Meetings|Community Office meetings]] on the first and third Tuesdays of every month. This meeting is open to anyone who wants to attend and contribute.&lt;br /&gt;
&lt;br /&gt;
The purpose of these meetings is to help get people involved in the MeeGo community. The Community Office meetings are group brainstorming sessions designed to make improvements in the MeeGo community and find volunteers to help us implement our suggestions.&lt;br /&gt;
&lt;br /&gt;
== Tasks ==&lt;br /&gt;
&lt;br /&gt;
Work and tasks will be broken down into '''Active Tasks''' and '''Inactive Tasks'''.&lt;br /&gt;
&lt;br /&gt;
=== The Task Force Approach aka You Are Not Alone ===&lt;br /&gt;
&lt;br /&gt;
Most of these are large tasks, and while we expect there to be a single owner of each task, that person is not responsible for doing everything, but they are responsible for leading each small task force of about 3-6 people. The idea is that a smaller group will spend less time discussing and more time doing; and rather than relying on a single individual to attend CO meetings and do all the work it can be shared; finally team members can remind and chase each other rather than relying on the CO to do that. Learn more about this approach by reading the [[Community_Office/So_You_Want_To_Be_A_Task_Force|So You Want To Be A Task Force]] page.&lt;br /&gt;
&lt;br /&gt;
=== Active Tasks ===&lt;br /&gt;
&lt;br /&gt;
Active tasks have a clear owner and are being actively worked on toward completion. Anyone can claim an inactive task and move it to the active list. See the &amp;quot;To claim an inactive task&amp;quot; process below for details about what you need to do before moving a task to the active list.&lt;br /&gt;
&lt;br /&gt;
Every task must point to a bug report and/or a wiki page describing the task, where to help and the progress. One coordinator is assigned to each task but more people might be involved (check the link).&lt;br /&gt;
&lt;br /&gt;
'''Big Ongoing Tasks'''&lt;br /&gt;
&lt;br /&gt;
* [[Metrics]] - [http://meego.com/users/dawnfoster Dawn]&lt;br /&gt;
* Planning for the [[MeeGo Conference Spring 2011]]: [http://meego.com/users/amyleeland Amy Leeland]&lt;br /&gt;
* [[MeeGo Greeters]] program - [http://meego.com/users/revdkathy RevDKathy] &lt;br /&gt;
* [[Marketing/Meego.com 1.2 update|meego.com 1.2 update]] - [http://meego.com/users/qgil Quim Gil]&lt;br /&gt;
* [[MeeGo media coverage | Gather MeeGo media coverage]] - Alison Chaiken&lt;br /&gt;
&lt;br /&gt;
'''Regular Active Tasks'''&lt;br /&gt;
&lt;br /&gt;
# '''[[Web infrastructure/Planning Security Review|Web Infrastructure Planning and Review]] with servers moved to OSUOSL''' - [http://meego.com/users/mshaver Mike Shaver]&lt;br /&gt;
# '''[[Proposal for Community Application Support]]''' - [http://meego.com/users/tekojo Tero Kojo]&lt;br /&gt;
# '''[[Community Office/Collaboration and Contribution Improvements|Collaboration and Contribution Improvements]]''' - [http://meego.com/users/dawnfoster Dawn Foster]&lt;br /&gt;
# '''[[Application developer site]] on meego.com - [http://bugs.meego.com/show_bug.cgi?id=7882 status here]''' - Input requested for related content [[Application_developer_site/Related_content| here]] - [http://meego.com/users/macron Ronan]&lt;br /&gt;
# [[Community Office/Community device program|Community device program]] - [[User:texrat|Randall Arnold]] &lt;br /&gt;
# '''Mail/Forum integration'''. [http://forum.meego.com/showthread.php?t=85 Forum thread] - See [http://talk.maemo.org/showthread.php?t=28924 maemo.org test] - [http://meego.com/users/reggie Reggie] and [http://meego.com/users/bergie Bergie]&lt;br /&gt;
#: On hold until OSU migration --[[User:Dawnfoster|Dawnfoster]] 14:47, 20 September 2010 (UTC)&lt;br /&gt;
# [[DeveloperEngagement|Developer Engagement]] - educating and engaging new &amp;amp; old application developers --[[User:W00t|W00t]] &lt;br /&gt;
# '''Implementation of social [[News and Planet]]''' - [http://meego.com/users/mshaver Mike Shaver]&lt;br /&gt;
#: On hold until OSU migration --[[User:Dawnfoster|Dawnfoster]] 14:47, 20 September 2010 (UTC)&lt;br /&gt;
#: Completed and ready to be moved away from the backlog. Details in the bug report.--[[User:Qgil|Qgil]] 13:54, 21 September 2010 (UTC)&lt;br /&gt;
# '''[[meego.com]] documentation''' - [http://meego.com/users/mshaver Mike Shaver]&lt;br /&gt;
#: On hold until OSU migration --[[User:Dawnfoster|Dawnfoster]] 14:47, 20 September 2010 (UTC)&lt;br /&gt;
# Push fixes for the [http://bugs.meego.com/show_bug.cgi?id=4898 MeeGo openness meta-bug] - [http://meego.com/users/qgil Quim]&lt;br /&gt;
# '''[[Wiki gardening|Wiki gardeners]]''' - there is a team of [[wiki sysops]] and of course, anyone is welcome to edit pages in the wiki.&lt;br /&gt;
# '''[[Community Office/Census|Project Census]]''' - brainstormed at SF2011 MeeGo Conference&lt;br /&gt;
&lt;br /&gt;
Basic rule of prioritization: every coordinator gets one task prioritized before a second task from a same coordinator. &lt;br /&gt;
&lt;br /&gt;
Examples: &lt;br /&gt;
* CORRECT: 1 Mary - 2 John - 3 Mary&lt;br /&gt;
* WRONG: 1 Mary - 2 Mary - 3 John&lt;br /&gt;
&lt;br /&gt;
'''New Active Tasks'''&lt;br /&gt;
&lt;br /&gt;
Created during [[Community_Office/Meetings/Brainstorming_12-7-10|December 7 CO meeting]]. Owners need to create a wiki page or bug report for status, start the discussion on meego-community and move it up to the main active tasks list (prioritized).&lt;br /&gt;
&lt;br /&gt;
* mrshaver: Come up with a tangible task list / bugs to fix for engineers to help them get started. Maybe something like http://wiki.documentfoundation.org/Easy_Hacks&lt;br /&gt;
* lbt: if we can complete the &amp;quot;build for Fremantle on the OBS&amp;quot; then I think we can start to attract maemo users to a new build system&lt;br /&gt;
* qgil: Talk to existing device owners and put together a plan for better engaging those users as MeeGo contributors&lt;br /&gt;
* alterego: Make the N900 adaptation easier for users aka wrap up the complex faff with sd cards and console so that people pop in a card and have meego a few minutes later&lt;br /&gt;
* lbt: &amp;quot;building a QML application for your Ideapad&amp;quot; tutorial&lt;br /&gt;
* DawnFoster / qgil: Revamp the CO task lists &amp;amp; break them down into manageable chunks&lt;br /&gt;
&lt;br /&gt;
=== Inactive Tasks ===&lt;br /&gt;
&lt;br /&gt;
Inactive tasks include all other work that we would someday like to do, but that is not currently being worked on. &lt;br /&gt;
&lt;br /&gt;
Anyone can add a task to see if someone else picks it up. Please click on the button &amp;quot;Your signature with codestamp&amp;quot; at the end of your proposed task to keep a record of who made each proposal when.&lt;br /&gt;
&lt;br /&gt;
'''To claim an inactive task'''&lt;br /&gt;
* Add your task to the list if it is not already in the list below.&lt;br /&gt;
* If an owner is already listed, contact the current owner to get a current status update and see if you can take it over or help them complete it.&lt;br /&gt;
* Start a discussion on [http://lists.meego.com/listinfo/meego-community meego-community] to get feedback about your idea. &lt;br /&gt;
** Make sure that people agree that this task should be completed.&lt;br /&gt;
** Get general agreement on your approach&lt;br /&gt;
** Learn more and get suggestions&lt;br /&gt;
* If you want to proceed:&lt;br /&gt;
** Create a wiki page or bug report for status (see examples from the active task list).&lt;br /&gt;
** Move it to the Active Task list.&lt;br /&gt;
&lt;br /&gt;
'''Inactive Task List'''&lt;br /&gt;
&lt;br /&gt;
* Put together a better incentive / reward structure for volunteer participants - t-shirts for people completing certain tasks, etc. &lt;br /&gt;
* [[Single sign-on|SSO]] decision - needs clarification.&lt;br /&gt;
* [http://bugs.meego.com/show_bug.cgi?id=12682 MeeGo jobs] - combine with http://jobs.linux.com&lt;br /&gt;
* MeeGo marketplace - combine with http://store.linux.com&lt;br /&gt;
* Project Management (recommend Bugzilla integration; see [https://wiki.mozilla.org/Bugzilla:Addons#Project_management_software_integration PM Options].&lt;br /&gt;
* MeeGo document templates - priority on OpenOffice.org &amp;amp; MS Office presentation slides.&lt;br /&gt;
* Something along the lines of http://djangopeople.net/ (note that although that implementation has job-market features the idea is to have an easy-access &amp;quot;Who's Who&amp;quot;)&lt;br /&gt;
* List activities for which rankings of MeeGo users will be provided (see [[reputation]] page for ongoing list)&lt;br /&gt;
* Agreement on 'Should meego.com offer mailing lists to open source community projects?' --[[User:Qgil|Qgil]] 04:15, 20 May 2010 (UTC)&lt;br /&gt;
* Agreement on 'Should meego.com offer a bug tracker tool to open source community projects?' --[[User:Qgil|Qgil]] 04:36, 20 May 2010 (UTC)&lt;br /&gt;
* [http://bugs.meego.com/show_bug.cgi?id=3641 MeeGo Press Kit] --[[User:Qgil|Qgil]] 22:42, 3 August 2010 (UTC)&lt;br /&gt;
* [[Community Office/Marketing/Meego.com 1.2 update|meego.com 1.2 update]] - [http://meego.com/users/qgil Quim Gil]?&lt;br /&gt;
* [[Marketing/Materials|MeeGo &amp;quot;vanilla&amp;quot; marketing materials]] - [http://meego.com/users/texrat Randall Arnold]&lt;br /&gt;
* [[Marketing/Materials/MeeGo_Slogans|MeeGo slogans]] - [http://meego.com/users/texrat Randall Arnold]&lt;br /&gt;
* Consolidate [[Local MeeGo Networks]] - [http://meego.com/users/qgil Quim Gil] (happy to hand this over)&lt;br /&gt;
* Guidelines for [[Community Office/Marketing/Regional MeeGo Summits|Regional MeeGo Summits]] - [[User:Kyber|Kyber]]&lt;br /&gt;
* [[MeeGo vs Android]] for ODMs - Dave Neary&lt;br /&gt;
* [[Qt across MeeGo &amp;amp; Symbian]] for app developers - [http://meego.com/users/sivan Sivan Greenberg]&lt;br /&gt;
* [[Community Store plan]] - (Non-Intel / non-Nokia) Who? &lt;br /&gt;
* [[ARM|The ARM community loves MeeGo]] - Who?&lt;br /&gt;
* [[Handset manufacturers love MeeGo]] - Who?&lt;br /&gt;
* [[iOS to MeeGo Porting Guide]] - Who?&lt;br /&gt;
* [[Android to MeeGo Porting Guide]] - Who?&lt;br /&gt;
* [[Desktop Linux to MeeGo Porting Guide]] - Who?&lt;br /&gt;
* [[MeeGo vs Ubuntu]] - Who?  -- is this actually the &amp;quot;Why MeeGo?&amp;quot; question?  --[[User:Texrat|Texrat]] 15:42, 8 December 2010 (UTC)&lt;br /&gt;
* [[Common_Calendar]] - Who?&lt;br /&gt;
* [[Events/DiY|MeeGo @ Events DiY]] - Who?&lt;br /&gt;
* [[Meegons|MeeGo Avatar Generator]] - Physalis&lt;br /&gt;
* [[MAPS2011|MeeGo 'Summer of Code' program]] - Who?&lt;br /&gt;
* [[Community_Office/Marketing/About Openness|About Openness]], what it is and why is good - Who?&lt;br /&gt;
* [[Community_Office/Marketing/University Collaboration|University Collaboration]] - Who?&lt;br /&gt;
* Policy for Team:* areas on the Community OBS (see Fathi Bhoudra and Matti Airas too) - Who?&lt;br /&gt;
* [http://bugs.meego.com/show_bug.cgi?id=12060 Process missing for meego.com localized websites] - Who?&lt;br /&gt;
* Your proposal.&lt;br /&gt;
&lt;br /&gt;
== How to contribute ==&lt;br /&gt;
&lt;br /&gt;
See the Process section above for current approved work and proposed tasks. You might also find this guide for [[Contributing to MeeGo]] helpful.&lt;br /&gt;
&lt;br /&gt;
== History ==&lt;br /&gt;
The creation of the Community working group was approved by the Technical Steering Group on March 24, 2010. See the [http://trac.tspre.org/meetbot/meego-meeting/2010/meego-meeting.2010-03-24-19.58.html meeting minutes] for more details.&lt;br /&gt;
&lt;br /&gt;
There was a first [[Community_website_meeting_2010_2_24|Community website meeting]] on February 24, 2010. &lt;br /&gt;
&lt;br /&gt;
The role of working groups in the MeeGo project are explained at http://meego.com/about/governance.&lt;/div&gt;</summary>
		<author><name>Texrat</name></author>	</entry>

	<entry>
		<id>http://wiki.meego.com/Community_Office/Community_device_program</id>
		<title>Community Office/Community device program</title>
		<link rel="alternate" type="text/html" href="http://wiki.meego.com/Community_Office/Community_device_program"/>
				<updated>2011-06-26T21:17:20Z</updated>
		
		<summary type="html">&lt;p&gt;Texrat: /* Program Goal */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This page describes the goal, attributes and requirements for a community device program.  Please feel free to discuss further on the [http://lists.meego.com/listinfo/meego-community meego-community list].&lt;br /&gt;
&lt;br /&gt;
If you are looking for the actual on-line application, it is [https://meego.com/community/device-program  located here].&lt;br /&gt;
= Program Goal =&lt;br /&gt;
&lt;br /&gt;
The vision for this program is to put together a framework that makes it very easy for &lt;br /&gt;
anyone to contribute devices and have them go to the most qualified community members in exchange for some commitment to do something cool with the device (attributed to [[User:Dawnfoster|Dawn Foster]]).&lt;br /&gt;
&lt;br /&gt;
== Description ==&lt;br /&gt;
&lt;br /&gt;
The Community Device Program is a way for community members to get devices that they can use for MeeGo work. Devices will be distributed to the most qualified community members in exchange for the commitment to do something cool with the device. Hardware manufacturers can [https://meego.com/node/add/development-device submit a request] to distribute a device to become part of this program.&lt;br /&gt;
&lt;br /&gt;
= Definitions =&lt;br /&gt;
&lt;br /&gt;
== Platform or Device Champion ==&lt;br /&gt;
&lt;br /&gt;
Any community member passionate enough to act as a focal point for platforms or individual devices.  That means researching, blogging, presenting, forum posting, leading discussions on email lists, and any similar highly visible activity in the community space.  Platform or device champions need not be a subject matter expert or developer but should always be willing to help find one.  Note that a Champion may or not be a Recipient.&lt;br /&gt;
&lt;br /&gt;
== Device Provider ==&lt;br /&gt;
&lt;br /&gt;
Any entity participating in the program, at their own expense, with the agreed goal of getting MeeGo-capable devices into the hands of eligible MeeGo community members.  Some criteria:&lt;br /&gt;
 &lt;br /&gt;
* Devices may be gifted, discounted or loaned (at provider's discretion)&lt;br /&gt;
* Development boards, consumer devices (release status determined by provider; may require separate NDA)&lt;br /&gt;
* Devices requiring legal paperwork for release need to be made available directly from the company providing them and not through the Linux Foundation MeeGo device program&lt;br /&gt;
&lt;br /&gt;
Device Provider program details can be found on pages linked in the [[#Platforms.2FDevices|Platforms/Devices]] section.&lt;br /&gt;
&lt;br /&gt;
== Device Recipient ==&lt;br /&gt;
&lt;br /&gt;
Anyone receiving a device from a Provider.&lt;br /&gt;
&lt;br /&gt;
= Program Design and Documentation =&lt;br /&gt;
&lt;br /&gt;
The data model, workflows, forms and other aspects of the device program are described [[/Design_and_Documentation|on this page]].&lt;br /&gt;
&lt;br /&gt;
= Policies and Processes =&lt;br /&gt;
&lt;br /&gt;
== Responsibilities ==&lt;br /&gt;
=== Recipient Eligibility and Responsibilities ===&lt;br /&gt;
* Confirm that you have asked your employer for a device (if applicable), and been turned down.&lt;br /&gt;
* Demonstrate a clear and compelling purpose for the device requested.&lt;br /&gt;
* Agree to use the device for the purpose stated in your application.&lt;br /&gt;
* Agree to publicly communicate (blog/tweet/present/etc) about your experience with the device.&lt;br /&gt;
* Comply with any vendor-specific requirements (may include shipping restrictions to certain countries).&lt;br /&gt;
* Responsible for any import taxes, fees or other expenses.&lt;br /&gt;
* Member in good standing in MeeGo Community (defined by [[Community_guidelines|Community Guidelines]])&lt;br /&gt;
* Provide a valid shipping address, phone number, email address, project name and project URL (the latter can point to ''any'' sort of web page describing the project).&lt;br /&gt;
* Exhibit willingness to share unused devices.&lt;br /&gt;
&lt;br /&gt;
=== MeeGo / LF Responsibilities ===&lt;br /&gt;
* Drive the process for selecting recipients.&lt;br /&gt;
* Provide an application form for people to use.&lt;br /&gt;
* Provide vendor with a list of names, shipping addresses, phone numbers, email addresses and project URLs.&lt;br /&gt;
&lt;br /&gt;
=== Device Provider Responsibilities ===&lt;br /&gt;
* Provider will handle all shipping of systems including any relevant paperwork required.&lt;br /&gt;
* Provider will provide system specifications, number of systems available and deadlines.&lt;br /&gt;
* Provider will provide a list of any additional recipient requirements in addition to the ones stated above.&lt;br /&gt;
* Provider is responsible for all costs associated with providing and shipping the devices.&lt;br /&gt;
&lt;br /&gt;
Device providers can submit devices [https://meego.com/node/add/development-device here].&lt;br /&gt;
&lt;br /&gt;
== Approval Committee ==&lt;br /&gt;
&lt;br /&gt;
Regulars:&lt;br /&gt;
* [[User:Texrat|Randall Arnold]] (Community Device Program Lead)&lt;br /&gt;
* Brian Warner (Linux Foundation Rep)&lt;br /&gt;
* [[User:Dawnfoster|Dawn Foster]] (MeeGo Community Office Rep)&lt;br /&gt;
&lt;br /&gt;
Note that device providers may elect to be part of the MeeGo approval process as well.&lt;br /&gt;
&lt;br /&gt;
== Selection Criteria ==&lt;br /&gt;
* Intended use should be innovative, substantial and well-documented.&lt;br /&gt;
* Intended use should be appropriate and practical for device granted.&lt;br /&gt;
* Looking for a balance of uses for each device (not all one type of primary use).&lt;br /&gt;
* Past contributions to a relevant project may be part of the decision process.  Note that this information shall be kept confidential by the program team.&lt;br /&gt;
* It is important that device awards are not limited to a constant set of contributors.  Prior receipt of a gifted or loaned device would be considered for your future applications.  This may or may not apply to discounted devices.&lt;br /&gt;
&lt;br /&gt;
=== Suggestions ===&lt;br /&gt;
Judges will be looking for truly novel yet practical applications for provided devices.  Filling an obvious gap in the MeeGo ecosystem will help your chances.  Dream big, but have a solid plan for fulfilling it!&lt;br /&gt;
&lt;br /&gt;
We appreciate your understanding that there are a limited number of devices and not all requests can be granted. &lt;br /&gt;
&lt;br /&gt;
We also kindly ask that if/when you no longer need the device, you transfer it to another MeeGo community member or team who can use it.&lt;br /&gt;
&lt;br /&gt;
== On-line Application ==&lt;br /&gt;
&lt;br /&gt;
Use the form [https://meego.com/community/device-program provided here] to submit your request.&lt;br /&gt;
&lt;br /&gt;
= Platforms/Devices =&lt;br /&gt;
&lt;br /&gt;
Following are the MeeGo platforms and devices addressed by the program.  You can find examples of devices running MeeGo [[Devices|here]], and an area to propose devices at the bottom of this page.  Proposal submission tracking is located [[/Contact_Table|here]].&lt;br /&gt;
&lt;br /&gt;
== Netbooks ==&lt;br /&gt;
&lt;br /&gt;
TBD&lt;br /&gt;
&lt;br /&gt;
== Entry-level Desktops ==&lt;br /&gt;
&lt;br /&gt;
Not planned at this time&lt;br /&gt;
&lt;br /&gt;
== Nettops ==&lt;br /&gt;
&lt;br /&gt;
TBD&lt;br /&gt;
&lt;br /&gt;
== Tablet Computers ==&lt;br /&gt;
&lt;br /&gt;
=== ExoPC ===&lt;br /&gt;
:Provider(s): [[/Intel|Intel]]&lt;br /&gt;
&lt;br /&gt;
== Mobile Computers/Handsets ==&lt;br /&gt;
&lt;br /&gt;
=== Nokia N950 (as &amp;quot;Nokia N9 Devkit&amp;quot;) ===&lt;br /&gt;
:Provider(s): [[/Nokia|Nokia]]&lt;br /&gt;
&lt;br /&gt;
== In-Vehicle Infotainment (IVI) Systems ==&lt;br /&gt;
Platform Champion(s): Nathan Willis&lt;br /&gt;
&lt;br /&gt;
== Smart TV/Connected TV ==&lt;br /&gt;
&lt;br /&gt;
TBD&lt;br /&gt;
&lt;br /&gt;
== IP TV Boxes ==&lt;br /&gt;
&lt;br /&gt;
TBD&lt;br /&gt;
&lt;br /&gt;
== Development Devices ==&lt;br /&gt;
&lt;br /&gt;
=== Beagleboard ===&lt;br /&gt;
:Champion(s): Till Harbaum, Jan-Simon Möller&lt;br /&gt;
:Provider(s): [[/Beagleboard|Beagleboard]]&lt;br /&gt;
&lt;br /&gt;
=== Pandaboard ===&lt;br /&gt;
:Champion(s): [[User:texrat|Randall Arnold]]&lt;br /&gt;
:Provider(s): [[/Texas_Instruments|Texas Instruments]]&lt;br /&gt;
&lt;br /&gt;
==Other Embedded Systems ==&lt;br /&gt;
&lt;br /&gt;
TBD&lt;br /&gt;
&lt;br /&gt;
= Device Proposals =&lt;br /&gt;
&lt;br /&gt;
Feel free to add possible devices (with providers) and information here:&lt;br /&gt;
&lt;br /&gt;
* [http://www.pcmag.com/article2/0,2817,2386151,00.asp Asus EeePC X101 netbook]&lt;br /&gt;
* [http://www.noteslate.com/ noteslate] (submitted by Gary Birkett/lcuk)&lt;br /&gt;
* [http://intellicom.se/linux_oem_hardware.cfm Intellicom Netbiter OEM hardware]&lt;br /&gt;
* [http://www.fujitsu.com/hk/news/pr/fpcap_20110211.html Fujitsu LIFEBOOK MH330] with [http://www.linpus.com/news/2011/03/23.html Linpus Lite for MeeGo]&lt;br /&gt;
* [http://www.czctech.com/en/productView.asp?id=82 CZC Tech P10T]&lt;br /&gt;
&lt;br /&gt;
[[/Contact_Table|This page]] is being used to manage proposals.&lt;/div&gt;</summary>
		<author><name>Texrat</name></author>	</entry>

	<entry>
		<id>http://wiki.meego.com/Community_Office/Community_device_program</id>
		<title>Community Office/Community device program</title>
		<link rel="alternate" type="text/html" href="http://wiki.meego.com/Community_Office/Community_device_program"/>
				<updated>2011-06-26T21:15:47Z</updated>
		
		<summary type="html">&lt;p&gt;Texrat: /* Description */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This page describes the goal, attributes and requirements for a community device program.  Please feel free to discuss further on the [http://lists.meego.com/listinfo/meego-community meego-community list].&lt;br /&gt;
&lt;br /&gt;
If you are looking for the actual on-line application, it is [https://meego.com/community/device-program  located here].&lt;br /&gt;
= Program Goal =&lt;br /&gt;
&lt;br /&gt;
The vision for this program is to put together a framework that makes it very easy for &lt;br /&gt;
anyone to contribute devices and have them go to the most qualified community members &lt;br /&gt;
in exchange for some commitment to do something cool with the device (attributed to Dawn Foster).&lt;br /&gt;
&lt;br /&gt;
== Description ==&lt;br /&gt;
&lt;br /&gt;
The Community Device Program is a way for community members to get devices that they can use for MeeGo work. Devices will be distributed to the most qualified community members in exchange for the commitment to do something cool with the device. Hardware manufacturers can [https://meego.com/node/add/development-device submit a request] to distribute a device to become part of this program.&lt;br /&gt;
&lt;br /&gt;
= Definitions =&lt;br /&gt;
&lt;br /&gt;
== Platform or Device Champion ==&lt;br /&gt;
&lt;br /&gt;
Any community member passionate enough to act as a focal point for platforms or individual devices.  That means researching, blogging, presenting, forum posting, leading discussions on email lists, and any similar highly visible activity in the community space.  Platform or device champions need not be a subject matter expert or developer but should always be willing to help find one.  Note that a Champion may or not be a Recipient.&lt;br /&gt;
&lt;br /&gt;
== Device Provider ==&lt;br /&gt;
&lt;br /&gt;
Any entity participating in the program, at their own expense, with the agreed goal of getting MeeGo-capable devices into the hands of eligible MeeGo community members.  Some criteria:&lt;br /&gt;
 &lt;br /&gt;
* Devices may be gifted, discounted or loaned (at provider's discretion)&lt;br /&gt;
* Development boards, consumer devices (release status determined by provider; may require separate NDA)&lt;br /&gt;
* Devices requiring legal paperwork for release need to be made available directly from the company providing them and not through the Linux Foundation MeeGo device program&lt;br /&gt;
&lt;br /&gt;
Device Provider program details can be found on pages linked in the [[#Platforms.2FDevices|Platforms/Devices]] section.&lt;br /&gt;
&lt;br /&gt;
== Device Recipient ==&lt;br /&gt;
&lt;br /&gt;
Anyone receiving a device from a Provider.&lt;br /&gt;
&lt;br /&gt;
= Program Design and Documentation =&lt;br /&gt;
&lt;br /&gt;
The data model, workflows, forms and other aspects of the device program are described [[/Design_and_Documentation|on this page]].&lt;br /&gt;
&lt;br /&gt;
= Policies and Processes =&lt;br /&gt;
&lt;br /&gt;
== Responsibilities ==&lt;br /&gt;
=== Recipient Eligibility and Responsibilities ===&lt;br /&gt;
* Confirm that you have asked your employer for a device (if applicable), and been turned down.&lt;br /&gt;
* Demonstrate a clear and compelling purpose for the device requested.&lt;br /&gt;
* Agree to use the device for the purpose stated in your application.&lt;br /&gt;
* Agree to publicly communicate (blog/tweet/present/etc) about your experience with the device.&lt;br /&gt;
* Comply with any vendor-specific requirements (may include shipping restrictions to certain countries).&lt;br /&gt;
* Responsible for any import taxes, fees or other expenses.&lt;br /&gt;
* Member in good standing in MeeGo Community (defined by [[Community_guidelines|Community Guidelines]])&lt;br /&gt;
* Provide a valid shipping address, phone number, email address, project name and project URL (the latter can point to ''any'' sort of web page describing the project).&lt;br /&gt;
* Exhibit willingness to share unused devices.&lt;br /&gt;
&lt;br /&gt;
=== MeeGo / LF Responsibilities ===&lt;br /&gt;
* Drive the process for selecting recipients.&lt;br /&gt;
* Provide an application form for people to use.&lt;br /&gt;
* Provide vendor with a list of names, shipping addresses, phone numbers, email addresses and project URLs.&lt;br /&gt;
&lt;br /&gt;
=== Device Provider Responsibilities ===&lt;br /&gt;
* Provider will handle all shipping of systems including any relevant paperwork required.&lt;br /&gt;
* Provider will provide system specifications, number of systems available and deadlines.&lt;br /&gt;
* Provider will provide a list of any additional recipient requirements in addition to the ones stated above.&lt;br /&gt;
* Provider is responsible for all costs associated with providing and shipping the devices.&lt;br /&gt;
&lt;br /&gt;
Device providers can submit devices [https://meego.com/node/add/development-device here].&lt;br /&gt;
&lt;br /&gt;
== Approval Committee ==&lt;br /&gt;
&lt;br /&gt;
Regulars:&lt;br /&gt;
* [[User:Texrat|Randall Arnold]] (Community Device Program Lead)&lt;br /&gt;
* Brian Warner (Linux Foundation Rep)&lt;br /&gt;
* [[User:Dawnfoster|Dawn Foster]] (MeeGo Community Office Rep)&lt;br /&gt;
&lt;br /&gt;
Note that device providers may elect to be part of the MeeGo approval process as well.&lt;br /&gt;
&lt;br /&gt;
== Selection Criteria ==&lt;br /&gt;
* Intended use should be innovative, substantial and well-documented.&lt;br /&gt;
* Intended use should be appropriate and practical for device granted.&lt;br /&gt;
* Looking for a balance of uses for each device (not all one type of primary use).&lt;br /&gt;
* Past contributions to a relevant project may be part of the decision process.  Note that this information shall be kept confidential by the program team.&lt;br /&gt;
* It is important that device awards are not limited to a constant set of contributors.  Prior receipt of a gifted or loaned device would be considered for your future applications.  This may or may not apply to discounted devices.&lt;br /&gt;
&lt;br /&gt;
=== Suggestions ===&lt;br /&gt;
Judges will be looking for truly novel yet practical applications for provided devices.  Filling an obvious gap in the MeeGo ecosystem will help your chances.  Dream big, but have a solid plan for fulfilling it!&lt;br /&gt;
&lt;br /&gt;
We appreciate your understanding that there are a limited number of devices and not all requests can be granted. &lt;br /&gt;
&lt;br /&gt;
We also kindly ask that if/when you no longer need the device, you transfer it to another MeeGo community member or team who can use it.&lt;br /&gt;
&lt;br /&gt;
== On-line Application ==&lt;br /&gt;
&lt;br /&gt;
Use the form [https://meego.com/community/device-program provided here] to submit your request.&lt;br /&gt;
&lt;br /&gt;
= Platforms/Devices =&lt;br /&gt;
&lt;br /&gt;
Following are the MeeGo platforms and devices addressed by the program.  You can find examples of devices running MeeGo [[Devices|here]], and an area to propose devices at the bottom of this page.  Proposal submission tracking is located [[/Contact_Table|here]].&lt;br /&gt;
&lt;br /&gt;
== Netbooks ==&lt;br /&gt;
&lt;br /&gt;
TBD&lt;br /&gt;
&lt;br /&gt;
== Entry-level Desktops ==&lt;br /&gt;
&lt;br /&gt;
Not planned at this time&lt;br /&gt;
&lt;br /&gt;
== Nettops ==&lt;br /&gt;
&lt;br /&gt;
TBD&lt;br /&gt;
&lt;br /&gt;
== Tablet Computers ==&lt;br /&gt;
&lt;br /&gt;
=== ExoPC ===&lt;br /&gt;
:Provider(s): [[/Intel|Intel]]&lt;br /&gt;
&lt;br /&gt;
== Mobile Computers/Handsets ==&lt;br /&gt;
&lt;br /&gt;
=== Nokia N950 (as &amp;quot;Nokia N9 Devkit&amp;quot;) ===&lt;br /&gt;
:Provider(s): [[/Nokia|Nokia]]&lt;br /&gt;
&lt;br /&gt;
== In-Vehicle Infotainment (IVI) Systems ==&lt;br /&gt;
Platform Champion(s): Nathan Willis&lt;br /&gt;
&lt;br /&gt;
== Smart TV/Connected TV ==&lt;br /&gt;
&lt;br /&gt;
TBD&lt;br /&gt;
&lt;br /&gt;
== IP TV Boxes ==&lt;br /&gt;
&lt;br /&gt;
TBD&lt;br /&gt;
&lt;br /&gt;
== Development Devices ==&lt;br /&gt;
&lt;br /&gt;
=== Beagleboard ===&lt;br /&gt;
:Champion(s): Till Harbaum, Jan-Simon Möller&lt;br /&gt;
:Provider(s): [[/Beagleboard|Beagleboard]]&lt;br /&gt;
&lt;br /&gt;
=== Pandaboard ===&lt;br /&gt;
:Champion(s): [[User:texrat|Randall Arnold]]&lt;br /&gt;
:Provider(s): [[/Texas_Instruments|Texas Instruments]]&lt;br /&gt;
&lt;br /&gt;
==Other Embedded Systems ==&lt;br /&gt;
&lt;br /&gt;
TBD&lt;br /&gt;
&lt;br /&gt;
= Device Proposals =&lt;br /&gt;
&lt;br /&gt;
Feel free to add possible devices (with providers) and information here:&lt;br /&gt;
&lt;br /&gt;
* [http://www.pcmag.com/article2/0,2817,2386151,00.asp Asus EeePC X101 netbook]&lt;br /&gt;
* [http://www.noteslate.com/ noteslate] (submitted by Gary Birkett/lcuk)&lt;br /&gt;
* [http://intellicom.se/linux_oem_hardware.cfm Intellicom Netbiter OEM hardware]&lt;br /&gt;
* [http://www.fujitsu.com/hk/news/pr/fpcap_20110211.html Fujitsu LIFEBOOK MH330] with [http://www.linpus.com/news/2011/03/23.html Linpus Lite for MeeGo]&lt;br /&gt;
* [http://www.czctech.com/en/productView.asp?id=82 CZC Tech P10T]&lt;br /&gt;
&lt;br /&gt;
[[/Contact_Table|This page]] is being used to manage proposals.&lt;/div&gt;</summary>
		<author><name>Texrat</name></author>	</entry>

	<entry>
		<id>http://wiki.meego.com/Community_Office/Community_device_program</id>
		<title>Community Office/Community device program</title>
		<link rel="alternate" type="text/html" href="http://wiki.meego.com/Community_Office/Community_device_program"/>
				<updated>2011-06-26T19:42:32Z</updated>
		
		<summary type="html">&lt;p&gt;Texrat: /* Recipient Eligibility and Responsibilities */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This page describes the goal, attributes and requirements for a community device program.  Please feel free to discuss further on the [http://lists.meego.com/listinfo/meego-community meego-community list].&lt;br /&gt;
&lt;br /&gt;
If you are looking for the actual on-line application, it is [https://meego.com/community/device-program  located here].&lt;br /&gt;
= Program Goal =&lt;br /&gt;
&lt;br /&gt;
The vision for this program is to put together a framework that makes it very easy for &lt;br /&gt;
anyone to contribute devices and have them go to the most qualified community members &lt;br /&gt;
in exchange for some commitment to do something cool with the device (attributed to Dawn Foster).&lt;br /&gt;
&lt;br /&gt;
== Description ==&lt;br /&gt;
&lt;br /&gt;
The Community Device Program is a way for community members to get devices that they can use for MeeGo work. Devices will be distributed to the most qualified community members &lt;br /&gt;
in exchange for the commitment to do something cool with the device. Hardware manufacturers can submit a request to distribute a device to become part of this program.&lt;br /&gt;
&lt;br /&gt;
= Definitions =&lt;br /&gt;
&lt;br /&gt;
== Platform or Device Champion ==&lt;br /&gt;
&lt;br /&gt;
Any community member passionate enough to act as a focal point for platforms or individual devices.  That means researching, blogging, presenting, forum posting, leading discussions on email lists, and any similar highly visible activity in the community space.  Platform or device champions need not be a subject matter expert or developer but should always be willing to help find one.  Note that a Champion may or not be a Recipient.&lt;br /&gt;
&lt;br /&gt;
== Device Provider ==&lt;br /&gt;
&lt;br /&gt;
Any entity participating in the program, at their own expense, with the agreed goal of getting MeeGo-capable devices into the hands of eligible MeeGo community members.  Some criteria:&lt;br /&gt;
 &lt;br /&gt;
* Devices may be gifted, discounted or loaned (at provider's discretion)&lt;br /&gt;
* Development boards, consumer devices (release status determined by provider; may require separate NDA)&lt;br /&gt;
* Devices requiring legal paperwork for release need to be made available directly from the company providing them and not through the Linux Foundation MeeGo device program&lt;br /&gt;
&lt;br /&gt;
Device Provider program details can be found on pages linked in the [[#Platforms.2FDevices|Platforms/Devices]] section.&lt;br /&gt;
&lt;br /&gt;
== Device Recipient ==&lt;br /&gt;
&lt;br /&gt;
Anyone receiving a device from a Provider.&lt;br /&gt;
&lt;br /&gt;
= Program Design and Documentation =&lt;br /&gt;
&lt;br /&gt;
The data model, workflows, forms and other aspects of the device program are described [[/Design_and_Documentation|on this page]].&lt;br /&gt;
&lt;br /&gt;
= Policies and Processes =&lt;br /&gt;
&lt;br /&gt;
== Responsibilities ==&lt;br /&gt;
=== Recipient Eligibility and Responsibilities ===&lt;br /&gt;
* Confirm that you have asked your employer for a device (if applicable), and been turned down.&lt;br /&gt;
* Demonstrate a clear and compelling purpose for the device requested.&lt;br /&gt;
* Agree to use the device for the purpose stated in your application.&lt;br /&gt;
* Agree to publicly communicate (blog/tweet/present/etc) about your experience with the device.&lt;br /&gt;
* Comply with any vendor-specific requirements (may include shipping restrictions to certain countries).&lt;br /&gt;
* Responsible for any import taxes, fees or other expenses.&lt;br /&gt;
* Member in good standing in MeeGo Community (defined by [[Community_guidelines|Community Guidelines]])&lt;br /&gt;
* Provide a valid shipping address, phone number, email address, project name and project URL (the latter can point to ''any'' sort of web page describing the project).&lt;br /&gt;
* Exhibit willingness to share unused devices.&lt;br /&gt;
&lt;br /&gt;
=== MeeGo / LF Responsibilities ===&lt;br /&gt;
* Drive the process for selecting recipients.&lt;br /&gt;
* Provide an application form for people to use.&lt;br /&gt;
* Provide vendor with a list of names, shipping addresses, phone numbers, email addresses and project URLs.&lt;br /&gt;
&lt;br /&gt;
=== Device Provider Responsibilities ===&lt;br /&gt;
* Provider will handle all shipping of systems including any relevant paperwork required.&lt;br /&gt;
* Provider will provide system specifications, number of systems available and deadlines.&lt;br /&gt;
* Provider will provide a list of any additional recipient requirements in addition to the ones stated above.&lt;br /&gt;
* Provider is responsible for all costs associated with providing and shipping the devices.&lt;br /&gt;
&lt;br /&gt;
Device providers can submit devices [https://meego.com/node/add/development-device here].&lt;br /&gt;
&lt;br /&gt;
== Approval Committee ==&lt;br /&gt;
&lt;br /&gt;
Regulars:&lt;br /&gt;
* [[User:Texrat|Randall Arnold]] (Community Device Program Lead)&lt;br /&gt;
* Brian Warner (Linux Foundation Rep)&lt;br /&gt;
* [[User:Dawnfoster|Dawn Foster]] (MeeGo Community Office Rep)&lt;br /&gt;
&lt;br /&gt;
Note that device providers may elect to be part of the MeeGo approval process as well.&lt;br /&gt;
&lt;br /&gt;
== Selection Criteria ==&lt;br /&gt;
* Intended use should be innovative, substantial and well-documented.&lt;br /&gt;
* Intended use should be appropriate and practical for device granted.&lt;br /&gt;
* Looking for a balance of uses for each device (not all one type of primary use).&lt;br /&gt;
* Past contributions to a relevant project may be part of the decision process.  Note that this information shall be kept confidential by the program team.&lt;br /&gt;
* It is important that device awards are not limited to a constant set of contributors.  Prior receipt of a gifted or loaned device would be considered for your future applications.  This may or may not apply to discounted devices.&lt;br /&gt;
&lt;br /&gt;
=== Suggestions ===&lt;br /&gt;
Judges will be looking for truly novel yet practical applications for provided devices.  Filling an obvious gap in the MeeGo ecosystem will help your chances.  Dream big, but have a solid plan for fulfilling it!&lt;br /&gt;
&lt;br /&gt;
We appreciate your understanding that there are a limited number of devices and not all requests can be granted. &lt;br /&gt;
&lt;br /&gt;
We also kindly ask that if/when you no longer need the device, you transfer it to another MeeGo community member or team who can use it.&lt;br /&gt;
&lt;br /&gt;
== On-line Application ==&lt;br /&gt;
&lt;br /&gt;
Use the form [https://meego.com/community/device-program provided here] to submit your request.&lt;br /&gt;
&lt;br /&gt;
= Platforms/Devices =&lt;br /&gt;
&lt;br /&gt;
Following are the MeeGo platforms and devices addressed by the program.  You can find examples of devices running MeeGo [[Devices|here]], and an area to propose devices at the bottom of this page.  Proposal submission tracking is located [[/Contact_Table|here]].&lt;br /&gt;
&lt;br /&gt;
== Netbooks ==&lt;br /&gt;
&lt;br /&gt;
TBD&lt;br /&gt;
&lt;br /&gt;
== Entry-level Desktops ==&lt;br /&gt;
&lt;br /&gt;
Not planned at this time&lt;br /&gt;
&lt;br /&gt;
== Nettops ==&lt;br /&gt;
&lt;br /&gt;
TBD&lt;br /&gt;
&lt;br /&gt;
== Tablet Computers ==&lt;br /&gt;
&lt;br /&gt;
=== ExoPC ===&lt;br /&gt;
:Provider(s): [[/Intel|Intel]]&lt;br /&gt;
&lt;br /&gt;
== Mobile Computers/Handsets ==&lt;br /&gt;
&lt;br /&gt;
=== Nokia N950 (as &amp;quot;Nokia N9 Devkit&amp;quot;) ===&lt;br /&gt;
:Provider(s): [[/Nokia|Nokia]]&lt;br /&gt;
&lt;br /&gt;
== In-Vehicle Infotainment (IVI) Systems ==&lt;br /&gt;
Platform Champion(s): Nathan Willis&lt;br /&gt;
&lt;br /&gt;
== Smart TV/Connected TV ==&lt;br /&gt;
&lt;br /&gt;
TBD&lt;br /&gt;
&lt;br /&gt;
== IP TV Boxes ==&lt;br /&gt;
&lt;br /&gt;
TBD&lt;br /&gt;
&lt;br /&gt;
== Development Devices ==&lt;br /&gt;
&lt;br /&gt;
=== Beagleboard ===&lt;br /&gt;
:Champion(s): Till Harbaum, Jan-Simon Möller&lt;br /&gt;
:Provider(s): [[/Beagleboard|Beagleboard]]&lt;br /&gt;
&lt;br /&gt;
=== Pandaboard ===&lt;br /&gt;
:Champion(s): [[User:texrat|Randall Arnold]]&lt;br /&gt;
:Provider(s): [[/Texas_Instruments|Texas Instruments]]&lt;br /&gt;
&lt;br /&gt;
==Other Embedded Systems ==&lt;br /&gt;
&lt;br /&gt;
TBD&lt;br /&gt;
&lt;br /&gt;
= Device Proposals =&lt;br /&gt;
&lt;br /&gt;
Feel free to add possible devices (with providers) and information here:&lt;br /&gt;
&lt;br /&gt;
* [http://www.pcmag.com/article2/0,2817,2386151,00.asp Asus EeePC X101 netbook]&lt;br /&gt;
* [http://www.noteslate.com/ noteslate] (submitted by Gary Birkett/lcuk)&lt;br /&gt;
* [http://intellicom.se/linux_oem_hardware.cfm Intellicom Netbiter OEM hardware]&lt;br /&gt;
* [http://www.fujitsu.com/hk/news/pr/fpcap_20110211.html Fujitsu LIFEBOOK MH330] with [http://www.linpus.com/news/2011/03/23.html Linpus Lite for MeeGo]&lt;br /&gt;
* [http://www.czctech.com/en/productView.asp?id=82 CZC Tech P10T]&lt;br /&gt;
&lt;br /&gt;
[[/Contact_Table|This page]] is being used to manage proposals.&lt;/div&gt;</summary>
		<author><name>Texrat</name></author>	</entry>

	<entry>
		<id>http://wiki.meego.com/Community_Office/Community_device_program</id>
		<title>Community Office/Community device program</title>
		<link rel="alternate" type="text/html" href="http://wiki.meego.com/Community_Office/Community_device_program"/>
				<updated>2011-06-26T19:42:07Z</updated>
		
		<summary type="html">&lt;p&gt;Texrat: /* Recipient Eligibility and Responsibilities */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This page describes the goal, attributes and requirements for a community device program.  Please feel free to discuss further on the [http://lists.meego.com/listinfo/meego-community meego-community list].&lt;br /&gt;
&lt;br /&gt;
If you are looking for the actual on-line application, it is [https://meego.com/community/device-program  located here].&lt;br /&gt;
= Program Goal =&lt;br /&gt;
&lt;br /&gt;
The vision for this program is to put together a framework that makes it very easy for &lt;br /&gt;
anyone to contribute devices and have them go to the most qualified community members &lt;br /&gt;
in exchange for some commitment to do something cool with the device (attributed to Dawn Foster).&lt;br /&gt;
&lt;br /&gt;
== Description ==&lt;br /&gt;
&lt;br /&gt;
The Community Device Program is a way for community members to get devices that they can use for MeeGo work. Devices will be distributed to the most qualified community members &lt;br /&gt;
in exchange for the commitment to do something cool with the device. Hardware manufacturers can submit a request to distribute a device to become part of this program.&lt;br /&gt;
&lt;br /&gt;
= Definitions =&lt;br /&gt;
&lt;br /&gt;
== Platform or Device Champion ==&lt;br /&gt;
&lt;br /&gt;
Any community member passionate enough to act as a focal point for platforms or individual devices.  That means researching, blogging, presenting, forum posting, leading discussions on email lists, and any similar highly visible activity in the community space.  Platform or device champions need not be a subject matter expert or developer but should always be willing to help find one.  Note that a Champion may or not be a Recipient.&lt;br /&gt;
&lt;br /&gt;
== Device Provider ==&lt;br /&gt;
&lt;br /&gt;
Any entity participating in the program, at their own expense, with the agreed goal of getting MeeGo-capable devices into the hands of eligible MeeGo community members.  Some criteria:&lt;br /&gt;
 &lt;br /&gt;
* Devices may be gifted, discounted or loaned (at provider's discretion)&lt;br /&gt;
* Development boards, consumer devices (release status determined by provider; may require separate NDA)&lt;br /&gt;
* Devices requiring legal paperwork for release need to be made available directly from the company providing them and not through the Linux Foundation MeeGo device program&lt;br /&gt;
&lt;br /&gt;
Device Provider program details can be found on pages linked in the [[#Platforms.2FDevices|Platforms/Devices]] section.&lt;br /&gt;
&lt;br /&gt;
== Device Recipient ==&lt;br /&gt;
&lt;br /&gt;
Anyone receiving a device from a Provider.&lt;br /&gt;
&lt;br /&gt;
= Program Design and Documentation =&lt;br /&gt;
&lt;br /&gt;
The data model, workflows, forms and other aspects of the device program are described [[/Design_and_Documentation|on this page]].&lt;br /&gt;
&lt;br /&gt;
= Policies and Processes =&lt;br /&gt;
&lt;br /&gt;
== Responsibilities ==&lt;br /&gt;
=== Recipient Eligibility and Responsibilities ===&lt;br /&gt;
* Confirm that you have asked your employer for a device (if applicable), and been turned down.&lt;br /&gt;
* Demonstrate a clear and compelling purpose for the device requested.&lt;br /&gt;
* Agree to use the device for the purpose stated in your application.&lt;br /&gt;
* Agree to publicly communicate (blog/tweet/present/etc) about your experience with the device.&lt;br /&gt;
* Comply with any vendor-specific requirements (may include shipping restrictions to certain countries).&lt;br /&gt;
* Responsible for any import taxes, fees or other expenses.&lt;br /&gt;
* Member in good standing in MeeGo Community (defined by [[Community_guidelines|Community Guidelines]])&lt;br /&gt;
* Provide a valid shipping address, phone number, project name and project URL (the latter can point to ''any'' sort of web page describing the project).&lt;br /&gt;
* Exhibit willingness to share unused devices.&lt;br /&gt;
&lt;br /&gt;
=== MeeGo / LF Responsibilities ===&lt;br /&gt;
* Drive the process for selecting recipients.&lt;br /&gt;
* Provide an application form for people to use.&lt;br /&gt;
* Provide vendor with a list of names, shipping addresses, phone numbers, email addresses and project URLs.&lt;br /&gt;
&lt;br /&gt;
=== Device Provider Responsibilities ===&lt;br /&gt;
* Provider will handle all shipping of systems including any relevant paperwork required.&lt;br /&gt;
* Provider will provide system specifications, number of systems available and deadlines.&lt;br /&gt;
* Provider will provide a list of any additional recipient requirements in addition to the ones stated above.&lt;br /&gt;
* Provider is responsible for all costs associated with providing and shipping the devices.&lt;br /&gt;
&lt;br /&gt;
Device providers can submit devices [https://meego.com/node/add/development-device here].&lt;br /&gt;
&lt;br /&gt;
== Approval Committee ==&lt;br /&gt;
&lt;br /&gt;
Regulars:&lt;br /&gt;
* [[User:Texrat|Randall Arnold]] (Community Device Program Lead)&lt;br /&gt;
* Brian Warner (Linux Foundation Rep)&lt;br /&gt;
* [[User:Dawnfoster|Dawn Foster]] (MeeGo Community Office Rep)&lt;br /&gt;
&lt;br /&gt;
Note that device providers may elect to be part of the MeeGo approval process as well.&lt;br /&gt;
&lt;br /&gt;
== Selection Criteria ==&lt;br /&gt;
* Intended use should be innovative, substantial and well-documented.&lt;br /&gt;
* Intended use should be appropriate and practical for device granted.&lt;br /&gt;
* Looking for a balance of uses for each device (not all one type of primary use).&lt;br /&gt;
* Past contributions to a relevant project may be part of the decision process.  Note that this information shall be kept confidential by the program team.&lt;br /&gt;
* It is important that device awards are not limited to a constant set of contributors.  Prior receipt of a gifted or loaned device would be considered for your future applications.  This may or may not apply to discounted devices.&lt;br /&gt;
&lt;br /&gt;
=== Suggestions ===&lt;br /&gt;
Judges will be looking for truly novel yet practical applications for provided devices.  Filling an obvious gap in the MeeGo ecosystem will help your chances.  Dream big, but have a solid plan for fulfilling it!&lt;br /&gt;
&lt;br /&gt;
We appreciate your understanding that there are a limited number of devices and not all requests can be granted. &lt;br /&gt;
&lt;br /&gt;
We also kindly ask that if/when you no longer need the device, you transfer it to another MeeGo community member or team who can use it.&lt;br /&gt;
&lt;br /&gt;
== On-line Application ==&lt;br /&gt;
&lt;br /&gt;
Use the form [https://meego.com/community/device-program provided here] to submit your request.&lt;br /&gt;
&lt;br /&gt;
= Platforms/Devices =&lt;br /&gt;
&lt;br /&gt;
Following are the MeeGo platforms and devices addressed by the program.  You can find examples of devices running MeeGo [[Devices|here]], and an area to propose devices at the bottom of this page.  Proposal submission tracking is located [[/Contact_Table|here]].&lt;br /&gt;
&lt;br /&gt;
== Netbooks ==&lt;br /&gt;
&lt;br /&gt;
TBD&lt;br /&gt;
&lt;br /&gt;
== Entry-level Desktops ==&lt;br /&gt;
&lt;br /&gt;
Not planned at this time&lt;br /&gt;
&lt;br /&gt;
== Nettops ==&lt;br /&gt;
&lt;br /&gt;
TBD&lt;br /&gt;
&lt;br /&gt;
== Tablet Computers ==&lt;br /&gt;
&lt;br /&gt;
=== ExoPC ===&lt;br /&gt;
:Provider(s): [[/Intel|Intel]]&lt;br /&gt;
&lt;br /&gt;
== Mobile Computers/Handsets ==&lt;br /&gt;
&lt;br /&gt;
=== Nokia N950 (as &amp;quot;Nokia N9 Devkit&amp;quot;) ===&lt;br /&gt;
:Provider(s): [[/Nokia|Nokia]]&lt;br /&gt;
&lt;br /&gt;
== In-Vehicle Infotainment (IVI) Systems ==&lt;br /&gt;
Platform Champion(s): Nathan Willis&lt;br /&gt;
&lt;br /&gt;
== Smart TV/Connected TV ==&lt;br /&gt;
&lt;br /&gt;
TBD&lt;br /&gt;
&lt;br /&gt;
== IP TV Boxes ==&lt;br /&gt;
&lt;br /&gt;
TBD&lt;br /&gt;
&lt;br /&gt;
== Development Devices ==&lt;br /&gt;
&lt;br /&gt;
=== Beagleboard ===&lt;br /&gt;
:Champion(s): Till Harbaum, Jan-Simon Möller&lt;br /&gt;
:Provider(s): [[/Beagleboard|Beagleboard]]&lt;br /&gt;
&lt;br /&gt;
=== Pandaboard ===&lt;br /&gt;
:Champion(s): [[User:texrat|Randall Arnold]]&lt;br /&gt;
:Provider(s): [[/Texas_Instruments|Texas Instruments]]&lt;br /&gt;
&lt;br /&gt;
==Other Embedded Systems ==&lt;br /&gt;
&lt;br /&gt;
TBD&lt;br /&gt;
&lt;br /&gt;
= Device Proposals =&lt;br /&gt;
&lt;br /&gt;
Feel free to add possible devices (with providers) and information here:&lt;br /&gt;
&lt;br /&gt;
* [http://www.pcmag.com/article2/0,2817,2386151,00.asp Asus EeePC X101 netbook]&lt;br /&gt;
* [http://www.noteslate.com/ noteslate] (submitted by Gary Birkett/lcuk)&lt;br /&gt;
* [http://intellicom.se/linux_oem_hardware.cfm Intellicom Netbiter OEM hardware]&lt;br /&gt;
* [http://www.fujitsu.com/hk/news/pr/fpcap_20110211.html Fujitsu LIFEBOOK MH330] with [http://www.linpus.com/news/2011/03/23.html Linpus Lite for MeeGo]&lt;br /&gt;
* [http://www.czctech.com/en/productView.asp?id=82 CZC Tech P10T]&lt;br /&gt;
&lt;br /&gt;
[[/Contact_Table|This page]] is being used to manage proposals.&lt;/div&gt;</summary>
		<author><name>Texrat</name></author>	</entry>

	<entry>
		<id>http://wiki.meego.com/Community_Office/Community_device_program</id>
		<title>Community Office/Community device program</title>
		<link rel="alternate" type="text/html" href="http://wiki.meego.com/Community_Office/Community_device_program"/>
				<updated>2011-06-26T19:41:05Z</updated>
		
		<summary type="html">&lt;p&gt;Texrat: /* Recipient Eligibility and Responsibilities */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This page describes the goal, attributes and requirements for a community device program.  Please feel free to discuss further on the [http://lists.meego.com/listinfo/meego-community meego-community list].&lt;br /&gt;
&lt;br /&gt;
If you are looking for the actual on-line application, it is [https://meego.com/community/device-program  located here].&lt;br /&gt;
= Program Goal =&lt;br /&gt;
&lt;br /&gt;
The vision for this program is to put together a framework that makes it very easy for &lt;br /&gt;
anyone to contribute devices and have them go to the most qualified community members &lt;br /&gt;
in exchange for some commitment to do something cool with the device (attributed to Dawn Foster).&lt;br /&gt;
&lt;br /&gt;
== Description ==&lt;br /&gt;
&lt;br /&gt;
The Community Device Program is a way for community members to get devices that they can use for MeeGo work. Devices will be distributed to the most qualified community members &lt;br /&gt;
in exchange for the commitment to do something cool with the device. Hardware manufacturers can submit a request to distribute a device to become part of this program.&lt;br /&gt;
&lt;br /&gt;
= Definitions =&lt;br /&gt;
&lt;br /&gt;
== Platform or Device Champion ==&lt;br /&gt;
&lt;br /&gt;
Any community member passionate enough to act as a focal point for platforms or individual devices.  That means researching, blogging, presenting, forum posting, leading discussions on email lists, and any similar highly visible activity in the community space.  Platform or device champions need not be a subject matter expert or developer but should always be willing to help find one.  Note that a Champion may or not be a Recipient.&lt;br /&gt;
&lt;br /&gt;
== Device Provider ==&lt;br /&gt;
&lt;br /&gt;
Any entity participating in the program, at their own expense, with the agreed goal of getting MeeGo-capable devices into the hands of eligible MeeGo community members.  Some criteria:&lt;br /&gt;
 &lt;br /&gt;
* Devices may be gifted, discounted or loaned (at provider's discretion)&lt;br /&gt;
* Development boards, consumer devices (release status determined by provider; may require separate NDA)&lt;br /&gt;
* Devices requiring legal paperwork for release need to be made available directly from the company providing them and not through the Linux Foundation MeeGo device program&lt;br /&gt;
&lt;br /&gt;
Device Provider program details can be found on pages linked in the [[#Platforms.2FDevices|Platforms/Devices]] section.&lt;br /&gt;
&lt;br /&gt;
== Device Recipient ==&lt;br /&gt;
&lt;br /&gt;
Anyone receiving a device from a Provider.&lt;br /&gt;
&lt;br /&gt;
= Program Design and Documentation =&lt;br /&gt;
&lt;br /&gt;
The data model, workflows, forms and other aspects of the device program are described [[/Design_and_Documentation|on this page]].&lt;br /&gt;
&lt;br /&gt;
= Policies and Processes =&lt;br /&gt;
&lt;br /&gt;
== Responsibilities ==&lt;br /&gt;
=== Recipient Eligibility and Responsibilities ===&lt;br /&gt;
* Confirm that you have asked your employer for a device (if applicable), and been turned down.&lt;br /&gt;
* Demonstrate a clear and compelling purpose for the device requested.&lt;br /&gt;
* Agree to use the device for the purpose stated in your application.&lt;br /&gt;
* Agree to publicly communicate (blog/tweet/present/etc) about your experience with the device.&lt;br /&gt;
* Comply with any vendor-specific requirements (may include shipping restrictions to certain countries).&lt;br /&gt;
* Responsible for any import taxes, fees or other expenses.&lt;br /&gt;
* Member in good standing in MeeGo Community (defined by [[Community_guidelines|Community Guidelines]])&lt;br /&gt;
* Provide a valid shipping address, phone number and project URL (the latter can point to ''any'' sort of web page describing the project).&lt;br /&gt;
* Exhibit willingness to share unused devices.&lt;br /&gt;
&lt;br /&gt;
=== MeeGo / LF Responsibilities ===&lt;br /&gt;
* Drive the process for selecting recipients.&lt;br /&gt;
* Provide an application form for people to use.&lt;br /&gt;
* Provide vendor with a list of names, shipping addresses, phone numbers, email addresses and project URLs.&lt;br /&gt;
&lt;br /&gt;
=== Device Provider Responsibilities ===&lt;br /&gt;
* Provider will handle all shipping of systems including any relevant paperwork required.&lt;br /&gt;
* Provider will provide system specifications, number of systems available and deadlines.&lt;br /&gt;
* Provider will provide a list of any additional recipient requirements in addition to the ones stated above.&lt;br /&gt;
* Provider is responsible for all costs associated with providing and shipping the devices.&lt;br /&gt;
&lt;br /&gt;
Device providers can submit devices [https://meego.com/node/add/development-device here].&lt;br /&gt;
&lt;br /&gt;
== Approval Committee ==&lt;br /&gt;
&lt;br /&gt;
Regulars:&lt;br /&gt;
* [[User:Texrat|Randall Arnold]] (Community Device Program Lead)&lt;br /&gt;
* Brian Warner (Linux Foundation Rep)&lt;br /&gt;
* [[User:Dawnfoster|Dawn Foster]] (MeeGo Community Office Rep)&lt;br /&gt;
&lt;br /&gt;
Note that device providers may elect to be part of the MeeGo approval process as well.&lt;br /&gt;
&lt;br /&gt;
== Selection Criteria ==&lt;br /&gt;
* Intended use should be innovative, substantial and well-documented.&lt;br /&gt;
* Intended use should be appropriate and practical for device granted.&lt;br /&gt;
* Looking for a balance of uses for each device (not all one type of primary use).&lt;br /&gt;
* Past contributions to a relevant project may be part of the decision process.  Note that this information shall be kept confidential by the program team.&lt;br /&gt;
* It is important that device awards are not limited to a constant set of contributors.  Prior receipt of a gifted or loaned device would be considered for your future applications.  This may or may not apply to discounted devices.&lt;br /&gt;
&lt;br /&gt;
=== Suggestions ===&lt;br /&gt;
Judges will be looking for truly novel yet practical applications for provided devices.  Filling an obvious gap in the MeeGo ecosystem will help your chances.  Dream big, but have a solid plan for fulfilling it!&lt;br /&gt;
&lt;br /&gt;
We appreciate your understanding that there are a limited number of devices and not all requests can be granted. &lt;br /&gt;
&lt;br /&gt;
We also kindly ask that if/when you no longer need the device, you transfer it to another MeeGo community member or team who can use it.&lt;br /&gt;
&lt;br /&gt;
== On-line Application ==&lt;br /&gt;
&lt;br /&gt;
Use the form [https://meego.com/community/device-program provided here] to submit your request.&lt;br /&gt;
&lt;br /&gt;
= Platforms/Devices =&lt;br /&gt;
&lt;br /&gt;
Following are the MeeGo platforms and devices addressed by the program.  You can find examples of devices running MeeGo [[Devices|here]], and an area to propose devices at the bottom of this page.  Proposal submission tracking is located [[/Contact_Table|here]].&lt;br /&gt;
&lt;br /&gt;
== Netbooks ==&lt;br /&gt;
&lt;br /&gt;
TBD&lt;br /&gt;
&lt;br /&gt;
== Entry-level Desktops ==&lt;br /&gt;
&lt;br /&gt;
Not planned at this time&lt;br /&gt;
&lt;br /&gt;
== Nettops ==&lt;br /&gt;
&lt;br /&gt;
TBD&lt;br /&gt;
&lt;br /&gt;
== Tablet Computers ==&lt;br /&gt;
&lt;br /&gt;
=== ExoPC ===&lt;br /&gt;
:Provider(s): [[/Intel|Intel]]&lt;br /&gt;
&lt;br /&gt;
== Mobile Computers/Handsets ==&lt;br /&gt;
&lt;br /&gt;
=== Nokia N950 (as &amp;quot;Nokia N9 Devkit&amp;quot;) ===&lt;br /&gt;
:Provider(s): [[/Nokia|Nokia]]&lt;br /&gt;
&lt;br /&gt;
== In-Vehicle Infotainment (IVI) Systems ==&lt;br /&gt;
Platform Champion(s): Nathan Willis&lt;br /&gt;
&lt;br /&gt;
== Smart TV/Connected TV ==&lt;br /&gt;
&lt;br /&gt;
TBD&lt;br /&gt;
&lt;br /&gt;
== IP TV Boxes ==&lt;br /&gt;
&lt;br /&gt;
TBD&lt;br /&gt;
&lt;br /&gt;
== Development Devices ==&lt;br /&gt;
&lt;br /&gt;
=== Beagleboard ===&lt;br /&gt;
:Champion(s): Till Harbaum, Jan-Simon Möller&lt;br /&gt;
:Provider(s): [[/Beagleboard|Beagleboard]]&lt;br /&gt;
&lt;br /&gt;
=== Pandaboard ===&lt;br /&gt;
:Champion(s): [[User:texrat|Randall Arnold]]&lt;br /&gt;
:Provider(s): [[/Texas_Instruments|Texas Instruments]]&lt;br /&gt;
&lt;br /&gt;
==Other Embedded Systems ==&lt;br /&gt;
&lt;br /&gt;
TBD&lt;br /&gt;
&lt;br /&gt;
= Device Proposals =&lt;br /&gt;
&lt;br /&gt;
Feel free to add possible devices (with providers) and information here:&lt;br /&gt;
&lt;br /&gt;
* [http://www.pcmag.com/article2/0,2817,2386151,00.asp Asus EeePC X101 netbook]&lt;br /&gt;
* [http://www.noteslate.com/ noteslate] (submitted by Gary Birkett/lcuk)&lt;br /&gt;
* [http://intellicom.se/linux_oem_hardware.cfm Intellicom Netbiter OEM hardware]&lt;br /&gt;
* [http://www.fujitsu.com/hk/news/pr/fpcap_20110211.html Fujitsu LIFEBOOK MH330] with [http://www.linpus.com/news/2011/03/23.html Linpus Lite for MeeGo]&lt;br /&gt;
* [http://www.czctech.com/en/productView.asp?id=82 CZC Tech P10T]&lt;br /&gt;
&lt;br /&gt;
[[/Contact_Table|This page]] is being used to manage proposals.&lt;/div&gt;</summary>
		<author><name>Texrat</name></author>	</entry>

	<entry>
		<id>http://wiki.meego.com/Community_Office/Community_device_program</id>
		<title>Community Office/Community device program</title>
		<link rel="alternate" type="text/html" href="http://wiki.meego.com/Community_Office/Community_device_program"/>
				<updated>2011-06-26T19:40:17Z</updated>
		
		<summary type="html">&lt;p&gt;Texrat: /* Platform or Device Champion */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This page describes the goal, attributes and requirements for a community device program.  Please feel free to discuss further on the [http://lists.meego.com/listinfo/meego-community meego-community list].&lt;br /&gt;
&lt;br /&gt;
If you are looking for the actual on-line application, it is [https://meego.com/community/device-program  located here].&lt;br /&gt;
= Program Goal =&lt;br /&gt;
&lt;br /&gt;
The vision for this program is to put together a framework that makes it very easy for &lt;br /&gt;
anyone to contribute devices and have them go to the most qualified community members &lt;br /&gt;
in exchange for some commitment to do something cool with the device (attributed to Dawn Foster).&lt;br /&gt;
&lt;br /&gt;
== Description ==&lt;br /&gt;
&lt;br /&gt;
The Community Device Program is a way for community members to get devices that they can use for MeeGo work. Devices will be distributed to the most qualified community members &lt;br /&gt;
in exchange for the commitment to do something cool with the device. Hardware manufacturers can submit a request to distribute a device to become part of this program.&lt;br /&gt;
&lt;br /&gt;
= Definitions =&lt;br /&gt;
&lt;br /&gt;
== Platform or Device Champion ==&lt;br /&gt;
&lt;br /&gt;
Any community member passionate enough to act as a focal point for platforms or individual devices.  That means researching, blogging, presenting, forum posting, leading discussions on email lists, and any similar highly visible activity in the community space.  Platform or device champions need not be a subject matter expert or developer but should always be willing to help find one.  Note that a Champion may or not be a Recipient.&lt;br /&gt;
&lt;br /&gt;
== Device Provider ==&lt;br /&gt;
&lt;br /&gt;
Any entity participating in the program, at their own expense, with the agreed goal of getting MeeGo-capable devices into the hands of eligible MeeGo community members.  Some criteria:&lt;br /&gt;
 &lt;br /&gt;
* Devices may be gifted, discounted or loaned (at provider's discretion)&lt;br /&gt;
* Development boards, consumer devices (release status determined by provider; may require separate NDA)&lt;br /&gt;
* Devices requiring legal paperwork for release need to be made available directly from the company providing them and not through the Linux Foundation MeeGo device program&lt;br /&gt;
&lt;br /&gt;
Device Provider program details can be found on pages linked in the [[#Platforms.2FDevices|Platforms/Devices]] section.&lt;br /&gt;
&lt;br /&gt;
== Device Recipient ==&lt;br /&gt;
&lt;br /&gt;
Anyone receiving a device from a Provider.&lt;br /&gt;
&lt;br /&gt;
= Program Design and Documentation =&lt;br /&gt;
&lt;br /&gt;
The data model, workflows, forms and other aspects of the device program are described [[/Design_and_Documentation|on this page]].&lt;br /&gt;
&lt;br /&gt;
= Policies and Processes =&lt;br /&gt;
&lt;br /&gt;
== Responsibilities ==&lt;br /&gt;
=== Recipient Eligibility and Responsibilities ===&lt;br /&gt;
* Confirm that you have asked your employer for a device (if applicable), and been turned down.&lt;br /&gt;
* Demonstrate a clear and compelling purpose for the device requested.&lt;br /&gt;
* Agree to use the device for the purpose stated in your application.&lt;br /&gt;
* Agree to blog/tweet/present (publicly communicate) about your experience with the device.&lt;br /&gt;
* Comply with any vendor-specific requirements (may include shipping restrictions to certain countries).&lt;br /&gt;
* Responsible for any import taxes, fees or other expenses.&lt;br /&gt;
* Member in good standing in MeeGo Community (defined by [[Community_guidelines|Community Guidelines]])&lt;br /&gt;
* Provide a valid shipping address, phone number and project URL (the latter can point to ''any'' sort of web page describing the project).&lt;br /&gt;
* Exhibit willingness to share unused devices.&lt;br /&gt;
&lt;br /&gt;
=== MeeGo / LF Responsibilities ===&lt;br /&gt;
* Drive the process for selecting recipients.&lt;br /&gt;
* Provide an application form for people to use.&lt;br /&gt;
* Provide vendor with a list of names, shipping addresses, phone numbers, email addresses and project URLs.&lt;br /&gt;
&lt;br /&gt;
=== Device Provider Responsibilities ===&lt;br /&gt;
* Provider will handle all shipping of systems including any relevant paperwork required.&lt;br /&gt;
* Provider will provide system specifications, number of systems available and deadlines.&lt;br /&gt;
* Provider will provide a list of any additional recipient requirements in addition to the ones stated above.&lt;br /&gt;
* Provider is responsible for all costs associated with providing and shipping the devices.&lt;br /&gt;
&lt;br /&gt;
Device providers can submit devices [https://meego.com/node/add/development-device here].&lt;br /&gt;
&lt;br /&gt;
== Approval Committee ==&lt;br /&gt;
&lt;br /&gt;
Regulars:&lt;br /&gt;
* [[User:Texrat|Randall Arnold]] (Community Device Program Lead)&lt;br /&gt;
* Brian Warner (Linux Foundation Rep)&lt;br /&gt;
* [[User:Dawnfoster|Dawn Foster]] (MeeGo Community Office Rep)&lt;br /&gt;
&lt;br /&gt;
Note that device providers may elect to be part of the MeeGo approval process as well.&lt;br /&gt;
&lt;br /&gt;
== Selection Criteria ==&lt;br /&gt;
* Intended use should be innovative, substantial and well-documented.&lt;br /&gt;
* Intended use should be appropriate and practical for device granted.&lt;br /&gt;
* Looking for a balance of uses for each device (not all one type of primary use).&lt;br /&gt;
* Past contributions to a relevant project may be part of the decision process.  Note that this information shall be kept confidential by the program team.&lt;br /&gt;
* It is important that device awards are not limited to a constant set of contributors.  Prior receipt of a gifted or loaned device would be considered for your future applications.  This may or may not apply to discounted devices.&lt;br /&gt;
&lt;br /&gt;
=== Suggestions ===&lt;br /&gt;
Judges will be looking for truly novel yet practical applications for provided devices.  Filling an obvious gap in the MeeGo ecosystem will help your chances.  Dream big, but have a solid plan for fulfilling it!&lt;br /&gt;
&lt;br /&gt;
We appreciate your understanding that there are a limited number of devices and not all requests can be granted. &lt;br /&gt;
&lt;br /&gt;
We also kindly ask that if/when you no longer need the device, you transfer it to another MeeGo community member or team who can use it.&lt;br /&gt;
&lt;br /&gt;
== On-line Application ==&lt;br /&gt;
&lt;br /&gt;
Use the form [https://meego.com/community/device-program provided here] to submit your request.&lt;br /&gt;
&lt;br /&gt;
= Platforms/Devices =&lt;br /&gt;
&lt;br /&gt;
Following are the MeeGo platforms and devices addressed by the program.  You can find examples of devices running MeeGo [[Devices|here]], and an area to propose devices at the bottom of this page.  Proposal submission tracking is located [[/Contact_Table|here]].&lt;br /&gt;
&lt;br /&gt;
== Netbooks ==&lt;br /&gt;
&lt;br /&gt;
TBD&lt;br /&gt;
&lt;br /&gt;
== Entry-level Desktops ==&lt;br /&gt;
&lt;br /&gt;
Not planned at this time&lt;br /&gt;
&lt;br /&gt;
== Nettops ==&lt;br /&gt;
&lt;br /&gt;
TBD&lt;br /&gt;
&lt;br /&gt;
== Tablet Computers ==&lt;br /&gt;
&lt;br /&gt;
=== ExoPC ===&lt;br /&gt;
:Provider(s): [[/Intel|Intel]]&lt;br /&gt;
&lt;br /&gt;
== Mobile Computers/Handsets ==&lt;br /&gt;
&lt;br /&gt;
=== Nokia N950 (as &amp;quot;Nokia N9 Devkit&amp;quot;) ===&lt;br /&gt;
:Provider(s): [[/Nokia|Nokia]]&lt;br /&gt;
&lt;br /&gt;
== In-Vehicle Infotainment (IVI) Systems ==&lt;br /&gt;
Platform Champion(s): Nathan Willis&lt;br /&gt;
&lt;br /&gt;
== Smart TV/Connected TV ==&lt;br /&gt;
&lt;br /&gt;
TBD&lt;br /&gt;
&lt;br /&gt;
== IP TV Boxes ==&lt;br /&gt;
&lt;br /&gt;
TBD&lt;br /&gt;
&lt;br /&gt;
== Development Devices ==&lt;br /&gt;
&lt;br /&gt;
=== Beagleboard ===&lt;br /&gt;
:Champion(s): Till Harbaum, Jan-Simon Möller&lt;br /&gt;
:Provider(s): [[/Beagleboard|Beagleboard]]&lt;br /&gt;
&lt;br /&gt;
=== Pandaboard ===&lt;br /&gt;
:Champion(s): [[User:texrat|Randall Arnold]]&lt;br /&gt;
:Provider(s): [[/Texas_Instruments|Texas Instruments]]&lt;br /&gt;
&lt;br /&gt;
==Other Embedded Systems ==&lt;br /&gt;
&lt;br /&gt;
TBD&lt;br /&gt;
&lt;br /&gt;
= Device Proposals =&lt;br /&gt;
&lt;br /&gt;
Feel free to add possible devices (with providers) and information here:&lt;br /&gt;
&lt;br /&gt;
* [http://www.pcmag.com/article2/0,2817,2386151,00.asp Asus EeePC X101 netbook]&lt;br /&gt;
* [http://www.noteslate.com/ noteslate] (submitted by Gary Birkett/lcuk)&lt;br /&gt;
* [http://intellicom.se/linux_oem_hardware.cfm Intellicom Netbiter OEM hardware]&lt;br /&gt;
* [http://www.fujitsu.com/hk/news/pr/fpcap_20110211.html Fujitsu LIFEBOOK MH330] with [http://www.linpus.com/news/2011/03/23.html Linpus Lite for MeeGo]&lt;br /&gt;
* [http://www.czctech.com/en/productView.asp?id=82 CZC Tech P10T]&lt;br /&gt;
&lt;br /&gt;
[[/Contact_Table|This page]] is being used to manage proposals.&lt;/div&gt;</summary>
		<author><name>Texrat</name></author>	</entry>

	<entry>
		<id>http://wiki.meego.com/Community_Office/Community_device_program</id>
		<title>Community Office/Community device program</title>
		<link rel="alternate" type="text/html" href="http://wiki.meego.com/Community_Office/Community_device_program"/>
				<updated>2011-06-26T16:51:20Z</updated>
		
		<summary type="html">&lt;p&gt;Texrat: /* Selection Criteria */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This page describes the goal, attributes and requirements for a community device program.  Please feel free to discuss further on the [http://lists.meego.com/listinfo/meego-community meego-community list].&lt;br /&gt;
&lt;br /&gt;
If you are looking for the actual on-line application, it is [https://meego.com/community/device-program  located here].&lt;br /&gt;
= Program Goal =&lt;br /&gt;
&lt;br /&gt;
The vision for this program is to put together a framework that makes it very easy for &lt;br /&gt;
anyone to contribute devices and have them go to the most qualified community members &lt;br /&gt;
in exchange for some commitment to do something cool with the device (attributed to Dawn Foster).&lt;br /&gt;
&lt;br /&gt;
== Description ==&lt;br /&gt;
&lt;br /&gt;
The Community Device Program is a way for community members to get devices that they can use for MeeGo work. Devices will be distributed to the most qualified community members &lt;br /&gt;
in exchange for the commitment to do something cool with the device. Hardware manufacturers can submit a request to distribute a device to become part of this program.&lt;br /&gt;
&lt;br /&gt;
= Definitions =&lt;br /&gt;
&lt;br /&gt;
== Platform or Device Champion ==&lt;br /&gt;
&lt;br /&gt;
Any community member passionate enough to act as a focal point for devices.  That means researching, blogging, presenting, forum posting, leading discussions on email lists, and any similar highly visible activity in the community space.  Platform or device champions need not be a subject matter expert but should always be willing to help find one.  Champions can cover entire platform(s) or specific device(s).  Note that a Champion may or not be a Recipient.&lt;br /&gt;
&lt;br /&gt;
== Device Provider ==&lt;br /&gt;
&lt;br /&gt;
Any entity participating in the program, at their own expense, with the agreed goal of getting MeeGo-capable devices into the hands of eligible MeeGo community members.  Some criteria:&lt;br /&gt;
 &lt;br /&gt;
* Devices may be gifted, discounted or loaned (at provider's discretion)&lt;br /&gt;
* Development boards, consumer devices (release status determined by provider; may require separate NDA)&lt;br /&gt;
* Devices requiring legal paperwork for release need to be made available directly from the company providing them and not through the Linux Foundation MeeGo device program&lt;br /&gt;
&lt;br /&gt;
Device Provider program details can be found on pages linked in the [[#Platforms.2FDevices|Platforms/Devices]] section.&lt;br /&gt;
&lt;br /&gt;
== Device Recipient ==&lt;br /&gt;
&lt;br /&gt;
Anyone receiving a device from a Provider.&lt;br /&gt;
&lt;br /&gt;
= Program Design and Documentation =&lt;br /&gt;
&lt;br /&gt;
The data model, workflows, forms and other aspects of the device program are described [[/Design_and_Documentation|on this page]].&lt;br /&gt;
&lt;br /&gt;
= Policies and Processes =&lt;br /&gt;
&lt;br /&gt;
== Responsibilities ==&lt;br /&gt;
=== Recipient Eligibility and Responsibilities ===&lt;br /&gt;
* Confirm that you have asked your employer for a device (if applicable), and been turned down.&lt;br /&gt;
* Demonstrate a clear and compelling purpose for the device requested.&lt;br /&gt;
* Agree to use the device for the purpose stated in your application.&lt;br /&gt;
* Agree to blog/tweet/present (publicly communicate) about your experience with the device.&lt;br /&gt;
* Comply with any vendor-specific requirements (may include shipping restrictions to certain countries).&lt;br /&gt;
* Responsible for any import taxes, fees or other expenses.&lt;br /&gt;
* Member in good standing in MeeGo Community (defined by [[Community_guidelines|Community Guidelines]])&lt;br /&gt;
* Provide a valid shipping address, phone number and project URL (the latter can point to ''any'' sort of web page describing the project).&lt;br /&gt;
* Exhibit willingness to share unused devices.&lt;br /&gt;
&lt;br /&gt;
=== MeeGo / LF Responsibilities ===&lt;br /&gt;
* Drive the process for selecting recipients.&lt;br /&gt;
* Provide an application form for people to use.&lt;br /&gt;
* Provide vendor with a list of names, shipping addresses, phone numbers, email addresses and project URLs.&lt;br /&gt;
&lt;br /&gt;
=== Device Provider Responsibilities ===&lt;br /&gt;
* Provider will handle all shipping of systems including any relevant paperwork required.&lt;br /&gt;
* Provider will provide system specifications, number of systems available and deadlines.&lt;br /&gt;
* Provider will provide a list of any additional recipient requirements in addition to the ones stated above.&lt;br /&gt;
* Provider is responsible for all costs associated with providing and shipping the devices.&lt;br /&gt;
&lt;br /&gt;
Device providers can submit devices [https://meego.com/node/add/development-device here].&lt;br /&gt;
&lt;br /&gt;
== Approval Committee ==&lt;br /&gt;
&lt;br /&gt;
Regulars:&lt;br /&gt;
* [[User:Texrat|Randall Arnold]] (Community Device Program Lead)&lt;br /&gt;
* Brian Warner (Linux Foundation Rep)&lt;br /&gt;
* [[User:Dawnfoster|Dawn Foster]] (MeeGo Community Office Rep)&lt;br /&gt;
&lt;br /&gt;
Note that device providers may elect to be part of the MeeGo approval process as well.&lt;br /&gt;
&lt;br /&gt;
== Selection Criteria ==&lt;br /&gt;
* Intended use should be innovative, substantial and well-documented.&lt;br /&gt;
* Intended use should be appropriate and practical for device granted.&lt;br /&gt;
* Looking for a balance of uses for each device (not all one type of primary use).&lt;br /&gt;
* Past contributions to a relevant project may be part of the decision process.  Note that this information shall be kept confidential by the program team.&lt;br /&gt;
* It is important that device awards are not limited to a constant set of contributors.  Prior receipt of a gifted or loaned device would be considered for your future applications.  This may or may not apply to discounted devices.&lt;br /&gt;
&lt;br /&gt;
=== Suggestions ===&lt;br /&gt;
Judges will be looking for truly novel yet practical applications for provided devices.  Filling an obvious gap in the MeeGo ecosystem will help your chances.  Dream big, but have a solid plan for fulfilling it!&lt;br /&gt;
&lt;br /&gt;
We appreciate your understanding that there are a limited number of devices and not all requests can be granted. &lt;br /&gt;
&lt;br /&gt;
We also kindly ask that if/when you no longer need the device, you transfer it to another MeeGo community member or team who can use it.&lt;br /&gt;
&lt;br /&gt;
== On-line Application ==&lt;br /&gt;
&lt;br /&gt;
Use the form [https://meego.com/community/device-program provided here] to submit your request.&lt;br /&gt;
&lt;br /&gt;
= Platforms/Devices =&lt;br /&gt;
&lt;br /&gt;
Following are the MeeGo platforms and devices addressed by the program.  You can find examples of devices running MeeGo [[Devices|here]], and an area to propose devices at the bottom of this page.  Proposal submission tracking is located [[/Contact_Table|here]].&lt;br /&gt;
&lt;br /&gt;
== Netbooks ==&lt;br /&gt;
&lt;br /&gt;
TBD&lt;br /&gt;
&lt;br /&gt;
== Entry-level Desktops ==&lt;br /&gt;
&lt;br /&gt;
Not planned at this time&lt;br /&gt;
&lt;br /&gt;
== Nettops ==&lt;br /&gt;
&lt;br /&gt;
TBD&lt;br /&gt;
&lt;br /&gt;
== Tablet Computers ==&lt;br /&gt;
&lt;br /&gt;
=== ExoPC ===&lt;br /&gt;
:Provider(s): [[/Intel|Intel]]&lt;br /&gt;
&lt;br /&gt;
== Mobile Computers/Handsets ==&lt;br /&gt;
&lt;br /&gt;
=== Nokia N950 (as &amp;quot;Nokia N9 Devkit&amp;quot;) ===&lt;br /&gt;
:Provider(s): [[/Nokia|Nokia]]&lt;br /&gt;
&lt;br /&gt;
== In-Vehicle Infotainment (IVI) Systems ==&lt;br /&gt;
Platform Champion(s): Nathan Willis&lt;br /&gt;
&lt;br /&gt;
== Smart TV/Connected TV ==&lt;br /&gt;
&lt;br /&gt;
TBD&lt;br /&gt;
&lt;br /&gt;
== IP TV Boxes ==&lt;br /&gt;
&lt;br /&gt;
TBD&lt;br /&gt;
&lt;br /&gt;
== Development Devices ==&lt;br /&gt;
&lt;br /&gt;
=== Beagleboard ===&lt;br /&gt;
:Champion(s): Till Harbaum, Jan-Simon Möller&lt;br /&gt;
:Provider(s): [[/Beagleboard|Beagleboard]]&lt;br /&gt;
&lt;br /&gt;
=== Pandaboard ===&lt;br /&gt;
:Champion(s): [[User:texrat|Randall Arnold]]&lt;br /&gt;
:Provider(s): [[/Texas_Instruments|Texas Instruments]]&lt;br /&gt;
&lt;br /&gt;
==Other Embedded Systems ==&lt;br /&gt;
&lt;br /&gt;
TBD&lt;br /&gt;
&lt;br /&gt;
= Device Proposals =&lt;br /&gt;
&lt;br /&gt;
Feel free to add possible devices (with providers) and information here:&lt;br /&gt;
&lt;br /&gt;
* [http://www.pcmag.com/article2/0,2817,2386151,00.asp Asus EeePC X101 netbook]&lt;br /&gt;
* [http://www.noteslate.com/ noteslate] (submitted by Gary Birkett/lcuk)&lt;br /&gt;
* [http://intellicom.se/linux_oem_hardware.cfm Intellicom Netbiter OEM hardware]&lt;br /&gt;
* [http://www.fujitsu.com/hk/news/pr/fpcap_20110211.html Fujitsu LIFEBOOK MH330] with [http://www.linpus.com/news/2011/03/23.html Linpus Lite for MeeGo]&lt;br /&gt;
* [http://www.czctech.com/en/productView.asp?id=82 CZC Tech P10T]&lt;br /&gt;
&lt;br /&gt;
[[/Contact_Table|This page]] is being used to manage proposals.&lt;/div&gt;</summary>
		<author><name>Texrat</name></author>	</entry>

	<entry>
		<id>http://wiki.meego.com/Community_Office/Community_device_program</id>
		<title>Community Office/Community device program</title>
		<link rel="alternate" type="text/html" href="http://wiki.meego.com/Community_Office/Community_device_program"/>
				<updated>2011-06-26T16:50:30Z</updated>
		
		<summary type="html">&lt;p&gt;Texrat: /* Policies and Processes */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This page describes the goal, attributes and requirements for a community device program.  Please feel free to discuss further on the [http://lists.meego.com/listinfo/meego-community meego-community list].&lt;br /&gt;
&lt;br /&gt;
If you are looking for the actual on-line application, it is [https://meego.com/community/device-program  located here].&lt;br /&gt;
= Program Goal =&lt;br /&gt;
&lt;br /&gt;
The vision for this program is to put together a framework that makes it very easy for &lt;br /&gt;
anyone to contribute devices and have them go to the most qualified community members &lt;br /&gt;
in exchange for some commitment to do something cool with the device (attributed to Dawn Foster).&lt;br /&gt;
&lt;br /&gt;
== Description ==&lt;br /&gt;
&lt;br /&gt;
The Community Device Program is a way for community members to get devices that they can use for MeeGo work. Devices will be distributed to the most qualified community members &lt;br /&gt;
in exchange for the commitment to do something cool with the device. Hardware manufacturers can submit a request to distribute a device to become part of this program.&lt;br /&gt;
&lt;br /&gt;
= Definitions =&lt;br /&gt;
&lt;br /&gt;
== Platform or Device Champion ==&lt;br /&gt;
&lt;br /&gt;
Any community member passionate enough to act as a focal point for devices.  That means researching, blogging, presenting, forum posting, leading discussions on email lists, and any similar highly visible activity in the community space.  Platform or device champions need not be a subject matter expert but should always be willing to help find one.  Champions can cover entire platform(s) or specific device(s).  Note that a Champion may or not be a Recipient.&lt;br /&gt;
&lt;br /&gt;
== Device Provider ==&lt;br /&gt;
&lt;br /&gt;
Any entity participating in the program, at their own expense, with the agreed goal of getting MeeGo-capable devices into the hands of eligible MeeGo community members.  Some criteria:&lt;br /&gt;
 &lt;br /&gt;
* Devices may be gifted, discounted or loaned (at provider's discretion)&lt;br /&gt;
* Development boards, consumer devices (release status determined by provider; may require separate NDA)&lt;br /&gt;
* Devices requiring legal paperwork for release need to be made available directly from the company providing them and not through the Linux Foundation MeeGo device program&lt;br /&gt;
&lt;br /&gt;
Device Provider program details can be found on pages linked in the [[#Platforms.2FDevices|Platforms/Devices]] section.&lt;br /&gt;
&lt;br /&gt;
== Device Recipient ==&lt;br /&gt;
&lt;br /&gt;
Anyone receiving a device from a Provider.&lt;br /&gt;
&lt;br /&gt;
= Program Design and Documentation =&lt;br /&gt;
&lt;br /&gt;
The data model, workflows, forms and other aspects of the device program are described [[/Design_and_Documentation|on this page]].&lt;br /&gt;
&lt;br /&gt;
= Policies and Processes =&lt;br /&gt;
&lt;br /&gt;
== Responsibilities ==&lt;br /&gt;
=== Recipient Eligibility and Responsibilities ===&lt;br /&gt;
* Confirm that you have asked your employer for a device (if applicable), and been turned down.&lt;br /&gt;
* Demonstrate a clear and compelling purpose for the device requested.&lt;br /&gt;
* Agree to use the device for the purpose stated in your application.&lt;br /&gt;
* Agree to blog/tweet/present (publicly communicate) about your experience with the device.&lt;br /&gt;
* Comply with any vendor-specific requirements (may include shipping restrictions to certain countries).&lt;br /&gt;
* Responsible for any import taxes, fees or other expenses.&lt;br /&gt;
* Member in good standing in MeeGo Community (defined by [[Community_guidelines|Community Guidelines]])&lt;br /&gt;
* Provide a valid shipping address, phone number and project URL (the latter can point to ''any'' sort of web page describing the project).&lt;br /&gt;
* Exhibit willingness to share unused devices.&lt;br /&gt;
&lt;br /&gt;
=== MeeGo / LF Responsibilities ===&lt;br /&gt;
* Drive the process for selecting recipients.&lt;br /&gt;
* Provide an application form for people to use.&lt;br /&gt;
* Provide vendor with a list of names, shipping addresses, phone numbers, email addresses and project URLs.&lt;br /&gt;
&lt;br /&gt;
=== Device Provider Responsibilities ===&lt;br /&gt;
* Provider will handle all shipping of systems including any relevant paperwork required.&lt;br /&gt;
* Provider will provide system specifications, number of systems available and deadlines.&lt;br /&gt;
* Provider will provide a list of any additional recipient requirements in addition to the ones stated above.&lt;br /&gt;
* Provider is responsible for all costs associated with providing and shipping the devices.&lt;br /&gt;
&lt;br /&gt;
Device providers can submit devices [https://meego.com/node/add/development-device here].&lt;br /&gt;
&lt;br /&gt;
== Approval Committee ==&lt;br /&gt;
&lt;br /&gt;
Regulars:&lt;br /&gt;
* [[User:Texrat|Randall Arnold]] (Community Device Program Lead)&lt;br /&gt;
* Brian Warner (Linux Foundation Rep)&lt;br /&gt;
* [[User:Dawnfoster|Dawn Foster]] (MeeGo Community Office Rep)&lt;br /&gt;
&lt;br /&gt;
Note that device providers may elect to be part of the MeeGo approval process as well.&lt;br /&gt;
&lt;br /&gt;
== Selection Criteria ==&lt;br /&gt;
* Intended use should be innovative, substantial and well-documented.&lt;br /&gt;
* Intended use should be appropriate and practical for device granted.&lt;br /&gt;
* Looking for a balance of uses for each device (not all one type of primary use).&lt;br /&gt;
* Past contributions to a relevant project may be part of the decision process.&lt;br /&gt;
* It is important that device awards are not limited to a constant set of contributors.  Prior receipt of a gifted or loaned device would be considered for your future applications.  This may or may not apply to discounted devices.&lt;br /&gt;
&lt;br /&gt;
=== Suggestions ===&lt;br /&gt;
Judges will be looking for truly novel yet practical applications for provided devices.  Filling an obvious gap in the MeeGo ecosystem will help your chances.  Dream big, but have a solid plan for fulfilling it!&lt;br /&gt;
&lt;br /&gt;
We appreciate your understanding that there are a limited number of devices and not all requests can be granted. &lt;br /&gt;
&lt;br /&gt;
We also kindly ask that if/when you no longer need the device, you transfer it to another MeeGo community member or team who can use it.&lt;br /&gt;
&lt;br /&gt;
== On-line Application ==&lt;br /&gt;
&lt;br /&gt;
Use the form [https://meego.com/community/device-program provided here] to submit your request.&lt;br /&gt;
&lt;br /&gt;
= Platforms/Devices =&lt;br /&gt;
&lt;br /&gt;
Following are the MeeGo platforms and devices addressed by the program.  You can find examples of devices running MeeGo [[Devices|here]], and an area to propose devices at the bottom of this page.  Proposal submission tracking is located [[/Contact_Table|here]].&lt;br /&gt;
&lt;br /&gt;
== Netbooks ==&lt;br /&gt;
&lt;br /&gt;
TBD&lt;br /&gt;
&lt;br /&gt;
== Entry-level Desktops ==&lt;br /&gt;
&lt;br /&gt;
Not planned at this time&lt;br /&gt;
&lt;br /&gt;
== Nettops ==&lt;br /&gt;
&lt;br /&gt;
TBD&lt;br /&gt;
&lt;br /&gt;
== Tablet Computers ==&lt;br /&gt;
&lt;br /&gt;
=== ExoPC ===&lt;br /&gt;
:Provider(s): [[/Intel|Intel]]&lt;br /&gt;
&lt;br /&gt;
== Mobile Computers/Handsets ==&lt;br /&gt;
&lt;br /&gt;
=== Nokia N950 (as &amp;quot;Nokia N9 Devkit&amp;quot;) ===&lt;br /&gt;
:Provider(s): [[/Nokia|Nokia]]&lt;br /&gt;
&lt;br /&gt;
== In-Vehicle Infotainment (IVI) Systems ==&lt;br /&gt;
Platform Champion(s): Nathan Willis&lt;br /&gt;
&lt;br /&gt;
== Smart TV/Connected TV ==&lt;br /&gt;
&lt;br /&gt;
TBD&lt;br /&gt;
&lt;br /&gt;
== IP TV Boxes ==&lt;br /&gt;
&lt;br /&gt;
TBD&lt;br /&gt;
&lt;br /&gt;
== Development Devices ==&lt;br /&gt;
&lt;br /&gt;
=== Beagleboard ===&lt;br /&gt;
:Champion(s): Till Harbaum, Jan-Simon Möller&lt;br /&gt;
:Provider(s): [[/Beagleboard|Beagleboard]]&lt;br /&gt;
&lt;br /&gt;
=== Pandaboard ===&lt;br /&gt;
:Champion(s): [[User:texrat|Randall Arnold]]&lt;br /&gt;
:Provider(s): [[/Texas_Instruments|Texas Instruments]]&lt;br /&gt;
&lt;br /&gt;
==Other Embedded Systems ==&lt;br /&gt;
&lt;br /&gt;
TBD&lt;br /&gt;
&lt;br /&gt;
= Device Proposals =&lt;br /&gt;
&lt;br /&gt;
Feel free to add possible devices (with providers) and information here:&lt;br /&gt;
&lt;br /&gt;
* [http://www.pcmag.com/article2/0,2817,2386151,00.asp Asus EeePC X101 netbook]&lt;br /&gt;
* [http://www.noteslate.com/ noteslate] (submitted by Gary Birkett/lcuk)&lt;br /&gt;
* [http://intellicom.se/linux_oem_hardware.cfm Intellicom Netbiter OEM hardware]&lt;br /&gt;
* [http://www.fujitsu.com/hk/news/pr/fpcap_20110211.html Fujitsu LIFEBOOK MH330] with [http://www.linpus.com/news/2011/03/23.html Linpus Lite for MeeGo]&lt;br /&gt;
* [http://www.czctech.com/en/productView.asp?id=82 CZC Tech P10T]&lt;br /&gt;
&lt;br /&gt;
[[/Contact_Table|This page]] is being used to manage proposals.&lt;/div&gt;</summary>
		<author><name>Texrat</name></author>	</entry>

	<entry>
		<id>http://wiki.meego.com/Community_Office/Community_device_program</id>
		<title>Community Office/Community device program</title>
		<link rel="alternate" type="text/html" href="http://wiki.meego.com/Community_Office/Community_device_program"/>
				<updated>2011-06-26T16:49:36Z</updated>
		
		<summary type="html">&lt;p&gt;Texrat: /* Approval Committee */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This page describes the goal, attributes and requirements for a community device program.  Please feel free to discuss further on the [http://lists.meego.com/listinfo/meego-community meego-community list].&lt;br /&gt;
&lt;br /&gt;
If you are looking for the actual on-line application, it is [https://meego.com/community/device-program  located here].&lt;br /&gt;
= Program Goal =&lt;br /&gt;
&lt;br /&gt;
The vision for this program is to put together a framework that makes it very easy for &lt;br /&gt;
anyone to contribute devices and have them go to the most qualified community members &lt;br /&gt;
in exchange for some commitment to do something cool with the device (attributed to Dawn Foster).&lt;br /&gt;
&lt;br /&gt;
== Description ==&lt;br /&gt;
&lt;br /&gt;
The Community Device Program is a way for community members to get devices that they can use for MeeGo work. Devices will be distributed to the most qualified community members &lt;br /&gt;
in exchange for the commitment to do something cool with the device. Hardware manufacturers can submit a request to distribute a device to become part of this program.&lt;br /&gt;
&lt;br /&gt;
= Definitions =&lt;br /&gt;
&lt;br /&gt;
== Platform or Device Champion ==&lt;br /&gt;
&lt;br /&gt;
Any community member passionate enough to act as a focal point for devices.  That means researching, blogging, presenting, forum posting, leading discussions on email lists, and any similar highly visible activity in the community space.  Platform or device champions need not be a subject matter expert but should always be willing to help find one.  Champions can cover entire platform(s) or specific device(s).  Note that a Champion may or not be a Recipient.&lt;br /&gt;
&lt;br /&gt;
== Device Provider ==&lt;br /&gt;
&lt;br /&gt;
Any entity participating in the program, at their own expense, with the agreed goal of getting MeeGo-capable devices into the hands of eligible MeeGo community members.  Some criteria:&lt;br /&gt;
 &lt;br /&gt;
* Devices may be gifted, discounted or loaned (at provider's discretion)&lt;br /&gt;
* Development boards, consumer devices (release status determined by provider; may require separate NDA)&lt;br /&gt;
* Devices requiring legal paperwork for release need to be made available directly from the company providing them and not through the Linux Foundation MeeGo device program&lt;br /&gt;
&lt;br /&gt;
Device Provider program details can be found on pages linked in the [[#Platforms.2FDevices|Platforms/Devices]] section.&lt;br /&gt;
&lt;br /&gt;
== Device Recipient ==&lt;br /&gt;
&lt;br /&gt;
Anyone receiving a device from a Provider.&lt;br /&gt;
&lt;br /&gt;
= Program Design and Documentation =&lt;br /&gt;
&lt;br /&gt;
The data model, workflows, forms and other aspects of the device program are described [[/Design_and_Documentation|on this page]].&lt;br /&gt;
&lt;br /&gt;
= Policies and Processes =&lt;br /&gt;
&lt;br /&gt;
== Responsibilities ==&lt;br /&gt;
=== Recipient Eligibility and Responsibilities ===&lt;br /&gt;
* Confirm that you have asked your employer for a device (if applicable), and been turned down.&lt;br /&gt;
* Demonstrate a clear and compelling purpose for the device requested.&lt;br /&gt;
* Agree to use the device for the purpose stated in your application.&lt;br /&gt;
* Agree to blog/tweet/present (publicly communicate) about your experience with the device.&lt;br /&gt;
* Comply with any vendor-specific requirements (may include shipping restrictions to certain countries).&lt;br /&gt;
* Responsible for any import taxes, fees or other expenses.&lt;br /&gt;
* Member in good standing in MeeGo Community (defined by [[Community_guidelines|Community Guidelines]])&lt;br /&gt;
* Provide a valid shipping address, phone number and project URL (the latter can point to ''any'' sort of web page describing the project).&lt;br /&gt;
* Exhibit willingness to share unused devices.&lt;br /&gt;
&lt;br /&gt;
=== MeeGo / LF Responsibilities ===&lt;br /&gt;
* Drive the process for selecting recipients.&lt;br /&gt;
* Provide an application form for people to use.&lt;br /&gt;
* Provide vendor with a list of names, shipping addresses, phone numbers, email addresses and project URLs.&lt;br /&gt;
&lt;br /&gt;
=== Device Provider Responsibilities ===&lt;br /&gt;
* Provider will handle all shipping of systems including any relevant paperwork required.&lt;br /&gt;
* Provider will provide system specifications, number of systems available and deadlines.&lt;br /&gt;
* Provider will provide a list of any additional recipient requirements in addition to the ones stated above.&lt;br /&gt;
* Provider is responsible for all costs associated with providing and shipping the devices.&lt;br /&gt;
&lt;br /&gt;
Device providers can submit devices [https://meego.com/node/add/development-device here].&lt;br /&gt;
&lt;br /&gt;
== Approval Committee ==&lt;br /&gt;
&lt;br /&gt;
Regulars:&lt;br /&gt;
* [[User:Texrat|Randall Arnold]] (Community Device Program Lead)&lt;br /&gt;
* Brian Warner (Linux Foundation Rep)&lt;br /&gt;
* [[User:Dawnfoster|Dawn Foster]] (MeeGo Community Office Rep)&lt;br /&gt;
&lt;br /&gt;
Note that device providers may elect to be part of the MeeGo approval process as well.&lt;br /&gt;
&lt;br /&gt;
=== Suggestions ===&lt;br /&gt;
Judges will be looking for truly novel yet practical applications for provided devices.  Filling an obvious gap in the MeeGo ecosystem will help your chances.  Dream big, but have a solid plan for fulfilling it!&lt;br /&gt;
&lt;br /&gt;
== Selection Criteria ==&lt;br /&gt;
* Intended use should be innovative, substantial and well-documented.&lt;br /&gt;
* Intended use should be appropriate and practical for device granted.&lt;br /&gt;
* Looking for a balance of uses for each device (not all one type of primary use).&lt;br /&gt;
* Past contributions to a relevant project may be part of the decision process.&lt;br /&gt;
* It is important that device awards are not limited to a constant set of contributors.  Prior receipt of a gifted or loaned device would be considered for your future applications.  This may or may not apply to discounted devices.&lt;br /&gt;
&lt;br /&gt;
We appreciate your understanding that there are a limited number of devices and not all requests can be granted. &lt;br /&gt;
&lt;br /&gt;
We also kindly ask that if/when you no longer need the device, you transfer it to another MeeGo community member or team who can use it.&lt;br /&gt;
&lt;br /&gt;
== On-line Application ==&lt;br /&gt;
&lt;br /&gt;
Use the form [https://meego.com/community/device-program provided here] to submit your request.&lt;br /&gt;
&lt;br /&gt;
= Platforms/Devices =&lt;br /&gt;
&lt;br /&gt;
Following are the MeeGo platforms and devices addressed by the program.  You can find examples of devices running MeeGo [[Devices|here]], and an area to propose devices at the bottom of this page.  Proposal submission tracking is located [[/Contact_Table|here]].&lt;br /&gt;
&lt;br /&gt;
== Netbooks ==&lt;br /&gt;
&lt;br /&gt;
TBD&lt;br /&gt;
&lt;br /&gt;
== Entry-level Desktops ==&lt;br /&gt;
&lt;br /&gt;
Not planned at this time&lt;br /&gt;
&lt;br /&gt;
== Nettops ==&lt;br /&gt;
&lt;br /&gt;
TBD&lt;br /&gt;
&lt;br /&gt;
== Tablet Computers ==&lt;br /&gt;
&lt;br /&gt;
=== ExoPC ===&lt;br /&gt;
:Provider(s): [[/Intel|Intel]]&lt;br /&gt;
&lt;br /&gt;
== Mobile Computers/Handsets ==&lt;br /&gt;
&lt;br /&gt;
=== Nokia N950 (as &amp;quot;Nokia N9 Devkit&amp;quot;) ===&lt;br /&gt;
:Provider(s): [[/Nokia|Nokia]]&lt;br /&gt;
&lt;br /&gt;
== In-Vehicle Infotainment (IVI) Systems ==&lt;br /&gt;
Platform Champion(s): Nathan Willis&lt;br /&gt;
&lt;br /&gt;
== Smart TV/Connected TV ==&lt;br /&gt;
&lt;br /&gt;
TBD&lt;br /&gt;
&lt;br /&gt;
== IP TV Boxes ==&lt;br /&gt;
&lt;br /&gt;
TBD&lt;br /&gt;
&lt;br /&gt;
== Development Devices ==&lt;br /&gt;
&lt;br /&gt;
=== Beagleboard ===&lt;br /&gt;
:Champion(s): Till Harbaum, Jan-Simon Möller&lt;br /&gt;
:Provider(s): [[/Beagleboard|Beagleboard]]&lt;br /&gt;
&lt;br /&gt;
=== Pandaboard ===&lt;br /&gt;
:Champion(s): [[User:texrat|Randall Arnold]]&lt;br /&gt;
:Provider(s): [[/Texas_Instruments|Texas Instruments]]&lt;br /&gt;
&lt;br /&gt;
==Other Embedded Systems ==&lt;br /&gt;
&lt;br /&gt;
TBD&lt;br /&gt;
&lt;br /&gt;
= Device Proposals =&lt;br /&gt;
&lt;br /&gt;
Feel free to add possible devices (with providers) and information here:&lt;br /&gt;
&lt;br /&gt;
* [http://www.pcmag.com/article2/0,2817,2386151,00.asp Asus EeePC X101 netbook]&lt;br /&gt;
* [http://www.noteslate.com/ noteslate] (submitted by Gary Birkett/lcuk)&lt;br /&gt;
* [http://intellicom.se/linux_oem_hardware.cfm Intellicom Netbiter OEM hardware]&lt;br /&gt;
* [http://www.fujitsu.com/hk/news/pr/fpcap_20110211.html Fujitsu LIFEBOOK MH330] with [http://www.linpus.com/news/2011/03/23.html Linpus Lite for MeeGo]&lt;br /&gt;
* [http://www.czctech.com/en/productView.asp?id=82 CZC Tech P10T]&lt;br /&gt;
&lt;br /&gt;
[[/Contact_Table|This page]] is being used to manage proposals.&lt;/div&gt;</summary>
		<author><name>Texrat</name></author>	</entry>

	<entry>
		<id>http://wiki.meego.com/Community_Office/Community_device_program</id>
		<title>Community Office/Community device program</title>
		<link rel="alternate" type="text/html" href="http://wiki.meego.com/Community_Office/Community_device_program"/>
				<updated>2011-06-26T16:48:40Z</updated>
		
		<summary type="html">&lt;p&gt;Texrat: /* MeeGo / LF Responsibilities */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This page describes the goal, attributes and requirements for a community device program.  Please feel free to discuss further on the [http://lists.meego.com/listinfo/meego-community meego-community list].&lt;br /&gt;
&lt;br /&gt;
If you are looking for the actual on-line application, it is [https://meego.com/community/device-program  located here].&lt;br /&gt;
= Program Goal =&lt;br /&gt;
&lt;br /&gt;
The vision for this program is to put together a framework that makes it very easy for &lt;br /&gt;
anyone to contribute devices and have them go to the most qualified community members &lt;br /&gt;
in exchange for some commitment to do something cool with the device (attributed to Dawn Foster).&lt;br /&gt;
&lt;br /&gt;
== Description ==&lt;br /&gt;
&lt;br /&gt;
The Community Device Program is a way for community members to get devices that they can use for MeeGo work. Devices will be distributed to the most qualified community members &lt;br /&gt;
in exchange for the commitment to do something cool with the device. Hardware manufacturers can submit a request to distribute a device to become part of this program.&lt;br /&gt;
&lt;br /&gt;
= Definitions =&lt;br /&gt;
&lt;br /&gt;
== Platform or Device Champion ==&lt;br /&gt;
&lt;br /&gt;
Any community member passionate enough to act as a focal point for devices.  That means researching, blogging, presenting, forum posting, leading discussions on email lists, and any similar highly visible activity in the community space.  Platform or device champions need not be a subject matter expert but should always be willing to help find one.  Champions can cover entire platform(s) or specific device(s).  Note that a Champion may or not be a Recipient.&lt;br /&gt;
&lt;br /&gt;
== Device Provider ==&lt;br /&gt;
&lt;br /&gt;
Any entity participating in the program, at their own expense, with the agreed goal of getting MeeGo-capable devices into the hands of eligible MeeGo community members.  Some criteria:&lt;br /&gt;
 &lt;br /&gt;
* Devices may be gifted, discounted or loaned (at provider's discretion)&lt;br /&gt;
* Development boards, consumer devices (release status determined by provider; may require separate NDA)&lt;br /&gt;
* Devices requiring legal paperwork for release need to be made available directly from the company providing them and not through the Linux Foundation MeeGo device program&lt;br /&gt;
&lt;br /&gt;
Device Provider program details can be found on pages linked in the [[#Platforms.2FDevices|Platforms/Devices]] section.&lt;br /&gt;
&lt;br /&gt;
== Device Recipient ==&lt;br /&gt;
&lt;br /&gt;
Anyone receiving a device from a Provider.&lt;br /&gt;
&lt;br /&gt;
= Program Design and Documentation =&lt;br /&gt;
&lt;br /&gt;
The data model, workflows, forms and other aspects of the device program are described [[/Design_and_Documentation|on this page]].&lt;br /&gt;
&lt;br /&gt;
= Policies and Processes =&lt;br /&gt;
&lt;br /&gt;
== Responsibilities ==&lt;br /&gt;
=== Recipient Eligibility and Responsibilities ===&lt;br /&gt;
* Confirm that you have asked your employer for a device (if applicable), and been turned down.&lt;br /&gt;
* Demonstrate a clear and compelling purpose for the device requested.&lt;br /&gt;
* Agree to use the device for the purpose stated in your application.&lt;br /&gt;
* Agree to blog/tweet/present (publicly communicate) about your experience with the device.&lt;br /&gt;
* Comply with any vendor-specific requirements (may include shipping restrictions to certain countries).&lt;br /&gt;
* Responsible for any import taxes, fees or other expenses.&lt;br /&gt;
* Member in good standing in MeeGo Community (defined by [[Community_guidelines|Community Guidelines]])&lt;br /&gt;
* Provide a valid shipping address, phone number and project URL (the latter can point to ''any'' sort of web page describing the project).&lt;br /&gt;
* Exhibit willingness to share unused devices.&lt;br /&gt;
&lt;br /&gt;
=== MeeGo / LF Responsibilities ===&lt;br /&gt;
* Drive the process for selecting recipients.&lt;br /&gt;
* Provide an application form for people to use.&lt;br /&gt;
* Provide vendor with a list of names, shipping addresses, phone numbers, email addresses and project URLs.&lt;br /&gt;
&lt;br /&gt;
=== Device Provider Responsibilities ===&lt;br /&gt;
* Provider will handle all shipping of systems including any relevant paperwork required.&lt;br /&gt;
* Provider will provide system specifications, number of systems available and deadlines.&lt;br /&gt;
* Provider will provide a list of any additional recipient requirements in addition to the ones stated above.&lt;br /&gt;
* Provider is responsible for all costs associated with providing and shipping the devices.&lt;br /&gt;
&lt;br /&gt;
Device providers can submit devices [https://meego.com/node/add/development-device here].&lt;br /&gt;
&lt;br /&gt;
== Approval Committee ==&lt;br /&gt;
* [[User:Texrat|Randall Arnold]] (Community Device Program Lead)&lt;br /&gt;
* Brian Warner (Linux Foundation Rep)&lt;br /&gt;
* [[User:Dawnfoster|Dawn Foster]] (MeeGo Community Office Rep)&lt;br /&gt;
&lt;br /&gt;
Note that some providers may elect to be part of the MeeGo approval process as well.&lt;br /&gt;
&lt;br /&gt;
=== Suggestions ===&lt;br /&gt;
Judges will be looking for truly novel yet practical applications for provided devices.  Filling an obvious gap in the MeeGo ecosystem will help your chances.  Dream big, but have a solid plan for fulfilling it!&lt;br /&gt;
&lt;br /&gt;
== Selection Criteria ==&lt;br /&gt;
* Intended use should be innovative, substantial and well-documented.&lt;br /&gt;
* Intended use should be appropriate and practical for device granted.&lt;br /&gt;
* Looking for a balance of uses for each device (not all one type of primary use).&lt;br /&gt;
* Past contributions to a relevant project may be part of the decision process.&lt;br /&gt;
* It is important that device awards are not limited to a constant set of contributors.  Prior receipt of a gifted or loaned device would be considered for your future applications.  This may or may not apply to discounted devices.&lt;br /&gt;
&lt;br /&gt;
We appreciate your understanding that there are a limited number of devices and not all requests can be granted. &lt;br /&gt;
&lt;br /&gt;
We also kindly ask that if/when you no longer need the device, you transfer it to another MeeGo community member or team who can use it.&lt;br /&gt;
&lt;br /&gt;
== On-line Application ==&lt;br /&gt;
&lt;br /&gt;
Use the form [https://meego.com/community/device-program provided here] to submit your request.&lt;br /&gt;
&lt;br /&gt;
= Platforms/Devices =&lt;br /&gt;
&lt;br /&gt;
Following are the MeeGo platforms and devices addressed by the program.  You can find examples of devices running MeeGo [[Devices|here]], and an area to propose devices at the bottom of this page.  Proposal submission tracking is located [[/Contact_Table|here]].&lt;br /&gt;
&lt;br /&gt;
== Netbooks ==&lt;br /&gt;
&lt;br /&gt;
TBD&lt;br /&gt;
&lt;br /&gt;
== Entry-level Desktops ==&lt;br /&gt;
&lt;br /&gt;
Not planned at this time&lt;br /&gt;
&lt;br /&gt;
== Nettops ==&lt;br /&gt;
&lt;br /&gt;
TBD&lt;br /&gt;
&lt;br /&gt;
== Tablet Computers ==&lt;br /&gt;
&lt;br /&gt;
=== ExoPC ===&lt;br /&gt;
:Provider(s): [[/Intel|Intel]]&lt;br /&gt;
&lt;br /&gt;
== Mobile Computers/Handsets ==&lt;br /&gt;
&lt;br /&gt;
=== Nokia N950 (as &amp;quot;Nokia N9 Devkit&amp;quot;) ===&lt;br /&gt;
:Provider(s): [[/Nokia|Nokia]]&lt;br /&gt;
&lt;br /&gt;
== In-Vehicle Infotainment (IVI) Systems ==&lt;br /&gt;
Platform Champion(s): Nathan Willis&lt;br /&gt;
&lt;br /&gt;
== Smart TV/Connected TV ==&lt;br /&gt;
&lt;br /&gt;
TBD&lt;br /&gt;
&lt;br /&gt;
== IP TV Boxes ==&lt;br /&gt;
&lt;br /&gt;
TBD&lt;br /&gt;
&lt;br /&gt;
== Development Devices ==&lt;br /&gt;
&lt;br /&gt;
=== Beagleboard ===&lt;br /&gt;
:Champion(s): Till Harbaum, Jan-Simon Möller&lt;br /&gt;
:Provider(s): [[/Beagleboard|Beagleboard]]&lt;br /&gt;
&lt;br /&gt;
=== Pandaboard ===&lt;br /&gt;
:Champion(s): [[User:texrat|Randall Arnold]]&lt;br /&gt;
:Provider(s): [[/Texas_Instruments|Texas Instruments]]&lt;br /&gt;
&lt;br /&gt;
==Other Embedded Systems ==&lt;br /&gt;
&lt;br /&gt;
TBD&lt;br /&gt;
&lt;br /&gt;
= Device Proposals =&lt;br /&gt;
&lt;br /&gt;
Feel free to add possible devices (with providers) and information here:&lt;br /&gt;
&lt;br /&gt;
* [http://www.pcmag.com/article2/0,2817,2386151,00.asp Asus EeePC X101 netbook]&lt;br /&gt;
* [http://www.noteslate.com/ noteslate] (submitted by Gary Birkett/lcuk)&lt;br /&gt;
* [http://intellicom.se/linux_oem_hardware.cfm Intellicom Netbiter OEM hardware]&lt;br /&gt;
* [http://www.fujitsu.com/hk/news/pr/fpcap_20110211.html Fujitsu LIFEBOOK MH330] with [http://www.linpus.com/news/2011/03/23.html Linpus Lite for MeeGo]&lt;br /&gt;
* [http://www.czctech.com/en/productView.asp?id=82 CZC Tech P10T]&lt;br /&gt;
&lt;br /&gt;
[[/Contact_Table|This page]] is being used to manage proposals.&lt;/div&gt;</summary>
		<author><name>Texrat</name></author>	</entry>

	<entry>
		<id>http://wiki.meego.com/Community_Office/Community_device_program</id>
		<title>Community Office/Community device program</title>
		<link rel="alternate" type="text/html" href="http://wiki.meego.com/Community_Office/Community_device_program"/>
				<updated>2011-06-26T16:47:56Z</updated>
		
		<summary type="html">&lt;p&gt;Texrat: /* Recipient Eligibility and Responsibilities */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This page describes the goal, attributes and requirements for a community device program.  Please feel free to discuss further on the [http://lists.meego.com/listinfo/meego-community meego-community list].&lt;br /&gt;
&lt;br /&gt;
If you are looking for the actual on-line application, it is [https://meego.com/community/device-program  located here].&lt;br /&gt;
= Program Goal =&lt;br /&gt;
&lt;br /&gt;
The vision for this program is to put together a framework that makes it very easy for &lt;br /&gt;
anyone to contribute devices and have them go to the most qualified community members &lt;br /&gt;
in exchange for some commitment to do something cool with the device (attributed to Dawn Foster).&lt;br /&gt;
&lt;br /&gt;
== Description ==&lt;br /&gt;
&lt;br /&gt;
The Community Device Program is a way for community members to get devices that they can use for MeeGo work. Devices will be distributed to the most qualified community members &lt;br /&gt;
in exchange for the commitment to do something cool with the device. Hardware manufacturers can submit a request to distribute a device to become part of this program.&lt;br /&gt;
&lt;br /&gt;
= Definitions =&lt;br /&gt;
&lt;br /&gt;
== Platform or Device Champion ==&lt;br /&gt;
&lt;br /&gt;
Any community member passionate enough to act as a focal point for devices.  That means researching, blogging, presenting, forum posting, leading discussions on email lists, and any similar highly visible activity in the community space.  Platform or device champions need not be a subject matter expert but should always be willing to help find one.  Champions can cover entire platform(s) or specific device(s).  Note that a Champion may or not be a Recipient.&lt;br /&gt;
&lt;br /&gt;
== Device Provider ==&lt;br /&gt;
&lt;br /&gt;
Any entity participating in the program, at their own expense, with the agreed goal of getting MeeGo-capable devices into the hands of eligible MeeGo community members.  Some criteria:&lt;br /&gt;
 &lt;br /&gt;
* Devices may be gifted, discounted or loaned (at provider's discretion)&lt;br /&gt;
* Development boards, consumer devices (release status determined by provider; may require separate NDA)&lt;br /&gt;
* Devices requiring legal paperwork for release need to be made available directly from the company providing them and not through the Linux Foundation MeeGo device program&lt;br /&gt;
&lt;br /&gt;
Device Provider program details can be found on pages linked in the [[#Platforms.2FDevices|Platforms/Devices]] section.&lt;br /&gt;
&lt;br /&gt;
== Device Recipient ==&lt;br /&gt;
&lt;br /&gt;
Anyone receiving a device from a Provider.&lt;br /&gt;
&lt;br /&gt;
= Program Design and Documentation =&lt;br /&gt;
&lt;br /&gt;
The data model, workflows, forms and other aspects of the device program are described [[/Design_and_Documentation|on this page]].&lt;br /&gt;
&lt;br /&gt;
= Policies and Processes =&lt;br /&gt;
&lt;br /&gt;
== Responsibilities ==&lt;br /&gt;
=== Recipient Eligibility and Responsibilities ===&lt;br /&gt;
* Confirm that you have asked your employer for a device (if applicable), and been turned down.&lt;br /&gt;
* Demonstrate a clear and compelling purpose for the device requested.&lt;br /&gt;
* Agree to use the device for the purpose stated in your application.&lt;br /&gt;
* Agree to blog/tweet/present (publicly communicate) about your experience with the device.&lt;br /&gt;
* Comply with any vendor-specific requirements (may include shipping restrictions to certain countries).&lt;br /&gt;
* Responsible for any import taxes, fees or other expenses.&lt;br /&gt;
* Member in good standing in MeeGo Community (defined by [[Community_guidelines|Community Guidelines]])&lt;br /&gt;
* Provide a valid shipping address, phone number and project URL (the latter can point to ''any'' sort of web page describing the project).&lt;br /&gt;
* Exhibit willingness to share unused devices.&lt;br /&gt;
&lt;br /&gt;
=== MeeGo / LF Responsibilities ===&lt;br /&gt;
* Drive the process for selecting recipients.&lt;br /&gt;
* Provide an application form for people to use.&lt;br /&gt;
* Provide vendor with a list of names, shipping addresses, phone numbers, email addresses.&lt;br /&gt;
&lt;br /&gt;
=== Device Provider Responsibilities ===&lt;br /&gt;
* Provider will handle all shipping of systems including any relevant paperwork required.&lt;br /&gt;
* Provider will provide system specifications, number of systems available and deadlines.&lt;br /&gt;
* Provider will provide a list of any additional recipient requirements in addition to the ones stated above.&lt;br /&gt;
* Provider is responsible for all costs associated with providing and shipping the devices.&lt;br /&gt;
&lt;br /&gt;
Device providers can submit devices [https://meego.com/node/add/development-device here].&lt;br /&gt;
&lt;br /&gt;
== Approval Committee ==&lt;br /&gt;
* [[User:Texrat|Randall Arnold]] (Community Device Program Lead)&lt;br /&gt;
* Brian Warner (Linux Foundation Rep)&lt;br /&gt;
* [[User:Dawnfoster|Dawn Foster]] (MeeGo Community Office Rep)&lt;br /&gt;
&lt;br /&gt;
Note that some providers may elect to be part of the MeeGo approval process as well.&lt;br /&gt;
&lt;br /&gt;
=== Suggestions ===&lt;br /&gt;
Judges will be looking for truly novel yet practical applications for provided devices.  Filling an obvious gap in the MeeGo ecosystem will help your chances.  Dream big, but have a solid plan for fulfilling it!&lt;br /&gt;
&lt;br /&gt;
== Selection Criteria ==&lt;br /&gt;
* Intended use should be innovative, substantial and well-documented.&lt;br /&gt;
* Intended use should be appropriate and practical for device granted.&lt;br /&gt;
* Looking for a balance of uses for each device (not all one type of primary use).&lt;br /&gt;
* Past contributions to a relevant project may be part of the decision process.&lt;br /&gt;
* It is important that device awards are not limited to a constant set of contributors.  Prior receipt of a gifted or loaned device would be considered for your future applications.  This may or may not apply to discounted devices.&lt;br /&gt;
&lt;br /&gt;
We appreciate your understanding that there are a limited number of devices and not all requests can be granted. &lt;br /&gt;
&lt;br /&gt;
We also kindly ask that if/when you no longer need the device, you transfer it to another MeeGo community member or team who can use it.&lt;br /&gt;
&lt;br /&gt;
== On-line Application ==&lt;br /&gt;
&lt;br /&gt;
Use the form [https://meego.com/community/device-program provided here] to submit your request.&lt;br /&gt;
&lt;br /&gt;
= Platforms/Devices =&lt;br /&gt;
&lt;br /&gt;
Following are the MeeGo platforms and devices addressed by the program.  You can find examples of devices running MeeGo [[Devices|here]], and an area to propose devices at the bottom of this page.  Proposal submission tracking is located [[/Contact_Table|here]].&lt;br /&gt;
&lt;br /&gt;
== Netbooks ==&lt;br /&gt;
&lt;br /&gt;
TBD&lt;br /&gt;
&lt;br /&gt;
== Entry-level Desktops ==&lt;br /&gt;
&lt;br /&gt;
Not planned at this time&lt;br /&gt;
&lt;br /&gt;
== Nettops ==&lt;br /&gt;
&lt;br /&gt;
TBD&lt;br /&gt;
&lt;br /&gt;
== Tablet Computers ==&lt;br /&gt;
&lt;br /&gt;
=== ExoPC ===&lt;br /&gt;
:Provider(s): [[/Intel|Intel]]&lt;br /&gt;
&lt;br /&gt;
== Mobile Computers/Handsets ==&lt;br /&gt;
&lt;br /&gt;
=== Nokia N950 (as &amp;quot;Nokia N9 Devkit&amp;quot;) ===&lt;br /&gt;
:Provider(s): [[/Nokia|Nokia]]&lt;br /&gt;
&lt;br /&gt;
== In-Vehicle Infotainment (IVI) Systems ==&lt;br /&gt;
Platform Champion(s): Nathan Willis&lt;br /&gt;
&lt;br /&gt;
== Smart TV/Connected TV ==&lt;br /&gt;
&lt;br /&gt;
TBD&lt;br /&gt;
&lt;br /&gt;
== IP TV Boxes ==&lt;br /&gt;
&lt;br /&gt;
TBD&lt;br /&gt;
&lt;br /&gt;
== Development Devices ==&lt;br /&gt;
&lt;br /&gt;
=== Beagleboard ===&lt;br /&gt;
:Champion(s): Till Harbaum, Jan-Simon Möller&lt;br /&gt;
:Provider(s): [[/Beagleboard|Beagleboard]]&lt;br /&gt;
&lt;br /&gt;
=== Pandaboard ===&lt;br /&gt;
:Champion(s): [[User:texrat|Randall Arnold]]&lt;br /&gt;
:Provider(s): [[/Texas_Instruments|Texas Instruments]]&lt;br /&gt;
&lt;br /&gt;
==Other Embedded Systems ==&lt;br /&gt;
&lt;br /&gt;
TBD&lt;br /&gt;
&lt;br /&gt;
= Device Proposals =&lt;br /&gt;
&lt;br /&gt;
Feel free to add possible devices (with providers) and information here:&lt;br /&gt;
&lt;br /&gt;
* [http://www.pcmag.com/article2/0,2817,2386151,00.asp Asus EeePC X101 netbook]&lt;br /&gt;
* [http://www.noteslate.com/ noteslate] (submitted by Gary Birkett/lcuk)&lt;br /&gt;
* [http://intellicom.se/linux_oem_hardware.cfm Intellicom Netbiter OEM hardware]&lt;br /&gt;
* [http://www.fujitsu.com/hk/news/pr/fpcap_20110211.html Fujitsu LIFEBOOK MH330] with [http://www.linpus.com/news/2011/03/23.html Linpus Lite for MeeGo]&lt;br /&gt;
* [http://www.czctech.com/en/productView.asp?id=82 CZC Tech P10T]&lt;br /&gt;
&lt;br /&gt;
[[/Contact_Table|This page]] is being used to manage proposals.&lt;/div&gt;</summary>
		<author><name>Texrat</name></author>	</entry>

	<entry>
		<id>http://wiki.meego.com/Community_Office/Community_device_program</id>
		<title>Community Office/Community device program</title>
		<link rel="alternate" type="text/html" href="http://wiki.meego.com/Community_Office/Community_device_program"/>
				<updated>2011-06-26T16:44:39Z</updated>
		
		<summary type="html">&lt;p&gt;Texrat: /* Policies and Processes */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This page describes the goal, attributes and requirements for a community device program.  Please feel free to discuss further on the [http://lists.meego.com/listinfo/meego-community meego-community list].&lt;br /&gt;
&lt;br /&gt;
If you are looking for the actual on-line application, it is [https://meego.com/community/device-program  located here].&lt;br /&gt;
= Program Goal =&lt;br /&gt;
&lt;br /&gt;
The vision for this program is to put together a framework that makes it very easy for &lt;br /&gt;
anyone to contribute devices and have them go to the most qualified community members &lt;br /&gt;
in exchange for some commitment to do something cool with the device (attributed to Dawn Foster).&lt;br /&gt;
&lt;br /&gt;
== Description ==&lt;br /&gt;
&lt;br /&gt;
The Community Device Program is a way for community members to get devices that they can use for MeeGo work. Devices will be distributed to the most qualified community members &lt;br /&gt;
in exchange for the commitment to do something cool with the device. Hardware manufacturers can submit a request to distribute a device to become part of this program.&lt;br /&gt;
&lt;br /&gt;
= Definitions =&lt;br /&gt;
&lt;br /&gt;
== Platform or Device Champion ==&lt;br /&gt;
&lt;br /&gt;
Any community member passionate enough to act as a focal point for devices.  That means researching, blogging, presenting, forum posting, leading discussions on email lists, and any similar highly visible activity in the community space.  Platform or device champions need not be a subject matter expert but should always be willing to help find one.  Champions can cover entire platform(s) or specific device(s).  Note that a Champion may or not be a Recipient.&lt;br /&gt;
&lt;br /&gt;
== Device Provider ==&lt;br /&gt;
&lt;br /&gt;
Any entity participating in the program, at their own expense, with the agreed goal of getting MeeGo-capable devices into the hands of eligible MeeGo community members.  Some criteria:&lt;br /&gt;
 &lt;br /&gt;
* Devices may be gifted, discounted or loaned (at provider's discretion)&lt;br /&gt;
* Development boards, consumer devices (release status determined by provider; may require separate NDA)&lt;br /&gt;
* Devices requiring legal paperwork for release need to be made available directly from the company providing them and not through the Linux Foundation MeeGo device program&lt;br /&gt;
&lt;br /&gt;
Device Provider program details can be found on pages linked in the [[#Platforms.2FDevices|Platforms/Devices]] section.&lt;br /&gt;
&lt;br /&gt;
== Device Recipient ==&lt;br /&gt;
&lt;br /&gt;
Anyone receiving a device from a Provider.&lt;br /&gt;
&lt;br /&gt;
= Program Design and Documentation =&lt;br /&gt;
&lt;br /&gt;
The data model, workflows, forms and other aspects of the device program are described [[/Design_and_Documentation|on this page]].&lt;br /&gt;
&lt;br /&gt;
= Policies and Processes =&lt;br /&gt;
&lt;br /&gt;
== Responsibilities ==&lt;br /&gt;
=== Recipient Eligibility and Responsibilities ===&lt;br /&gt;
* Confirm that you have asked your employer for a device (if applicable), and been turned down.&lt;br /&gt;
* Clear and compelling purpose for the device requested.&lt;br /&gt;
* Agree to use the device for the purpose stated in your application.&lt;br /&gt;
* Agree to blog/tweet/present about your experience with the device.&lt;br /&gt;
* Any vendor-specific requirements (may include shipping restrictions to certain countries).&lt;br /&gt;
* Recipient is responsible for any import taxes, fees or other expenses.&lt;br /&gt;
* Must be a member in good standing in MeeGo Community (defined by [[Community_guidelines|Community Guidelines]])&lt;br /&gt;
* Must provide a valid shipping address and phone number.&lt;br /&gt;
* Willingness to share unused devices.&lt;br /&gt;
&lt;br /&gt;
=== MeeGo / LF Responsibilities ===&lt;br /&gt;
* Drive the process for selecting recipients.&lt;br /&gt;
* Provide an application form for people to use.&lt;br /&gt;
* Provide vendor with a list of names, shipping addresses, phone numbers, email addresses.&lt;br /&gt;
&lt;br /&gt;
=== Device Provider Responsibilities ===&lt;br /&gt;
* Provider will handle all shipping of systems including any relevant paperwork required.&lt;br /&gt;
* Provider will provide system specifications, number of systems available and deadlines.&lt;br /&gt;
* Provider will provide a list of any additional recipient requirements in addition to the ones stated above.&lt;br /&gt;
* Provider is responsible for all costs associated with providing and shipping the devices.&lt;br /&gt;
&lt;br /&gt;
Device providers can submit devices [https://meego.com/node/add/development-device here].&lt;br /&gt;
&lt;br /&gt;
== Approval Committee ==&lt;br /&gt;
* [[User:Texrat|Randall Arnold]] (Community Device Program Lead)&lt;br /&gt;
* Brian Warner (Linux Foundation Rep)&lt;br /&gt;
* [[User:Dawnfoster|Dawn Foster]] (MeeGo Community Office Rep)&lt;br /&gt;
&lt;br /&gt;
Note that some providers may elect to be part of the MeeGo approval process as well.&lt;br /&gt;
&lt;br /&gt;
=== Suggestions ===&lt;br /&gt;
Judges will be looking for truly novel yet practical applications for provided devices.  Filling an obvious gap in the MeeGo ecosystem will help your chances.  Dream big, but have a solid plan for fulfilling it!&lt;br /&gt;
&lt;br /&gt;
== Selection Criteria ==&lt;br /&gt;
* Intended use should be innovative, substantial and well-documented.&lt;br /&gt;
* Intended use should be appropriate and practical for device granted.&lt;br /&gt;
* Looking for a balance of uses for each device (not all one type of primary use).&lt;br /&gt;
* Past contributions to a relevant project may be part of the decision process.&lt;br /&gt;
* It is important that device awards are not limited to a constant set of contributors.  Prior receipt of a gifted or loaned device would be considered for your future applications.  This may or may not apply to discounted devices.&lt;br /&gt;
&lt;br /&gt;
We appreciate your understanding that there are a limited number of devices and not all requests can be granted. &lt;br /&gt;
&lt;br /&gt;
We also kindly ask that if/when you no longer need the device, you transfer it to another MeeGo community member or team who can use it.&lt;br /&gt;
&lt;br /&gt;
== On-line Application ==&lt;br /&gt;
&lt;br /&gt;
Use the form [https://meego.com/community/device-program provided here] to submit your request.&lt;br /&gt;
&lt;br /&gt;
= Platforms/Devices =&lt;br /&gt;
&lt;br /&gt;
Following are the MeeGo platforms and devices addressed by the program.  You can find examples of devices running MeeGo [[Devices|here]], and an area to propose devices at the bottom of this page.  Proposal submission tracking is located [[/Contact_Table|here]].&lt;br /&gt;
&lt;br /&gt;
== Netbooks ==&lt;br /&gt;
&lt;br /&gt;
TBD&lt;br /&gt;
&lt;br /&gt;
== Entry-level Desktops ==&lt;br /&gt;
&lt;br /&gt;
Not planned at this time&lt;br /&gt;
&lt;br /&gt;
== Nettops ==&lt;br /&gt;
&lt;br /&gt;
TBD&lt;br /&gt;
&lt;br /&gt;
== Tablet Computers ==&lt;br /&gt;
&lt;br /&gt;
=== ExoPC ===&lt;br /&gt;
:Provider(s): [[/Intel|Intel]]&lt;br /&gt;
&lt;br /&gt;
== Mobile Computers/Handsets ==&lt;br /&gt;
&lt;br /&gt;
=== Nokia N950 (as &amp;quot;Nokia N9 Devkit&amp;quot;) ===&lt;br /&gt;
:Provider(s): [[/Nokia|Nokia]]&lt;br /&gt;
&lt;br /&gt;
== In-Vehicle Infotainment (IVI) Systems ==&lt;br /&gt;
Platform Champion(s): Nathan Willis&lt;br /&gt;
&lt;br /&gt;
== Smart TV/Connected TV ==&lt;br /&gt;
&lt;br /&gt;
TBD&lt;br /&gt;
&lt;br /&gt;
== IP TV Boxes ==&lt;br /&gt;
&lt;br /&gt;
TBD&lt;br /&gt;
&lt;br /&gt;
== Development Devices ==&lt;br /&gt;
&lt;br /&gt;
=== Beagleboard ===&lt;br /&gt;
:Champion(s): Till Harbaum, Jan-Simon Möller&lt;br /&gt;
:Provider(s): [[/Beagleboard|Beagleboard]]&lt;br /&gt;
&lt;br /&gt;
=== Pandaboard ===&lt;br /&gt;
:Champion(s): [[User:texrat|Randall Arnold]]&lt;br /&gt;
:Provider(s): [[/Texas_Instruments|Texas Instruments]]&lt;br /&gt;
&lt;br /&gt;
==Other Embedded Systems ==&lt;br /&gt;
&lt;br /&gt;
TBD&lt;br /&gt;
&lt;br /&gt;
= Device Proposals =&lt;br /&gt;
&lt;br /&gt;
Feel free to add possible devices (with providers) and information here:&lt;br /&gt;
&lt;br /&gt;
* [http://www.pcmag.com/article2/0,2817,2386151,00.asp Asus EeePC X101 netbook]&lt;br /&gt;
* [http://www.noteslate.com/ noteslate] (submitted by Gary Birkett/lcuk)&lt;br /&gt;
* [http://intellicom.se/linux_oem_hardware.cfm Intellicom Netbiter OEM hardware]&lt;br /&gt;
* [http://www.fujitsu.com/hk/news/pr/fpcap_20110211.html Fujitsu LIFEBOOK MH330] with [http://www.linpus.com/news/2011/03/23.html Linpus Lite for MeeGo]&lt;br /&gt;
* [http://www.czctech.com/en/productView.asp?id=82 CZC Tech P10T]&lt;br /&gt;
&lt;br /&gt;
[[/Contact_Table|This page]] is being used to manage proposals.&lt;/div&gt;</summary>
		<author><name>Texrat</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-06-24T21:08:06Z</updated>
		
		<summary type="html">&lt;p&gt;Texrat: /* N9 Devkit Program Details */&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;
== N9 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;
** Intel, Nokia and Linux Foundation employees are not eligible (contact Quim outside of this program for exceptions).&lt;br /&gt;
* Timeframe: distribution active.&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>Texrat</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-06-24T21:03:27Z</updated>
		
		<summary type="html">&lt;p&gt;Texrat: /* N950 Device Program Details */&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;
== N9 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;
** 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;
** Intel, Nokia and Linux Foundation employees are not eligible (contact Quim outside of this program for exceptions).&lt;br /&gt;
* Timeframe: distribution active.&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>Texrat</name></author>	</entry>

	<entry>
		<id>http://wiki.meego.com/Community_Office/Community_device_program</id>
		<title>Community Office/Community device program</title>
		<link rel="alternate" type="text/html" href="http://wiki.meego.com/Community_Office/Community_device_program"/>
				<updated>2011-06-24T20:56:36Z</updated>
		
		<summary type="html">&lt;p&gt;Texrat: /* Platforms/Devices */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This page describes the goal, attributes and requirements for a community device program.  Please feel free to discuss further on the [http://lists.meego.com/listinfo/meego-community meego-community list].&lt;br /&gt;
&lt;br /&gt;
If you are looking for the actual on-line application, it is [https://meego.com/community/device-program  located here].&lt;br /&gt;
= Program Goal =&lt;br /&gt;
&lt;br /&gt;
The vision for this program is to put together a framework that makes it very easy for &lt;br /&gt;
anyone to contribute devices and have them go to the most qualified community members &lt;br /&gt;
in exchange for some commitment to do something cool with the device (attributed to Dawn Foster).&lt;br /&gt;
&lt;br /&gt;
== Description ==&lt;br /&gt;
&lt;br /&gt;
The Community Device Program is a way for community members to get devices that they can use for MeeGo work. Devices will be distributed to the most qualified community members &lt;br /&gt;
in exchange for the commitment to do something cool with the device. Hardware manufacturers can submit a request to distribute a device to become part of this program.&lt;br /&gt;
&lt;br /&gt;
= Definitions =&lt;br /&gt;
&lt;br /&gt;
== Platform or Device Champion ==&lt;br /&gt;
&lt;br /&gt;
Any community member passionate enough to act as a focal point for devices.  That means researching, blogging, presenting, forum posting, leading discussions on email lists, and any similar highly visible activity in the community space.  Platform or device champions need not be a subject matter expert but should always be willing to help find one.  Champions can cover entire platform(s) or specific device(s).  Note that a Champion may or not be a Recipient.&lt;br /&gt;
&lt;br /&gt;
== Device Provider ==&lt;br /&gt;
&lt;br /&gt;
Any entity participating in the program, at their own expense, with the agreed goal of getting MeeGo-capable devices into the hands of eligible MeeGo community members.  Some criteria:&lt;br /&gt;
 &lt;br /&gt;
* Devices may be gifted, discounted or loaned (at provider's discretion)&lt;br /&gt;
* Development boards, consumer devices (release status determined by provider; may require separate NDA)&lt;br /&gt;
* Devices requiring legal paperwork for release need to be made available directly from the company providing them and not through the Linux Foundation MeeGo device program&lt;br /&gt;
&lt;br /&gt;
Device Provider program details can be found on pages linked in the [[#Platforms.2FDevices|Platforms/Devices]] section.&lt;br /&gt;
&lt;br /&gt;
== Device Recipient ==&lt;br /&gt;
&lt;br /&gt;
Anyone receiving a device from a Provider.&lt;br /&gt;
&lt;br /&gt;
= Program Design and Documentation =&lt;br /&gt;
&lt;br /&gt;
The data model, workflows, forms and other aspects of the device program are described [[/Design_and_Documentation|on this page]].&lt;br /&gt;
&lt;br /&gt;
= Policies and Processes =&lt;br /&gt;
&lt;br /&gt;
== Responsibilities ==&lt;br /&gt;
=== Recipient Eligibility and Responsibilities ===&lt;br /&gt;
* Confirm that you have asked your employer for a device (if applicable), and been turned down.&lt;br /&gt;
* Clear and compelling purpose for the device requested.&lt;br /&gt;
* Agree to use the device for the purpose stated in your application.&lt;br /&gt;
* Agree to blog/tweet/present about your experience with the device.&lt;br /&gt;
* Any vendor-specific requirements (may include shipping restrictions to certain countries).&lt;br /&gt;
* Recipient is responsible for any import taxes, fees or other expenses.&lt;br /&gt;
* Must be a member in good standing in MeeGo Community (defined by [[Community_guidelines|Community Guidelines]])&lt;br /&gt;
* Must provide a valid shipping address and phone number.&lt;br /&gt;
* Willingness to share unused devices.&lt;br /&gt;
&lt;br /&gt;
=== MeeGo / LF Responsibilities ===&lt;br /&gt;
* Drive the process for selecting recipients.&lt;br /&gt;
* Provide an application form for people to use.&lt;br /&gt;
* Provide vendor with a list of names, shipping addresses, phone numbers, email addresses.&lt;br /&gt;
&lt;br /&gt;
=== Device Provider Responsibilities ===&lt;br /&gt;
* Provider will handle all shipping of systems including any relevant paperwork required.&lt;br /&gt;
* Provider will provide system specifications, number of systems available and deadlines.&lt;br /&gt;
* Provider will provide a list of any additional recipient requirements in addition to the ones stated above.&lt;br /&gt;
* Provider is responsible for all costs associated with providing and shipping the devices.&lt;br /&gt;
&lt;br /&gt;
Device providers can submit devices [https://meego.com/node/add/development-device here].&lt;br /&gt;
&lt;br /&gt;
== Approval Committee ==&lt;br /&gt;
* [[User:Texrat|Randall Arnold]] (Community Device Program Lead)&lt;br /&gt;
* Brian Warner (Linux Foundation Rep)&lt;br /&gt;
* [[User:Dawnfoster|Dawn Foster]] (MeeGo Community Office Rep)&lt;br /&gt;
&lt;br /&gt;
We appreciate your understanding that there are a limited number of devices and not all requests can be granted. &lt;br /&gt;
&lt;br /&gt;
We also kindly ask that if/when you no longer need the device, you transfer it to another MeeGo community member or team who can use it.&lt;br /&gt;
&lt;br /&gt;
=== Suggestions ===&lt;br /&gt;
Judges will be looking for truly novel yet practical applications for provided devices.  Filling an obvious gap in the MeeGo ecosystem will help your chances.  Dream big, but have a solid plan for fulfilling it!&lt;br /&gt;
&lt;br /&gt;
== Selection Criteria ==&lt;br /&gt;
* Intended use should be innovative, substantial and well-documented.&lt;br /&gt;
* Intended use should be appropriate and practical for device granted.&lt;br /&gt;
* Looking for a balance of uses for each device (not all one type of primary use).&lt;br /&gt;
* Past contributions to a relevant project may be part of the decision process.&lt;br /&gt;
* It is important that device awards are not limited to a constant set of contributors.  Prior receipt of a gifted or loaned device would be considered for your future applications.  This may or may not apply to discounted devices.&lt;br /&gt;
&lt;br /&gt;
== On-line Application ==&lt;br /&gt;
&lt;br /&gt;
Use the form [https://meego.com/community/device-program provided here] to submit your request.&lt;br /&gt;
&lt;br /&gt;
= Platforms/Devices =&lt;br /&gt;
&lt;br /&gt;
Following are the MeeGo platforms and devices addressed by the program.  You can find examples of devices running MeeGo [[Devices|here]], and an area to propose devices at the bottom of this page.  Proposal submission tracking is located [[/Contact_Table|here]].&lt;br /&gt;
&lt;br /&gt;
== Netbooks ==&lt;br /&gt;
&lt;br /&gt;
TBD&lt;br /&gt;
&lt;br /&gt;
== Entry-level Desktops ==&lt;br /&gt;
&lt;br /&gt;
Not planned at this time&lt;br /&gt;
&lt;br /&gt;
== Nettops ==&lt;br /&gt;
&lt;br /&gt;
TBD&lt;br /&gt;
&lt;br /&gt;
== Tablet Computers ==&lt;br /&gt;
&lt;br /&gt;
=== ExoPC ===&lt;br /&gt;
:Provider(s): [[/Intel|Intel]]&lt;br /&gt;
&lt;br /&gt;
== Mobile Computers/Handsets ==&lt;br /&gt;
&lt;br /&gt;
=== Nokia N950 (as &amp;quot;Nokia N9 Devkit&amp;quot;) ===&lt;br /&gt;
:Provider(s): [[/Nokia|Nokia]]&lt;br /&gt;
&lt;br /&gt;
== In-Vehicle Infotainment (IVI) Systems ==&lt;br /&gt;
Platform Champion(s): Nathan Willis&lt;br /&gt;
&lt;br /&gt;
== Smart TV/Connected TV ==&lt;br /&gt;
&lt;br /&gt;
TBD&lt;br /&gt;
&lt;br /&gt;
== IP TV Boxes ==&lt;br /&gt;
&lt;br /&gt;
TBD&lt;br /&gt;
&lt;br /&gt;
== Development Devices ==&lt;br /&gt;
&lt;br /&gt;
=== Beagleboard ===&lt;br /&gt;
:Champion(s): Till Harbaum, Jan-Simon Möller&lt;br /&gt;
:Provider(s): [[/Beagleboard|Beagleboard]]&lt;br /&gt;
&lt;br /&gt;
=== Pandaboard ===&lt;br /&gt;
:Champion(s): [[User:texrat|Randall Arnold]]&lt;br /&gt;
:Provider(s): [[/Texas_Instruments|Texas Instruments]]&lt;br /&gt;
&lt;br /&gt;
==Other Embedded Systems ==&lt;br /&gt;
&lt;br /&gt;
TBD&lt;br /&gt;
&lt;br /&gt;
= Device Proposals =&lt;br /&gt;
&lt;br /&gt;
Feel free to add possible devices (with providers) and information here:&lt;br /&gt;
&lt;br /&gt;
* [http://www.pcmag.com/article2/0,2817,2386151,00.asp Asus EeePC X101 netbook]&lt;br /&gt;
* [http://www.noteslate.com/ noteslate] (submitted by Gary Birkett/lcuk)&lt;br /&gt;
* [http://intellicom.se/linux_oem_hardware.cfm Intellicom Netbiter OEM hardware]&lt;br /&gt;
* [http://www.fujitsu.com/hk/news/pr/fpcap_20110211.html Fujitsu LIFEBOOK MH330] with [http://www.linpus.com/news/2011/03/23.html Linpus Lite for MeeGo]&lt;br /&gt;
* [http://www.czctech.com/en/productView.asp?id=82 CZC Tech P10T]&lt;br /&gt;
&lt;br /&gt;
[[/Contact_Table|This page]] is being used to manage proposals.&lt;/div&gt;</summary>
		<author><name>Texrat</name></author>	</entry>

	<entry>
		<id>http://wiki.meego.com/Community_Office/Community_device_program</id>
		<title>Community Office/Community device program</title>
		<link rel="alternate" type="text/html" href="http://wiki.meego.com/Community_Office/Community_device_program"/>
				<updated>2011-06-24T20:55:39Z</updated>
		
		<summary type="html">&lt;p&gt;Texrat: /* Mobile Computers/Handsets */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This page describes the goal, attributes and requirements for a community device program.  Please feel free to discuss further on the [http://lists.meego.com/listinfo/meego-community meego-community list].&lt;br /&gt;
&lt;br /&gt;
If you are looking for the actual on-line application, it is [https://meego.com/community/device-program  located here].&lt;br /&gt;
= Program Goal =&lt;br /&gt;
&lt;br /&gt;
The vision for this program is to put together a framework that makes it very easy for &lt;br /&gt;
anyone to contribute devices and have them go to the most qualified community members &lt;br /&gt;
in exchange for some commitment to do something cool with the device (attributed to Dawn Foster).&lt;br /&gt;
&lt;br /&gt;
== Description ==&lt;br /&gt;
&lt;br /&gt;
The Community Device Program is a way for community members to get devices that they can use for MeeGo work. Devices will be distributed to the most qualified community members &lt;br /&gt;
in exchange for the commitment to do something cool with the device. Hardware manufacturers can submit a request to distribute a device to become part of this program.&lt;br /&gt;
&lt;br /&gt;
= Definitions =&lt;br /&gt;
&lt;br /&gt;
== Platform or Device Champion ==&lt;br /&gt;
&lt;br /&gt;
Any community member passionate enough to act as a focal point for devices.  That means researching, blogging, presenting, forum posting, leading discussions on email lists, and any similar highly visible activity in the community space.  Platform or device champions need not be a subject matter expert but should always be willing to help find one.  Champions can cover entire platform(s) or specific device(s).  Note that a Champion may or not be a Recipient.&lt;br /&gt;
&lt;br /&gt;
== Device Provider ==&lt;br /&gt;
&lt;br /&gt;
Any entity participating in the program, at their own expense, with the agreed goal of getting MeeGo-capable devices into the hands of eligible MeeGo community members.  Some criteria:&lt;br /&gt;
 &lt;br /&gt;
* Devices may be gifted, discounted or loaned (at provider's discretion)&lt;br /&gt;
* Development boards, consumer devices (release status determined by provider; may require separate NDA)&lt;br /&gt;
* Devices requiring legal paperwork for release need to be made available directly from the company providing them and not through the Linux Foundation MeeGo device program&lt;br /&gt;
&lt;br /&gt;
Device Provider program details can be found on pages linked in the [[#Platforms.2FDevices|Platforms/Devices]] section.&lt;br /&gt;
&lt;br /&gt;
== Device Recipient ==&lt;br /&gt;
&lt;br /&gt;
Anyone receiving a device from a Provider.&lt;br /&gt;
&lt;br /&gt;
= Program Design and Documentation =&lt;br /&gt;
&lt;br /&gt;
The data model, workflows, forms and other aspects of the device program are described [[/Design_and_Documentation|on this page]].&lt;br /&gt;
&lt;br /&gt;
= Policies and Processes =&lt;br /&gt;
&lt;br /&gt;
== Responsibilities ==&lt;br /&gt;
=== Recipient Eligibility and Responsibilities ===&lt;br /&gt;
* Confirm that you have asked your employer for a device (if applicable), and been turned down.&lt;br /&gt;
* Clear and compelling purpose for the device requested.&lt;br /&gt;
* Agree to use the device for the purpose stated in your application.&lt;br /&gt;
* Agree to blog/tweet/present about your experience with the device.&lt;br /&gt;
* Any vendor-specific requirements (may include shipping restrictions to certain countries).&lt;br /&gt;
* Recipient is responsible for any import taxes, fees or other expenses.&lt;br /&gt;
* Must be a member in good standing in MeeGo Community (defined by [[Community_guidelines|Community Guidelines]])&lt;br /&gt;
* Must provide a valid shipping address and phone number.&lt;br /&gt;
* Willingness to share unused devices.&lt;br /&gt;
&lt;br /&gt;
=== MeeGo / LF Responsibilities ===&lt;br /&gt;
* Drive the process for selecting recipients.&lt;br /&gt;
* Provide an application form for people to use.&lt;br /&gt;
* Provide vendor with a list of names, shipping addresses, phone numbers, email addresses.&lt;br /&gt;
&lt;br /&gt;
=== Device Provider Responsibilities ===&lt;br /&gt;
* Provider will handle all shipping of systems including any relevant paperwork required.&lt;br /&gt;
* Provider will provide system specifications, number of systems available and deadlines.&lt;br /&gt;
* Provider will provide a list of any additional recipient requirements in addition to the ones stated above.&lt;br /&gt;
* Provider is responsible for all costs associated with providing and shipping the devices.&lt;br /&gt;
&lt;br /&gt;
Device providers can submit devices [https://meego.com/node/add/development-device here].&lt;br /&gt;
&lt;br /&gt;
== Approval Committee ==&lt;br /&gt;
* [[User:Texrat|Randall Arnold]] (Community Device Program Lead)&lt;br /&gt;
* Brian Warner (Linux Foundation Rep)&lt;br /&gt;
* [[User:Dawnfoster|Dawn Foster]] (MeeGo Community Office Rep)&lt;br /&gt;
&lt;br /&gt;
We appreciate your understanding that there are a limited number of devices and not all requests can be granted. &lt;br /&gt;
&lt;br /&gt;
We also kindly ask that if/when you no longer need the device, you transfer it to another MeeGo community member or team who can use it.&lt;br /&gt;
&lt;br /&gt;
=== Suggestions ===&lt;br /&gt;
Judges will be looking for truly novel yet practical applications for provided devices.  Filling an obvious gap in the MeeGo ecosystem will help your chances.  Dream big, but have a solid plan for fulfilling it!&lt;br /&gt;
&lt;br /&gt;
== Selection Criteria ==&lt;br /&gt;
* Intended use should be innovative, substantial and well-documented.&lt;br /&gt;
* Intended use should be appropriate and practical for device granted.&lt;br /&gt;
* Looking for a balance of uses for each device (not all one type of primary use).&lt;br /&gt;
* Past contributions to a relevant project may be part of the decision process.&lt;br /&gt;
* It is important that device awards are not limited to a constant set of contributors.  Prior receipt of a gifted or loaned device would be considered for your future applications.  This may or may not apply to discounted devices.&lt;br /&gt;
&lt;br /&gt;
== On-line Application ==&lt;br /&gt;
&lt;br /&gt;
Use the form [https://meego.com/community/device-program provided here] to submit your request.&lt;br /&gt;
&lt;br /&gt;
= Platforms/Devices =&lt;br /&gt;
&lt;br /&gt;
Following are the MeeGo platforms and devices addressed by the program.  You can find examples of devices running MeeGo [[Devices|here]], and an area to propose devices at the bottom of this page.  Proposal submission tracking is located [[/Contact_Table|here]].&lt;br /&gt;
&lt;br /&gt;
== Netbooks ==&lt;br /&gt;
&lt;br /&gt;
TBD&lt;br /&gt;
&lt;br /&gt;
== Entry-level Desktops ==&lt;br /&gt;
&lt;br /&gt;
Not planned at this time&lt;br /&gt;
&lt;br /&gt;
== Nettops ==&lt;br /&gt;
&lt;br /&gt;
TBD&lt;br /&gt;
&lt;br /&gt;
== Tablet Computers ==&lt;br /&gt;
&lt;br /&gt;
=== ExoPC ===&lt;br /&gt;
:Provider(s): [[/Intel|Intel]]&lt;br /&gt;
&lt;br /&gt;
== Mobile Computers/Handsets ==&lt;br /&gt;
&lt;br /&gt;
=== Nokia N950 (as &amp;quot;Nokia N9 Devkit&amp;quot;) ===&lt;br /&gt;
&lt;br /&gt;
== In-Vehicle Infotainment (IVI) Systems ==&lt;br /&gt;
Platform Champion(s): Nathan Willis&lt;br /&gt;
&lt;br /&gt;
== Smart TV/Connected TV ==&lt;br /&gt;
&lt;br /&gt;
TBD&lt;br /&gt;
&lt;br /&gt;
== IP TV Boxes ==&lt;br /&gt;
&lt;br /&gt;
TBD&lt;br /&gt;
&lt;br /&gt;
== Development Devices ==&lt;br /&gt;
&lt;br /&gt;
=== Beagleboard ===&lt;br /&gt;
:Champion(s): Till Harbaum, Jan-Simon Möller&lt;br /&gt;
:Provider(s): [[/Beagleboard|Beagleboard]]&lt;br /&gt;
&lt;br /&gt;
=== Pandaboard ===&lt;br /&gt;
:Champion(s): [[User:texrat|Randall Arnold]]&lt;br /&gt;
:Provider(s): [[/Texas_Instruments|Texas Instruments]]&lt;br /&gt;
&lt;br /&gt;
==Other Embedded Systems ==&lt;br /&gt;
&lt;br /&gt;
TBD&lt;br /&gt;
&lt;br /&gt;
= Device Proposals =&lt;br /&gt;
&lt;br /&gt;
Feel free to add possible devices (with providers) and information here:&lt;br /&gt;
&lt;br /&gt;
* [http://www.pcmag.com/article2/0,2817,2386151,00.asp Asus EeePC X101 netbook]&lt;br /&gt;
* [http://www.noteslate.com/ noteslate] (submitted by Gary Birkett/lcuk)&lt;br /&gt;
* [http://intellicom.se/linux_oem_hardware.cfm Intellicom Netbiter OEM hardware]&lt;br /&gt;
* [http://www.fujitsu.com/hk/news/pr/fpcap_20110211.html Fujitsu LIFEBOOK MH330] with [http://www.linpus.com/news/2011/03/23.html Linpus Lite for MeeGo]&lt;br /&gt;
* [http://www.czctech.com/en/productView.asp?id=82 CZC Tech P10T]&lt;br /&gt;
&lt;br /&gt;
[[/Contact_Table|This page]] is being used to manage proposals.&lt;/div&gt;</summary>
		<author><name>Texrat</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-06-24T20:53:39Z</updated>
		
		<summary type="html">&lt;p&gt;Texrat: &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 Device 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;
** 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;
** Intel, Nokia and Linux Foundation employees are not eligible (contact Quim outside of this program for exceptions).&lt;br /&gt;
* Timeframe: distribution active.&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>Texrat</name></author>	</entry>

	<entry>
		<id>http://wiki.meego.com/Community_Office/Community_device_program/Intel</id>
		<title>Community Office/Community device program/Intel</title>
		<link rel="alternate" type="text/html" href="http://wiki.meego.com/Community_Office/Community_device_program/Intel"/>
				<updated>2011-06-24T20:44:55Z</updated>
		
		<summary type="html">&lt;p&gt;Texrat: /* Intel Participation Details */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Intel Participation Details =&lt;br /&gt;
* Program Contact: [[User:Dawnfoster|Dawn Foster]]&lt;br /&gt;
Update: ExoPC tablets are ready!  https://meego.com/community/device-program/devices/exopc-tablet&lt;br /&gt;
&lt;br /&gt;
== Tablet Device Program Details ==&lt;br /&gt;
* Device: ExoPC Slate loaded with open source tablet build of MeeGo ([http://www.exopc.com/en/exopc-slate.php hardware specs])&lt;br /&gt;
* Quantity: 100&lt;br /&gt;
* Additional Criteria / Terms: &lt;br /&gt;
** Device to be loaned to participant for 3 years.&lt;br /&gt;
** May not be able to ship to certain countries / locations.&lt;br /&gt;
** Intel, Nokia and Linux Foundation employees are not eligible (contact Dawn outside of this program for exceptions).&lt;br /&gt;
* Timeframe: distribution active.&lt;br /&gt;
&lt;br /&gt;
== General thoughts on device program ==&lt;br /&gt;
Since we already have a program at Intel where people can get systems, our plan is to work with the team that administers the existing program as follows:&lt;br /&gt;
* MeeGo team at Intel ([[User:Dawnfoster|Dawn Foster]]) to set aside a certain number of systems allocated to the MeeGo project within the existing program.&lt;br /&gt;
* Work with the MeeGo community to gather requests and select people to receive systems.&lt;br /&gt;
* The names and addresses of the people to receive systems will be sent to Intel.&lt;br /&gt;
* Intel to ship the systems.&lt;br /&gt;
&lt;br /&gt;
What we need from the MeeGo Community:&lt;br /&gt;
* A way for people to apply for systems.&lt;br /&gt;
* A selection process meeting any special requirements that we have for a particular system (we may have different criteria for handset vs. netbook vs. whatever else).&lt;br /&gt;
* A method for collecting the information required to ship the systems.&lt;br /&gt;
&lt;br /&gt;
Things we still need to figure out:&lt;br /&gt;
* What is our (Intel's) criteria?&lt;br /&gt;
* What are our restrictions? (I think we have issues shipping to certain countries, so we need to be clear about this.)&lt;br /&gt;
* Other methods for people to get systems. We have a few things in the works that might make it easier for application developers to get systems from Intel, but details are still in serious flux, and we won't know more until early March.&lt;/div&gt;</summary>
		<author><name>Texrat</name></author>	</entry>

	<entry>
		<id>http://wiki.meego.com/Hardware_References_and_Resources</id>
		<title>Hardware References and Resources</title>
		<link rel="alternate" type="text/html" href="http://wiki.meego.com/Hardware_References_and_Resources"/>
				<updated>2011-06-22T18:31:53Z</updated>
		
		<summary type="html">&lt;p&gt;Texrat: /* Finished Products */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This page is for future community-led hardware development.  This will range from support materials to peripherals to device platforms.&lt;br /&gt;
&lt;br /&gt;
Please add references to specifications, schematics, components, materials, vendors, projects, products, services and design/manufacturing practices.&lt;br /&gt;
&lt;br /&gt;
= References/Resources =&lt;br /&gt;
&lt;br /&gt;
== Development/OEM Hardware ==&lt;br /&gt;
&lt;br /&gt;
* http://beagleboard.org/&lt;br /&gt;
* http://pandaboard.org/&lt;br /&gt;
* http://www.stericsson.com/developers/developers.jsp (Snowball)&lt;br /&gt;
* http://www.engadget.com/2011/05/29/linaro-and-samsung-roll-out-exynos-4210-based-origen-development/&lt;br /&gt;
* http://www.raspberrypi.org/&lt;br /&gt;
* http://cuppcomputing.com/&lt;br /&gt;
* http://www.arduino.cc/&lt;br /&gt;
* http://talk.maemo.org/showthread.php?t=68882 (Mobile System on Chip Thread)&lt;br /&gt;
&lt;br /&gt;
== Schematics/References ==&lt;br /&gt;
&lt;br /&gt;
* http://cellphonediagram.com/search/homebuilt-rx-tx-rf/&lt;br /&gt;
* http://wiki.maemo.org/N900_Hardware_Hacking&lt;br /&gt;
&lt;br /&gt;
== Finished Products ==&lt;br /&gt;
&lt;br /&gt;
* http://www.openpandora.org/&lt;br /&gt;
* http://en.wikipedia.org/wiki/JooJoo (lessons to be learned!)&lt;br /&gt;
* http://en.wikipedia.org/wiki/OLPC&lt;br /&gt;
* http://www.openmoko.com (They've actually produced a phone: http://projects.goldelico.com/p/gta04-main/)&lt;br /&gt;
&lt;br /&gt;
== Vendors ==&lt;br /&gt;
&lt;br /&gt;
* http://www.mouser.com/&lt;br /&gt;
* http://www.monoprice.com/home/index.asp&lt;br /&gt;
* http://www.radioshack.com/category/index.jsp?categoryId=2032058&lt;br /&gt;
* http://www.ezpcb.com/ezpcbweb3/index.php&lt;br /&gt;
&lt;br /&gt;
== Services ==&lt;br /&gt;
&lt;br /&gt;
* http://www.shapeways.com/ (make custom 3D parts!)&lt;br /&gt;
&lt;br /&gt;
== General Resources ==&lt;br /&gt;
&lt;br /&gt;
* http://opencircuits.org/&lt;br /&gt;
* http://p2pfoundation.net/Product_Hacking&lt;/div&gt;</summary>
		<author><name>Texrat</name></author>	</entry>

	<entry>
		<id>http://wiki.meego.com/Community_Office/Community_device_program</id>
		<title>Community Office/Community device program</title>
		<link rel="alternate" type="text/html" href="http://wiki.meego.com/Community_Office/Community_device_program"/>
				<updated>2011-06-17T04:47:36Z</updated>
		
		<summary type="html">&lt;p&gt;Texrat: /* Description */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This page describes the goal, attributes and requirements for a community device program.  Please feel free to discuss further on the [http://lists.meego.com/listinfo/meego-community meego-community list].&lt;br /&gt;
&lt;br /&gt;
If you are looking for the actual on-line application, it is [https://meego.com/community/device-program  located here].&lt;br /&gt;
= Program Goal =&lt;br /&gt;
&lt;br /&gt;
The vision for this program is to put together a framework that makes it very easy for &lt;br /&gt;
anyone to contribute devices and have them go to the most qualified community members &lt;br /&gt;
in exchange for some commitment to do something cool with the device (attributed to Dawn Foster).&lt;br /&gt;
&lt;br /&gt;
== Description ==&lt;br /&gt;
&lt;br /&gt;
The Community Device Program is a way for community members to get devices that they can use for MeeGo work. Devices will be distributed to the most qualified community members &lt;br /&gt;
in exchange for the commitment to do something cool with the device. Hardware manufacturers can submit a request to distribute a device to become part of this program.&lt;br /&gt;
&lt;br /&gt;
= Definitions =&lt;br /&gt;
&lt;br /&gt;
== Platform or Device Champion ==&lt;br /&gt;
&lt;br /&gt;
Any community member passionate enough to act as a focal point for devices.  That means researching, blogging, presenting, forum posting, leading discussions on email lists, and any similar highly visible activity in the community space.  Platform or device champions need not be a subject matter expert but should always be willing to help find one.  Champions can cover entire platform(s) or specific device(s).  Note that a Champion may or not be a Recipient.&lt;br /&gt;
&lt;br /&gt;
== Device Provider ==&lt;br /&gt;
&lt;br /&gt;
Any entity participating in the program, at their own expense, with the agreed goal of getting MeeGo-capable devices into the hands of eligible MeeGo community members.  Some criteria:&lt;br /&gt;
 &lt;br /&gt;
* Devices may be gifted, discounted or loaned (at provider's discretion)&lt;br /&gt;
* Development boards, consumer devices (release status determined by provider; may require separate NDA)&lt;br /&gt;
* Devices requiring legal paperwork for release need to be made available directly from the company providing them and not through the Linux Foundation MeeGo device program&lt;br /&gt;
&lt;br /&gt;
Device Provider program details can be found on pages linked in the [[#Platforms.2FDevices|Platforms/Devices]] section.&lt;br /&gt;
&lt;br /&gt;
== Device Recipient ==&lt;br /&gt;
&lt;br /&gt;
Anyone receiving a device from a Provider.&lt;br /&gt;
&lt;br /&gt;
= Program Design and Documentation =&lt;br /&gt;
&lt;br /&gt;
The data model, workflows, forms and other aspects of the device program are described [[/Design_and_Documentation|on this page]].&lt;br /&gt;
&lt;br /&gt;
= Policies and Processes =&lt;br /&gt;
&lt;br /&gt;
== Responsibilities ==&lt;br /&gt;
=== Recipient Eligibility and Responsibilities ===&lt;br /&gt;
* Confirm that you have asked your employer for a device (if applicable), and been turned down.&lt;br /&gt;
* Clear and compelling purpose for the device requested.&lt;br /&gt;
* Agree to use the device for the purpose stated in your application.&lt;br /&gt;
* Agree to blog/tweet/present about your experience with the device.&lt;br /&gt;
* Any vendor-specific requirements (may include shipping restrictions to certain countries).&lt;br /&gt;
* Recipient is responsible for any import taxes, fees or other expenses.&lt;br /&gt;
* Must be a member in good standing in MeeGo Community (defined by [[Community_guidelines|Community Guidelines]])&lt;br /&gt;
* Must provide a valid shipping address and phone number.&lt;br /&gt;
* Willingness to share unused devices.&lt;br /&gt;
&lt;br /&gt;
=== MeeGo / LF Responsibilities ===&lt;br /&gt;
* Drive the process for selecting recipients.&lt;br /&gt;
* Provide an application form for people to use.&lt;br /&gt;
* Provide vendor with a list of names, shipping addresses, phone numbers, email addresses.&lt;br /&gt;
&lt;br /&gt;
=== Device Provider Responsibilities ===&lt;br /&gt;
* Provider will handle all shipping of systems including any relevant paperwork required.&lt;br /&gt;
* Provider will provide system specifications, number of systems available and deadlines.&lt;br /&gt;
* Provider will provide a list of any additional recipient requirements in addition to the ones stated above.&lt;br /&gt;
* Provider is responsible for all costs associated with providing and shipping the devices.&lt;br /&gt;
&lt;br /&gt;
Device providers can submit devices [https://meego.com/node/add/development-device here].&lt;br /&gt;
&lt;br /&gt;
== Approval Committee ==&lt;br /&gt;
* [[User:Texrat|Randall Arnold]] (Community Device Program Lead)&lt;br /&gt;
* Brian Warner (Linux Foundation Rep)&lt;br /&gt;
* [[User:Dawnfoster|Dawn Foster]] (MeeGo Community Office Rep)&lt;br /&gt;
&lt;br /&gt;
We appreciate your understanding that there are a limited number of devices and not all requests can be granted. &lt;br /&gt;
&lt;br /&gt;
We also kindly ask that if/when you no longer need the device, you transfer it to another MeeGo community member or team who can use it.&lt;br /&gt;
&lt;br /&gt;
=== Suggestions ===&lt;br /&gt;
Judges will be looking for truly novel yet practical applications for provided devices.  Filling an obvious gap in the MeeGo ecosystem will help your chances.  Dream big, but have a solid plan for fulfilling it!&lt;br /&gt;
&lt;br /&gt;
== Selection Criteria ==&lt;br /&gt;
* Intended use should be innovative, substantial and well-documented.&lt;br /&gt;
* Intended use should be appropriate and practical for device granted.&lt;br /&gt;
* Looking for a balance of uses for each device (not all one type of primary use).&lt;br /&gt;
* Past contributions to a relevant project may be part of the decision process.&lt;br /&gt;
* It is important that device awards are not limited to a constant set of contributors.  Prior receipt of a gifted or loaned device would be considered for your future applications.  This may or may not apply to discounted devices.&lt;br /&gt;
&lt;br /&gt;
== On-line Application ==&lt;br /&gt;
&lt;br /&gt;
Use the form [https://meego.com/community/device-program provided here] to submit your request.&lt;br /&gt;
&lt;br /&gt;
= Platforms/Devices =&lt;br /&gt;
&lt;br /&gt;
Following are the MeeGo platforms and devices addressed by the program.  You can find examples of devices running MeeGo [[Devices|here]], and an area to propose devices at the bottom of this page.  Proposal submission tracking is located [[/Contact_Table|here]].&lt;br /&gt;
&lt;br /&gt;
== Netbooks ==&lt;br /&gt;
&lt;br /&gt;
TBD&lt;br /&gt;
&lt;br /&gt;
== Entry-level Desktops ==&lt;br /&gt;
&lt;br /&gt;
Not planned at this time&lt;br /&gt;
&lt;br /&gt;
== Nettops ==&lt;br /&gt;
&lt;br /&gt;
TBD&lt;br /&gt;
&lt;br /&gt;
== Tablet Computers ==&lt;br /&gt;
&lt;br /&gt;
=== ExoPC ===&lt;br /&gt;
:Provider(s): [[/Intel|Intel]]&lt;br /&gt;
&lt;br /&gt;
== Mobile Computers/Handsets ==&lt;br /&gt;
&lt;br /&gt;
TBD&lt;br /&gt;
&lt;br /&gt;
== In-Vehicle Infotainment (IVI) Systems ==&lt;br /&gt;
Platform Champion(s): Nathan Willis&lt;br /&gt;
&lt;br /&gt;
== Smart TV/Connected TV ==&lt;br /&gt;
&lt;br /&gt;
TBD&lt;br /&gt;
&lt;br /&gt;
== IP TV Boxes ==&lt;br /&gt;
&lt;br /&gt;
TBD&lt;br /&gt;
&lt;br /&gt;
== Development Devices ==&lt;br /&gt;
&lt;br /&gt;
=== Beagleboard ===&lt;br /&gt;
:Champion(s): Till Harbaum, Jan-Simon Möller&lt;br /&gt;
:Provider(s): [[/Beagleboard|Beagleboard]]&lt;br /&gt;
&lt;br /&gt;
=== Pandaboard ===&lt;br /&gt;
:Champion(s): [[User:texrat|Randall Arnold]]&lt;br /&gt;
:Provider(s): [[/Texas_Instruments|Texas Instruments]]&lt;br /&gt;
&lt;br /&gt;
==Other Embedded Systems ==&lt;br /&gt;
&lt;br /&gt;
TBD&lt;br /&gt;
&lt;br /&gt;
= Device Proposals =&lt;br /&gt;
&lt;br /&gt;
Feel free to add possible devices (with providers) and information here:&lt;br /&gt;
&lt;br /&gt;
* [http://www.pcmag.com/article2/0,2817,2386151,00.asp Asus EeePC X101 netbook]&lt;br /&gt;
* [http://www.noteslate.com/ noteslate] (submitted by Gary Birkett/lcuk)&lt;br /&gt;
* [http://intellicom.se/linux_oem_hardware.cfm Intellicom Netbiter OEM hardware]&lt;br /&gt;
* [http://www.fujitsu.com/hk/news/pr/fpcap_20110211.html Fujitsu LIFEBOOK MH330] with [http://www.linpus.com/news/2011/03/23.html Linpus Lite for MeeGo]&lt;br /&gt;
* [http://www.czctech.com/en/productView.asp?id=82 CZC Tech P10T]&lt;br /&gt;
&lt;br /&gt;
[[/Contact_Table|This page]] is being used to manage proposals.&lt;/div&gt;</summary>
		<author><name>Texrat</name></author>	</entry>

	<entry>
		<id>http://wiki.meego.com/Community_Office/Community_device_program</id>
		<title>Community Office/Community device program</title>
		<link rel="alternate" type="text/html" href="http://wiki.meego.com/Community_Office/Community_device_program"/>
				<updated>2011-06-16T04:34:19Z</updated>
		
		<summary type="html">&lt;p&gt;Texrat: /* Definitions */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This page describes the goal, attributes and requirements for a community device program.  Please feel free to discuss further on the [http://lists.meego.com/listinfo/meego-community meego-community list].&lt;br /&gt;
&lt;br /&gt;
If you are looking for the actual on-line application, it is [https://meego.com/community/device-program  located here].&lt;br /&gt;
= Program Goal =&lt;br /&gt;
&lt;br /&gt;
The vision for this program is to put together a framework that makes it very easy for &lt;br /&gt;
anyone to contribute devices and have them go to the most qualified community members &lt;br /&gt;
in exchange for some commitment to do something cool with the device (attributed to Dawn Foster).&lt;br /&gt;
&lt;br /&gt;
== Description ==&lt;br /&gt;
&lt;br /&gt;
The Community Device Program is a way for community members to get devices that they can use for MeeGo work. Devices will be distributed to the most qualified community members &lt;br /&gt;
in exchange for the commitment to do something cool with the device. Hardware manufacturers can submit a request to distribute a device to become part of this program. Visit the wiki for more details on the selection process and requirements.&lt;br /&gt;
&lt;br /&gt;
= Definitions =&lt;br /&gt;
&lt;br /&gt;
== Platform or Device Champion ==&lt;br /&gt;
&lt;br /&gt;
Any community member passionate enough to act as a focal point for devices.  That means researching, blogging, presenting, forum posting, leading discussions on email lists, and any similar highly visible activity in the community space.  Platform or device champions need not be a subject matter expert but should always be willing to help find one.  Champions can cover entire platform(s) or specific device(s).  Note that a Champion may or not be a Recipient.&lt;br /&gt;
&lt;br /&gt;
== Device Provider ==&lt;br /&gt;
&lt;br /&gt;
Any entity participating in the program, at their own expense, with the agreed goal of getting MeeGo-capable devices into the hands of eligible MeeGo community members.  Some criteria:&lt;br /&gt;
 &lt;br /&gt;
* Devices may be gifted, discounted or loaned (at provider's discretion)&lt;br /&gt;
* Development boards, consumer devices (release status determined by provider; may require separate NDA)&lt;br /&gt;
* Devices requiring legal paperwork for release need to be made available directly from the company providing them and not through the Linux Foundation MeeGo device program&lt;br /&gt;
&lt;br /&gt;
Device Provider program details can be found on pages linked in the [[#Platforms.2FDevices|Platforms/Devices]] section.&lt;br /&gt;
&lt;br /&gt;
== Device Recipient ==&lt;br /&gt;
&lt;br /&gt;
Anyone receiving a device from a Provider.&lt;br /&gt;
&lt;br /&gt;
= Program Design and Documentation =&lt;br /&gt;
&lt;br /&gt;
The data model, workflows, forms and other aspects of the device program are described [[/Design_and_Documentation|on this page]].&lt;br /&gt;
&lt;br /&gt;
= Policies and Processes =&lt;br /&gt;
&lt;br /&gt;
== Responsibilities ==&lt;br /&gt;
=== Recipient Eligibility and Responsibilities ===&lt;br /&gt;
* Confirm that you have asked your employer for a device (if applicable), and been turned down.&lt;br /&gt;
* Clear and compelling purpose for the device requested.&lt;br /&gt;
* Agree to use the device for the purpose stated in your application.&lt;br /&gt;
* Agree to blog/tweet/present about your experience with the device.&lt;br /&gt;
* Any vendor-specific requirements (may include shipping restrictions to certain countries).&lt;br /&gt;
* Recipient is responsible for any import taxes, fees or other expenses.&lt;br /&gt;
* Must be a member in good standing in MeeGo Community (defined by [[Community_guidelines|Community Guidelines]])&lt;br /&gt;
* Must provide a valid shipping address and phone number.&lt;br /&gt;
* Willingness to share unused devices.&lt;br /&gt;
&lt;br /&gt;
=== MeeGo / LF Responsibilities ===&lt;br /&gt;
* Drive the process for selecting recipients.&lt;br /&gt;
* Provide an application form for people to use.&lt;br /&gt;
* Provide vendor with a list of names, shipping addresses, phone numbers, email addresses.&lt;br /&gt;
&lt;br /&gt;
=== Device Provider Responsibilities ===&lt;br /&gt;
* Provider will handle all shipping of systems including any relevant paperwork required.&lt;br /&gt;
* Provider will provide system specifications, number of systems available and deadlines.&lt;br /&gt;
* Provider will provide a list of any additional recipient requirements in addition to the ones stated above.&lt;br /&gt;
* Provider is responsible for all costs associated with providing and shipping the devices.&lt;br /&gt;
&lt;br /&gt;
Device providers can submit devices [https://meego.com/node/add/development-device here].&lt;br /&gt;
&lt;br /&gt;
== Approval Committee ==&lt;br /&gt;
* [[User:Texrat|Randall Arnold]] (Community Device Program Lead)&lt;br /&gt;
* Brian Warner (Linux Foundation Rep)&lt;br /&gt;
* [[User:Dawnfoster|Dawn Foster]] (MeeGo Community Office Rep)&lt;br /&gt;
&lt;br /&gt;
We appreciate your understanding that there are a limited number of devices and not all requests can be granted. &lt;br /&gt;
&lt;br /&gt;
We also kindly ask that if/when you no longer need the device, you transfer it to another MeeGo community member or team who can use it.&lt;br /&gt;
&lt;br /&gt;
=== Suggestions ===&lt;br /&gt;
Judges will be looking for truly novel yet practical applications for provided devices.  Filling an obvious gap in the MeeGo ecosystem will help your chances.  Dream big, but have a solid plan for fulfilling it!&lt;br /&gt;
&lt;br /&gt;
== Selection Criteria ==&lt;br /&gt;
* Intended use should be innovative, substantial and well-documented.&lt;br /&gt;
* Intended use should be appropriate and practical for device granted.&lt;br /&gt;
* Looking for a balance of uses for each device (not all one type of primary use).&lt;br /&gt;
* Past contributions to a relevant project may be part of the decision process.&lt;br /&gt;
* It is important that device awards are not limited to a constant set of contributors.  Prior receipt of a gifted or loaned device would be considered for your future applications.  This may or may not apply to discounted devices.&lt;br /&gt;
&lt;br /&gt;
== On-line Application ==&lt;br /&gt;
&lt;br /&gt;
Use the form [https://meego.com/community/device-program provided here] to submit your request.&lt;br /&gt;
&lt;br /&gt;
= Platforms/Devices =&lt;br /&gt;
&lt;br /&gt;
Following are the MeeGo platforms and devices addressed by the program.  You can find examples of devices running MeeGo [[Devices|here]], and an area to propose devices at the bottom of this page.  Proposal submission tracking is located [[/Contact_Table|here]].&lt;br /&gt;
&lt;br /&gt;
== Netbooks ==&lt;br /&gt;
&lt;br /&gt;
TBD&lt;br /&gt;
&lt;br /&gt;
== Entry-level Desktops ==&lt;br /&gt;
&lt;br /&gt;
Not planned at this time&lt;br /&gt;
&lt;br /&gt;
== Nettops ==&lt;br /&gt;
&lt;br /&gt;
TBD&lt;br /&gt;
&lt;br /&gt;
== Tablet Computers ==&lt;br /&gt;
&lt;br /&gt;
=== ExoPC ===&lt;br /&gt;
:Provider(s): [[/Intel|Intel]]&lt;br /&gt;
&lt;br /&gt;
== Mobile Computers/Handsets ==&lt;br /&gt;
&lt;br /&gt;
TBD&lt;br /&gt;
&lt;br /&gt;
== In-Vehicle Infotainment (IVI) Systems ==&lt;br /&gt;
Platform Champion(s): Nathan Willis&lt;br /&gt;
&lt;br /&gt;
== Smart TV/Connected TV ==&lt;br /&gt;
&lt;br /&gt;
TBD&lt;br /&gt;
&lt;br /&gt;
== IP TV Boxes ==&lt;br /&gt;
&lt;br /&gt;
TBD&lt;br /&gt;
&lt;br /&gt;
== Development Devices ==&lt;br /&gt;
&lt;br /&gt;
=== Beagleboard ===&lt;br /&gt;
:Champion(s): Till Harbaum, Jan-Simon Möller&lt;br /&gt;
:Provider(s): [[/Beagleboard|Beagleboard]]&lt;br /&gt;
&lt;br /&gt;
=== Pandaboard ===&lt;br /&gt;
:Champion(s): [[User:texrat|Randall Arnold]]&lt;br /&gt;
:Provider(s): [[/Texas_Instruments|Texas Instruments]]&lt;br /&gt;
&lt;br /&gt;
==Other Embedded Systems ==&lt;br /&gt;
&lt;br /&gt;
TBD&lt;br /&gt;
&lt;br /&gt;
= Device Proposals =&lt;br /&gt;
&lt;br /&gt;
Feel free to add possible devices (with providers) and information here:&lt;br /&gt;
&lt;br /&gt;
* [http://www.pcmag.com/article2/0,2817,2386151,00.asp Asus EeePC X101 netbook]&lt;br /&gt;
* [http://www.noteslate.com/ noteslate] (submitted by Gary Birkett/lcuk)&lt;br /&gt;
* [http://intellicom.se/linux_oem_hardware.cfm Intellicom Netbiter OEM hardware]&lt;br /&gt;
* [http://www.fujitsu.com/hk/news/pr/fpcap_20110211.html Fujitsu LIFEBOOK MH330] with [http://www.linpus.com/news/2011/03/23.html Linpus Lite for MeeGo]&lt;br /&gt;
* [http://www.czctech.com/en/productView.asp?id=82 CZC Tech P10T]&lt;br /&gt;
&lt;br /&gt;
[[/Contact_Table|This page]] is being used to manage proposals.&lt;/div&gt;</summary>
		<author><name>Texrat</name></author>	</entry>

	<entry>
		<id>http://wiki.meego.com/Community_Office/Community_device_program</id>
		<title>Community Office/Community device program</title>
		<link rel="alternate" type="text/html" href="http://wiki.meego.com/Community_Office/Community_device_program"/>
				<updated>2011-06-16T03:20:56Z</updated>
		
		<summary type="html">&lt;p&gt;Texrat: /* Device Possibilities */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This page describes the goal, attributes and requirements for a community device program.  Please feel free to discuss further on the [http://lists.meego.com/listinfo/meego-community meego-community list].&lt;br /&gt;
&lt;br /&gt;
If you are looking for the actual on-line application, it is [https://meego.com/community/device-program  located here].&lt;br /&gt;
= Program Goal =&lt;br /&gt;
&lt;br /&gt;
The vision for this program is to put together a framework that makes it very easy for &lt;br /&gt;
anyone to contribute devices and have them go to the most qualified community members &lt;br /&gt;
in exchange for some commitment to do something cool with the device (attributed to Dawn Foster).&lt;br /&gt;
&lt;br /&gt;
== Description ==&lt;br /&gt;
&lt;br /&gt;
The Community Device Program is a way for community members to get devices that they can use for MeeGo work. Devices will be distributed to the most qualified community members &lt;br /&gt;
in exchange for the commitment to do something cool with the device. Hardware manufacturers can submit a request to distribute a device to become part of this program. Visit the wiki for more details on the selection process and requirements.&lt;br /&gt;
&lt;br /&gt;
= Definitions =&lt;br /&gt;
&lt;br /&gt;
A '''Platform or Device Champion''' is any community member passionate enough to act as a focal point for them.  That means blogging, presenting, forum posting, leading discussions on email lists, and any similar highly visible activity in the community space.  Platform or device champions need not be a subject matter expert but should always be willing to find one.  Champions can cover entire platform(s) or specific device(s).  Note that a Champion may or not be a Recipient.&lt;br /&gt;
&lt;br /&gt;
A '''Device Provider''' is defined as any entity participating in the program, at their own expense, with the agreed goal of getting MeeGo-capable devices into the hands of eligible MeeGo community members.  Some criteria:&lt;br /&gt;
 &lt;br /&gt;
* Devices may be gifted, discounted or loaned (at provider's discretion)&lt;br /&gt;
* Development boards, consumer devices (release status determined by provider; may require separate NDA)&lt;br /&gt;
* Devices requiring legal paperwork for release need to be made available directly from the company providing them and not through the Linux Foundation MeeGo device program&lt;br /&gt;
&lt;br /&gt;
Device Provider program details can be found on pages linked in the [[#Platforms.2FDevices|Platforms/Devices]] section.&lt;br /&gt;
&lt;br /&gt;
A '''Device Recipient''' is anyone receiving a device from a Provider.&lt;br /&gt;
&lt;br /&gt;
= Program Design and Documentation =&lt;br /&gt;
&lt;br /&gt;
The data model, workflows, forms and other aspects of the device program are described [[/Design_and_Documentation|on this page]].&lt;br /&gt;
&lt;br /&gt;
= Policies and Processes =&lt;br /&gt;
&lt;br /&gt;
== Responsibilities ==&lt;br /&gt;
=== Recipient Eligibility and Responsibilities ===&lt;br /&gt;
* Confirm that you have asked your employer for a device (if applicable), and been turned down.&lt;br /&gt;
* Clear and compelling purpose for the device requested.&lt;br /&gt;
* Agree to use the device for the purpose stated in your application.&lt;br /&gt;
* Agree to blog/tweet/present about your experience with the device.&lt;br /&gt;
* Any vendor-specific requirements (may include shipping restrictions to certain countries).&lt;br /&gt;
* Recipient is responsible for any import taxes, fees or other expenses.&lt;br /&gt;
* Must be a member in good standing in MeeGo Community (defined by [[Community_guidelines|Community Guidelines]])&lt;br /&gt;
* Must provide a valid shipping address and phone number.&lt;br /&gt;
* Willingness to share unused devices.&lt;br /&gt;
&lt;br /&gt;
=== MeeGo / LF Responsibilities ===&lt;br /&gt;
* Drive the process for selecting recipients.&lt;br /&gt;
* Provide an application form for people to use.&lt;br /&gt;
* Provide vendor with a list of names, shipping addresses, phone numbers, email addresses.&lt;br /&gt;
&lt;br /&gt;
=== Device Provider Responsibilities ===&lt;br /&gt;
* Provider will handle all shipping of systems including any relevant paperwork required.&lt;br /&gt;
* Provider will provide system specifications, number of systems available and deadlines.&lt;br /&gt;
* Provider will provide a list of any additional recipient requirements in addition to the ones stated above.&lt;br /&gt;
* Provider is responsible for all costs associated with providing and shipping the devices.&lt;br /&gt;
&lt;br /&gt;
Device providers can submit devices [https://meego.com/node/add/development-device here].&lt;br /&gt;
&lt;br /&gt;
== Approval Committee ==&lt;br /&gt;
* [[User:Texrat|Randall Arnold]] (Community Device Program Lead)&lt;br /&gt;
* Brian Warner (Linux Foundation Rep)&lt;br /&gt;
* [[User:Dawnfoster|Dawn Foster]] (MeeGo Community Office Rep)&lt;br /&gt;
&lt;br /&gt;
We appreciate your understanding that there are a limited number of devices and not all requests can be granted. &lt;br /&gt;
&lt;br /&gt;
We also kindly ask that if/when you no longer need the device, you transfer it to another MeeGo community member or team who can use it.&lt;br /&gt;
&lt;br /&gt;
=== Suggestions ===&lt;br /&gt;
Judges will be looking for truly novel yet practical applications for provided devices.  Filling an obvious gap in the MeeGo ecosystem will help your chances.  Dream big, but have a solid plan for fulfilling it!&lt;br /&gt;
&lt;br /&gt;
== Selection Criteria ==&lt;br /&gt;
* Intended use should be innovative, substantial and well-documented.&lt;br /&gt;
* Intended use should be appropriate and practical for device granted.&lt;br /&gt;
* Looking for a balance of uses for each device (not all one type of primary use).&lt;br /&gt;
* Past contributions to a relevant project may be part of the decision process.&lt;br /&gt;
* It is important that device awards are not limited to a constant set of contributors.  Prior receipt of a gifted or loaned device would be considered for your future applications.  This may or may not apply to discounted devices.&lt;br /&gt;
&lt;br /&gt;
== On-line Application ==&lt;br /&gt;
&lt;br /&gt;
Use the form [https://meego.com/community/device-program provided here] to submit your request.&lt;br /&gt;
&lt;br /&gt;
= Platforms/Devices =&lt;br /&gt;
&lt;br /&gt;
Following are the MeeGo platforms and devices addressed by the program.  You can find examples of devices running MeeGo [[Devices|here]], and an area to propose devices at the bottom of this page.  Proposal submission tracking is located [[/Contact_Table|here]].&lt;br /&gt;
&lt;br /&gt;
== Netbooks ==&lt;br /&gt;
&lt;br /&gt;
TBD&lt;br /&gt;
&lt;br /&gt;
== Entry-level Desktops ==&lt;br /&gt;
&lt;br /&gt;
Not planned at this time&lt;br /&gt;
&lt;br /&gt;
== Nettops ==&lt;br /&gt;
&lt;br /&gt;
TBD&lt;br /&gt;
&lt;br /&gt;
== Tablet Computers ==&lt;br /&gt;
&lt;br /&gt;
=== ExoPC ===&lt;br /&gt;
:Provider(s): [[/Intel|Intel]]&lt;br /&gt;
&lt;br /&gt;
== Mobile Computers/Handsets ==&lt;br /&gt;
&lt;br /&gt;
TBD&lt;br /&gt;
&lt;br /&gt;
== In-Vehicle Infotainment (IVI) Systems ==&lt;br /&gt;
Platform Champion(s): Nathan Willis&lt;br /&gt;
&lt;br /&gt;
== Smart TV/Connected TV ==&lt;br /&gt;
&lt;br /&gt;
TBD&lt;br /&gt;
&lt;br /&gt;
== IP TV Boxes ==&lt;br /&gt;
&lt;br /&gt;
TBD&lt;br /&gt;
&lt;br /&gt;
== Development Devices ==&lt;br /&gt;
&lt;br /&gt;
=== Beagleboard ===&lt;br /&gt;
:Champion(s): Till Harbaum, Jan-Simon Möller&lt;br /&gt;
:Provider(s): [[/Beagleboard|Beagleboard]]&lt;br /&gt;
&lt;br /&gt;
=== Pandaboard ===&lt;br /&gt;
:Champion(s): [[User:texrat|Randall Arnold]]&lt;br /&gt;
:Provider(s): [[/Texas_Instruments|Texas Instruments]]&lt;br /&gt;
&lt;br /&gt;
==Other Embedded Systems ==&lt;br /&gt;
&lt;br /&gt;
TBD&lt;br /&gt;
&lt;br /&gt;
= Device Proposals =&lt;br /&gt;
&lt;br /&gt;
Feel free to add possible devices (with providers) and information here:&lt;br /&gt;
&lt;br /&gt;
* [http://www.pcmag.com/article2/0,2817,2386151,00.asp Asus EeePC X101 netbook]&lt;br /&gt;
* [http://www.noteslate.com/ noteslate] (submitted by Gary Birkett/lcuk)&lt;br /&gt;
* [http://intellicom.se/linux_oem_hardware.cfm Intellicom Netbiter OEM hardware]&lt;br /&gt;
* [http://www.fujitsu.com/hk/news/pr/fpcap_20110211.html Fujitsu LIFEBOOK MH330] with [http://www.linpus.com/news/2011/03/23.html Linpus Lite for MeeGo]&lt;br /&gt;
* [http://www.czctech.com/en/productView.asp?id=82 CZC Tech P10T]&lt;br /&gt;
&lt;br /&gt;
[[/Contact_Table|This page]] is being used to manage proposals.&lt;/div&gt;</summary>
		<author><name>Texrat</name></author>	</entry>

	<entry>
		<id>http://wiki.meego.com/Community_Office/Community_device_program</id>
		<title>Community Office/Community device program</title>
		<link rel="alternate" type="text/html" href="http://wiki.meego.com/Community_Office/Community_device_program"/>
				<updated>2011-06-16T03:00:07Z</updated>
		
		<summary type="html">&lt;p&gt;Texrat: /* Platforms/Devices */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This page describes the goal, attributes and requirements for a community device program.  Please feel free to discuss further on the [http://lists.meego.com/listinfo/meego-community meego-community list].&lt;br /&gt;
&lt;br /&gt;
If you are looking for the actual on-line application, it is [https://meego.com/community/device-program  located here].&lt;br /&gt;
= Program Goal =&lt;br /&gt;
&lt;br /&gt;
The vision for this program is to put together a framework that makes it very easy for &lt;br /&gt;
anyone to contribute devices and have them go to the most qualified community members &lt;br /&gt;
in exchange for some commitment to do something cool with the device (attributed to Dawn Foster).&lt;br /&gt;
&lt;br /&gt;
== Description ==&lt;br /&gt;
&lt;br /&gt;
The Community Device Program is a way for community members to get devices that they can use for MeeGo work. Devices will be distributed to the most qualified community members &lt;br /&gt;
in exchange for the commitment to do something cool with the device. Hardware manufacturers can submit a request to distribute a device to become part of this program. Visit the wiki for more details on the selection process and requirements.&lt;br /&gt;
&lt;br /&gt;
= Definitions =&lt;br /&gt;
&lt;br /&gt;
A '''Platform or Device Champion''' is any community member passionate enough to act as a focal point for them.  That means blogging, presenting, forum posting, leading discussions on email lists, and any similar highly visible activity in the community space.  Platform or device champions need not be a subject matter expert but should always be willing to find one.  Champions can cover entire platform(s) or specific device(s).  Note that a Champion may or not be a Recipient.&lt;br /&gt;
&lt;br /&gt;
A '''Device Provider''' is defined as any entity participating in the program, at their own expense, with the agreed goal of getting MeeGo-capable devices into the hands of eligible MeeGo community members.  Some criteria:&lt;br /&gt;
 &lt;br /&gt;
* Devices may be gifted, discounted or loaned (at provider's discretion)&lt;br /&gt;
* Development boards, consumer devices (release status determined by provider; may require separate NDA)&lt;br /&gt;
* Devices requiring legal paperwork for release need to be made available directly from the company providing them and not through the Linux Foundation MeeGo device program&lt;br /&gt;
&lt;br /&gt;
Device Provider program details can be found on pages linked in the [[#Platforms.2FDevices|Platforms/Devices]] section.&lt;br /&gt;
&lt;br /&gt;
A '''Device Recipient''' is anyone receiving a device from a Provider.&lt;br /&gt;
&lt;br /&gt;
= Program Design and Documentation =&lt;br /&gt;
&lt;br /&gt;
The data model, workflows, forms and other aspects of the device program are described [[/Design_and_Documentation|on this page]].&lt;br /&gt;
&lt;br /&gt;
= Policies and Processes =&lt;br /&gt;
&lt;br /&gt;
== Responsibilities ==&lt;br /&gt;
=== Recipient Eligibility and Responsibilities ===&lt;br /&gt;
* Confirm that you have asked your employer for a device (if applicable), and been turned down.&lt;br /&gt;
* Clear and compelling purpose for the device requested.&lt;br /&gt;
* Agree to use the device for the purpose stated in your application.&lt;br /&gt;
* Agree to blog/tweet/present about your experience with the device.&lt;br /&gt;
* Any vendor-specific requirements (may include shipping restrictions to certain countries).&lt;br /&gt;
* Recipient is responsible for any import taxes, fees or other expenses.&lt;br /&gt;
* Must be a member in good standing in MeeGo Community (defined by [[Community_guidelines|Community Guidelines]])&lt;br /&gt;
* Must provide a valid shipping address and phone number.&lt;br /&gt;
* Willingness to share unused devices.&lt;br /&gt;
&lt;br /&gt;
=== MeeGo / LF Responsibilities ===&lt;br /&gt;
* Drive the process for selecting recipients.&lt;br /&gt;
* Provide an application form for people to use.&lt;br /&gt;
* Provide vendor with a list of names, shipping addresses, phone numbers, email addresses.&lt;br /&gt;
&lt;br /&gt;
=== Device Provider Responsibilities ===&lt;br /&gt;
* Provider will handle all shipping of systems including any relevant paperwork required.&lt;br /&gt;
* Provider will provide system specifications, number of systems available and deadlines.&lt;br /&gt;
* Provider will provide a list of any additional recipient requirements in addition to the ones stated above.&lt;br /&gt;
* Provider is responsible for all costs associated with providing and shipping the devices.&lt;br /&gt;
&lt;br /&gt;
Device providers can submit devices [https://meego.com/node/add/development-device here].&lt;br /&gt;
&lt;br /&gt;
== Approval Committee ==&lt;br /&gt;
* [[User:Texrat|Randall Arnold]] (Community Device Program Lead)&lt;br /&gt;
* Brian Warner (Linux Foundation Rep)&lt;br /&gt;
* [[User:Dawnfoster|Dawn Foster]] (MeeGo Community Office Rep)&lt;br /&gt;
&lt;br /&gt;
We appreciate your understanding that there are a limited number of devices and not all requests can be granted. &lt;br /&gt;
&lt;br /&gt;
We also kindly ask that if/when you no longer need the device, you transfer it to another MeeGo community member or team who can use it.&lt;br /&gt;
&lt;br /&gt;
=== Suggestions ===&lt;br /&gt;
Judges will be looking for truly novel yet practical applications for provided devices.  Filling an obvious gap in the MeeGo ecosystem will help your chances.  Dream big, but have a solid plan for fulfilling it!&lt;br /&gt;
&lt;br /&gt;
== Selection Criteria ==&lt;br /&gt;
* Intended use should be innovative, substantial and well-documented.&lt;br /&gt;
* Intended use should be appropriate and practical for device granted.&lt;br /&gt;
* Looking for a balance of uses for each device (not all one type of primary use).&lt;br /&gt;
* Past contributions to a relevant project may be part of the decision process.&lt;br /&gt;
* It is important that device awards are not limited to a constant set of contributors.  Prior receipt of a gifted or loaned device would be considered for your future applications.  This may or may not apply to discounted devices.&lt;br /&gt;
&lt;br /&gt;
== On-line Application ==&lt;br /&gt;
&lt;br /&gt;
Use the form [https://meego.com/community/device-program provided here] to submit your request.&lt;br /&gt;
&lt;br /&gt;
= Platforms/Devices =&lt;br /&gt;
&lt;br /&gt;
Following are the MeeGo platforms and devices addressed by the program.  You can find examples of devices running MeeGo [[Devices|here]], and an area to propose devices at the bottom of this page.  Proposal submission tracking is located [[/Contact_Table|here]].&lt;br /&gt;
&lt;br /&gt;
== Netbooks ==&lt;br /&gt;
&lt;br /&gt;
TBD&lt;br /&gt;
&lt;br /&gt;
== Entry-level Desktops ==&lt;br /&gt;
&lt;br /&gt;
Not planned at this time&lt;br /&gt;
&lt;br /&gt;
== Nettops ==&lt;br /&gt;
&lt;br /&gt;
TBD&lt;br /&gt;
&lt;br /&gt;
== Tablet Computers ==&lt;br /&gt;
&lt;br /&gt;
=== ExoPC ===&lt;br /&gt;
:Provider(s): [[/Intel|Intel]]&lt;br /&gt;
&lt;br /&gt;
== Mobile Computers/Handsets ==&lt;br /&gt;
&lt;br /&gt;
TBD&lt;br /&gt;
&lt;br /&gt;
== In-Vehicle Infotainment (IVI) Systems ==&lt;br /&gt;
Platform Champion(s): Nathan Willis&lt;br /&gt;
&lt;br /&gt;
== Smart TV/Connected TV ==&lt;br /&gt;
&lt;br /&gt;
TBD&lt;br /&gt;
&lt;br /&gt;
== IP TV Boxes ==&lt;br /&gt;
&lt;br /&gt;
TBD&lt;br /&gt;
&lt;br /&gt;
== Development Devices ==&lt;br /&gt;
&lt;br /&gt;
=== Beagleboard ===&lt;br /&gt;
:Champion(s): Till Harbaum, Jan-Simon Möller&lt;br /&gt;
:Provider(s): [[/Beagleboard|Beagleboard]]&lt;br /&gt;
&lt;br /&gt;
=== Pandaboard ===&lt;br /&gt;
:Champion(s): [[User:texrat|Randall Arnold]]&lt;br /&gt;
:Provider(s): [[/Texas_Instruments|Texas Instruments]]&lt;br /&gt;
&lt;br /&gt;
==Other Embedded Systems ==&lt;br /&gt;
&lt;br /&gt;
TBD&lt;br /&gt;
&lt;br /&gt;
= Device Possibilities =&lt;br /&gt;
&lt;br /&gt;
Feel free to add possible devices (with providers) and information here:&lt;br /&gt;
&lt;br /&gt;
* [http://www.pcmag.com/article2/0,2817,2386151,00.asp Asus EeePC X101 netbook]&lt;br /&gt;
* [http://www.noteslate.com/ noteslate] (submitted by Gary Birkett/lcuk)&lt;br /&gt;
* [http://intellicom.se/linux_oem_hardware.cfm Intellicom Netbiter OEM hardware]&lt;br /&gt;
* [http://www.fujitsu.com/hk/news/pr/fpcap_20110211.html Fujitsu LIFEBOOK MH330] with [http://www.linpus.com/news/2011/03/23.html Linpus Lite for MeeGo]&lt;br /&gt;
* [http://www.czctech.com/en/productView.asp?id=82 CZC Tech P10T]&lt;br /&gt;
&lt;br /&gt;
[[/Contact_Table|This page]] is being used to manage proposals.&lt;/div&gt;</summary>
		<author><name>Texrat</name></author>	</entry>

	<entry>
		<id>http://wiki.meego.com/Community_Office/Community_device_program</id>
		<title>Community Office/Community device program</title>
		<link rel="alternate" type="text/html" href="http://wiki.meego.com/Community_Office/Community_device_program"/>
				<updated>2011-06-16T02:52:11Z</updated>
		
		<summary type="html">&lt;p&gt;Texrat: /* Device Possibilities */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This page describes the goal, attributes and requirements for a community device program.  Please feel free to discuss further on the [http://lists.meego.com/listinfo/meego-community meego-community list].&lt;br /&gt;
&lt;br /&gt;
If you are looking for the actual on-line application, it is [https://meego.com/community/device-program  located here].&lt;br /&gt;
= Program Goal =&lt;br /&gt;
&lt;br /&gt;
The vision for this program is to put together a framework that makes it very easy for &lt;br /&gt;
anyone to contribute devices and have them go to the most qualified community members &lt;br /&gt;
in exchange for some commitment to do something cool with the device (attributed to Dawn Foster).&lt;br /&gt;
&lt;br /&gt;
== Description ==&lt;br /&gt;
&lt;br /&gt;
The Community Device Program is a way for community members to get devices that they can use for MeeGo work. Devices will be distributed to the most qualified community members &lt;br /&gt;
in exchange for the commitment to do something cool with the device. Hardware manufacturers can submit a request to distribute a device to become part of this program. Visit the wiki for more details on the selection process and requirements.&lt;br /&gt;
&lt;br /&gt;
= Definitions =&lt;br /&gt;
&lt;br /&gt;
A '''Platform or Device Champion''' is any community member passionate enough to act as a focal point for them.  That means blogging, presenting, forum posting, leading discussions on email lists, and any similar highly visible activity in the community space.  Platform or device champions need not be a subject matter expert but should always be willing to find one.  Champions can cover entire platform(s) or specific device(s).  Note that a Champion may or not be a Recipient.&lt;br /&gt;
&lt;br /&gt;
A '''Device Provider''' is defined as any entity participating in the program, at their own expense, with the agreed goal of getting MeeGo-capable devices into the hands of eligible MeeGo community members.  Some criteria:&lt;br /&gt;
 &lt;br /&gt;
* Devices may be gifted, discounted or loaned (at provider's discretion)&lt;br /&gt;
* Development boards, consumer devices (release status determined by provider; may require separate NDA)&lt;br /&gt;
* Devices requiring legal paperwork for release need to be made available directly from the company providing them and not through the Linux Foundation MeeGo device program&lt;br /&gt;
&lt;br /&gt;
Device Provider program details can be found on pages linked in the [[#Platforms.2FDevices|Platforms/Devices]] section.&lt;br /&gt;
&lt;br /&gt;
A '''Device Recipient''' is anyone receiving a device from a Provider.&lt;br /&gt;
&lt;br /&gt;
= Program Design and Documentation =&lt;br /&gt;
&lt;br /&gt;
The data model, workflows, forms and other aspects of the device program are described [[/Design_and_Documentation|on this page]].&lt;br /&gt;
&lt;br /&gt;
= Policies and Processes =&lt;br /&gt;
&lt;br /&gt;
== Responsibilities ==&lt;br /&gt;
=== Recipient Eligibility and Responsibilities ===&lt;br /&gt;
* Confirm that you have asked your employer for a device (if applicable), and been turned down.&lt;br /&gt;
* Clear and compelling purpose for the device requested.&lt;br /&gt;
* Agree to use the device for the purpose stated in your application.&lt;br /&gt;
* Agree to blog/tweet/present about your experience with the device.&lt;br /&gt;
* Any vendor-specific requirements (may include shipping restrictions to certain countries).&lt;br /&gt;
* Recipient is responsible for any import taxes, fees or other expenses.&lt;br /&gt;
* Must be a member in good standing in MeeGo Community (defined by [[Community_guidelines|Community Guidelines]])&lt;br /&gt;
* Must provide a valid shipping address and phone number.&lt;br /&gt;
* Willingness to share unused devices.&lt;br /&gt;
&lt;br /&gt;
=== MeeGo / LF Responsibilities ===&lt;br /&gt;
* Drive the process for selecting recipients.&lt;br /&gt;
* Provide an application form for people to use.&lt;br /&gt;
* Provide vendor with a list of names, shipping addresses, phone numbers, email addresses.&lt;br /&gt;
&lt;br /&gt;
=== Device Provider Responsibilities ===&lt;br /&gt;
* Provider will handle all shipping of systems including any relevant paperwork required.&lt;br /&gt;
* Provider will provide system specifications, number of systems available and deadlines.&lt;br /&gt;
* Provider will provide a list of any additional recipient requirements in addition to the ones stated above.&lt;br /&gt;
* Provider is responsible for all costs associated with providing and shipping the devices.&lt;br /&gt;
&lt;br /&gt;
Device providers can submit devices [https://meego.com/node/add/development-device here].&lt;br /&gt;
&lt;br /&gt;
== Approval Committee ==&lt;br /&gt;
* [[User:Texrat|Randall Arnold]] (Community Device Program Lead)&lt;br /&gt;
* Brian Warner (Linux Foundation Rep)&lt;br /&gt;
* [[User:Dawnfoster|Dawn Foster]] (MeeGo Community Office Rep)&lt;br /&gt;
&lt;br /&gt;
We appreciate your understanding that there are a limited number of devices and not all requests can be granted. &lt;br /&gt;
&lt;br /&gt;
We also kindly ask that if/when you no longer need the device, you transfer it to another MeeGo community member or team who can use it.&lt;br /&gt;
&lt;br /&gt;
=== Suggestions ===&lt;br /&gt;
Judges will be looking for truly novel yet practical applications for provided devices.  Filling an obvious gap in the MeeGo ecosystem will help your chances.  Dream big, but have a solid plan for fulfilling it!&lt;br /&gt;
&lt;br /&gt;
== Selection Criteria ==&lt;br /&gt;
* Intended use should be innovative, substantial and well-documented.&lt;br /&gt;
* Intended use should be appropriate and practical for device granted.&lt;br /&gt;
* Looking for a balance of uses for each device (not all one type of primary use).&lt;br /&gt;
* Past contributions to a relevant project may be part of the decision process.&lt;br /&gt;
* It is important that device awards are not limited to a constant set of contributors.  Prior receipt of a gifted or loaned device would be considered for your future applications.  This may or may not apply to discounted devices.&lt;br /&gt;
&lt;br /&gt;
== On-line Application ==&lt;br /&gt;
&lt;br /&gt;
Use the form [https://meego.com/community/device-program provided here] to submit your request.&lt;br /&gt;
&lt;br /&gt;
= Platforms/Devices =&lt;br /&gt;
&lt;br /&gt;
Following are the MeeGo platforms and devices addressed by the program.  You can find examples of devices running MeeGo [[Devices|here]], and proposal submission tracking [[/Contact_Table|here]].&lt;br /&gt;
&lt;br /&gt;
== Netbooks ==&lt;br /&gt;
&lt;br /&gt;
TBD&lt;br /&gt;
&lt;br /&gt;
== Entry-level Desktops ==&lt;br /&gt;
&lt;br /&gt;
Not planned at this time&lt;br /&gt;
&lt;br /&gt;
== Nettops ==&lt;br /&gt;
&lt;br /&gt;
TBD&lt;br /&gt;
&lt;br /&gt;
== Tablet Computers ==&lt;br /&gt;
&lt;br /&gt;
=== ExoPC ===&lt;br /&gt;
:Provider(s): [[/Intel|Intel]]&lt;br /&gt;
&lt;br /&gt;
== Mobile Computers/Handsets ==&lt;br /&gt;
&lt;br /&gt;
TBD&lt;br /&gt;
&lt;br /&gt;
== In-Vehicle Infotainment (IVI) Systems ==&lt;br /&gt;
Platform Champion(s): Nathan Willis&lt;br /&gt;
&lt;br /&gt;
== Smart TV/Connected TV ==&lt;br /&gt;
&lt;br /&gt;
TBD&lt;br /&gt;
&lt;br /&gt;
== IP TV Boxes ==&lt;br /&gt;
&lt;br /&gt;
TBD&lt;br /&gt;
&lt;br /&gt;
== Development Devices ==&lt;br /&gt;
&lt;br /&gt;
=== Beagleboard ===&lt;br /&gt;
:Champion(s): Till Harbaum, Jan-Simon Möller&lt;br /&gt;
:Provider(s): [[/Beagleboard|Beagleboard]]&lt;br /&gt;
&lt;br /&gt;
=== Pandaboard ===&lt;br /&gt;
:Champion(s): [[User:texrat|Randall Arnold]]&lt;br /&gt;
:Provider(s): [[/Texas_Instruments|Texas Instruments]]&lt;br /&gt;
&lt;br /&gt;
==Other Embedded Systems ==&lt;br /&gt;
&lt;br /&gt;
TBD&lt;br /&gt;
&lt;br /&gt;
= Device Possibilities =&lt;br /&gt;
&lt;br /&gt;
Feel free to add possible devices (with providers) and information here:&lt;br /&gt;
&lt;br /&gt;
* [http://www.pcmag.com/article2/0,2817,2386151,00.asp Asus EeePC X101 netbook]&lt;br /&gt;
* [http://www.noteslate.com/ noteslate] (submitted by Gary Birkett/lcuk)&lt;br /&gt;
* [http://intellicom.se/linux_oem_hardware.cfm Intellicom Netbiter OEM hardware]&lt;br /&gt;
* [http://www.fujitsu.com/hk/news/pr/fpcap_20110211.html Fujitsu LIFEBOOK MH330] with [http://www.linpus.com/news/2011/03/23.html Linpus Lite for MeeGo]&lt;br /&gt;
* [http://www.czctech.com/en/productView.asp?id=82 CZC Tech P10T]&lt;br /&gt;
&lt;br /&gt;
[[/Contact_Table|This page]] is being used to manage proposals.&lt;/div&gt;</summary>
		<author><name>Texrat</name></author>	</entry>

	</feed>