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

	<entry>
		<id>http://wiki.meego.com/SDK/Installing_openssh_in_MeeGo</id>
		<title>SDK/Installing openssh in MeeGo</title>
		<link rel="alternate" type="text/html" href="http://wiki.meego.com/SDK/Installing_openssh_in_MeeGo"/>
				<updated>2011-04-13T22:49:22Z</updated>
		
		<summary type="html">&lt;p&gt;Davidisflash: Installing openssh on a virtual MeeGo software stack reduces developer overhead!&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Tutorial: Installing openssh in MeeGo&lt;br /&gt;
&lt;br /&gt;
By David Medawar&lt;br /&gt;
&lt;br /&gt;
Note: this tutorial may be extended to configurations not mentioned below, such as different hardware, etc.&lt;br /&gt;
&lt;br /&gt;
Note: all of the tutorial steps below were needed.  Some unverified configurations may require more or less steps.&lt;br /&gt;
&lt;br /&gt;
Why install openssh for MeeGo?  One big benefit is for MeeGo app developers as there is overhead in manually copying over, installing, and running a rpm build on a target MeeGo device every time a new source code build is performed.  SSH, in conjunction with a virtualized MeeGo software stack on the same development system, streamlines the process of testing significantly with the click of the &amp;quot;Run&amp;quot; option in MeeGo SDK.&lt;br /&gt;
&lt;br /&gt;
Here, these steps assume that the developer has setup a virtualized MeeGo software stack for quick app testing.  This especially helps in the case where an actual MeeGo target isn't readily available for use.  After building source code, MeeGo SDK can then connect to the virtualized MeeGo stack through the guest on the same system over ssh.  This allows for immediately running a new build without delay.&lt;br /&gt;
&lt;br /&gt;
This document was verified using the following configuration:&lt;br /&gt;
&lt;br /&gt;
VMPlayer latest version as of this document date&lt;br /&gt;
Windows 7 64 bit development desktop&lt;br /&gt;
Meego netbook 1.1 ia32 image (from Oct 2010, official)&lt;br /&gt;
NOTE!  There have been known issues virtualizing MeeGo with some of the other MeeGo versions such as 1.1 Tablet and 1.1 UX&lt;br /&gt;
&lt;br /&gt;
STEPS: Here are the steps that were needed to install openssh for MeeGo. &lt;br /&gt;
&lt;br /&gt;
1) Become root in the MeeGo terminal (ie: &amp;quot;sudo su&amp;quot; command)&lt;br /&gt;
&lt;br /&gt;
2) IMPORTANT!  When behind a firewall, we need to ensure proxy settings are correct.  I had to do the following method to properly set  the proxy address:&lt;br /&gt;
	export http_proxy=http://&amp;lt;Proxy_address&amp;gt;:&amp;lt;Port_number&amp;gt; &lt;br /&gt;
&lt;br /&gt;
3) Add the MeeGo sdk repo with the following command&lt;br /&gt;
	zypper addrepo –f http://repo.meego.com/MeeGo/sdk/host/repos/meego/1.1/meego-sdk.repo&lt;br /&gt;
&lt;br /&gt;
4) Now make sure all of your repo packages are up to date by executing the &amp;quot;zypper update&amp;quot; command. I got a bunch of errors and this step may not be necessary for the solution that we arrive at, but for the sake of reproducibility, give it a try&lt;br /&gt;
&lt;br /&gt;
5) Try &amp;quot;zypper install –t patch 1.1-Core-Updates&amp;quot;.  This is recommended here:	&lt;br /&gt;
	https://bugs.meego.com/show_bug.cgi?id=10113&lt;br /&gt;
	I chose &amp;quot;solution 1&amp;quot; when asked to uninstall previous packages&lt;br /&gt;
	Reboot the virtual machine when prompted to do so&lt;br /&gt;
&lt;br /&gt;
6) After reboot, enter terminal again, become root, and apply the above proxy export command if needed&lt;br /&gt;
&lt;br /&gt;
7) edit the file /etc/zypp/repos.d/core.repo and make following changes:&lt;br /&gt;
	Enabled: 0--&amp;gt;1&lt;br /&gt;
	Type: NONE--&amp;gt;rpm-md&lt;br /&gt;
&lt;br /&gt;
8) Now do a &amp;quot;zypper ref&amp;quot; command to make sure repos are up to date.  You may get an error on one of the debug repos.  This is OK&lt;br /&gt;
&lt;br /&gt;
9) Now install open ssh: &amp;quot;zypper install openssh-server&amp;quot;.  This step finally works.&lt;/div&gt;</summary>
		<author><name>Davidisflash</name></author>	</entry>

	<entry>
		<id>http://wiki.meego.com/SDK/Installing_openssh_in_MeeGo</id>
		<title>SDK/Installing openssh in MeeGo</title>
		<link rel="alternate" type="text/html" href="http://wiki.meego.com/SDK/Installing_openssh_in_MeeGo"/>
				<updated>2011-04-13T22:39:45Z</updated>
		
		<summary type="html">&lt;p&gt;Davidisflash: Installing openssh in MeeGo benefits developers using the SDK!&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Tutorial: Installing openssh in MeeGo&lt;br /&gt;
&lt;br /&gt;
ByDavid Medawar&lt;br /&gt;
&lt;br /&gt;
Note: this tutorial may be extended to configurations not mentioned below, such as different hardware, etc.&lt;br /&gt;
&lt;br /&gt;
Note: all of the tutorial steps below were needed.  Some unverified configurations may require more or less steps.&lt;br /&gt;
&lt;br /&gt;
Why install openssh for MeeGo?  One big benefit is for MeeGo app developers as there is overhead in manually copying over, installing, and running a rpm build on a target MeeGo device every time a new source code build is performed.  SSH, in conjunction with a virtualized MeeGo software stack on the same development system, streamlines the process of testing significantly with the click of the &amp;quot;Run&amp;quot; option in MeeGo SDK.&lt;br /&gt;
&lt;br /&gt;
Here, these steps assume that the developer has setup a virtualized MeeGo software stack for quick app testing.  This especially helps in the case where an actual MeeGo target isn't readily available for use.  After building source code, MeeGo SDK can then connect to the virtualized MeeGo stack through the guest on the same system over ssh.  This allows for immediately running a new build without delay.&lt;br /&gt;
&lt;br /&gt;
This document was verified using the following configuration:&lt;br /&gt;
&lt;br /&gt;
VMPlayer latest version as of this document date&lt;br /&gt;
Windows 7 64 bit development desktop&lt;br /&gt;
Meego netbook 1.1 ia32 image (from Oct 2010, official)&lt;br /&gt;
NOTE!  There have been known issues virtualizing MeeGo with some of the other MeeGo versions such as 1.1 Tablet and 1.1 UX&lt;br /&gt;
&lt;br /&gt;
STEPS: Here are the steps that were needed to install openssh for MeeGo. &lt;br /&gt;
&lt;br /&gt;
1) Become root in the MeeGo terminal (ie: &amp;quot;sudo su&amp;quot; command)&lt;br /&gt;
&lt;br /&gt;
2) IMPORTANT!  When behind a firewall, we need to ensure proxy settings are correct.  I had to do the following method to properly set  the proxy address:&lt;br /&gt;
	export http_proxy=http://&amp;lt;Proxy_address&amp;gt;:&amp;lt;Port_number&amp;gt; &lt;br /&gt;
&lt;br /&gt;
3) Add the MeeGo sdk repo with the following command&lt;br /&gt;
	zypper addrepo –f http://repo.meego.com/MeeGo/sdk/host/repos/meego/1.1/meego-sdk.repo&lt;br /&gt;
&lt;br /&gt;
4) Now make sure all of your repo packages are up to date by executing the &amp;quot;zypper update&amp;quot; command. I got a bunch of errors and this step may not be necessary for the solution that we arrive at, but for the sake of reproducibility, give it a try&lt;br /&gt;
&lt;br /&gt;
5) Try &amp;quot;zypper install –t patch 1.1-Core-Updates&amp;quot;.  This is recommended here:	&lt;br /&gt;
	https://bugs.meego.com/show_bug.cgi?id=10113&lt;br /&gt;
	I chose &amp;quot;solution 1&amp;quot; when asked to uninstall previous packages&lt;br /&gt;
	Reboot the virtual machine when prompted to do so&lt;br /&gt;
&lt;br /&gt;
6) After reboot, enter terminal again, become root, and apply the above proxy export command if needed&lt;br /&gt;
&lt;br /&gt;
7) edit the file /etc/zypp/repos.d/core.repo and make following changes:&lt;br /&gt;
	Enabled: 0--&amp;gt;1&lt;br /&gt;
	Type: NONE--&amp;gt;rpm-md&lt;br /&gt;
&lt;br /&gt;
8) Now do a &amp;quot;zypper ref&amp;quot; command to make sure repos are up to date.  You may get an error on one of the debug repos.  This is OK&lt;br /&gt;
&lt;br /&gt;
9) Now install open ssh: &amp;quot;zypper install openssh-server&amp;quot;.  This step finally works.&lt;/div&gt;</summary>
		<author><name>Davidisflash</name></author>	</entry>

	<entry>
		<id>http://wiki.meego.com/SDK/Docs/1.1/Tutorials</id>
		<title>SDK/Docs/1.1/Tutorials</title>
		<link rel="alternate" type="text/html" href="http://wiki.meego.com/SDK/Docs/1.1/Tutorials"/>
				<updated>2011-04-13T22:14:17Z</updated>
		
		<summary type="html">&lt;p&gt;Davidisflash: /* Reviewed */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The following tutorials have been created by various authors.  You are welcome and encouraged to contribute to this page. Please read: [[SDK/Tutorial content | How to Create a Tutorial]]&lt;br /&gt;
&lt;br /&gt;
== Tutorials ==&lt;br /&gt;
=== Reviewed ===&lt;br /&gt;
The tutorials in this section have been reviewed and found to be accurate, up-to-date, and useful.  The date for each article reflects the date that the tutorial was moved to the &amp;quot;Reviewed&amp;quot; section. Click the title to view the tutorial.&lt;br /&gt;
&lt;br /&gt;
As we get more tutorials, they should be grouped in categories such as:  Multimedia, Communications, Games, Qt features, QML features, etc.&lt;br /&gt;
{|border=1 cellspacing=&amp;quot;0&amp;quot; cellpadding=&amp;quot;5&amp;quot; &lt;br /&gt;
|-&lt;br /&gt;
!Title&lt;br /&gt;
!Date&lt;br /&gt;
!Author&lt;br /&gt;
!Reviewed By&lt;br /&gt;
|- &lt;br /&gt;
| [[SDK/How_to_create_foobar_sample_tutorial|How to create foobar sample tutorial]]&lt;br /&gt;
| Nov 22, 2010&lt;br /&gt;
| Bob Spencer&lt;br /&gt;
| Jim Jones&lt;br /&gt;
|- &lt;br /&gt;
| [[SDK/Installing_openssh_in_MeeGo|Installing openssh in MeeGo]]&lt;br /&gt;
| Apr 13, 2011&lt;br /&gt;
| David J Medawar&lt;br /&gt;
| Bob Spencer&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Request Review ===&lt;br /&gt;
&lt;br /&gt;
The tutorials listed in this section have not yet been reviewed.&lt;br /&gt;
Please add all new tutorials to this section.&lt;br /&gt;
&lt;br /&gt;
'''Please note:''' the tutorials in this section already exist and are waiting for a review. If you want to suggest a new tutorial ''which hasn't been written yet'', please use the [[#Suggested_Topics|Suggested Topics]] section below.&lt;br /&gt;
&lt;br /&gt;
{| cellpadding=&amp;quot;5&amp;quot; cellspacing=&amp;quot;0&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| [[QML/Creating a transparent window]]&lt;br /&gt;
| Elliot Smith&lt;br /&gt;
|-&lt;br /&gt;
| [[QML/Internationalisation]]&lt;br /&gt;
| Elliot Smith&lt;br /&gt;
|-&lt;br /&gt;
| [[QML/Keyboard navigation]]&lt;br /&gt;
| Elliot Smith&lt;br /&gt;
|-&lt;br /&gt;
| [[QML/Full-screen applications]]&lt;br /&gt;
| Elliot Smith&lt;br /&gt;
|- &lt;br /&gt;
| [[SDK/Tutorials/Packaging]]&lt;br /&gt;
| John(Zhang) Chen&lt;br /&gt;
|-&lt;br /&gt;
| [[SDK/Tutorials/Add_a_new_target]]&lt;br /&gt;
| Jackie(Weihua) Wu&lt;br /&gt;
|-&lt;br /&gt;
| [[SDK/Tutorials/Integrate_Your_Target%26Runtime_to_MADDE]]&lt;br /&gt;
| Bintian Wang&lt;br /&gt;
|- &lt;br /&gt;
| [[SDK/Tutorials/Image_Creation]] (NAND)&lt;br /&gt;
| [http://meego.com/users/fabo Fathi Boudra]&lt;br /&gt;
|-&lt;br /&gt;
| [[D-Bus/Overview]]&lt;br /&gt;
| Elliot Smith, Kimmo Virtanen&lt;br /&gt;
|-&lt;br /&gt;
| [[Debian_users_translation_guide]]&lt;br /&gt;
| Lbt&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Suggested Topics ===&lt;br /&gt;
The following tutorials are requested.  If you would like to see a tutorial on a specific topic, please enter it below.  If you start a tutorial from below, please delete the topic and put a new line in the &amp;quot;Request Review&amp;quot; table with &amp;quot;In Progress&amp;quot; and a link to the wiki page.&lt;br /&gt;
&lt;br /&gt;
* End-to-end development process:   Hello World to App Store (a lot of this exists, so it would be pulling pieces together)&lt;br /&gt;
* Creating an app that follows the UI design guidelines.  Create the &amp;quot;perfect app&amp;quot;&lt;br /&gt;
* How to embed video or audio.  How to use multimedia features&lt;br /&gt;
* How to perform certain animations.  (e.g. flip window around vertical access.  slide window left/right.  other...)&lt;br /&gt;
* How to create a camera app (get live video stream)&lt;br /&gt;
* How to get system info:   network connection (isConnected, bandwidth), battery, disk space, etc.&lt;br /&gt;
* How to discover and use USB connected devices&lt;br /&gt;
* Porting Android Applications to Qt/MeeGo&lt;br /&gt;
* QML/Build Your Own Widgets from Existing QML Elements (see https://qt.gitorious.org/qt-components/qt-components for the &amp;quot;official&amp;quot; QML components for MeeGo)&lt;br /&gt;
* Getting openssh to install on virtualized MeeGo&lt;br /&gt;
&lt;br /&gt;
Thanks for any contributions!&lt;br /&gt;
&lt;br /&gt;
[[Category:Tutorial|*]]&lt;/div&gt;</summary>
		<author><name>Davidisflash</name></author>	</entry>

	<entry>
		<id>http://wiki.meego.com/SDK/Docs/1.1/Tutorials</id>
		<title>SDK/Docs/1.1/Tutorials</title>
		<link rel="alternate" type="text/html" href="http://wiki.meego.com/SDK/Docs/1.1/Tutorials"/>
				<updated>2011-04-13T22:03:32Z</updated>
		
		<summary type="html">&lt;p&gt;Davidisflash: /* Reviewed */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The following tutorials have been created by various authors.  You are welcome and encouraged to contribute to this page. Please read: [[SDK/Tutorial content | How to Create a Tutorial]]&lt;br /&gt;
&lt;br /&gt;
== Tutorials ==&lt;br /&gt;
=== Reviewed ===&lt;br /&gt;
The tutorials in this section have been reviewed and found to be accurate, up-to-date, and useful.  The date for each article reflects the date that the tutorial was moved to the &amp;quot;Reviewed&amp;quot; section. Click the title to view the tutorial.&lt;br /&gt;
&lt;br /&gt;
As we get more tutorials, they should be grouped in categories such as:  Multimedia, Communications, Games, Qt features, QML features, etc.&lt;br /&gt;
{|border=1 cellspacing=&amp;quot;0&amp;quot; cellpadding=&amp;quot;5&amp;quot; &lt;br /&gt;
|-&lt;br /&gt;
!Title&lt;br /&gt;
!Date&lt;br /&gt;
!Author&lt;br /&gt;
!Reviewed By&lt;br /&gt;
|- &lt;br /&gt;
| [[SDK/How_to_create_foobar_sample_tutorial|How to create foobar sample tutorial]]&lt;br /&gt;
| Nov 22, 2010&lt;br /&gt;
| Bob Spencer&lt;br /&gt;
| Jim Jones&lt;br /&gt;
|- &lt;br /&gt;
| [[SDK/Installing_openssh_in_MeeGo|Quickly test your app via SSH in MeeGo SDK!]]&lt;br /&gt;
| Apr 13, 2011&lt;br /&gt;
| Bob Spencer&lt;br /&gt;
| David J Medawar&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Request Review ===&lt;br /&gt;
&lt;br /&gt;
The tutorials listed in this section have not yet been reviewed.&lt;br /&gt;
Please add all new tutorials to this section.&lt;br /&gt;
&lt;br /&gt;
'''Please note:''' the tutorials in this section already exist and are waiting for a review. If you want to suggest a new tutorial ''which hasn't been written yet'', please use the [[#Suggested_Topics|Suggested Topics]] section below.&lt;br /&gt;
&lt;br /&gt;
{| cellpadding=&amp;quot;5&amp;quot; cellspacing=&amp;quot;0&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| [[QML/Creating a transparent window]]&lt;br /&gt;
| Elliot Smith&lt;br /&gt;
|-&lt;br /&gt;
| [[QML/Internationalisation]]&lt;br /&gt;
| Elliot Smith&lt;br /&gt;
|-&lt;br /&gt;
| [[QML/Keyboard navigation]]&lt;br /&gt;
| Elliot Smith&lt;br /&gt;
|-&lt;br /&gt;
| [[QML/Full-screen applications]]&lt;br /&gt;
| Elliot Smith&lt;br /&gt;
|- &lt;br /&gt;
| [[SDK/Tutorials/Packaging]]&lt;br /&gt;
| John(Zhang) Chen&lt;br /&gt;
|-&lt;br /&gt;
| [[SDK/Tutorials/Add_a_new_target]]&lt;br /&gt;
| Jackie(Weihua) Wu&lt;br /&gt;
|-&lt;br /&gt;
| [[SDK/Tutorials/Integrate_Your_Target%26Runtime_to_MADDE]]&lt;br /&gt;
| Bintian Wang&lt;br /&gt;
|- &lt;br /&gt;
| [[SDK/Tutorials/Image_Creation]] (NAND)&lt;br /&gt;
| [http://meego.com/users/fabo Fathi Boudra]&lt;br /&gt;
|-&lt;br /&gt;
| [[D-Bus/Overview]]&lt;br /&gt;
| Elliot Smith, Kimmo Virtanen&lt;br /&gt;
|-&lt;br /&gt;
| [[Debian_users_translation_guide]]&lt;br /&gt;
| Lbt&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Suggested Topics ===&lt;br /&gt;
The following tutorials are requested.  If you would like to see a tutorial on a specific topic, please enter it below.  If you start a tutorial from below, please delete the topic and put a new line in the &amp;quot;Request Review&amp;quot; table with &amp;quot;In Progress&amp;quot; and a link to the wiki page.&lt;br /&gt;
&lt;br /&gt;
* End-to-end development process:   Hello World to App Store (a lot of this exists, so it would be pulling pieces together)&lt;br /&gt;
* Creating an app that follows the UI design guidelines.  Create the &amp;quot;perfect app&amp;quot;&lt;br /&gt;
* How to embed video or audio.  How to use multimedia features&lt;br /&gt;
* How to perform certain animations.  (e.g. flip window around vertical access.  slide window left/right.  other...)&lt;br /&gt;
* How to create a camera app (get live video stream)&lt;br /&gt;
* How to get system info:   network connection (isConnected, bandwidth), battery, disk space, etc.&lt;br /&gt;
* How to discover and use USB connected devices&lt;br /&gt;
* Porting Android Applications to Qt/MeeGo&lt;br /&gt;
* QML/Build Your Own Widgets from Existing QML Elements (see https://qt.gitorious.org/qt-components/qt-components for the &amp;quot;official&amp;quot; QML components for MeeGo)&lt;br /&gt;
* Getting openssh to install on virtualized MeeGo&lt;br /&gt;
&lt;br /&gt;
Thanks for any contributions!&lt;br /&gt;
&lt;br /&gt;
[[Category:Tutorial|*]]&lt;/div&gt;</summary>
		<author><name>Davidisflash</name></author>	</entry>

	<entry>
		<id>http://wiki.meego.com/SDK/Docs/1.1/Tutorials</id>
		<title>SDK/Docs/1.1/Tutorials</title>
		<link rel="alternate" type="text/html" href="http://wiki.meego.com/SDK/Docs/1.1/Tutorials"/>
				<updated>2011-04-13T21:58:07Z</updated>
		
		<summary type="html">&lt;p&gt;Davidisflash: /* Reviewed */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The following tutorials have been created by various authors.  You are welcome and encouraged to contribute to this page. Please read: [[SDK/Tutorial content | How to Create a Tutorial]]&lt;br /&gt;
&lt;br /&gt;
== Tutorials ==&lt;br /&gt;
=== Reviewed ===&lt;br /&gt;
The tutorials in this section have been reviewed and found to be accurate, up-to-date, and useful.  The date for each article reflects the date that the tutorial was moved to the &amp;quot;Reviewed&amp;quot; section. Click the title to view the tutorial.&lt;br /&gt;
&lt;br /&gt;
As we get more tutorials, they should be grouped in categories such as:  Multimedia, Communications, Games, Qt features, QML features, etc.&lt;br /&gt;
{|border=1 cellspacing=&amp;quot;0&amp;quot; cellpadding=&amp;quot;5&amp;quot; &lt;br /&gt;
|-&lt;br /&gt;
!Title&lt;br /&gt;
!Date&lt;br /&gt;
!Author&lt;br /&gt;
!Reviewed By&lt;br /&gt;
|- &lt;br /&gt;
| [[SDK/How_to_create_foobar_sample_tutorial|How to create foobar sample tutorial]]&lt;br /&gt;
| Nov 22, 2010&lt;br /&gt;
| Bob Spencer&lt;br /&gt;
| Jim Jones&lt;br /&gt;
|- &lt;br /&gt;
| [[SDK/Installing_openssh_in_MeeGo|Quickly test your app via SSH in MeeGo SDK!]]&lt;br /&gt;
| Nov 22, 2010&lt;br /&gt;
| Bob Spencer&lt;br /&gt;
| David J Medawar&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Request Review ===&lt;br /&gt;
&lt;br /&gt;
The tutorials listed in this section have not yet been reviewed.&lt;br /&gt;
Please add all new tutorials to this section.&lt;br /&gt;
&lt;br /&gt;
'''Please note:''' the tutorials in this section already exist and are waiting for a review. If you want to suggest a new tutorial ''which hasn't been written yet'', please use the [[#Suggested_Topics|Suggested Topics]] section below.&lt;br /&gt;
&lt;br /&gt;
{| cellpadding=&amp;quot;5&amp;quot; cellspacing=&amp;quot;0&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| [[QML/Creating a transparent window]]&lt;br /&gt;
| Elliot Smith&lt;br /&gt;
|-&lt;br /&gt;
| [[QML/Internationalisation]]&lt;br /&gt;
| Elliot Smith&lt;br /&gt;
|-&lt;br /&gt;
| [[QML/Keyboard navigation]]&lt;br /&gt;
| Elliot Smith&lt;br /&gt;
|-&lt;br /&gt;
| [[QML/Full-screen applications]]&lt;br /&gt;
| Elliot Smith&lt;br /&gt;
|- &lt;br /&gt;
| [[SDK/Tutorials/Packaging]]&lt;br /&gt;
| John(Zhang) Chen&lt;br /&gt;
|-&lt;br /&gt;
| [[SDK/Tutorials/Add_a_new_target]]&lt;br /&gt;
| Jackie(Weihua) Wu&lt;br /&gt;
|-&lt;br /&gt;
| [[SDK/Tutorials/Integrate_Your_Target%26Runtime_to_MADDE]]&lt;br /&gt;
| Bintian Wang&lt;br /&gt;
|- &lt;br /&gt;
| [[SDK/Tutorials/Image_Creation]] (NAND)&lt;br /&gt;
| [http://meego.com/users/fabo Fathi Boudra]&lt;br /&gt;
|-&lt;br /&gt;
| [[D-Bus/Overview]]&lt;br /&gt;
| Elliot Smith, Kimmo Virtanen&lt;br /&gt;
|-&lt;br /&gt;
| [[Debian_users_translation_guide]]&lt;br /&gt;
| Lbt&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Suggested Topics ===&lt;br /&gt;
The following tutorials are requested.  If you would like to see a tutorial on a specific topic, please enter it below.  If you start a tutorial from below, please delete the topic and put a new line in the &amp;quot;Request Review&amp;quot; table with &amp;quot;In Progress&amp;quot; and a link to the wiki page.&lt;br /&gt;
&lt;br /&gt;
* End-to-end development process:   Hello World to App Store (a lot of this exists, so it would be pulling pieces together)&lt;br /&gt;
* Creating an app that follows the UI design guidelines.  Create the &amp;quot;perfect app&amp;quot;&lt;br /&gt;
* How to embed video or audio.  How to use multimedia features&lt;br /&gt;
* How to perform certain animations.  (e.g. flip window around vertical access.  slide window left/right.  other...)&lt;br /&gt;
* How to create a camera app (get live video stream)&lt;br /&gt;
* How to get system info:   network connection (isConnected, bandwidth), battery, disk space, etc.&lt;br /&gt;
* How to discover and use USB connected devices&lt;br /&gt;
* Porting Android Applications to Qt/MeeGo&lt;br /&gt;
* QML/Build Your Own Widgets from Existing QML Elements (see https://qt.gitorious.org/qt-components/qt-components for the &amp;quot;official&amp;quot; QML components for MeeGo)&lt;br /&gt;
* Getting openssh to install on virtualized MeeGo&lt;br /&gt;
&lt;br /&gt;
Thanks for any contributions!&lt;br /&gt;
&lt;br /&gt;
[[Category:Tutorial|*]]&lt;/div&gt;</summary>
		<author><name>Davidisflash</name></author>	</entry>

	<entry>
		<id>http://wiki.meego.com/SDK/Docs/1.1/Tutorials</id>
		<title>SDK/Docs/1.1/Tutorials</title>
		<link rel="alternate" type="text/html" href="http://wiki.meego.com/SDK/Docs/1.1/Tutorials"/>
				<updated>2011-03-31T19:27:53Z</updated>
		
		<summary type="html">&lt;p&gt;Davidisflash: /* Request Review */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The following tutorials have been created by various authors.  You are welcome and encouraged to contribute to this page. Please read: [[SDK/Tutorial content | How to Create a Tutorial]]&lt;br /&gt;
&lt;br /&gt;
== Tutorials ==&lt;br /&gt;
=== Reviewed ===&lt;br /&gt;
The tutorials in this section have been reviewed and found to be accurate, up-to-date, and useful.  The date for each article reflects the date that the tutorial was moved to the &amp;quot;Reviewed&amp;quot; section. Click the title to view the tutorial.&lt;br /&gt;
&lt;br /&gt;
As we get more tutorials, they should be grouped in categories such as:  Multimedia, Communications, Games, Qt features, QML features, etc.&lt;br /&gt;
{|border=1 cellspacing=&amp;quot;0&amp;quot; cellpadding=&amp;quot;5&amp;quot; &lt;br /&gt;
|-&lt;br /&gt;
!Title&lt;br /&gt;
!Date&lt;br /&gt;
!Author&lt;br /&gt;
!Reviewed By&lt;br /&gt;
|- &lt;br /&gt;
| [[SDK/How_to_create_foobar_sample_tutorial|How to create foobar sample tutorial]]&lt;br /&gt;
| Nov 22, 2010&lt;br /&gt;
| Bob Spencer&lt;br /&gt;
| Jim Jones&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Request Review ===&lt;br /&gt;
&lt;br /&gt;
The tutorials listed in this section have not yet been reviewed.&lt;br /&gt;
Please add all new tutorials to this section.&lt;br /&gt;
&lt;br /&gt;
{| cellpadding=&amp;quot;5&amp;quot; cellspacing=&amp;quot;0&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| [[QML/Creating a transparent window]]&lt;br /&gt;
| Elliot Smith&lt;br /&gt;
|-&lt;br /&gt;
| [[QML/Internationalisation]]&lt;br /&gt;
| Elliot Smith&lt;br /&gt;
|-&lt;br /&gt;
| [[QML/Keyboard navigation]]&lt;br /&gt;
| Elliot Smith&lt;br /&gt;
|-&lt;br /&gt;
| [[QML/Full-screen applications]]&lt;br /&gt;
| Elliot Smith&lt;br /&gt;
|- &lt;br /&gt;
| [[SDK/Tutorials/Packaging]]&lt;br /&gt;
| John(Zhang) Chen&lt;br /&gt;
|-&lt;br /&gt;
| [[SDK/Tutorials/Add_a_new_target]]&lt;br /&gt;
| Jackie(Weihua) Wu&lt;br /&gt;
|-&lt;br /&gt;
| [[SDK/Tutorials/Integrate_Your_Target%26Runtime_to_MADDE]]&lt;br /&gt;
| Bintian Wang&lt;br /&gt;
|- &lt;br /&gt;
| [[SDK/Tutorials/Image_Creation]] (NAND)&lt;br /&gt;
| [http://meego.com/users/fabo Fathi Boudra]&lt;br /&gt;
|-&lt;br /&gt;
| [[D-Bus/Overview]]&lt;br /&gt;
| Elliot Smith, Kimmo Virtanen&lt;br /&gt;
|-&lt;br /&gt;
| [[Debian_users_translation_guide]]&lt;br /&gt;
| Lbt&lt;br /&gt;
|-&lt;br /&gt;
| [[Getting openssh to install on virtualized MeeGo]]&lt;br /&gt;
| David J Medawar&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Suggested Topics ===&lt;br /&gt;
The following tutorials are requested.  If you would like to see a tutorial on a specific topic, please enter it below.  If you start a tutorial from below, please delete the topic and put a new line in the &amp;quot;Request Review&amp;quot; table with &amp;quot;In Progress&amp;quot; and a link to the wiki page.&lt;br /&gt;
&lt;br /&gt;
* End-to-end development process:   Hello World to App Store (a lot of this exists, so it would be pulling pieces together)&lt;br /&gt;
* QML stuff:   Existing widgets (edit box, buttons, etc… do they exist?  How to use or make your own widgets.&lt;br /&gt;
* Porting a GTK, Android, or iPhone application to Qt/MeeGo.&lt;br /&gt;
* Creating an app that follows the UI design guidelines.  Create the &amp;quot;perfect app&amp;quot;&lt;br /&gt;
* How to embed video or audio.  How to use multimedia features&lt;br /&gt;
* How to perform certain animations.  (e.g. flip window around vertical access.  slide window left/right.  other...)&lt;br /&gt;
* How to create a camera app (get live video stream)&lt;br /&gt;
* How to get system info:   network connection (isConnected, bandwidth), battery, disk space, etc.&lt;br /&gt;
* How to discover and use USB connected devices&lt;br /&gt;
&lt;br /&gt;
Thanks for any contributions!&lt;br /&gt;
&lt;br /&gt;
[[Category:Tutorial|*]]&lt;/div&gt;</summary>
		<author><name>Davidisflash</name></author>	</entry>

	</feed>