<?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/Saviq&amp;feed=atom&amp;limit=50&amp;target=Saviq&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/Saviq&amp;feed=atom&amp;limit=50&amp;target=Saviq&amp;year=&amp;month="/>
		<link rel="alternate" type="text/html" href="http://wiki.meego.com/Special:Contributions/Saviq"/>
		<updated>2013-05-20T06:11:17Z</updated>
		<subtitle>From MeeGo wiki</subtitle>
		<generator>MediaWiki 1.16.2</generator>

	<entry>
		<id>http://wiki.meego.com/QtWorkshop/TeamSirloin</id>
		<title>QtWorkshop/TeamSirloin</title>
		<link rel="alternate" type="text/html" href="http://wiki.meego.com/QtWorkshop/TeamSirloin"/>
				<updated>2011-05-22T19:17:25Z</updated>
		
		<summary type="html">&lt;p&gt;Saviq: Created page with &amp;quot;== Team Sirloin == * [https://meego.com/users/ericf2009 EricF2009] * [https://meego.com/users/scifiguy SciFiGuy] * [https://meego.com/users/saviq Saviq]  === Our goal === Write a...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Team Sirloin ==&lt;br /&gt;
* [https://meego.com/users/ericf2009 EricF2009]&lt;br /&gt;
* [https://meego.com/users/scifiguy SciFiGuy]&lt;br /&gt;
* [https://meego.com/users/saviq Saviq]&lt;br /&gt;
&lt;br /&gt;
=== Our goal ===&lt;br /&gt;
Write an application to show in real time tweets tagged with #MeeGoConf&lt;br /&gt;
&lt;br /&gt;
=== Our result ===&lt;br /&gt;
It worked!&lt;br /&gt;
&lt;br /&gt;
=== The code ===&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
import QtQuick 1.0&lt;br /&gt;
&lt;br /&gt;
Rectangle {&lt;br /&gt;
    width:  520&lt;br /&gt;
    height: 360&lt;br /&gt;
&lt;br /&gt;
    Component {&lt;br /&gt;
        id : listComponent&lt;br /&gt;
&lt;br /&gt;
        Rectangle {&lt;br /&gt;
            height: 80&lt;br /&gt;
            width: parent.width&lt;br /&gt;
&lt;br /&gt;
            Image {&lt;br /&gt;
                id: avatar&lt;br /&gt;
                source: image_url&lt;br /&gt;
                width: parent.height-6&lt;br /&gt;
                height:  parent.height-6&lt;br /&gt;
                anchors.top: parent.top&lt;br /&gt;
                anchors.left: parent.left&lt;br /&gt;
                anchors.margins: 3&lt;br /&gt;
            }&lt;br /&gt;
&lt;br /&gt;
            Rectangle {&lt;br /&gt;
                anchors.left:  avatar.right&lt;br /&gt;
                anchors.right: parent.right&lt;br /&gt;
                height:  parent.height - 6&lt;br /&gt;
                anchors.margins: 3&lt;br /&gt;
                color: index % 2&lt;br /&gt;
                    ? &amp;quot;grey&amp;quot;&lt;br /&gt;
                    : &amp;quot;lightgrey&amp;quot;&lt;br /&gt;
&lt;br /&gt;
                Text {&lt;br /&gt;
                    id: msg&lt;br /&gt;
                    height: 60&lt;br /&gt;
                    text: from + &amp;quot;: &amp;quot; + tweet&lt;br /&gt;
                    horizontalAlignment:Text.AlignLeft&lt;br /&gt;
                    anchors.top: parent.top&lt;br /&gt;
                    width:  parent.width&lt;br /&gt;
                    wrapMode: Text.WordWrap&lt;br /&gt;
                }&lt;br /&gt;
&lt;br /&gt;
                Text {&lt;br /&gt;
                    text: posted&lt;br /&gt;
                    width:  parent.width&lt;br /&gt;
                    height:  parent.height-msg.height&lt;br /&gt;
                    anchors.top: msg.bottom&lt;br /&gt;
                    horizontalAlignment: Text.AlignRight&lt;br /&gt;
                    verticalAlignment: Text.AlignBottom&lt;br /&gt;
                }&lt;br /&gt;
            }&lt;br /&gt;
        }&lt;br /&gt;
    }&lt;br /&gt;
&lt;br /&gt;
    ListModel {&lt;br /&gt;
        id: tweetModel&lt;br /&gt;
    }&lt;br /&gt;
&lt;br /&gt;
    Timer {&lt;br /&gt;
        interval: 1000&lt;br /&gt;
        running: true&lt;br /&gt;
        repeat: true&lt;br /&gt;
        onTriggered: { loadData() }&lt;br /&gt;
    }&lt;br /&gt;
&lt;br /&gt;
    function loadData() {&lt;br /&gt;
        var xhr = new XMLHttpRequest;&lt;br /&gt;
        xhr.onreadystatechange = function() {&lt;br /&gt;
            if (xhr.readyState == XMLHttpRequest.DONE) {&lt;br /&gt;
                var data = JSON.parse(xhr.responseText);&lt;br /&gt;
                var o&lt;br /&gt;
                tweetModel.clear()&lt;br /&gt;
                for (var i=0; (o = data['results'][i]); i++) {&lt;br /&gt;
                    tweetModel.append({posted: o.created_at,&lt;br /&gt;
                                      from: o.from_user,&lt;br /&gt;
                                      tweet: o.text,&lt;br /&gt;
                                      image_url: o.profile_image_url})&lt;br /&gt;
                }&lt;br /&gt;
            }&lt;br /&gt;
        }&lt;br /&gt;
        xhr.open(&amp;quot;GET&amp;quot;, &amp;quot;http://search.twitter.com/search.json?q=%23MeeGoConf&amp;amp;result_type=recent&amp;quot;)&lt;br /&gt;
        xhr.send()&lt;br /&gt;
    }&lt;br /&gt;
&lt;br /&gt;
    ListView {&lt;br /&gt;
         width: parent.width;&lt;br /&gt;
         height: count * 20&lt;br /&gt;
         anchors.centerIn: parent&lt;br /&gt;
         model: tweetModel&lt;br /&gt;
         delegate: listComponent&lt;br /&gt;
    }&lt;br /&gt;
&lt;br /&gt;
    MouseArea {&lt;br /&gt;
        anchors.fill: parent&lt;br /&gt;
        onClicked: {&lt;br /&gt;
            Qt.quit();&lt;br /&gt;
        }&lt;br /&gt;
    }&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;/div&gt;</summary>
		<author><name>Saviq</name></author>	</entry>

	<entry>
		<id>http://wiki.meego.com/MeeGo_Conference_Spring_2011</id>
		<title>MeeGo Conference Spring 2011</title>
		<link rel="alternate" type="text/html" href="http://wiki.meego.com/MeeGo_Conference_Spring_2011"/>
				<updated>2011-05-22T18:56:23Z</updated>
		
		<summary type="html">&lt;p&gt;Saviq: /* Qt development workshop */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The main Conference site is: [http://sf2011.meego.com/ San Francisco Meego Conference 2011]&lt;br /&gt;
&lt;br /&gt;
== Logistics ==&lt;br /&gt;
May 23 - 25: San Francisco Regency Hyatt&lt;br /&gt;
* Annual industry event&lt;br /&gt;
* Announcements / Information focus&lt;br /&gt;
* Broader industry audience&lt;br /&gt;
* Call for Proposals and Registration will open early February&lt;br /&gt;
&lt;br /&gt;
== Organizing Committee ==&lt;br /&gt;
[[File:Organizing committee.pdf]]&lt;br /&gt;
&lt;br /&gt;
'''Team Lead: Amy Leeland'''&lt;br /&gt;
&lt;br /&gt;
Advisory and Community Interface:&lt;br /&gt;
* Dawn Foster - Community Management&lt;br /&gt;
* Quim Gil - Marketing Management&lt;br /&gt;
&lt;br /&gt;
Program Committee: &lt;br /&gt;
* Lead: Dirk Hohndel&lt;br /&gt;
* Carsten Munk&lt;br /&gt;
* Thiago  Maciera&lt;br /&gt;
* Ashley Walker (Speaker Management)&lt;br /&gt;
&lt;br /&gt;
Coordination:&lt;br /&gt;
* Lead: Brian Warner Sponsorships&lt;br /&gt;
* AJ Reed: Post Event management&lt;br /&gt;
* Mike Shaver: Web Management&lt;br /&gt;
* Dave Neary: Early Bird Events&lt;br /&gt;
&lt;br /&gt;
== Call for proposals ==&lt;br /&gt;
&lt;br /&gt;
* [http://sf2011.meego.com/program/call-session-proposals CfP]&lt;br /&gt;
* [[MeeGo Conference Spring 2011/CfP Drafting|Draft CfP]]&lt;br /&gt;
&lt;br /&gt;
== Hyatt Space details==&lt;br /&gt;
&lt;br /&gt;
Link to conference area map:[http://sanfranciscoregency.hyatt.com/hyatt/images/hotels/sfors/floorplan.pdf]&lt;br /&gt;
&lt;br /&gt;
'''2nd Floor ''Street Level'' entrance'''&lt;br /&gt;
*Grand Ballroom A+B+C will be used as our Keynote room with redundant Screens/Sound in Market Street Foyer and Grand Ballroom Foyer (Seats 1300, with 100 standing in lobby spaces and feeds coming out)&lt;br /&gt;
Breakouts and room descriptions as follows:&lt;br /&gt;
*1 Grand Ballroom A  (700 theater)&lt;br /&gt;
*2 Grand Ballroom B (200 cab)&lt;br /&gt;
*3 Grand Ballroom C  (200 cab)&lt;br /&gt;
*Tech Showcase will take place in Market Street Foyer and Grand Ballroom Foyer. Not to be just single table tops, requested 3 different orientations to choose from. Tea and Coffee will be available in Tech showcase area&lt;br /&gt;
*Registration + Welcome Kit fulfillment: Market Street Foyer and Grand Ballroom Foyer. Kits will be organized based upon gender/size, not name&lt;br /&gt;
*Media/Blogger Room: Regency A &lt;br /&gt;
*Keynote Prep Room: Regency B &lt;br /&gt;
*Event Office: Plaza Room &lt;br /&gt;
&lt;br /&gt;
'''3rd floor ''Bay Level'''''&lt;br /&gt;
*4 Seacliff A-B (110 cab) &lt;br /&gt;
*5 Seacliff C-D (110 cab)&lt;br /&gt;
*6 Bayview Room A-B (200 cab)&lt;br /&gt;
*Platinum Meeting Rooms: Marina Room and Golden Gate room on Bay Level &lt;br /&gt;
&lt;br /&gt;
'''4th floor ''Atrium Lobby Level'''''&lt;br /&gt;
*All Catering Breakfast, Lunch, breaks and receptions will be held in Atrium of Hotel&lt;br /&gt;
This includes Garden Room A+B, 13 Views Lounge, and Hospitality Room can seat up to 1400 in this area.&lt;br /&gt;
*Nokia Boardroom: Boardroom A [atrium] &lt;br /&gt;
*Intel Boardroom: Boardroom B [atrium] &lt;br /&gt;
&lt;br /&gt;
'''1st Floor ''Pacific Concourse Level'''''&lt;br /&gt;
*This will all be used as Early Bird space partitioned rooms A-O (17,000 sq ft all partitionable) Saturday until Sunday evening then it will be………&lt;br /&gt;
*Hacker Lounge: Pacific Concourse K—O &lt;br /&gt;
*Meeting rooms partitioned in Pacific Concourse: A, B, C, D, E &lt;br /&gt;
*Gold sponsors get A and B&lt;br /&gt;
*Spaces F and G will be used as a meeting room bookable space&lt;br /&gt;
&lt;br /&gt;
== Attendee information ==&lt;br /&gt;
&lt;br /&gt;
For flight arrival &amp;amp; departure times, please see [[MeeGo Conference Spring 2011/Flight Information]] - feel free to add your own arrival &amp;amp; departure times, contact people to share taxis or meet up at the airport.&lt;br /&gt;
&lt;br /&gt;
For sponsored attendees sharing rooms, please choose your sharing partner on the [[/Accommodation | accommodation page]], or we will assign the person sharing a room with you.&lt;br /&gt;
&lt;br /&gt;
== MeeGo Conference Warm-Up ==&lt;br /&gt;
&lt;br /&gt;
The MeeGo Conference Warm-Up will include workshops catering to MeeGo application developers, and tutorials to help people get started developing for the platform. We also plan to have some fun extra-curricular activities involving building things. The warm-up sessions will be held at the Hyatt in San Francisco (the conference hotel/ conference facility) on May 21-22, the weekend before the conference begins.&lt;br /&gt;
&lt;br /&gt;
We will have two parallel tutorial tracks, on a range of topics related to MeeGo, and one workshop track where people can get together and work on programming problems or brainstorm application designs.&lt;br /&gt;
&lt;br /&gt;
And we plan some fun activities throughout the weekend, including a Maker's Contest where contestants will have to use raw materials including balsa wood, paper clips, string, paper and glue to build a machine capable of launching a projectile (Trebuchet, slingshot, catapult, whatever) over a distance of ~10m. The results will be judged with a live-action Angry Birds contest. And every evening we'll be running Werewolf sessions.&lt;br /&gt;
&lt;br /&gt;
=== Schedule ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
! Date/Time&lt;br /&gt;
! Tutorial 1&lt;br /&gt;
! Tutorial 2&lt;br /&gt;
! Workshop&lt;br /&gt;
|-&lt;br /&gt;
|Sat 21, 09:00 - 12:30&lt;br /&gt;
| [[#Introduction_to_Qt | Introduction to Qt ]]&lt;br /&gt;
| --&lt;br /&gt;
| [[#UX_workshop | UX workshop ]]&lt;br /&gt;
|-&lt;br /&gt;
|Sat 21, 14:00 - 17:30&lt;br /&gt;
| [[#Introduction_to_Qt | Introduction to Qt]]&lt;br /&gt;
| [[#Community OBS | Community OBS &amp;amp; Software Distribution]]&lt;br /&gt;
| [[#UX_workshop | UX workshop]]&lt;br /&gt;
|-&lt;br /&gt;
|Sat 21, 18:00 - 19:30&lt;br /&gt;
| colspan=&amp;quot;3&amp;quot; align=&amp;quot;center&amp;quot; | [[#Makers_contest | Siege weapon building, live action Angry Birds]]&lt;br /&gt;
|-&lt;br /&gt;
|Sat 21, 21:00 - late&lt;br /&gt;
| colspan=&amp;quot;3&amp;quot; align=&amp;quot;center&amp;quot; | [[/Werewolf | Mini Werewolf]]&lt;br /&gt;
|-&lt;br /&gt;
|Sun 22, 09:00 - 12:30&lt;br /&gt;
| [[#Introduction_to_MeeGo_SDK | Introduction to MeeGo SDK]] ([http://appdeveloper.intel.com/events registration required])&lt;br /&gt;
| [[#Linux_developer_tools | Linux developer tools]]&lt;br /&gt;
| [[#Qt_development_workshop | Qt development workshop]]&lt;br /&gt;
|-&lt;br /&gt;
|Sun 22, 14:00 - 17:30&lt;br /&gt;
| [[#Introduction_to_MeeGo_SDK | Introduction to MeeGo SDK]] ([http://appdeveloper.intel.com/events registration required])&lt;br /&gt;
| [[#MeeGo_localisation | MeeGo localisation]]&lt;br /&gt;
| [[#Qt_development_workshop | Qt development workshop]]&lt;br /&gt;
|-&lt;br /&gt;
|Sun 22, 20:00 - late&lt;br /&gt;
| colspan=&amp;quot;3&amp;quot; align=&amp;quot;center&amp;quot; | [[/Werewolf | Mass Werewolf, MeeGo Conference 2011 version]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Introduction to Qt ===&lt;br /&gt;
&lt;br /&gt;
Training course offered by Roland Krause from ICS and MeeGo community member Thomas Perl.&lt;br /&gt;
&lt;br /&gt;
Topics covered include:&lt;br /&gt;
* Setting up the MeeGo SDK&lt;br /&gt;
* Installing MeeGo on the Device&lt;br /&gt;
* Installing and Configurating Qt SDK&lt;br /&gt;
* Configuring Qt Creator&lt;br /&gt;
* Intro to Qt Creator&lt;br /&gt;
* Understanding QMake&lt;br /&gt;
* Building your First Application&lt;br /&gt;
* Introduction to PySide&lt;br /&gt;
* Introduction to QML&lt;br /&gt;
**   Elements&lt;br /&gt;
**   Properties and Types&lt;br /&gt;
**   Signals&lt;br /&gt;
**   Anchoring and Positioning&lt;br /&gt;
**   States&lt;br /&gt;
**   Transitions&lt;br /&gt;
**   Simple Animations&lt;br /&gt;
&lt;br /&gt;
=== Community OBS ===&lt;br /&gt;
David Greaves, Niels Breet and Henri Bergius will take you through the basics of using Community [[/OBS|OBS]], uploading your project, getting it built and packaged automatically, fixing any build issues, and making the software available on the community software downloads site.&lt;br /&gt;
&lt;br /&gt;
This will be part tutorial, part hands-on workshop, part BOF.&lt;br /&gt;
&lt;br /&gt;
=== UX workshop ===&lt;br /&gt;
&lt;br /&gt;
Developers are invited to turn up and present their applications to other attendees and our UX experts, and identify together areas of improvement and possible designs for presenting the same functionality to the use.&lt;br /&gt;
&lt;br /&gt;
=== Makers contest ===&lt;br /&gt;
&lt;br /&gt;
10 teams of 3 to 4 people will have one hour to build the best siege weapon possible for a live action Angry Birds round which will decide the winner. Trebuchet, catapult or slingshot, the weapon must be able to send an Angry Bird bean-bag into a pre-arranged structure containing evil snorting pigs. The winner will be determined by our impartial judges and comperes, Dave Neary, Alison Chaiken &amp;amp; Julien Fourgeaud.&lt;br /&gt;
&lt;br /&gt;
Equipment available to teams will include: various balsa wood cuts, glue guns and glue sticks, twine, paper clips, plain brown paper and elastic bands. There may be some other surprise materials thrown in on the day, if we're feeling generous.&lt;br /&gt;
&lt;br /&gt;
=== Introduction to MeeGo SDK ===&lt;br /&gt;
&lt;br /&gt;
'''Important: You need to [http://appdeveloper.intel.com/events register in advance] if you want to attend this session'''&lt;br /&gt;
&lt;br /&gt;
The Intel AppUpSM Application Lab: MeeGo series will be in San Francisco for the MeeGo Conference Warm Up!  Register now to Meet Bob Spencer from the MeeGo SDK team and members of the Intel AppUpSM developer program team to learn how to create and deploy MeeGo applications using the MeeGo SDK and the Intel AppUpTM SDK for MeeGo.  Discover how to create exciting user experiences with MeeGo* and the Intel AppUpSM developer program.  MeeGo promotes innovation and portability across multiple device types, such as tablets, netbooks and smartphones.  Developing for MeeGo presents a great opportunity to make money and deploy your applications quickly and easily. You don't have to be attending the MeeGo Conference to attend this event! &lt;br /&gt;
&lt;br /&gt;
Join us at The Hyatt Regency San Francisco Embarcadero Centre on Sunday, May 22, 2011 for one of our FREE training sessions to learn how to develop applications for MeeGo and the benefits of the Intel AppUpSM developer program. Two sessions are available to choose from: &lt;br /&gt;
&lt;br /&gt;
Sunday, May 22: 9:00am - 12:30pm&lt;br /&gt;
Sunday, May 22: 2:00pm - 5:30pm &lt;br /&gt;
&lt;br /&gt;
General Agenda:&lt;br /&gt;
* Doors open 30 minutes before each session start for check-in (check-in closes 10 minutes after start)&lt;br /&gt;
* Session Content &lt;br /&gt;
** Overview of the Intel AppUpSM center &amp;amp; Intel AppUpSM developer program&lt;br /&gt;
** Introduction to the MeeGo SDK&lt;br /&gt;
** Introduction to the Intel AppUpTM SDK Suite for MeeGo &lt;br /&gt;
** Application packaging and submission &lt;br /&gt;
* Talk to Intel engineers about your specific code &amp;amp; questions with an information Q&amp;amp;A session&lt;br /&gt;
&lt;br /&gt;
Seating is limited so [http://appdeveloper.intel.com/events register today] at http://appdeveloper.intel.com/events&lt;br /&gt;
&lt;br /&gt;
=== Linux developer tools ===&lt;br /&gt;
&lt;br /&gt;
An overview of common Linux developer tools, including git, gdb and valgrind, by timeless.&lt;br /&gt;
&lt;br /&gt;
'''Using MXR'''&lt;br /&gt;
&lt;br /&gt;
* For Triagers -- when you get a crash trace&lt;br /&gt;
** Using identifier searches to walk through a stack trace&lt;br /&gt;
** When you get a bug report in a foreign language, using text&lt;br /&gt;
searches to work from the foreign report to the codebase's native&lt;br /&gt;
language&lt;br /&gt;
* For Architects -- when you want to understand the ramifications of&lt;br /&gt;
changing an API&lt;br /&gt;
** Using text searches to find&lt;br /&gt;
** Using identifier searches to&lt;br /&gt;
* For Linguists&lt;br /&gt;
** Using filtered text searches to get more awareness of context&lt;br /&gt;
* For themers&lt;br /&gt;
** When you see an image in the ui and need to find its name&lt;br /&gt;
* Aiding MXR&lt;br /&gt;
** Fields packagers can use to provide directory descriptions&lt;br /&gt;
&lt;br /&gt;
=== MeeGo localisation ===&lt;br /&gt;
&lt;br /&gt;
Margie Foster will discuss the localisation process for MeeGo. This is not a &amp;quot;formal&amp;quot; tutorial, since Dimitris Glezos cannot be there. Margie hopes to have an active discussion about the localisation process, and share upcoming milestones in the MeeGo UX localisation schedule. She plans to cover:&lt;br /&gt;
* How to extract translatable strings from an application--both QML-based and using &amp;quot;gettext&amp;quot;&lt;br /&gt;
* The process of using QTLinguist and Transifex to translate the strings&lt;br /&gt;
* Describe how the strings get from Transifex into MeeGo&lt;br /&gt;
* Describe how the language packs are generated&lt;br /&gt;
* Discuss how you as a developer can compile and test your translated application&lt;br /&gt;
&lt;br /&gt;
=== Qt development workshop ===&lt;br /&gt;
&lt;br /&gt;
A programming problem will be presented, and attendees will have a hands-on programming lab, with amateurs and experts on hand to help you out when you get into trouble. If you'd like to help out as an assistant during this training session, please add your name here:&lt;br /&gt;
&lt;br /&gt;
'''Qt/QML/UI experts'''&lt;br /&gt;
&lt;br /&gt;
* Thomas Perl&lt;br /&gt;
* Sampo Savola&lt;br /&gt;
&lt;br /&gt;
'''Results'''&lt;br /&gt;
* [[QtWorkshop/TeamSirloin|Team Sirloin]]&lt;br /&gt;
* [[QtWorkshop/TeamBacon|Team Bacon]]&lt;br /&gt;
&lt;br /&gt;
== Partners Activities ==&lt;br /&gt;
Quite a few people will be accompanied by partners who may not be *quite* so enthusiastic about immersing themselves in MeeGo 24x7... so there's a [[/partners|partners page]] to organise some events nearby to give them a break from the tech.&lt;br /&gt;
&lt;br /&gt;
=== Tourism ===&lt;br /&gt;
If you have a little extra time then check the [[/Tourism|tourism page]] for a few ideas. (Please feel free to add ideas too).&lt;br /&gt;
&lt;br /&gt;
== Hacker Lounge ==&lt;br /&gt;
Was a very popular activity for community members. Having it stocked with beer and snacks was perfect, and we'd love to do something similar for spring.&lt;br /&gt;
&lt;br /&gt;
== Ideas for fun activities ==&lt;br /&gt;
* [http://www.bahiker.com/northbayhikes/stinson.html Hike in Marin County on Mt. Tamalpais] just across the Golden Gate Bridge and get great views of San Francisco (when it's not foggy).   Potentially led by [[User:Alison| Alison Chaiken]].   Would require transportation to the trailhead from the hotel, perhaps a 45-minute drive.&lt;br /&gt;
* [http://www.blazingsaddles.com/store/?catid=7  Cycle across the Golden Gate Bridge], potentially guided by [[User:Alison| Alison Chaiken]]. The route is pancake flat but is on a regular city street with low-speed traffic.   [http://www.blazingsaddles.com/maps-and-rides/san-francisco-self-guided-tours.aspx  Riding across the Bridge] does require some caution on foggy days due to a wet surface.   (Foggy days can occur any time of year.)   I have inquired about group discounts.   The bike rental is walkable from the hotel.&lt;br /&gt;
* The [[MeeGo_Conference_2010/Werewolf]] was popular, and we're scheming on some additional [[MeeGo_Conference_Spring_2011/Werewolf]] MeeGo Werewolf variations for 2010.&lt;br /&gt;
&lt;br /&gt;
[[File:Example.jpg]]&lt;/div&gt;</summary>
		<author><name>Saviq</name></author>	</entry>

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

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

	<entry>
		<id>http://wiki.meego.com/GSoC_2011/Ideas</id>
		<title>GSoC 2011/Ideas</title>
		<link rel="alternate" type="text/html" href="http://wiki.meego.com/GSoC_2011/Ideas"/>
				<updated>2011-03-11T09:52:09Z</updated>
		
		<summary type="html">&lt;p&gt;Saviq: Added a Filmaster.com client idea&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''Add your project ideas to the table below.'''&lt;br /&gt;
&lt;br /&gt;
'''If you are a mentor or want to be come one of the possible projects, add your name to the table with your meego.com username'''.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;font color=&amp;quot;#FF0000&amp;quot;&amp;gt;Note&amp;lt;/font&amp;gt;: Everybody can add ideas to the list, there's no need to be a mentor or a student. Don't try to guess if your idea will ever be used in MeeGo or not, just add it to the list. We will try to avoid duplicated work.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
| style=&amp;quot;background:LightGreen&amp;quot; | Final proposal&lt;br /&gt;
| style=&amp;quot;background:Orange&amp;quot; | Study of alternatives needed &lt;br /&gt;
| style=&amp;quot;background:Tomato&amp;quot; | Draft proposal&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
Note: This list is not exclusive. If you are a student and have an idea that is not listed here, don't hesitate to apply with your own idea. Note that it is good practice to ask opinions about it in the MeeGo community, though!&lt;br /&gt;
&lt;br /&gt;
== Ideas list ==&lt;br /&gt;
&lt;br /&gt;
=== Easy ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|- style=&amp;quot;background-color: #eef&amp;quot;&lt;br /&gt;
! Title !! Abstract/Description !! Skills !! Reporter !! Possible Mentor(s) !! Comments&lt;br /&gt;
|-style=&amp;quot;background:LightGreen&amp;quot;&lt;br /&gt;
| ''The best thing ever''  || This is a sample idea I used to build this table. Ideally, the project abstract should be around this long, explaining what the idea is about. Remember to give some headroom in order for potential students to apply their own spin to it.  || having good ideas || [http://meego.com/users/javispedro javispedro] || [http://meego.com/users/javispedro javispedro] || Please use this row as template!&lt;br /&gt;
|-style=&amp;quot;background:Tomato&amp;quot;&lt;br /&gt;
| ''Filmaster.com client''  || The [http://filmaster.com/ Filmaster.com] &amp;quot;Film buffs community&amp;quot; could use a nice mobile client for MeeGo. They're already working on iPhone / Android apps, MeeGo should have one, too!  || Qt / QML? || [http://meego.com/users/Saviq Saviq] || ||&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Medium ===&lt;br /&gt;
&lt;br /&gt;
=== Hard ===&lt;/div&gt;</summary>
		<author><name>Saviq</name></author>	</entry>

	<entry>
		<id>http://wiki.meego.com/Build_Infrastructure/Community_Builder/Tips_and_tricks</id>
		<title>Build Infrastructure/Community Builder/Tips and tricks</title>
		<link rel="alternate" type="text/html" href="http://wiki.meego.com/Build_Infrastructure/Community_Builder/Tips_and_tricks"/>
				<updated>2010-11-20T14:32:57Z</updated>
		
		<summary type="html">&lt;p&gt;Saviq: new page, add info about aliases&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Tips and tricks for the community obs =&lt;br /&gt;
&lt;br /&gt;
== Command line client ==&lt;br /&gt;
&lt;br /&gt;
=== Use aliases for different OBS services ===&lt;br /&gt;
&lt;br /&gt;
Add an ''aliases'' line to the pub.meego.com section in your '''~/.oscrc''':&lt;br /&gt;
&lt;br /&gt;
 ...&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;[https://api.pub.meego.com]&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
 aliases = meegopub, mp&lt;br /&gt;
&lt;br /&gt;
and use any of&lt;br /&gt;
&lt;br /&gt;
 osc -A meegopub&lt;br /&gt;
 osc -A mp&lt;br /&gt;
&lt;br /&gt;
to access the community OBS.&lt;/div&gt;</summary>
		<author><name>Saviq</name></author>	</entry>

	<entry>
		<id>http://wiki.meego.com/Build_Infrastructure/Community_Builder</id>
		<title>Build Infrastructure/Community Builder</title>
		<link rel="alternate" type="text/html" href="http://wiki.meego.com/Build_Infrastructure/Community_Builder"/>
				<updated>2010-11-20T14:29:09Z</updated>
		
		<summary type="html">&lt;p&gt;Saviq: add a link to tips and tricks&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The Community OBS is now part of meego.com infrastructure and supports several important kinds of development:&lt;br /&gt;
&lt;br /&gt;
* Applications to run on MeeGo&lt;br /&gt;
* Surrounds: the MeeGo contribution and sharing area&lt;br /&gt;
* Team Repositories&lt;br /&gt;
* Personal Repositories&lt;br /&gt;
&lt;br /&gt;
Having these areas allow us to support:&lt;br /&gt;
* Extras : MeeGo's community App store complete with QA via Extras:Testing&lt;br /&gt;
* Managing packages as part of their acceptance into MeeGo core&lt;br /&gt;
* Deprecating packages from MeeGo core&lt;br /&gt;
* A high quality distribution built around MeeGo core&lt;br /&gt;
&lt;br /&gt;
= TOC =&lt;br /&gt;
(some ideas on scope - probably an intro and a link to a sub-page)&lt;br /&gt;
* Prerequisites (links to other resources like SDK)&lt;br /&gt;
* Getting access to the OBS&lt;br /&gt;
* Local installation (cover general and distro variations)&lt;br /&gt;
* Learning to use it (tutorials)&lt;br /&gt;
* Organising projects: Best practice and team usage (including branches, building against other prj)&lt;br /&gt;
* [[Build_Infrastructure/Community_Builder/Tips_and_tricks|Tips and tricks]] (bind mounts for git in local builds; cross-compiles; other clever tricks)&lt;br /&gt;
* What the Targets are for?&lt;br /&gt;
* Fremantle, Harmattan and others&lt;br /&gt;
* New architectures (armv5 or MIPS anyone?)&lt;br /&gt;
* [[Build_Infrastructure/Community_Builder/Common_pitfalls|Common pitfalls]]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
stuff below is old and can be removed&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
The current version co-exists with the Maemo.org OBS and targets:&lt;br /&gt;
* MeeGo:1.0:Core : Latest Release&lt;br /&gt;
&lt;br /&gt;
The plan is to add:&lt;br /&gt;
* MeeGo:Current:Core : Always points to the latest release snapshot&lt;br /&gt;
* MeeGo:1.0.80.1.20100514.1:Core  : each weekly snapshot. See [[MeeGo_Release_Creation#Weekly_Builds_and_Build_Numbers|the release guidelines]] for an explanation of the numbering.&lt;br /&gt;
&lt;br /&gt;
The deployment supports home:&amp;lt;user&amp;gt; based building only at the moment.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Community OBS Testing Volunteers&lt;br /&gt;
&lt;br /&gt;
If you want to help with the development and/or testing of the community OBS please add your details below and ensure you contact lbt/X-fade on irc :-&lt;br /&gt;
&lt;br /&gt;
* meego id, short introduction, relevant skills &lt;br /&gt;
* vgrade, wanting to get Meego up on O2 Joggler, none really on OBS but a background in integration testing&lt;br /&gt;
* kostaja, mobile linux pro and hobbyist, done several OBS installations and currently maintaining an own OBS instance.&lt;br /&gt;
* csdb, looking into helping with arm port, been playing with setting up local OBS for 1 month since I saw reference to it from meego.&lt;br /&gt;
* copyleft, already setup a local OBS and ready to build additional packages on MeeGo 1.0, experience of porting MeeGo to new x86 netbook, deb packaging.&lt;br /&gt;
* dl9pf, OBS developer, developer of the cross-compilation for MeeGo, Requires(pre): rpm - BuildRequires: OBS  ;)&lt;br /&gt;
* matthewg, linux user, looking to help port packages to netbook and other editions&lt;br /&gt;
* schimmm, linux user, Experience in packaging for other distributions (. rpm) and happy to work with Meego Community :)&lt;br /&gt;
* amjad,   Linux build engineer, experience in packaging for other distro, helping with arm port .&lt;br /&gt;
* miska, former openSUSE packager wanting to use rpm based distro on his mobile phone, obs &amp;amp; rpm packaging&lt;br /&gt;
* saviq, FOSS advocate, good knowledge of OBS (ran my own instance once), RPM / DEB packaging&lt;br /&gt;
* matscp, software developer, eager to run Meego in my mini2440 board! =)&lt;br /&gt;
* ddompe, embedded sw developer, want to work on meego for beagleboard, familiar with packaging and cross compiling environments, but new to OBS&lt;br /&gt;
* Tobren, embedded sw / gui developer, trying to port MeeGo to Arm11 aka ArmV6, i.MX35, long years of embedded linux/Qt experience&lt;br /&gt;
* huzefaf, embedded sw engineer, test the MeeGo port on Moorsetown and N900 platform, relevant experience in device driver development and OS porting.&lt;br /&gt;
* lamikr, embedded sw developer, want to checkout howto integrate some still on early development phase packages for meego&lt;br /&gt;
* sabotage, MeeGo Handset developer/maintainer/packager, existing package maintainer on build.meego.com for several packages but I have several &amp;quot;hobby&amp;quot; packages I'd like to be available on MeeGo that don't belong on official servers&lt;br /&gt;
* leinir, developer on Project Bretzn which is supposed to integrate various build services with various IDEs, with specific focus on MeeGo and Qt Creator.&lt;br /&gt;
* manish, embedded hw-sw developer, want to work on meego applications and make it work for arm devices, eager to run it on gumstix and smartq devices, can build and cross compile, but new to OBS&lt;br /&gt;
* leo0916, embedded system SE, want to port meego to the different device, I need to build some midware to fix some problem, Now I work on the devkit8000.&lt;br /&gt;
&lt;br /&gt;
(all accounts above enabled 19 Nov 2010... from now on just ask lbt/x-fade on irc or via email - also, please help document the process)&lt;/div&gt;</summary>
		<author><name>Saviq</name></author>	</entry>

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

	<entry>
		<id>http://wiki.meego.com/MeeGo_Conference_2010/Volunteering</id>
		<title>MeeGo Conference 2010/Volunteering</title>
		<link rel="alternate" type="text/html" href="http://wiki.meego.com/MeeGo_Conference_2010/Volunteering"/>
				<updated>2010-11-04T09:22:12Z</updated>
		
		<summary type="html">&lt;p&gt;Saviq: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Your help is needed to make the MeeGo Conference 2010 a success! Please fill in your name for any of the 2 hour needed slots. &lt;br /&gt;
&lt;br /&gt;
X = needs a volunteer&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; cellpadding=&amp;quot;5&amp;quot; cellspacing=&amp;quot;0&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
|- style=&amp;quot;background:LightGrey&amp;quot;&lt;br /&gt;
! Day/Time&lt;br /&gt;
! Conference Setup/Cleanup&lt;br /&gt;
! Info Desk&lt;br /&gt;
! Session Tech Support&lt;br /&gt;
! Speaker Assistants &lt;br /&gt;
! Live Stream IRC Moderators &lt;br /&gt;
! Breakout Room Table&lt;br /&gt;
! Hacking Lounge&lt;br /&gt;
! Other&lt;br /&gt;
|- style=&amp;quot;background:LightBlue&amp;quot;&lt;br /&gt;
|colspan=&amp;quot;9&amp;quot;| Saturday Nov 13&lt;br /&gt;
|- &lt;br /&gt;
| Nov 13, 13:00-15:00&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;
| Nov 13, 15:00-17:00&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;
| Nov 13, 17:00-19:00&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;
|- style=&amp;quot;background:LightBlue&amp;quot;&lt;br /&gt;
|colspan=&amp;quot;9&amp;quot;| Sunday Nov 14&lt;br /&gt;
|- &lt;br /&gt;
| Nov 14, 9:00-11:00&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;
| Nov 14, 11:00-13:00&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;
| Nov 14, 13:00-15:00&lt;br /&gt;
| X&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;
| Nov 14, 15:00-17:00&lt;br /&gt;
| Aniello Del Sorbo&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;
| Nov 14, 17:00-19:00&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;
|- style=&amp;quot;background:LightBlue&amp;quot;&lt;br /&gt;
|colspan=&amp;quot;9&amp;quot;| Monday Nov 15&lt;br /&gt;
|- &lt;br /&gt;
| Nov 15, 8:00-10:00&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
|&lt;br /&gt;
|- &lt;br /&gt;
| Nov 15, 10:00-12:00&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
|&lt;br /&gt;
|- &lt;br /&gt;
| Nov 15, 12:00-14:00&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
|&lt;br /&gt;
|- &lt;br /&gt;
| Nov 15, 14:00-16:00&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
|&lt;br /&gt;
|- &lt;br /&gt;
| Nov 15, 16:00-18:00&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
|&lt;br /&gt;
|- style=&amp;quot;background:LightBlue&amp;quot;&lt;br /&gt;
|colspan=&amp;quot;9&amp;quot;| Tuesday Nov 16&lt;br /&gt;
|- &lt;br /&gt;
| Nov 16, 8:00-10:00&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
|&lt;br /&gt;
|- &lt;br /&gt;
| Nov 16, 10:00-12:00&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
|&lt;br /&gt;
|- &lt;br /&gt;
| Nov 16, 12:00-14:00&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
|&lt;br /&gt;
|- &lt;br /&gt;
| Nov 16, 14:00-16:00&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
|&lt;br /&gt;
|- &lt;br /&gt;
| Nov 16, 16:00-18:00&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
|&lt;br /&gt;
|- &lt;br /&gt;
| Nov 16, 18:00-19:00&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
|&lt;br /&gt;
|- style=&amp;quot;background:LightBlue&amp;quot;&lt;br /&gt;
|colspan=&amp;quot;9&amp;quot;| Wednesday Nov 17&lt;br /&gt;
|- &lt;br /&gt;
| Nov 17, 8:00-10:00&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| X [[User:Dneary | Dave Neary]]&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
|&lt;br /&gt;
|- &lt;br /&gt;
| Nov 17, 10:00-12:00&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| X [[User:Saviq | Michał Sawicz]]&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
|&lt;br /&gt;
|- &lt;br /&gt;
| Nov 17, 12:00-14:00&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
|&lt;br /&gt;
|- &lt;br /&gt;
| Nov 17, 14:00-16:00&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
|&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Saviq</name></author>	</entry>

	<entry>
		<id>http://wiki.meego.com/MeeGo_Conference_2010/Volunteering</id>
		<title>MeeGo Conference 2010/Volunteering</title>
		<link rel="alternate" type="text/html" href="http://wiki.meego.com/MeeGo_Conference_2010/Volunteering"/>
				<updated>2010-11-04T09:21:50Z</updated>
		
		<summary type="html">&lt;p&gt;Saviq: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Your help is needed to make the MeeGo Conference 2010 a success! Please fill in your name for any of the 2 hour needed slots. &lt;br /&gt;
&lt;br /&gt;
X = needs a volunteer&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; cellpadding=&amp;quot;5&amp;quot; cellspacing=&amp;quot;0&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
|- style=&amp;quot;background:LightGrey&amp;quot;&lt;br /&gt;
! Day/Time&lt;br /&gt;
! Conference Setup/Cleanup&lt;br /&gt;
! Info Desk&lt;br /&gt;
! Session Tech Support&lt;br /&gt;
! Speaker Assistants &lt;br /&gt;
! Live Stream IRC Moderators &lt;br /&gt;
! Breakout Room Table&lt;br /&gt;
! Hacking Lounge&lt;br /&gt;
! Other&lt;br /&gt;
|- style=&amp;quot;background:LightBlue&amp;quot;&lt;br /&gt;
|colspan=&amp;quot;9&amp;quot;| Saturday Nov 13&lt;br /&gt;
|- &lt;br /&gt;
| Nov 13, 13:00-15:00&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;
| Nov 13, 15:00-17:00&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;
| Nov 13, 17:00-19:00&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;
|- style=&amp;quot;background:LightBlue&amp;quot;&lt;br /&gt;
|colspan=&amp;quot;9&amp;quot;| Sunday Nov 14&lt;br /&gt;
|- &lt;br /&gt;
| Nov 14, 9:00-11:00&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;
| Nov 14, 11:00-13:00&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;
| Nov 14, 13:00-15:00&lt;br /&gt;
| X&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;
| Nov 14, 15:00-17:00&lt;br /&gt;
| Aniello Del Sorbo&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;
| Nov 14, 17:00-19:00&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;
|- style=&amp;quot;background:LightBlue&amp;quot;&lt;br /&gt;
|colspan=&amp;quot;9&amp;quot;| Monday Nov 15&lt;br /&gt;
|- &lt;br /&gt;
| Nov 15, 8:00-10:00&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
|&lt;br /&gt;
|- &lt;br /&gt;
| Nov 15, 10:00-12:00&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
|&lt;br /&gt;
|- &lt;br /&gt;
| Nov 15, 12:00-14:00&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
|&lt;br /&gt;
|- &lt;br /&gt;
| Nov 15, 14:00-16:00&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
|&lt;br /&gt;
|- &lt;br /&gt;
| Nov 15, 16:00-18:00&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
|&lt;br /&gt;
|- style=&amp;quot;background:LightBlue&amp;quot;&lt;br /&gt;
|colspan=&amp;quot;9&amp;quot;| Tuesday Nov 16&lt;br /&gt;
|- &lt;br /&gt;
| Nov 16, 8:00-10:00&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
|&lt;br /&gt;
|- &lt;br /&gt;
| Nov 16, 10:00-12:00&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
|&lt;br /&gt;
|- &lt;br /&gt;
| Nov 16, 12:00-14:00&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
|&lt;br /&gt;
|- &lt;br /&gt;
| Nov 16, 14:00-16:00&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
|&lt;br /&gt;
|- &lt;br /&gt;
| Nov 16, 16:00-18:00&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
|&lt;br /&gt;
|- &lt;br /&gt;
| Nov 16, 18:00-19:00&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
|&lt;br /&gt;
|- style=&amp;quot;background:LightBlue&amp;quot;&lt;br /&gt;
|colspan=&amp;quot;9&amp;quot;| Wednesday Nov 17&lt;br /&gt;
|- &lt;br /&gt;
| Nov 17, 8:00-10:00&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| X [[User:Dneary | Dave Neary]]&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
|&lt;br /&gt;
|- &lt;br /&gt;
| Nov 17, 10:00-12:00&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| X [[User:Saviq] | Michał Sawicz]&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
|&lt;br /&gt;
|- &lt;br /&gt;
| Nov 17, 12:00-14:00&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
|&lt;br /&gt;
|- &lt;br /&gt;
| Nov 17, 14:00-16:00&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
|&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Saviq</name></author>	</entry>

	<entry>
		<id>http://wiki.meego.com/MeeGo_Conference_2010/Volunteering</id>
		<title>MeeGo Conference 2010/Volunteering</title>
		<link rel="alternate" type="text/html" href="http://wiki.meego.com/MeeGo_Conference_2010/Volunteering"/>
				<updated>2010-11-04T09:21:32Z</updated>
		
		<summary type="html">&lt;p&gt;Saviq: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Your help is needed to make the MeeGo Conference 2010 a success! Please fill in your name for any of the 2 hour needed slots. &lt;br /&gt;
&lt;br /&gt;
X = needs a volunteer&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; cellpadding=&amp;quot;5&amp;quot; cellspacing=&amp;quot;0&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
|- style=&amp;quot;background:LightGrey&amp;quot;&lt;br /&gt;
! Day/Time&lt;br /&gt;
! Conference Setup/Cleanup&lt;br /&gt;
! Info Desk&lt;br /&gt;
! Session Tech Support&lt;br /&gt;
! Speaker Assistants &lt;br /&gt;
! Live Stream IRC Moderators &lt;br /&gt;
! Breakout Room Table&lt;br /&gt;
! Hacking Lounge&lt;br /&gt;
! Other&lt;br /&gt;
|- style=&amp;quot;background:LightBlue&amp;quot;&lt;br /&gt;
|colspan=&amp;quot;9&amp;quot;| Saturday Nov 13&lt;br /&gt;
|- &lt;br /&gt;
| Nov 13, 13:00-15:00&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;
| Nov 13, 15:00-17:00&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;
| Nov 13, 17:00-19:00&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;
|- style=&amp;quot;background:LightBlue&amp;quot;&lt;br /&gt;
|colspan=&amp;quot;9&amp;quot;| Sunday Nov 14&lt;br /&gt;
|- &lt;br /&gt;
| Nov 14, 9:00-11:00&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;
| Nov 14, 11:00-13:00&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;
| Nov 14, 13:00-15:00&lt;br /&gt;
| X&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;
| Nov 14, 15:00-17:00&lt;br /&gt;
| Aniello Del Sorbo&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;
| Nov 14, 17:00-19:00&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;
|- style=&amp;quot;background:LightBlue&amp;quot;&lt;br /&gt;
|colspan=&amp;quot;9&amp;quot;| Monday Nov 15&lt;br /&gt;
|- &lt;br /&gt;
| Nov 15, 8:00-10:00&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
|&lt;br /&gt;
|- &lt;br /&gt;
| Nov 15, 10:00-12:00&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
|&lt;br /&gt;
|- &lt;br /&gt;
| Nov 15, 12:00-14:00&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
|&lt;br /&gt;
|- &lt;br /&gt;
| Nov 15, 14:00-16:00&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
|&lt;br /&gt;
|- &lt;br /&gt;
| Nov 15, 16:00-18:00&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
|&lt;br /&gt;
|- style=&amp;quot;background:LightBlue&amp;quot;&lt;br /&gt;
|colspan=&amp;quot;9&amp;quot;| Tuesday Nov 16&lt;br /&gt;
|- &lt;br /&gt;
| Nov 16, 8:00-10:00&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
|&lt;br /&gt;
|- &lt;br /&gt;
| Nov 16, 10:00-12:00&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
|&lt;br /&gt;
|- &lt;br /&gt;
| Nov 16, 12:00-14:00&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
|&lt;br /&gt;
|- &lt;br /&gt;
| Nov 16, 14:00-16:00&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
|&lt;br /&gt;
|- &lt;br /&gt;
| Nov 16, 16:00-18:00&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
|&lt;br /&gt;
|- &lt;br /&gt;
| Nov 16, 18:00-19:00&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
|&lt;br /&gt;
|- style=&amp;quot;background:LightBlue&amp;quot;&lt;br /&gt;
|colspan=&amp;quot;9&amp;quot;| Wednesday Nov 17&lt;br /&gt;
|- &lt;br /&gt;
| Nov 17, 8:00-10:00&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| X [[User:Dneary | Dave Neary]]&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
|&lt;br /&gt;
|- &lt;br /&gt;
| Nov 17, 10:00-12:00&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| X [[User:Saviq] | Michał Sawicz]]&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
|&lt;br /&gt;
|- &lt;br /&gt;
| Nov 17, 12:00-14:00&lt;br /&gt;
| &lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
|&lt;br /&gt;
|- &lt;br /&gt;
| Nov 17, 14:00-16:00&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
| X&lt;br /&gt;
|&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Saviq</name></author>	</entry>

	<entry>
		<id>http://wiki.meego.com/MeeGo_Conference_2010/Accommodation</id>
		<title>MeeGo Conference 2010/Accommodation</title>
		<link rel="alternate" type="text/html" href="http://wiki.meego.com/MeeGo_Conference_2010/Accommodation"/>
				<updated>2010-10-22T18:52:24Z</updated>
		
		<summary type="html">&lt;p&gt;Saviq: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The MeeGo Conference has a deal with the [http://www.d4hotels.ie/ D4 Hotels]: we have made a group booking and they provide us 24h hackers rooms with great connectivity, a games room, basic infrastructure for the Early MeeGo Birds activities, etc.&lt;br /&gt;
&lt;br /&gt;
If you haven't booked your room please do it now through this link: https://cpregistrations.com/MeeGo2010/ &lt;br /&gt;
&lt;br /&gt;
If you have booked elsewhere please consider re-booking at the D4 hotels, where most conference participants will be hosted. Thank you!&lt;br /&gt;
&lt;br /&gt;
== Shared rooms ==&lt;br /&gt;
This table helps participants getting organized sharing rooms and costs. If you would like to share a double room with someone, please add your name to the table below.&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Hotel&lt;br /&gt;
! Roommate 1&lt;br /&gt;
! Roommate 2&lt;br /&gt;
! Check in / check out / Considerations&lt;br /&gt;
|-&lt;br /&gt;
| Ballbridge Inn&lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| Ballsbridge Towers&lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| D4 Berkeley&lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Add more lines to the table if needed. Just keep the rooms grouped by hotels.&lt;br /&gt;
&lt;br /&gt;
== Sponsored participants ==&lt;br /&gt;
&lt;br /&gt;
Sponsored participants get 4 nights in a shared double room covered by the organization. The reservation is done as a group booking by the organization directly.&lt;br /&gt;
&lt;br /&gt;
'''Don't add yourself to this table unless you are an accepted sponsored participant.''' &lt;br /&gt;
&lt;br /&gt;
If you have already booked a room, please [http://lists.meego.com/pipermail/meego-community/2010-October/002229.html cancel it].&lt;br /&gt;
&lt;br /&gt;
If you want to swap room with a non-sponsored participant please do it directly at the hotel desk once you are in Dublin. To avoid mistakes, the group booking made by the organization will include only the names of the accepted sponsored participants included in this table.&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
! # Room&lt;br /&gt;
! Roommate 1&lt;br /&gt;
! Roommate 2&lt;br /&gt;
! Check in / check out / Considerations&lt;br /&gt;
|-&lt;br /&gt;
| 1&lt;br /&gt;
| Dan Jensen (leinir)&lt;br /&gt;
| Lydia Pintscher (nightrose) (F)&lt;br /&gt;
| Arriving 14th - leaving 18th (leinir further staying 13-14 at Abigail's Hostel)&lt;br /&gt;
|-&lt;br /&gt;
| 2&lt;br /&gt;
| Arek Stopczynski (hopbeat)&lt;br /&gt;
| Michał Sawicz (saviq) (M)&lt;br /&gt;
| arriving 14th - leaving 18th / saviq arriving 13th - leaving 17th, one night in Abraham House, flying out 18th evening &lt;br /&gt;
|-&lt;br /&gt;
| 3&lt;br /&gt;
| Till Harbaum (harbaum)&lt;br /&gt;
| Tom Wälti (twaelti)&lt;br /&gt;
| Till: arriving 13th - leaving 17th / Tom: arriving 13th - leaving 18th &lt;br /&gt;
|-&lt;br /&gt;
| 4&lt;br /&gt;
| Brendan Le Foll (arfoll)&lt;br /&gt;
| Heikki Holstila (hqh)&lt;br /&gt;
| arriving 14th - leaving 18th (both)&lt;br /&gt;
|-&lt;br /&gt;
| 5&lt;br /&gt;
| Andrea Grandi (andreagrandi)&lt;br /&gt;
| Aniello Del Sorbo (anidel)&lt;br /&gt;
| andreagrandi: arriving 13th - leaving 17th - anidel: arriving 14th - leaving 18th (to be confirmed)&lt;br /&gt;
|-&lt;br /&gt;
| 6&lt;br /&gt;
| Lau Wai Keung (benlau)&lt;br /&gt;
| Jonne Nauha (Pforce)&lt;br /&gt;
| benlau : arriving 13th - leaving 19th, Pforce: arriving 14th - leaving 18th&lt;br /&gt;
|-&lt;br /&gt;
| 7&lt;br /&gt;
| Sivan Greenberg (sivang)&lt;br /&gt;
| Josh Smith Soref (timeless)&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| 8&lt;br /&gt;
| Randall Arnold (texrat)&lt;br /&gt;
| Sanjeev Visvanatha (eipi)&lt;br /&gt;
| texrat arriving morning of 13th leaving 18th.  eipi-15-17 (tentative)&lt;br /&gt;
|-&lt;br /&gt;
| 9&lt;br /&gt;
| Kathryn Smith (RevdKathy) (F)&lt;br /&gt;
| &lt;br /&gt;
| arriving 14th - leaving 17th&lt;br /&gt;
|-&lt;br /&gt;
| 10&lt;br /&gt;
| Dave Neary (dneary)&lt;br /&gt;
| Atila Cipa (achipa)&lt;br /&gt;
| Arriving Saturday, leaving Thursday (paying 1 extra night)&lt;br /&gt;
|-&lt;br /&gt;
| 11&lt;br /&gt;
| Leonardo Luiz Padovani da Mata (barroca)&lt;br /&gt;
| &lt;br /&gt;
| arriving 13th - leaving 18th (paying 1 extra night)&lt;br /&gt;
|-&lt;br /&gt;
| 12&lt;br /&gt;
| Felipe Crochik (fcrochik)&lt;br /&gt;
| Damian Waradzyn (dwaradzyn)&lt;br /&gt;
| fcrochik: arriving 14th - leaving 18th, dwaradzyn: arrivig 13th - leaving 17th&lt;br /&gt;
|-&lt;br /&gt;
| 13&lt;br /&gt;
| Jonathan Tebaldi Petro (bioldo)&lt;br /&gt;
| &lt;br /&gt;
| arriving 14th - leaving 18th&lt;br /&gt;
|-&lt;br /&gt;
| 14&lt;br /&gt;
| Joshua Smith Soref (timeless)&lt;br /&gt;
| &lt;br /&gt;
| arriving 14th - leaving 18th&lt;br /&gt;
|-&lt;br /&gt;
| 15&lt;br /&gt;
| Dimitris Glezos (glezos)&lt;br /&gt;
| Diego Búrigo Zacarão (diegobz)&lt;br /&gt;
| arriving 14th - leaving 17th or 18th&lt;br /&gt;
|-&lt;br /&gt;
| 16&lt;br /&gt;
| Edward Oren Page (epage)&lt;br /&gt;
| &lt;br /&gt;
| arriving 13th - leaving 19th (handling extra days personally, I assume the sponsored booking covers 14th-18th)&lt;br /&gt;
|-&lt;br /&gt;
| 17&lt;br /&gt;
| Regino Suplido Jr (reggie)&lt;br /&gt;
| &lt;br /&gt;
| arriving 14th (early check-in) - leaving 18th (Travelling with wife, single room requested, if possible)&lt;br /&gt;
|-&lt;br /&gt;
| 18&lt;br /&gt;
| Uwe Kaminski (jukey)&lt;br /&gt;
| &lt;br /&gt;
| arriving 13th - leaving 17th&lt;br /&gt;
|-&lt;br /&gt;
| 19&lt;br /&gt;
| Tatsiana Makava (tanya) (F)&lt;br /&gt;
| Uladzislau Vasilyeu (vasvlad)&lt;br /&gt;
| arriving 14th - leaving 18th&lt;br /&gt;
|-&lt;br /&gt;
| 20&lt;br /&gt;
| Stephen Gadsby (sjgadsby)&lt;br /&gt;
| Alan Bruce (qole)&lt;br /&gt;
| sjgadsby: arriving 14th - leaving 18th; prefer non-smoker roommate; I do snore, sorry; qole: bringing earplugs, I do smell funny, sorry&lt;br /&gt;
|-&lt;br /&gt;
| 21&lt;br /&gt;
| Cornelius Hald (conny)&lt;br /&gt;
| Thomas Perl (thp)&lt;br /&gt;
| arriving 13th - leaving 17th (both)&lt;br /&gt;
|-&lt;br /&gt;
| 22&lt;br /&gt;
| Nathan Willis (n8willis)&lt;br /&gt;
| &lt;br /&gt;
| arriving 14th - leaving 18th; nonsmoker &amp;amp; nonsnorer&lt;br /&gt;
|-&lt;br /&gt;
| 23&lt;br /&gt;
| Andrew Flegg (Jaffa)&lt;br /&gt;
| Timothy R Samoff (timsamoff)&lt;br /&gt;
| Jaffa: 13th - 17th;  timsamoff: 13th - 18th&lt;br /&gt;
|-&lt;br /&gt;
| 24&lt;br /&gt;
| Andrew Olmsted (fiferboy)&lt;br /&gt;
| Ryan Abel (GeneralAntilles)&lt;br /&gt;
| fiferboy &amp;amp; GeneralAnitlles: 14th - 18th&lt;br /&gt;
|-&lt;br /&gt;
| 25&lt;br /&gt;
| Andrei Mirestean (andrei1089)&lt;br /&gt;
| &lt;br /&gt;
| arriving 14th - leaving 18th&lt;br /&gt;
|-&lt;br /&gt;
| 26 &lt;br /&gt;
| Jose Teixeira (japolinario)&lt;br /&gt;
|&lt;br /&gt;
| arriving 14th - leaving 17th &lt;br /&gt;
|-&lt;br /&gt;
| 27 &lt;br /&gt;
| Hashiq Nazir (Meegoexperts)&lt;br /&gt;
|&lt;br /&gt;
| arriving 14th - leaving 18th &lt;br /&gt;
|-&lt;br /&gt;
| 28 &lt;br /&gt;
| Alessandro Peralma (No!No!No!Yes!)&lt;br /&gt;
| Renata Serracchioli (Yes!Yes!Yes!No!) (F)&lt;br /&gt;
| arriving 14th - leaving 18th&lt;br /&gt;
|-&lt;br /&gt;
| 29&lt;br /&gt;
| Eduardo M. Fleury (fleury)&lt;br /&gt;
| Caio Marcelo de Oliveira Filho (cmarcelo)&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| 30&lt;br /&gt;
| Daniele Maio (b0unc3)&lt;br /&gt;
|&lt;br /&gt;
| &lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Saviq</name></author>	</entry>

	<entry>
		<id>http://wiki.meego.com/MeeGo_Conference_2010/Accommodation</id>
		<title>MeeGo Conference 2010/Accommodation</title>
		<link rel="alternate" type="text/html" href="http://wiki.meego.com/MeeGo_Conference_2010/Accommodation"/>
				<updated>2010-10-21T19:06:42Z</updated>
		
		<summary type="html">&lt;p&gt;Saviq: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The MeeGo Conference has a deal with the [http://www.d4hotels.ie/ D4 Hotels]: we have made a group booking and they provide us 24h hackers rooms with great connectivity, a games room, basic infrastructure for the Early MeeGo Birds activities, etc.&lt;br /&gt;
&lt;br /&gt;
If you haven't booked your room please do it now through this link: https://cpregistrations.com/MeeGo2010/ &lt;br /&gt;
&lt;br /&gt;
If you have booked elsewhere please consider re-booking at the D4 hotels, where most conference participants will be hosted. Thank you!&lt;br /&gt;
&lt;br /&gt;
== Shared rooms ==&lt;br /&gt;
This table helps participants getting organized sharing rooms and costs. If you would like to share a double room with someone, please add your name to the table below.&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Hotel&lt;br /&gt;
! Roommate 1&lt;br /&gt;
! Roommate 2&lt;br /&gt;
! Check in / check out / Considerations&lt;br /&gt;
|-&lt;br /&gt;
| Ballbridge Inn&lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| Ballsbridge Towers&lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| D4 Berkeley&lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Add more lines to the table if needed. Just keep the rooms grouped by hotels.&lt;br /&gt;
&lt;br /&gt;
== Sponsored participants ==&lt;br /&gt;
&lt;br /&gt;
Sponsored participants get 4 nights in a shared double room covered by the organization. The reservation is done as a group booking by the organization directly.&lt;br /&gt;
&lt;br /&gt;
'''Don't add yourself to this table unless you are an accepted sponsored participant.''' &lt;br /&gt;
&lt;br /&gt;
If you have already booked a room, please [http://lists.meego.com/pipermail/meego-community/2010-October/002229.html cancel it].&lt;br /&gt;
&lt;br /&gt;
If you want to swap room with a non-sponsored participant please do it directly at the hotel desk once you are in Dublin. To avoid mistakes, the group booking made by the organization will include only the names of the accepted sponsored participants included in this table.&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
! # Room&lt;br /&gt;
! Roommate 1&lt;br /&gt;
! Roommate 2&lt;br /&gt;
! Check in / check out / Considerations&lt;br /&gt;
|-&lt;br /&gt;
| 1&lt;br /&gt;
| Dan Jensen (leinir)&lt;br /&gt;
| Lydia Pintscher (nightrose)&lt;br /&gt;
| Arriving 14th - leaving 18th (leinir further staying 13-14 at Abigail's Hostel)&lt;br /&gt;
|-&lt;br /&gt;
| 2&lt;br /&gt;
| Arek Stopczynski (hopbeat)&lt;br /&gt;
| Michał Sawicz (saviq)&lt;br /&gt;
| arriving 14th - leaving 18th / saviq arriving 13th - leaving 17th&lt;br /&gt;
|-&lt;br /&gt;
| 3&lt;br /&gt;
| Till Harbaum (harbaum)&lt;br /&gt;
| Tom Wälti (twaelti)&lt;br /&gt;
| Till: arriving 13th - leaving 17th / Tom: arriving 13th - leaving 18th &lt;br /&gt;
|-&lt;br /&gt;
| 4&lt;br /&gt;
| Brendan Le Foll (arfoll)&lt;br /&gt;
| Heikki Holstila (hqh)&lt;br /&gt;
| arriving 14th - leaving 18th (both)&lt;br /&gt;
|-&lt;br /&gt;
| 5&lt;br /&gt;
| Andrea Grandi (andreagrandi)&lt;br /&gt;
| Aniello Del Sorbo (anidel)&lt;br /&gt;
| andreagrandi: arriving 13th - leaving 17th - anidel: arriving 14th - leaving 18th (to be confirmed)&lt;br /&gt;
|-&lt;br /&gt;
| 6&lt;br /&gt;
| Lau Wai Keung (benlau)&lt;br /&gt;
| &lt;br /&gt;
| benlau : arriving 13th - leaving 19th&lt;br /&gt;
|-&lt;br /&gt;
| 7&lt;br /&gt;
| Sivan Greenberg (sivang)&lt;br /&gt;
| Josh Smith Soref (timeless)&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| 8&lt;br /&gt;
| Randall Arnold (texrat)&lt;br /&gt;
| Sanjeev Visvanatha (eipi)&lt;br /&gt;
| eipi-15-17 (tentative)&lt;br /&gt;
|-&lt;br /&gt;
| 9&lt;br /&gt;
| Kathryn Smith (RevdKathy)&lt;br /&gt;
| &lt;br /&gt;
| arriving 14th - leaving 17th&lt;br /&gt;
|-&lt;br /&gt;
| 10&lt;br /&gt;
| Dave Neary (dneary)&lt;br /&gt;
| Atila Cipa (achipa)&lt;br /&gt;
| Arriving Saturday, leaving Thursday (paying 1 extra night)&lt;br /&gt;
|-&lt;br /&gt;
| 11&lt;br /&gt;
| Leonardo Luiz Padovani da Mata (barroca)&lt;br /&gt;
| &lt;br /&gt;
| arriving 13th - leaving 18th (paying 1 extra night)&lt;br /&gt;
|-&lt;br /&gt;
| 12&lt;br /&gt;
| Felipe Crochik (fcrochik)&lt;br /&gt;
| Damian Waradzyn (dwaradzyn)&lt;br /&gt;
| fcrochik: arriving 14th - leaving 18th, dwaradzyn: arrivig 13th - leaving 17th&lt;br /&gt;
|-&lt;br /&gt;
| 13&lt;br /&gt;
| Jonathan Tebaldi Petro (bioldo)&lt;br /&gt;
| &lt;br /&gt;
| arriving 14th - leaving 18th&lt;br /&gt;
|-&lt;br /&gt;
| 14&lt;br /&gt;
| Joshua Smith Soref (timeless)&lt;br /&gt;
| &lt;br /&gt;
| arriving 14th - leaving 18th&lt;br /&gt;
|-&lt;br /&gt;
| 15&lt;br /&gt;
| Dimitris Glezos (glezos)&lt;br /&gt;
| Diego Búrigo Zacarão (diegobz)&lt;br /&gt;
| arriving 14th - leaving 17th or 18th&lt;br /&gt;
|-&lt;br /&gt;
| 16&lt;br /&gt;
| Edward Oren Page (epage)&lt;br /&gt;
| &lt;br /&gt;
| arriving 13th - leaving 19th (handling extra days personally, I assume the sponsored booking covers 14th-18th)&lt;br /&gt;
|-&lt;br /&gt;
| 17&lt;br /&gt;
| Regino Suplido Jr (reggie)&lt;br /&gt;
| &lt;br /&gt;
| arriving 14th (early check-in) - leaving 18th (Travelling with wife, single room requested, if possible)&lt;br /&gt;
|-&lt;br /&gt;
| 18&lt;br /&gt;
| Uwe Kaminski (jukey)&lt;br /&gt;
| &lt;br /&gt;
| arriving 13th - leaving 17th&lt;br /&gt;
|-&lt;br /&gt;
| 19&lt;br /&gt;
| Tatsiana Makava (tanya)&lt;br /&gt;
| Uladzislau Vasilyeu (vasvlad)&lt;br /&gt;
| arriving 14th - leaving 18th&lt;br /&gt;
|-&lt;br /&gt;
| 20&lt;br /&gt;
| Stephen Gadsby (sjgadsby)&lt;br /&gt;
| Alan Bruce (qole)&lt;br /&gt;
| sjgadsby: arriving 14th - leaving 18th; prefer non-smoker roommate; I do snore, sorry; qole: bringing earplugs, I do smell funny, sorry&lt;br /&gt;
|-&lt;br /&gt;
| 21&lt;br /&gt;
| Cornelius Hald (conny)&lt;br /&gt;
| Thomas Perl (thp)&lt;br /&gt;
| arriving 13th - leaving 17th (both)&lt;br /&gt;
|-&lt;br /&gt;
| 22&lt;br /&gt;
| Nathan Willis (n8willis)&lt;br /&gt;
| &lt;br /&gt;
| arriving 14th - leaving 18th; nonsmoker &amp;amp; nonsnorer&lt;br /&gt;
|-&lt;br /&gt;
| 23&lt;br /&gt;
| Andrew Flegg (Jaffa)&lt;br /&gt;
| Timothy R Samoff (timsamoff)&lt;br /&gt;
| Jaffa: 13th - 17th;  timsamoff: 13th - 18th&lt;br /&gt;
|-&lt;br /&gt;
| 24&lt;br /&gt;
| Andrew Olmsted (fiferboy)&lt;br /&gt;
| Ryan Abel (GeneralAntilles)&lt;br /&gt;
| fiferboy &amp;amp; GeneralAnitlles: 14th - 18th&lt;br /&gt;
|-&lt;br /&gt;
| 25&lt;br /&gt;
| Andrei Mirestean (andrei1089)&lt;br /&gt;
| &lt;br /&gt;
| arriving 14th - leaving 18th&lt;br /&gt;
|-&lt;br /&gt;
| 26 &lt;br /&gt;
| Jose Teixeira (japolinario)&lt;br /&gt;
|&lt;br /&gt;
| arriving 14th - leaving 17th &lt;br /&gt;
|-&lt;br /&gt;
| 27 &lt;br /&gt;
| Hashiq Nazir (Meegoexperts)&lt;br /&gt;
|&lt;br /&gt;
| arriving 14th - leaving 18th &lt;br /&gt;
|-&lt;br /&gt;
| 28 &lt;br /&gt;
| Alessandro Peralma (No!No!No!Yes!)&lt;br /&gt;
| Renata Serracchioli (Yes!Yes!Yes!No!)&lt;br /&gt;
| arriving 14th - leaving 18th&lt;br /&gt;
|-&lt;br /&gt;
| 29&lt;br /&gt;
| Eduardo M. Fleury (fleury)&lt;br /&gt;
| Caio Marcelo de Oliveira Filho (cmarcelo)&lt;br /&gt;
| &lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Saviq</name></author>	</entry>

	<entry>
		<id>http://wiki.meego.com/MeeGo_Conference_2010/Twitter_list</id>
		<title>MeeGo Conference 2010/Twitter list</title>
		<link rel="alternate" type="text/html" href="http://wiki.meego.com/MeeGo_Conference_2010/Twitter_list"/>
				<updated>2010-10-21T18:34:03Z</updated>
		
		<summary type="html">&lt;p&gt;Saviq: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;We've created a [http://twitter.com/MeeGoConference/attendees-2010 2010 Attendees Twitter list] for people who are attending the 2010 MeeGo Conference. If you are attending the 2010 conference and want to be added to our Twitter list, please add your Twitter name on this page.&lt;br /&gt;
&lt;br /&gt;
You can also follow the [http://twitter.com/MeeGoConference/attendees-2010 2010 Attendees Twitter list] to get updates from all of the people attending the conference.&lt;br /&gt;
&lt;br /&gt;
'''Instructions:'''&lt;br /&gt;
* You must include your Twitter name and a link to your Twitter account.&lt;br /&gt;
* Only people who are attending the 2010 MeeGo Conference should add themselves to this list.&lt;br /&gt;
* Add your name to the '''end''' of this list (do '''not''' add yourself in the middle or alphabetize). &lt;br /&gt;
&lt;br /&gt;
== Add me to the Twitter list ==&lt;br /&gt;
# [http://twitter.com/geekygirldawn @geekygirldawn] - [[User:Dawnfoster|Dawn Foster]]&lt;br /&gt;
# [http://twitter.com/quimgil @quimgil] - Quim Gil&lt;br /&gt;
# [http://twitter.com/dhohndel @dhohndel] - Dirk Hohndel&lt;br /&gt;
# [http://twitter.com/jaffa2 @jaffa2] - Andrew Flegg&lt;br /&gt;
# [http://twitter.com/MeegoExperts @MeegoExperts] - Hashiq Nazir&lt;br /&gt;
# [http://twitter.com/nightrose @nightrose] - Lydia Pintscher&lt;br /&gt;
# [http://twitter.com/thp4 @thp4] - [[User:thp|Thomas Perl]]&lt;br /&gt;
# [http://twitter.com/texrat @texrat] - Randall Arnold&lt;br /&gt;
# [http://twitter.com/chippy @chippy] - [http://carrypad.com Steve 'Chippy' Paine]&lt;br /&gt;
# [http://twitter.com/barroca @barroca] - Leonardo 'barroca' da Mata&lt;br /&gt;
# [http://twitter.com/pdxideate/ @pdxideate] - Marc Anteparra-N&lt;br /&gt;
# [http://twitter.com/ausmusj @ausmusj] - James Ausmus&lt;br /&gt;
# [http://twitter.com/RevdKathy @RevdKathy] - Kathy Smith&lt;br /&gt;
# [http://twitter.com/h0pbeat @h0pbeat] - Arek Stopczynski&lt;br /&gt;
# [http://twitter.com/cmcgovern @cmcgovern] - Colin McGovern&lt;br /&gt;
# [http://twitter.com/jonquark @jonquark] - Jon Levell&lt;br /&gt;
# [http://twitter.com/aprilush @aprilush] - Laura Dragan&lt;br /&gt;
# [http://twitter.com/toninikkanen @toninikkanen] - Toni Nikkanen&lt;br /&gt;
# [http://twitter.com/andreagrandi @andreagrandi] - [http://meego.com/users/andreagrandi Andrea Grandi]&lt;br /&gt;
# [http://twitter.com/nearyd @nearyd] - [http://meego.com/users/dneary Dave Neary]&lt;br /&gt;
# [http://twitter.com/rsuplido @rsuplido] - [http://meego.com/users/reggie Reggie Suplido]&lt;br /&gt;
# [http://Twitter.com/muller999 @muller999]&lt;br /&gt;
# [http://Twitter.com/moon @moon] [http://neuronspark.com paul mooney]&lt;br /&gt;
# [http://twitter.com/VDVsx @VDVsx] - Valério Valério&lt;br /&gt;
# [http://twitter.com/generalantilles @GeneralAntilles] - [http://meego.com/users/generalanilles Ryan Abel]&lt;br /&gt;
# [http://twitter.com/ju_key @ju_key] - [http://meego.com/users/jukey Uwe Kaminski]&lt;br /&gt;
# [http://twitter.com/diegobz @diegobz] - Diego Búrigo Zacarão&lt;br /&gt;
# [http://twitter.com/ferwakeup @ferwakeup] - [http://meego.com/users/ferwakeup Fernando Martín]&lt;br /&gt;
# [http://twitter.com/andrei1089 @andrei1089] - [http://meego.com/users/andrei1089 Andrei Mirestean]&lt;br /&gt;
# [http://twitter.com/madeouk @madeouk] - [http://meego.com/users/arfoll Brendan Le Foll]&lt;br /&gt;
# [http://twitter.com/msinternet @msinternet] - [http://www.msinternet.co.uk Martin Saunders]&lt;br /&gt;
# [http://twitter.com/Le_PoUnT @Le_PoUnT] - [http://meego.com/users/lepount Olivier Rocat]&lt;br /&gt;
# [http://twitter.com/sjgadsby @sjgadsby] - [http://meego.com/users/sjgadsby Stephen Gadsby]&lt;br /&gt;
# [http://twitter.com/rasjani @rasjani] - [http://meego.com/users/rasjani Jani Mikkonen]&lt;br /&gt;
# [http://twitter.com/bergie @bergie] - Henri Bergius&lt;br /&gt;
# [http://twitter.com/ubkr @ubkr] - Bjarne Rosengren&lt;br /&gt;
# [http://twitter.com/vgrade @vgrade] - [http://meego.com/users/vgrade Martin Brook]&lt;br /&gt;
# [http://twitter.com/b0unc3 @b0unc3] - [http://meego.com/users/b0unc3 Daniele Maio]&lt;br /&gt;
# [http://twitter.com/eipi2 @eipi2] - [http://meego.com/users/eipi Sanjeev Visvanatha]*&lt;br /&gt;
# [http://twitter.com/olea @olea] - [http://meego.com/users/olea Ismael Olea]&lt;br /&gt;
# [http://twitter.com/roosmaa @roosmaa] - [http://meego.com/users/roosmaa Mart Roosmaa]&lt;br /&gt;
# [http://twitter.com/w00teh @w00teh] - [http://meego.com/users/w00t Robin Burchell]&lt;br /&gt;
# [http://twitter.com/Savicq @Savicq] - [http://meego.com/users/Saviq Michał Sawicz]&lt;br /&gt;
&lt;br /&gt;
==Hashtag==&lt;br /&gt;
The Twitter hashtag for the MeeGo Conference is '''#MeeGoConf'''&lt;br /&gt;
&lt;br /&gt;
==Random Note==&lt;br /&gt;
* For those of you asking about the asterisk (*) that I keep moving around after people's names, it is just my way of marking the last name that I added to the Twitter list. This makes it easy for me to see where I left off the last time I added names to the list. --[[User:Dawnfoster|Dawnfoster]] 15:46, 11 October 2010 (UTC)&lt;/div&gt;</summary>
		<author><name>Saviq</name></author>	</entry>

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

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

	<entry>
		<id>http://wiki.meego.com/MeeGo_Conference_2010/Early_Bird_Events</id>
		<title>MeeGo Conference 2010/Early Bird Events</title>
		<link rel="alternate" type="text/html" href="http://wiki.meego.com/MeeGo_Conference_2010/Early_Bird_Events"/>
				<updated>2010-09-30T09:53:25Z</updated>
		
		<summary type="html">&lt;p&gt;Saviq: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Introduction ==&lt;br /&gt;
&lt;br /&gt;
It would be nice to organize a weekend like the [http://wiki.maemo.org/Maemo-Barcelona_Long_Weekend Barcelona Long Weekend] we (the Maemo Community) organized on October 2009. These two days should be completly organized by the community and for the community. No formal conferences or talks, but interactive activities and hacking sessions where you, the participant, are the main actor.&lt;br /&gt;
&lt;br /&gt;
What about the content of these two days? We could have (for example) programming tutorials, Qt tutorials, hacking sessions on a specific task, round tables where a developer explains his difficoulties implementing a feature and the others help him, ecc...&lt;br /&gt;
&lt;br /&gt;
The first thing to do is spreading this and asking people (users, developers ecc...) what they would like to find during these two days. Once we've gathered some nice ideas we can organize them better.&lt;br /&gt;
&lt;br /&gt;
=== List of people who would like to attend ===&lt;br /&gt;
&lt;br /&gt;
'''Update: We have added a [http://conference2010.meego.com/program/early-bird-events registration page] for the Early Bird event. Please [http://conference2010.meego.com/program/early-bird-events register on the conference website] instead of adding your name below.'''&lt;br /&gt;
&lt;br /&gt;
Please make sure to be registered to the MeeGo Conference. If you'd like to attend, please add your name here - no strings attached, just to get a rough overview of the number of people interested. If you are also interested in helping organizing the event, please also add your name at the bottom of this Wiki page in the Volunteers section.&lt;br /&gt;
&lt;br /&gt;
* [http://meego.com/users/andreagrandi Andrea Grandi]&lt;br /&gt;
* [http://meego.com/users/thp Thomas Perl]&lt;br /&gt;
* [http://meego.com/users/dneary Dave Neary]&lt;br /&gt;
* [http://meego.com/users/jnwi Jens Wiik]&lt;br /&gt;
* [http://meego.com/users/texrat Randall Arnold]&lt;br /&gt;
* [http://meego.com/users/pycage Martin Grimme]&lt;br /&gt;
* [http://meego.com/users/b0unc3 Daniele Maio]&lt;br /&gt;
* [http://meego.com/users/dawnfoster Dawn Foster]&lt;br /&gt;
* [http://meego.com/users/sivan Sivan Greenberg]&lt;br /&gt;
* [http://meego.com/users/anidel Aniello Del Sorbo]&lt;br /&gt;
* [http://meego.com/users/lcuk Gary Birkett]&lt;br /&gt;
* [http://meego.com/users/achipa Attila Csipa]&lt;br /&gt;
* [http://meego.com/users/ferwakeup Fernando Martin]&lt;br /&gt;
* [http://meego.com/users/macron Ronan Mac Laverty]&lt;br /&gt;
* [http://meego.com/users/qgil Quim Gil]&lt;br /&gt;
* [http://meego.com/users/leinir Dan Leinir Turthra Jensen]&lt;br /&gt;
* [http://meego.com/users/monoceros Francesco Baldassarri]&lt;br /&gt;
* [http://meego.com/users/jukey Uwe Kaminski]&lt;br /&gt;
* [http://meego.com/users/warter Jens Bocklage]&lt;br /&gt;
* [http://meego.com/users/timsamoff Tim Samoff]&lt;br /&gt;
* [http://meego.com/users/unknowndevice Shane Marks]&lt;br /&gt;
&lt;br /&gt;
=== When and Where ===&lt;br /&gt;
&lt;br /&gt;
The basic idea is to organize these two days on '''November 13th, 14th'''. About the location that will host us we still have no idea. Probably it will be possible to use the same [http://www.d4hotels.ie hotel] used for the MeeGo Conference, but this must be confirmed yet.&lt;br /&gt;
&lt;br /&gt;
== Provisional program ==&lt;br /&gt;
&lt;br /&gt;
All sessions are subject to confirmation or change. As we confirm workshop &amp;amp; tutorial leaders, we will add more details. [[#Ideas_for_the_program | Other session ideas]] proposed below may end up being included, based on popular demand.&lt;br /&gt;
&lt;br /&gt;
{| style=&amp;quot; border-spacing: 0;&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Time !! Workshop !! Tutorial !! Other&lt;br /&gt;
|-&lt;br /&gt;
| Sat 14:00-17:00 &lt;br /&gt;
| Hands-on Qt&lt;br /&gt;
| Getting started with MeeGo on ARM&lt;br /&gt;
| Maker's Contest&lt;br /&gt;
|-&lt;br /&gt;
| Sun 10:00-13:00&lt;br /&gt;
| Hands-on MeeGo development&lt;br /&gt;
| Linux Developer Tools&lt;br /&gt;
| BOFs&lt;br /&gt;
|-&lt;br /&gt;
| Sun 14:00-17:00&lt;br /&gt;
| Hackathon - write a complete application&lt;br /&gt;
| Introduction to Qt&lt;br /&gt;
| Geocache treasure hunt&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Tasks ==&lt;br /&gt;
&lt;br /&gt;
* Spread this idea around the community (in Maemo and MeeGo mailing lists and forums)&lt;br /&gt;
* Gather ideas and feedback from users and developers&lt;br /&gt;
* Create a public poll so the people can vote the most interesting content and we'll have a more realistic idea of what users want&lt;br /&gt;
* Thinking about a proper name for these two days (sounds &amp;quot;Dublin MeeGo Weekend&amp;quot; good?)&lt;br /&gt;
* Maybe create a customized logo for &amp;quot;Dublin MeeGo Weekend&amp;quot; ?&lt;br /&gt;
* Implementation of a registration form for this event&lt;br /&gt;
* ecc...&lt;br /&gt;
&lt;br /&gt;
=== Ideas for the program ===&lt;br /&gt;
&lt;br /&gt;
Overall program structure:&lt;br /&gt;
&lt;br /&gt;
* Active participation in the event - less talk, more code. No powerpoints - just you, the editor and the compiler. Be productive!&lt;br /&gt;
* A two-day Hackathon: Start putting your ideas into fresh code, or finish a project that has been on the back burner for some time&lt;br /&gt;
* Participants are encouraged to share their progress at the end of each day - what they accomplished, where they need further help, etc.&lt;br /&gt;
&lt;br /&gt;
Session ideas:&lt;br /&gt;
&lt;br /&gt;
* Gentle introduction to Qt through PySide and QML, exploring the object hierarchy through the improved interactive interpreter IPython (-sivan)&lt;br /&gt;
* A short but intensive indroduction to Qt/C++ (something like 3-4 hours course, offered by some expert developer)&lt;br /&gt;
* Round tables to discuss about UI improvements or features implementation: a developer could have found some difficoult implementing the UI for his application or to provide a particular feature. Other expert developers could try to help him with his problem.&lt;br /&gt;
* A workshop for x86 developers on getting started with MeeGo development for ARM - end goal: By the end of the session, everyone has a sample application running in an emulator on their laptop&lt;br /&gt;
* Developer tools training - a half day on using git, valgrind, oprofile&lt;br /&gt;
* One night coding competition.&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
Extra-curricular activities:&lt;br /&gt;
&lt;br /&gt;
* A variety of team competitions with some small prizes&lt;br /&gt;
** Geocache treasure hunt&lt;br /&gt;
** Maker's contest - some ideas: build a good mousetrap powered car, a bridge with glue &amp;amp; lollipop sticks, or the best paper airplane (details to be announced on-site)&lt;br /&gt;
** A quiz??&lt;br /&gt;
&lt;br /&gt;
== Dublin Weekend Program ==&lt;br /&gt;
&lt;br /&gt;
(the program has still to be defined)&lt;br /&gt;
&lt;br /&gt;
== Volunteers ==&lt;br /&gt;
&lt;br /&gt;
* [http://meego.com/users/andreagrandi Andrea Grandi]&lt;br /&gt;
* [http://meego.com/users/thp Thomas Perl]&lt;br /&gt;
* [http://meego.com/users/dneary Dave Neary]&lt;br /&gt;
* [http://meego.com/users/jnwi Jens Wiik]&lt;br /&gt;
* [http://meego.com/users/texrat Randall Arnold]&lt;br /&gt;
* [http://meego.com/users/sivan Sivan Greenberg]&lt;br /&gt;
* [http://meego.com/users/anidel Aniello Del Sorbo]&lt;br /&gt;
* [http://meego.com/users/achipa Attila Csipa]&lt;br /&gt;
* [http://meego.com/users/timsamoff Tim Samoff]&lt;br /&gt;
* [http://meego.com/users/unknowndevice Shane Marks]&lt;br /&gt;
* [http://meego.com/users/saviq Michał Sawicz]&lt;br /&gt;
&lt;br /&gt;
== Links and discussions ==&lt;br /&gt;
&lt;br /&gt;
* [http://forum.meego.com/showthread.php?t=1342 MeeGo Forum thread]&lt;br /&gt;
* [http://talk.maemo.org/showthread.php?t=61708 talk.maemo.org thread]&lt;/div&gt;</summary>
		<author><name>Saviq</name></author>	</entry>

	<entry>
		<id>http://wiki.meego.com/Build_Infrastructure/Community_Builder</id>
		<title>Build Infrastructure/Community Builder</title>
		<link rel="alternate" type="text/html" href="http://wiki.meego.com/Build_Infrastructure/Community_Builder"/>
				<updated>2010-08-30T13:02:30Z</updated>
		
		<summary type="html">&lt;p&gt;Saviq: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The Community OBS is taking shape.&lt;br /&gt;
&lt;br /&gt;
The current version co-exists with the Maemo.org OBS and targets:&lt;br /&gt;
* MeeGo:1.0:Core : Latest Release&lt;br /&gt;
&lt;br /&gt;
The plan is to add:&lt;br /&gt;
* MeeGo:Current:Core : Always points to the latest release snapshot&lt;br /&gt;
* MeeGo:1.0.80.1.20100514.1:Core  : each weekly snapshot. See [[MeeGo_Release_Creation#Weekly_Builds_and_Build_Numbers|the release guidelines]] for an explanation of the numbering.&lt;br /&gt;
&lt;br /&gt;
The deployment supports home:&amp;lt;user&amp;gt; based building only at the moment.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Community OBS Testing Volunteers&lt;br /&gt;
&lt;br /&gt;
If you want to help with the development and/or testing of the community OBS please add your details below and ensure you contact lbt/X-fade on irc :-&lt;br /&gt;
&lt;br /&gt;
* meego id, short introduction, relevant skills &lt;br /&gt;
* vgrade, wanting to get Meego up on O2 Joggler, none really on OBS but a background in integration testing&lt;br /&gt;
* kostaja, mobile linux pro and hobbyist, done several OBS installations and currently maintaining an own OBS instance.&lt;br /&gt;
* csdb, looking into helping with arm port, been playing with setting up local OBS for 1 month since I saw reference to it from meego.&lt;br /&gt;
* copyleft, already setup a local OBS and ready to build additional packages on MeeGo 1.0, experience of porting MeeGo to new x86 netbook, deb packaging.&lt;br /&gt;
* dl9pf, OBS developer, developer of the cross-compilation for MeeGo, Requires(pre): rpm - BuildRequires: OBS  ;)&lt;br /&gt;
* matthewg, linux user, looking to help port packages to netbook and other editions&lt;br /&gt;
* schimmm, linux user, Experience in packaging for other distributions (. rpm) and happy to work with Meego Community :)&lt;br /&gt;
* amjad,   Linux build engineer, experience in packaging for other distro, helping with arm port .&lt;br /&gt;
* miska, former openSUSE packager wanting to use rpm based distro on his mobile phone, obs &amp;amp; rpm packaging&lt;br /&gt;
* saviq, FOSS advocate, good knowledge of OBS (ran my own instance once), RPM / DEB packaging&lt;/div&gt;</summary>
		<author><name>Saviq</name></author>	</entry>

	<entry>
		<id>http://wiki.meego.com/MeeGo_Developer_Conference_in_Dublin-L10N_focus</id>
		<title>MeeGo Developer Conference in Dublin-L10N focus</title>
		<link rel="alternate" type="text/html" href="http://wiki.meego.com/MeeGo_Developer_Conference_in_Dublin-L10N_focus"/>
				<updated>2010-08-19T21:24:34Z</updated>
		
		<summary type="html">&lt;p&gt;Saviq: Add some i10n-related session proposals&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Let's see how many of the MeeGo L10N community will be attending this conference (http://conference2010.meego.com). &lt;br /&gt;
&lt;br /&gt;
We should plan on meeting up and discussing issues such as (and please add to this list):&lt;br /&gt;
* Adding new languages to MeeGo&lt;br /&gt;
* Coordinating the language teams&lt;br /&gt;
* Communicating roadmaps and schedules&lt;br /&gt;
* Establishing working sessions during the conference&lt;br /&gt;
* Visiting any local companies that are involved with MeeGo development and localization&lt;br /&gt;
&lt;br /&gt;
Proposed sessions:&lt;br /&gt;
* [http://conference2010.meego.com/session/working-together-world-ready-meego-developers-and-translators Working Together for World-Ready MeeGo: Developers and Translators] (Margie)&lt;br /&gt;
* [http://conference2010.meego.com/session/pushing-meego-internationalization-upstream Pushing MeeGo internationalization upstream] (Michał Sawicz)&lt;br /&gt;
* [http://conference2010.meego.com/session/transifex-mobile-google-summer-code-2010-project Transifex-Mobile (Google Summer of Code 2010 project)] (Lauri Võsand)&lt;br /&gt;
* [http://conference2010.meego.com/session/localization-meegos-web-sites Localization of MeeGo's Web Sites] (Michael Shaver, Margie)&lt;br /&gt;
&lt;br /&gt;
I plan on attending:&lt;br /&gt;
&lt;br /&gt;
* Margie (if I get approved to go that is)&lt;br /&gt;
* Michał Sawicz (same here)&lt;br /&gt;
* your name here&lt;br /&gt;
&lt;br /&gt;
[[Category:Localization]]&lt;/div&gt;</summary>
		<author><name>Saviq</name></author>	</entry>

	<entry>
		<id>http://wiki.meego.com/Localization_team</id>
		<title>Localization team</title>
		<link rel="alternate" type="text/html" href="http://wiki.meego.com/Localization_team"/>
				<updated>2010-05-05T13:56:37Z</updated>
		
		<summary type="html">&lt;p&gt;Saviq: Add my entry in the Contributors section&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=== Announcement ===&lt;br /&gt;
&lt;br /&gt;
Following the meeting on March 24, 2010 the creation of the Localization working group has not been approved by the Technical Steering Group :&lt;br /&gt;
&lt;br /&gt;
* L10N will be included in the project setup drafts.&lt;br /&gt;
&lt;br /&gt;
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;
Current and older L10N meetings can be found [http://wiki.meego.com/L10n_meeting_schedule here].&lt;br /&gt;
&lt;br /&gt;
=== How to contribute ===&lt;br /&gt;
&lt;br /&gt;
To discuss and plan the localization of MeeGo, subscribe to the MeeGo l10n mailing list: http://lists.meego.com/listinfo/meego-il10n. You can also subscribe from your account page on meego.com.&lt;br /&gt;
&lt;br /&gt;
=== Mission ===&lt;br /&gt;
&lt;br /&gt;
The Localization working group defines the strategy for utilizing crowd-sourcing for translating MeeGo into multiple languages, and observes its implementation. Using [http://www.transifex.net/ Transifex] as the tool, our goal is to build a community of dedicated translators, editors, reviewers, and testers in multiple languages.&lt;br /&gt;
&lt;br /&gt;
Related pages:&lt;br /&gt;
* [[L10n_plan]]&lt;br /&gt;
* [[L10N/RoadmapProposal]]&lt;br /&gt;
* [[LocalizationProcess]]&lt;br /&gt;
* [[How to run a translation team]]&lt;br /&gt;
&lt;br /&gt;
=== Areas ===&lt;br /&gt;
&lt;br /&gt;
The main areas within the scope of the working group are (in no particular order):&lt;br /&gt;
&lt;br /&gt;
* Maemo/Moblin transition: bringing the best of localization policies, procedures, and best-known methods from maemo.org and moblin.org to meego.com&lt;br /&gt;
* Transifex administration: deciding where to host the tool, determining a team of admins and other users with special permissions, server administration&lt;br /&gt;
* Crowd-sourcing infrastructure: selection and administration of online tools for l10n community collaboration&lt;br /&gt;
* Localization teams: [[Language specific working groups]].&lt;br /&gt;
* How to run translation teams [[http://wiki.meego.com/How_to_run_a_translation_team]]&lt;br /&gt;
&lt;br /&gt;
=== Contributors ===&lt;br /&gt;
&lt;br /&gt;
MeeGo members interested in taking an active role in this working group. Please detail your interests and what you can contribute to the group:&lt;br /&gt;
&lt;br /&gt;
* [http://meego.com/users/margie Margie Foster] - I am currently the l10n project manager for Moblin, and will be transitioning my focus to MeeGo. Submitter of this proposal and happy to take an active role. Full disclosure: I am an [http://intel.com Intel] employee.&lt;br /&gt;
* [http://meego.com/users/glezos Dimitris Glezos] - I am the creator and lead developer for [http://www.transifex.net/ Transifex], the L10n tool powering the translations of [http://translate.moblin.org/ Moblin] and [http://www.transifex.net/collections/c/maemo-extras/ Maemo Extras], and also the L10n lead of the Fedora Project. I'd be happy to take an active role in the L10n engineering of MeeGo. Full disclosure: I am an [http://indifex.com/ Indifex] employee, the company sponsoring the development of Transifex.&lt;br /&gt;
* [http://meego.com/users/omaciel Og Maciel] - I am deeply involved with the translation efforts of several open source groups including GNOME, Xfce, LXDE, Openbox, Moblin, and some minor contributions to KDE and Fedora. I'd be very interested to also take a more active role in the engineering and steering process of making MeeGo internationalized. Full disclosure: I am a big Transifex supporter (for many reasons) and am huge on quality control!&lt;br /&gt;
* [http://meego.com/users/milo Milo Casagrande] - I'm involved with different translation groups (Ubuntu, GNOME, and the Translation Project), and I'm leading the Italian Ubuntu translators group. I've made contributions also to Debian and Fedora, although I'm not really involved with them. I'd be happy to help this new L10n group.&lt;br /&gt;
* [http://meego.com/users/timeless timeless] - I maintain alternate translations of Maemo 4 and 5 for en_US and en_GB, which are also the basis for Mer. I've been on the periphery of l10n concerns as a member of the [http://mozilla.org Mozilla community]. Full disclosure: I am a [http://nokia.com Nokia] employee.&lt;br /&gt;
* [http://meego.com/users/solt Marcin Sołtysiak] - [http://www.midgard-project.org/ Midgard]/MidCOM contributor and translator, [http://qaiku.com Qaiku] translator, [http://maemo.org/downloads/product/OS2008/os2008pl/ OS2008] (Chinook/Diablo) translator. Just a fan.&lt;br /&gt;
* [http://meego.com/users/amfidiusz Adrian Marcinkowski] - [http://invisionpower.com/ IP.Board] active developer &amp;amp; translator, [http://instantbird.com/ Instanbird] translator &amp;amp; beta tester. I'm familiar with working on Mercurial and SVN repositories as well as on po/pot files - and more than eager to help with l10n of MeeGo!&lt;br /&gt;
* [http://meego.com/users/Saviq Michał Sawicz] - In terms of translation, I've been involved in several L10n projects, Moblin being one of them. I have also revised approach to L10n and L10n-related coding guidelines for the Elisa / Moovida project. I can help in both the core Localization Group and the Polish Localization Team.&lt;br /&gt;
&lt;br /&gt;
[[Category:Localization]]&lt;/div&gt;</summary>
		<author><name>Saviq</name></author>	</entry>

	<entry>
		<id>http://wiki.meego.com/Language_specific_working_groups</id>
		<title>Language specific working groups</title>
		<link rel="alternate" type="text/html" href="http://wiki.meego.com/Language_specific_working_groups"/>
				<updated>2010-03-04T17:18:34Z</updated>
		
		<summary type="html">&lt;p&gt;Saviq: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Language Specific Working Groups ==&lt;br /&gt;
&lt;br /&gt;
If your language is not mentioned here, add a section for it, copy a table and list your name as shown.&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
== Brazil::Brazilian Portuguese == &lt;br /&gt;
&lt;br /&gt;
{| style=&amp;quot;color:green; background-color:#ffffcc;&amp;quot; cellpadding=&amp;quot;20&amp;quot; cellspacing=&amp;quot;0&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
|Name&lt;br /&gt;
|IRC Nick&lt;br /&gt;
|Bio&lt;br /&gt;
|-&lt;br /&gt;
|Og Maciel&lt;br /&gt;
|OgMaciel&lt;br /&gt;
|[[http://www.ogmaciel.com/?page_id=428]]&lt;br /&gt;
|-&lt;br /&gt;
|Frederico Schardong&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== France::French == &lt;br /&gt;
&lt;br /&gt;
{| style=&amp;quot;color:green; background-color:#ffffcc;&amp;quot; cellpadding=&amp;quot;20&amp;quot; cellspacing=&amp;quot;0&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
|Name&lt;br /&gt;
|IRC Nick&lt;br /&gt;
|Bio&lt;br /&gt;
|-&lt;br /&gt;
|Farid Ziani&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Hindi == &lt;br /&gt;
&lt;br /&gt;
{| style=&amp;quot;color:green; background-color:#ffffcc;&amp;quot; cellpadding=&amp;quot;20&amp;quot; cellspacing=&amp;quot;0&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
|Name&lt;br /&gt;
|GTalk&lt;br /&gt;
|Bio&lt;br /&gt;
|-&lt;br /&gt;
|Kiran Vaka&lt;br /&gt;
|kiran.vaka&lt;br /&gt;
|[[http://www.google.com/search?sourceid=chrome&amp;amp;ie=UTF-8&amp;amp;q=kiran+vaka]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Israel::Hebrew == &lt;br /&gt;
&lt;br /&gt;
{| style=&amp;quot;color:green; background-color:#ffffcc;&amp;quot; cellpadding=&amp;quot;20&amp;quot; cellspacing=&amp;quot;0&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
|Name&lt;br /&gt;
|IRC Nick&lt;br /&gt;
|Bio&lt;br /&gt;
|-&lt;br /&gt;
|Sivan Greenberg&lt;br /&gt;
|sivang&lt;br /&gt;
|[[http://www.google.com/search?sourceid=chrome&amp;amp;ie=UTF-8&amp;amp;q=sivan+greenberg]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Marathi == &lt;br /&gt;
&lt;br /&gt;
{| style=&amp;quot;color:green; background-color:#ffffcc;&amp;quot; cellpadding=&amp;quot;20&amp;quot; cellspacing=&amp;quot;0&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
|Name&lt;br /&gt;
|GTalk&lt;br /&gt;
|Bio&lt;br /&gt;
|-&lt;br /&gt;
|Amit Bapat&lt;br /&gt;
|amitbapat&lt;br /&gt;
|[[http://www.linkedin.com/in/amitbapat]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Poland::Polish == &lt;br /&gt;
&lt;br /&gt;
{| style=&amp;quot;color:green; background-color:#ffffcc;&amp;quot; cellpadding=&amp;quot;20&amp;quot; cellspacing=&amp;quot;0&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
|Name&lt;br /&gt;
|IRC Nick&lt;br /&gt;
|Bio&lt;br /&gt;
|-&lt;br /&gt;
|Michał Sawicz&lt;br /&gt;
|Saviq&lt;br /&gt;
|[[http://www.google.com/search?q=saviq+michał+sawicz]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Chinese (Taiwan) == &lt;br /&gt;
&lt;br /&gt;
{| style=&amp;quot;color:green; background-color:#ffffcc;&amp;quot; cellpadding=&amp;quot;20&amp;quot; cellspacing=&amp;quot;0&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
|Name&lt;br /&gt;
|IRC Nick&lt;br /&gt;
|Bio&lt;br /&gt;
|-&lt;br /&gt;
|Cheng-Chia Tseng&lt;br /&gt;
|zerng07&lt;br /&gt;
|[[http://www.google.com/search?sourceid=chrome&amp;amp;ie=UTF-8&amp;amp;q=cheng-chia+tseng]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Simplified Chinese == &lt;br /&gt;
&lt;br /&gt;
{| style=&amp;quot;color:green; background-color:#ffffcc;&amp;quot; cellpadding=&amp;quot;20&amp;quot; cellspacing=&amp;quot;0&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
|Name&lt;br /&gt;
|IRC Nick&lt;br /&gt;
|Bio&lt;br /&gt;
|-&lt;br /&gt;
|Ryan Lee&lt;br /&gt;
|&lt;br /&gt;
|[[http://www.google.com/search?sourceid=chrome&amp;amp;ie=UTF-8&amp;amp;q=ryan+lee]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Slovenian == &lt;br /&gt;
&lt;br /&gt;
{| style=&amp;quot;color:green; background-color:#ffffcc;&amp;quot; cellpadding=&amp;quot;20&amp;quot; cellspacing=&amp;quot;0&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
|Name&lt;br /&gt;
|IRC Nick&lt;br /&gt;
|Bio&lt;br /&gt;
|-&lt;br /&gt;
|Jure Repinc&lt;br /&gt;
|JLP&lt;br /&gt;
|[[http://www.google.com/search?ie=UTF-8&amp;amp;q=jure+repinc]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Telugu == &lt;br /&gt;
&lt;br /&gt;
{| style=&amp;quot;color:green; background-color:#ffffcc;&amp;quot; cellpadding=&amp;quot;20&amp;quot; cellspacing=&amp;quot;0&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
|Name&lt;br /&gt;
|Skype&lt;br /&gt;
|Bio&lt;br /&gt;
|-&lt;br /&gt;
|Kiran Vaka&lt;br /&gt;
|kiran.waka&lt;br /&gt;
|[[http://www.google.com/search?sourceid=chrome&amp;amp;ie=UTF-8&amp;amp;q=kiran+vaka]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Walloon == &lt;br /&gt;
&lt;br /&gt;
{| style=&amp;quot;color:green; background-color:#ffffcc;&amp;quot; cellpadding=&amp;quot;20&amp;quot; cellspacing=&amp;quot;0&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
|Name&lt;br /&gt;
|GTalk&lt;br /&gt;
|Bio/Website&lt;br /&gt;
|-&lt;br /&gt;
|Djan Cayron&lt;br /&gt;
|jean &amp;quot;dot&amp;quot; cayron&lt;br /&gt;
|[[http://wa.wikipedia.org/wiki/Jean_Cayron]] [[http://walotux.walon.org/]]&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Saviq</name></author>	</entry>

	</feed>