<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Rolf Dohrmann - Mobile Web Developer</title>
	<atom:link href="http://blog.rolfdohrmann.de/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.rolfdohrmann.de</link>
	<description>jQuery Mobile, Phonegap, WebApps, Maps, Apps</description>
	<lastBuildDate>Sun, 30 Oct 2011 08:33:39 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Video: Testing a jQuery Mobile Web App with Selenium IDE / Intro</title>
		<link>http://blog.rolfdohrmann.de/2011/10/video-testing-a-jquery-mobile-web-app-with-selenium-ide-intro/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=video-testing-a-jquery-mobile-web-app-with-selenium-ide-intro</link>
		<comments>http://blog.rolfdohrmann.de/2011/10/video-testing-a-jquery-mobile-web-app-with-selenium-ide-intro/#comments</comments>
		<pubDate>Sun, 30 Oct 2011 08:33:39 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Automated Testing]]></category>
		<category><![CDATA[Selenium IDE]]></category>

		<guid isPermaLink="false">http://blog.rolfdohrmann.de/?p=1092</guid>
		<description><![CDATA[Hi, I created a short video that shows how easy it is to do some automated testing of a jQuery Mobile Web App. The tests can be easily created und run with Seleium IDE, which is a plugin for the &#8230; <a href="http://blog.rolfdohrmann.de/2011/10/video-testing-a-jquery-mobile-web-app-with-selenium-ide-intro/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Hi,</p>
<p>I created a short video that shows how easy it is to do some automated testing of a jQuery Mobile Web App. The tests can be easily created und run with Seleium IDE, which is a plugin for the Firefox browser.</p>
<p><iframe width="560" height="315" src="http://www.youtube.com/embed/0twsFmGShAw" frameborder="0" allowfullscreen></iframe></p>
<p>Cheers<br />
Rolf</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.rolfdohrmann.de/2011/10/video-testing-a-jquery-mobile-web-app-with-selenium-ide-intro/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Manage big JavaScript Web App Projects</title>
		<link>http://blog.rolfdohrmann.de/2011/10/manage-big-javascript-web-app-projects/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=manage-big-javascript-web-app-projects</link>
		<comments>http://blog.rolfdohrmann.de/2011/10/manage-big-javascript-web-app-projects/#comments</comments>
		<pubDate>Thu, 27 Oct 2011 10:06:45 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Web App]]></category>

		<guid isPermaLink="false">http://blog.rolfdohrmann.de/?p=1077</guid>
		<description><![CDATA[The problem Maybe you know the scenario. You start to create a project, it&#8217;s not a big thing, you write the code and everything&#8217;s fine. But by the time the project grows. Soon there are not only a few lines &#8230; <a href="http://blog.rolfdohrmann.de/2011/10/manage-big-javascript-web-app-projects/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><strong>The problem</strong></p>
<p>Maybe you know the scenario. You start to create a project, it&#8217;s not a big thing, you write the code and everything&#8217;s fine. But by the time the project grows. Soon there are not only a few lines of JavaScript or jQuery code but hundreds or even some thousands lines.</p>
<p>Maintaing / improving such an App may become quite difficult. Problems can arise in the fields of version control, of testing and structuring the code itself.</p>
<p>What can be done?</p>
<p><strong>Version Control System</strong></p>
<p>There are a couple of tools that can help to manage big projects. One of the tools is a Revision Control System aka Version Control System (VCS). Maybe you already heard of <strong><a href="https://github.com/" target="_blank">GitHub</a></strong>?</p>
<p>&#8220;GitHub is a web-based hosting service for software development projects that use the <a title="Git (software)" href="http://en.wikipedia.org/wiki/Git_%28software%29" target="_blank">Git</a> <a title="Revision control" href="http://en.wikipedia.org/wiki/Revision_control">revision control</a> system.&#8221; Source: <a href="http://en.wikipedia.org/wiki/GitHub" target="_blank">wikipedia</a></p>
<p>Let&#8217;s say you have a working version of your code. Now you want to add a new function. What would you do without a VCS? Maybe you simply would start to modify the files. Bad idea. Your old code will not work anymore and your new code not yet. It might become important to get back to the old and working version, but there&#8217;s no way to get there.</p>
<p>A little better approach would be to copy the directory structure of the whole project and save it somewhere else. Then it&#8217;s rather safe. Or perhaps, if you have to modify the file x.html you would create a copy of this file and save it as x-original.html. Whatever you might do, it sometimes will be nearly impossible to restore a version that lays back a few steps from your current version.</p>
<p>With a system like Git you can create a new &#8216;branch&#8217; when you have to modify the code. A new branch works like a copy of the original code files. Let&#8217;s say your working version would be &#8220;version 1.1.0&#8243;. This version is stored in a branch called &#8220;1.1.0&#8243;. You could create a new branch and name it &#8220;version 1.1.1&#8243;. You can work within this new branch, modify files,  store (commit) the modified files within this branch. At any time you can change between the branches. So it&#8217;s possible to restore your Version 1.1.0, check a few things and then go back to Version 1.1.1 again. Changing to another branch restores the complete directory structore and files to the code version of this branch. And this all happens within the same project directory. That means that it is not necessary to go to different places when working in differnt branches.</p>
<p>In addition to this it is possible to save &#8220;temporary&#8221; versions. Each commit creates a kind of temporary version and it s possible to redo commits, so that you can restore each commit within a branch at any time.</p>
<p>There would be much more to say to this topic. You can find a detailed instruction how to use Git in this <a href="http://progit.org/book/" target="_blank">book</a>.</p>
<p><strong>Testing</strong></p>
<p>Using a Version Control System is probably a good start, but it doesn&#8217;t solve all the problems that arise when the project gets &#8216;big&#8217;. A huge problem is testing. If there are only a couple of functions then manually testing is no problem at all. If there are some hundred functions then manually testing becomes nearly impossible. Is it necessary to test all the functions each time you modify the source code? Well, the modifications could cause side effects that you don&#8217;t see when you test only the new function. If you want to be sure that everything works fine you would have to test all functions.</p>
<p>There are tools that can help you to create automated tests. The context of this is called &#8216;Behaviour Driven Development&#8217;, &#8216;Unit Tests&#8217; or &#8216;Automated Unit Testing&#8217;. One of this tools is <strong><a href="http://pivotal.github.com/jasmine/" target="_blank">Jasmine</a></strong>. It can run automated Tests for JavaScript. When creating new functions/methods you would at the same time create a test for this function and integrate it in the collection of tests for the whole project. Doing this you can run all the tests with one click and get an instant overview about problems that come up.</p>
<p><strong><a href="http://angularjs.org" target="_blank">angularJS</a></strong>, the &#8220;superheroic JavaScript MVC Framework&#8221;, supports &#8216;unit tests&#8217; and &#8216;end-to-end&#8217; tests. The unit tests would test the functions, but they can&#8217;t interact with the user interface. If you want to check the user interface behaviour you would create an end-to-end test. Unit tests would be written in the Jasmine syntax and end-to-end-tests would be written in a Jasmin-similar syntax.</p>
<p><strong>Code structure</strong></p>
<p>When the project grows it becomes more important to structure the code in a good way. If you don&#8217;t do it you will get hard times. Adding code, modifing code, degugging code &#8211; all this will become a real pain. That&#8217;s why many projects and frameworks use the so called <a href="http://en.wikipedia.org/wiki/Model%E2%80%93view%E2%80%93controller" target="_blank">Model-View-Controller</a> approach (MVC). MVC is a architectural or design pattern. It isolates code parts that deal with the model (data), the view (user interface, templates) and the controller (application logic). Working with the MVC-pattern helps to keep your code maintainable.</p>
<p>angularJS does not only help to create automated tests but also offers a context where MVC-design is possible. To be more concrete: where MVC-design is required. The way the framework works is based on MVC.</p>
<p>In one of the next postings I will go more in the details of creating automated tests, MVC and angularJS.</p>
<p>Regards<br />
Rolf</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.rolfdohrmann.de/2011/10/manage-big-javascript-web-app-projects/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Impressionen von der mobile developer conference 19.10.2011 in Hamburg</title>
		<link>http://blog.rolfdohrmann.de/2011/10/impressionen-von-der-mobile-developer-conference-19-10-2011-in-hamburg/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=impressionen-von-der-mobile-developer-conference-19-10-2011-in-hamburg</link>
		<comments>http://blog.rolfdohrmann.de/2011/10/impressionen-von-der-mobile-developer-conference-19-10-2011-in-hamburg/#comments</comments>
		<pubDate>Thu, 20 Oct 2011 15:28:10 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[jQuery Mobile]]></category>
		<category><![CDATA[Mobile Web Development]]></category>
		<category><![CDATA[PhoneGap]]></category>

		<guid isPermaLink="false">http://blog.rolfdohrmann.de/?p=1057</guid>
		<description><![CDATA[Um 9 Uhr ging&#8217;s los mit der Keynote von David An.  Ein rasanter Überblick über die Entwicklungen und Buzz-Words der letzten zwanzig Jahre half, die aktuelle Situation um Smartphones und Tablets in einem etwas größeren Kontext betrachten zu können. Habe &#8230; <a href="http://blog.rolfdohrmann.de/2011/10/impressionen-von-der-mobile-developer-conference-19-10-2011-in-hamburg/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<div id="attachment_1059" class="wp-caption alignleft" style="width: 310px"><a href="http://blog.rolfdohrmann.de/wp-content/uploads/2011/10/800px-Commodore64.jpg"><img class="size-medium wp-image-1059" title="Commodore64, Foto by Bill Bertram" src="http://blog.rolfdohrmann.de/wp-content/uploads/2011/10/800px-Commodore64-300x189.jpg" alt="Commodore64, Foto by Bill Bertram" width="300" height="189" /></a><p class="wp-caption-text">Commodore64, Foto by Bill Bertram</p></div>
<p>Um 9 Uhr ging&#8217;s los mit der Keynote von David An.  Ein rasanter Überblick über die Entwicklungen und Buzz-Words der letzten zwanzig Jahre half, die aktuelle Situation um Smartphones und Tablets in einem etwas größeren Kontext betrachten zu können. Habe mich gefreut, dass ich nicht der einzige bin, der seine ersten Schritte in die Computerwelt mit einem C64 + Datasette wagte&#8230;</p>
<p>Da ich mich ja der Entwicklung von mobile Web Apps verschrieben habe, war ich vor allem an den Vorträgen zu diesem Thema interessiert. Dennoch möchte ich zumindest die Performance von Ivo Wessel zum Thema &#8220;App-Entwicklung in der Praxis&#8221; nicht unerwähnt lassen. Ivo hat ein wahres Feuerwerk an interessanten Hinweisen, Fakten und Denkanstößen rund um die Entwicklung von Apps abgebrannt. Dabei ging es kaum um technische, dafür aber ausführlich um psychologische und designerische Aspekte bei der App-Entwicklung. Ein interessantes Thema auch für die mehr technisch orientierten unter uns.</p>
<p>Richtig spannend wurde es dann ab 14:30 Uhr, als der Vortrag zum Thema &#8220;Browser als App-Platform&#8221; anstand. Tobias Bosch führte das Auditorium durch die verschiedenen App-Kategorien: Native Apps, Web Apps und Hybrid Apps. Anhand eines Beispiels zeigte er auf, was man mit einer Web App so alles anstellen kann. Die Web-App stellte das (in diesem Fall minimalistische) UI zur Verfügung. Da die App dazu dienen sollte Barcodes einzulesen, war ein Zugriff auf die Kamera des Endgeräts zwingend. So wurde die Web App mittels PhoneGap in eine Hybrid App umgebaut. Doch der eigentlich Trick kam erst jetzt. Über eine Plugin-Konstruktion lies Bosch die Hybrid-App auf die Services einer anderen, bereits installierten App (zxing) zugreifen, die in der Lage war, Barcodes einzulesen. Das Ergebnis dieses Prozesses wurde in die Hybrid App übernommen, bearbeitet und dargestellt. Arbeitsteilung sozusagen. Eine interessante Konstruktion.</p>
<p>Dann wurde erläutert, wie die Architektur einer Web App sich im Laufe der Zeit von der Multi Page Web App, über die AJAX Web App zur Singe Page Web App entwickelt hat. Während die erstere noch fast vollständig auf dem Backend basierte, beinhaltet letztere die komplette Applikationslogik und braucht das Backend nur noch, um ein paar Daten auszutauschen. Weiße Screens beim Wechsel auf neue Seiten gehören bei dieser Architektur der Vergangenheit an.</p>
<p>Als nächstes wurden die beiden großen JavaScript-Frameworks Sencha Touch und jQuery Mobile dargestellt, die u.a. Lösungen für Interface-Herausforderungen anbieten, die im Kontext von Web Apps  auftreten. Zu nennen wären da z.B. die Scrollbar-Problematik (Scrollbars gibt&#8217;s bei mobile Webkit-Browsern nicht), fixierte Toolbars (schwierig umzusetzen) und eine Gesten-Erkennung (Kombination aus unterschiedlichen Events).</p>
<p>Richtig spannend wurde es für mich im letzten Teil des Vortrags, als Tobias Bosch AngularJS vorstellte. <a href="http://angularjs.org/#/" target="_blank">AngularJS</a>, das &#8220;superheroic JavaScript MVC Framework&#8221;, bietet neben MVC auch Data Binding und Dependancy Injection. Das Framework kann mit Hilfe eines von Bosch geschriebenen Adapters mit jQuery Mobile gekoppelt werden.</p>
<p>Den Abschluss des Vortrags bildete ein Ausflug in die Welt der Testautomatisierung. Erwähnung fanden in diesem Kontext <a href="http://pivotal.github.com/jasmine/" target="_blank">Jasmin</a>, ein &#8220;behavior-driven development framework&#8221; zum Testen von JavaScript Code, und der <a href="http://code.google.com/p/js-test-driver/" target="_blank">js-test-driver</a> von Google. Ein paar Erläuterungen zu letzterem finden sich <a href="http://blog.codecentric.de/2009/09/javascript-testen-mit-js-test-driver/" target="_blank">hier</a>.</p>
<p>Auch die abschließende Keynote von Heiko Behrends befasste sich mit dem Thema &#8220;Plattformübergreifende Entwicklung&#8221;.   Behrends thematisierte &#8216;server side web&#8217; und &#8216;client side web&#8217;, ging am Beispiel von Sencha und JQM auf den &#8216;deklarativen&#8217; und &#8216;programmatischen&#8217; Ansatz ein, zeigte Möglichkeiten zum Debuggen auf (u.a. Winre) und differenzierte hinsichtlich der Art der App zwischen &#8216;web&#8217;, &#8216;hybrid&#8217;, &#8216;interpreted&#8217; und &#8216;generated&#8217;. Fazit: Web Apps  und native Apps haben beide ihre Berechtigung. Für Web Apps sprechen vor allem ökonomische Gründe, für native Apps die bessere Performance und User-Experience.</p>
<p>Alles in allem: Die mobile developer conference war eine eine interessante Konferenz, es gab viel Input mit durchaus interessanten, neuen Aspekten. Die Vortragenden waren kompetent und up to date.</p>
<p>Meine Anregung an die Veranstalter: fragt die TeilnehmerInnen doch nächstes Mal im Vorfeld der Konferenz, ob Interesse daran besteht, mit anderen TeilnehmerInnen in Kontakt zu kommen. Dann könnte eine Liste mit Kontaktdaten und Tätigkeitsbereichen erstellt und an die Konferenzteilnehmer vorab geschickt werden. Dies würde z.B. ermöglichen, dass man sich untereinander gezielt verabreden und die Pause mit interessanten Gesprächen verbringen könnte.</p>
<p>Happy Coding<br />
Rolf</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.rolfdohrmann.de/2011/10/impressionen-von-der-mobile-developer-conference-19-10-2011-in-hamburg/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>jQuery Mobile Schulungen / Video / Basics &amp; erste Seite</title>
		<link>http://blog.rolfdohrmann.de/2011/09/jquery-mobile-schulungen-video-basics-erste-seite/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=jquery-mobile-schulungen-video-basics-erste-seite</link>
		<comments>http://blog.rolfdohrmann.de/2011/09/jquery-mobile-schulungen-video-basics-erste-seite/#comments</comments>
		<pubDate>Thu, 22 Sep 2011 12:35:25 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[jQuery Mobile]]></category>
		<category><![CDATA[Schulungsvideos]]></category>
		<category><![CDATA[Training]]></category>
		<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[Web App]]></category>
		<category><![CDATA[Webapp]]></category>
		<category><![CDATA[Schulung]]></category>
		<category><![CDATA[Seminar]]></category>
		<category><![CDATA[Workshop]]></category>

		<guid isPermaLink="false">http://blog.rolfdohrmann.de/?p=1030</guid>
		<description><![CDATA[Ich plane eine umfassende Reihe von Schulungsvideos rund um das Erstellen von Web Apps mit jQuery Mobile zu erstellen. Das erste Video ist nun fertig: Basics &#38; erste Seite Das Video hat eine Länge von knapp 25 Minuten. Die Auflösung &#8230; <a href="http://blog.rolfdohrmann.de/2011/09/jquery-mobile-schulungen-video-basics-erste-seite/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Ich plane eine umfassende Reihe von Schulungsvideos rund um das Erstellen von Web Apps mit jQuery Mobile zu erstellen. Das erste Video ist nun fertig:</p>
<p><em><strong>Basics &amp; erste Seite</strong></em></p>
<p>Das Video hat eine Länge von knapp 25 Minuten.<br />
Die Auflösung beträgt 1280 x 720 Pixel.<br />
In der Voransicht (unten) ist der Text etwas gestaucht, da das Video dort in einer verkleinerten Version angezeigt wird.<br />
Der Quelltext der erstellten Seite steht als Textdatei zum Download zur Verfügung.</p>
<p>Inhalt:</p>
<ul>
<li>Arbeits- und Testumgebung
<ul>
<li>Welcher Editor?</li>
<li>Lokaler Webserver erforderlich?</li>
</ul>
</li>
<li>Testen und Debuggen
<ul>
<li>in Desktop Browsern</li>
<li>in Emulatoren</li>
<li>auf Hardware</li>
</ul>
</li>
<li>Seitenaufbau
<ul>
<li>HTML Doctype</li>
<li>Einbindung der Bibliotheken</li>
<li>Struktur einer jQuery Mobile Seite</li>
</ul>
</li>
</ul>
<p>Das Video kann zum Preis von $4,95 bei MindBites.com <a title="jQuery Mobile Schulung: Basics &amp; erste Seite" href="http://www.mindbites.com/lesson/14347-jquery-mobile-schulung-basics-erste-seite" target="_blank">angesehen oder downgeloaded</a> werden.</p>
<p><object width="554" height="316" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowScriptAccess" value="always" /><param name="allowFullScreen" value="true" /><param name="isEmbedded" value="true" /><param name="src" value="http://www.mindbites.com/e/14347" /><param name="allowscriptaccess" value="always" /><param name="allowfullscreen" value="true" /><param name="isembedded" value="true" /><embed width="554" height="316" type="application/x-shockwave-flash" src="http://www.mindbites.com/e/14347" allowScriptAccess="always" allowFullScreen="true" isEmbedded="true" allowscriptaccess="always" allowfullscreen="true" isembedded="true" /> </object></p>
<p>Viele Grüße,<br />
Rolf Dohrmann</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.rolfdohrmann.de/2011/09/jquery-mobile-schulungen-video-basics-erste-seite/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>jQuery Mobile &#8211; neues Feature: pushState für hüsche URLs</title>
		<link>http://blog.rolfdohrmann.de/2011/09/jquery-mobile-neues-feature-pushstate-fur-husche-urls/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=jquery-mobile-neues-feature-pushstate-fur-husche-urls</link>
		<comments>http://blog.rolfdohrmann.de/2011/09/jquery-mobile-neues-feature-pushstate-fur-husche-urls/#comments</comments>
		<pubDate>Thu, 15 Sep 2011 07:19:53 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[jQuery Mobile]]></category>
		<category><![CDATA[Web App]]></category>
		<category><![CDATA[Webapp]]></category>

		<guid isPermaLink="false">http://blog.rolfdohrmann.de/?p=1025</guid>
		<description><![CDATA[Die Beta 3 der jQuery Mobile Version 1.0 kommt mit einem neuen Feature daher: pushState. Dahinter verbirgt sich ein Mechanismus, der dafür sorgt, dass die URLs etwas aufgehübscht werden. Das folgende Video zeigt, worum es geht. Cheers Rolf]]></description>
			<content:encoded><![CDATA[<p>Die Beta 3 der jQuery Mobile Version 1.0 kommt mit einem neuen Feature daher: pushState. Dahinter verbirgt sich ein Mechanismus, der dafür sorgt, dass die URLs etwas aufgehübscht werden. Das folgende Video zeigt, worum es geht.</p>
<p><iframe src="http://www.youtube.com/embed/XkdhTysQwVs?rel=0" frameborder="0" width="560" height="315"></iframe></p>
<p>Cheers<br />
Rolf</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.rolfdohrmann.de/2011/09/jquery-mobile-neues-feature-pushstate-fur-husche-urls/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>jQuery Mobile Beta 3 ist veröffentlicht, Schulungen und Tutorials geplant</title>
		<link>http://blog.rolfdohrmann.de/2011/09/jquery-mobile-beta-3-ist-veroffentlicht-schulungen-und-tutorials-geplant/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=jquery-mobile-beta-3-ist-veroffentlicht-schulungen-und-tutorials-geplant</link>
		<comments>http://blog.rolfdohrmann.de/2011/09/jquery-mobile-beta-3-ist-veroffentlicht-schulungen-und-tutorials-geplant/#comments</comments>
		<pubDate>Tue, 13 Sep 2011 15:17:15 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[jQuery Mobile]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Web App]]></category>
		<category><![CDATA[Webapp]]></category>
		<category><![CDATA[Mobile Web Development]]></category>

		<guid isPermaLink="false">http://blog.rolfdohrmann.de/?p=1018</guid>
		<description><![CDATA[Am 8. September 2011 wurde die Beta 3 von jQuery Mobile veröffentlicht. Hier sind die release notes: http://jquerymobile.com/blog/2011/09/08/jquery-mobile-beta-3-released/ Die Beta 3 ist feature-complete. Das bedeutet, dass sich bis zur endgültigen Version 1 nichts Wesentliches mehr ändern wird. Insofern ist jetzt &#8230; <a href="http://blog.rolfdohrmann.de/2011/09/jquery-mobile-beta-3-ist-veroffentlicht-schulungen-und-tutorials-geplant/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Am 8. September 2011 wurde die Beta 3 von jQuery Mobile veröffentlicht. Hier sind die release notes:</p>
<p><a href="http://jquerymobile.com/blog/2011/09/08/jquery-mobile-beta-3-released/" target="_blank">http://jquerymobile.com/blog/2011/09/08/jquery-mobile-beta-3-released/</a></p>
<p>Die Beta 3 ist feature-complete. Das bedeutet, dass sich bis zur endgültigen Version 1 nichts Wesentliches mehr ändern wird. Insofern ist jetzt ein guter Zeitpunkt gekommen, um sich mit jQuery Mobile vertieft auseinanderzusetzen.</p>
<p>Ich plane in Kooperation mit der Technischen Fachschule Heinze in Hamburg einen Einführungskurs / eine Schulung für jQuery Mobile, die voraussichtlich im Oktober 2011 stattfinden wird. Über weitere Details werde ich hier im Blog berichten.</p>
<p>Wer Interesse an der Schulung hat, kann sich gerne bereits jetzt bei mir melden. Ich werde dann, wenn die Einzelheiten geklärt sind, eine Mail an alle Interessenten rumschicken.</p>
<p>Außerdem plane ich, eine Reihe von allgemeinen und speziellen Lern-Videos / Tutorials zu erstellen, die ich gegen einen geringfügigen Betrag zur Verfügung stellen würde.</p>
<p>Die allgemeinen Videos werden die jQuery Mobile Basics vermitteln, die speziellen Videos sollen Lösungen für konkrete Fragestellungen oder Problem aufzeigen, mit denen man so in Kontakt kommt, wenn man mit jQuery Mobile arbeitet. Natürlich frage ich mich, ob denn überhaupt ein Bedarf für solche Videos besteht. Insofern freue ich mich über diesbezügliches Feedback.</p>
<p>Happy coding<br />
Rolf</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.rolfdohrmann.de/2011/09/jquery-mobile-beta-3-ist-veroffentlicht-schulungen-und-tutorials-geplant/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Demo video: Audio Interface with jQuery Mobile and PhoneGap</title>
		<link>http://blog.rolfdohrmann.de/2011/08/demo-audio-interface-with-jquery-mobile-and-phonegap/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=demo-audio-interface-with-jquery-mobile-and-phonegap</link>
		<comments>http://blog.rolfdohrmann.de/2011/08/demo-audio-interface-with-jquery-mobile-and-phonegap/#comments</comments>
		<pubDate>Mon, 29 Aug 2011 14:46:12 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Mobile Web Development]]></category>
		<category><![CDATA[PhoneGap]]></category>

		<guid isPermaLink="false">http://blog.rolfdohrmann.de/?p=1005</guid>
		<description><![CDATA[Hello, I wondered how I could create a simple audio interface with jQuery Mobile and PhoneGap. So I gave it a try. The result: no problem at all. The PhoneGap functions work as they should and jQuery Mobile comes with &#8230; <a href="http://blog.rolfdohrmann.de/2011/08/demo-audio-interface-with-jquery-mobile-and-phonegap/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Hello,</p>
<p>I wondered how I could create a simple audio interface with jQuery Mobile and PhoneGap. So I gave it a try. The result: no problem at all. The PhoneGap functions work as they should and jQuery Mobile comes with all the widgets that are needed: Buttons and a slider in combination with an input field. Check my video to see how the App could look like:</p>
<p><iframe src="http://www.youtube.com/embed/UwK96UfQPWo?hl=de&amp;fs=1" frameborder="0" width="425" height="349"></iframe></p>
<p>Cheers, Rolf</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.rolfdohrmann.de/2011/08/demo-audio-interface-with-jquery-mobile-and-phonegap/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>jQuery Mobile video tutorial: setup</title>
		<link>http://blog.rolfdohrmann.de/2011/08/jquery-mobile-video-tutorial-setup/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=jquery-mobile-video-tutorial-setup</link>
		<comments>http://blog.rolfdohrmann.de/2011/08/jquery-mobile-video-tutorial-setup/#comments</comments>
		<pubDate>Fri, 19 Aug 2011 06:38:47 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[jQuery Mobile]]></category>
		<category><![CDATA[Mobile Web Development]]></category>
		<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[Web App]]></category>
		<category><![CDATA[Webapp]]></category>

		<guid isPermaLink="false">http://blog.rolfdohrmann.de/?p=1001</guid>
		<description><![CDATA[Hello, here comes a new video tutorial. It&#8217;s for beginners and shows how to download the jQuery Mobile and the jQuery library and how to put them in the right place. Cheers, Rolf]]></description>
			<content:encoded><![CDATA[<p>Hello,</p>
<p>here comes a new video tutorial. It&#8217;s for beginners and shows how to download the jQuery Mobile and the jQuery library and how to put them in the right place.</p>
<p><iframe width="560" height="345" src="http://www.youtube.com/embed/_s3hVgzrj1U?rel=0" frameborder="0" allowfullscreen></iframe></p>
<p>Cheers,<br />
Rolf</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.rolfdohrmann.de/2011/08/jquery-mobile-video-tutorial-setup/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Video: Debuggen von PhoneGap Apps mit Winre</title>
		<link>http://blog.rolfdohrmann.de/2011/08/video-debuggen-von-phonegap-apps-mit-winre/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=video-debuggen-von-phonegap-apps-mit-winre</link>
		<comments>http://blog.rolfdohrmann.de/2011/08/video-debuggen-von-phonegap-apps-mit-winre/#comments</comments>
		<pubDate>Mon, 15 Aug 2011 11:12:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Entwicklung]]></category>
		<category><![CDATA[PhoneGap]]></category>
		<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[Web App]]></category>
		<category><![CDATA[Webapp]]></category>

		<guid isPermaLink="false">http://blog.rolfdohrmann.de/?p=994</guid>
		<description><![CDATA[Hallo, ich hatte ein paar (hoffentlich) kreative Stündchen und habe ein Video über das Debuggen von PhoneGap Apps mit Winre gebaut. Das Ganze in schlechtem Englisch Mein Motto: Mut zur Peinlichkeit! Aber mal seriously: Wer schon mal eine App mit &#8230; <a href="http://blog.rolfdohrmann.de/2011/08/video-debuggen-von-phonegap-apps-mit-winre/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Hallo,</p>
<p>ich hatte ein paar (hoffentlich) kreative Stündchen und habe ein Video über das Debuggen von PhoneGap Apps mit Winre gebaut. Das Ganze in schlechtem Englisch <img src='http://blog.rolfdohrmann.de/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' />  Mein Motto: Mut zur Peinlichkeit!</p>
<p>Aber mal seriously: Wer schon mal eine App mit Javascript alert() debuggt hat, kennt die Probleme. Winre macht das Leben etwas leichter. Thanks a lot! Hier ist die Homepage des Projekts:</p>
<p><a href="http://phonegap.github.com/weinre/" target="_blank">http://phonegap.github.com/weinre/</a></p>
<p>Wer also Lust auf ein wenig &#8216;Fernsehen&#8217; hat:</p>
<p><iframe src="http://www.youtube.com/embed/dtGwt0AxIck" frameborder="0" width="560" height="349"></iframe></p>
<p>Cheers,<br />
Rolf</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.rolfdohrmann.de/2011/08/video-debuggen-von-phonegap-apps-mit-winre/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Make keytools available to the Android SDK on OS X</title>
		<link>http://blog.rolfdohrmann.de/2011/07/make-keytools-available-to-the-android-sdk-on-os-x/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=make-keytools-available-to-the-android-sdk-on-os-x</link>
		<comments>http://blog.rolfdohrmann.de/2011/07/make-keytools-available-to-the-android-sdk-on-os-x/#comments</comments>
		<pubDate>Mon, 25 Jul 2011 10:43:30 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[OS X]]></category>

		<guid isPermaLink="false">http://blog.rolfdohrmann.de/?p=962</guid>
		<description><![CDATA[If you want to create an App for Android, and if you work on OS X / Macbook, and if you want to create a key for the first time, and if you wonder how to add the keytool path &#8230; <a href="http://blog.rolfdohrmann.de/2011/07/make-keytools-available-to-the-android-sdk-on-os-x/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>If you want to create an App for Android, and if you work on OS X / Macbook, and if you want to create a key for the first time, and if you wonder how to add the keytool path to your PATH environement, then this posting might be interesting for you. It&#8217;s about the basic configuration on OS X / Macbook for signing your Andoid Apps. It&#8217;s refers to  Google&#8217;s document &#8220;<a href="http://developer.android.com/guide/publishing/app-signing.html" target="_blank">Signing your applications</a>&#8220;. The samples, paths etc. are taken from my macbook.</p>
<p>Google says:</p>
<p>&#8220;Before you begin, you should make sure that Keytool is available to the SDK build tools. In most cases, you can tell the SDK build tools how to find Keytool by setting your <code>JAVA_HOME</code> environment variable to references a suitable JDK. Alternatively, you can add the JDK version of Keytool to your <code>PATH</code> variable.&#8221;</p>
<p>So what if you don&#8217;t know how to set your JAVA_HOME variable or how to add something to the PATH variable? Here are some (hopefully) helpful hints around this topic. The following happens in a termin window.</p>
<p>Not needed, but sometimes useful: Find out which Java-Version is installed:</p>
<pre>java -version</pre>
<p>Something like this should be the result:</p>
<pre>java version "1.6.0_22"
Java(TM) SE Runtime Environment
 (build 1.6.0_22-b04-307-10M3261)
Java HotSpot(TM) 64-Bit Server VM
(build 17.1-b03-307, mixed mode)</pre>
<p>Where on the harddisk is Java installed? It might be here:</p>
<pre>System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/</pre>
<p>This path points to a symbolic link &#8217;1.6.0&#8242;. And this link refers to</p>
<pre>System/Library/Java/JavaVirtualMachines/1.6.0.jdk</pre>
<p>Where lives keytool?</p>
<pre>/System/Library/Java/JavaVirtualMachines/1.6.0.jdk/
Contents/Home/bin/keytool</pre>
<p>Show the content of your PATH variable:</p>
<pre>echo $PATH</pre>
<p>Add keytool to the PATH variable. There are a couple of ways to do it. I did it this way:</p>
<ul>
<li>Open the file .profile, which lives in /Users/<em>your_account_name</em> with a text editor</li>
<li>You&#8217;ll find something like<br />
export PATH=/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin&#8230;</li>
<li>Add the keytool path to this line:<br />
:/System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Home/bin/keytool</li>
<li>Save the file</li>
<li>Open a new terminal window</li>
<li>echo $PATH should now contain the path to keytool</li>
<li>Enter &#8216;keytool&#8217; in the terminal window</li>
<li>You should get a description of the keytool syntax as a result</li>
</ul>
<p>Happy coding,<br />
Rolf Dohrmann<br />
Mobile Web Developer</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.rolfdohrmann.de/2011/07/make-keytools-available-to-the-android-sdk-on-os-x/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

