<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">
<channel>
<title>OpenResearch Mobile Apps</title>

<link>http://www.openresearch.com</link>
<description>We make awesome Mobile Apps!</description>
<lastBuildDate>Tue, 03 Jan 2012 12:38:04 +0000</lastBuildDate>
<language>en</language>
<sy:updatePeriod>hourly</sy:updatePeriod>
<sy:updateFrequency>1</sy:updateFrequency>
<generator>http://wordpress.org/?v=3.3</generator>
<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/openresearch" /><feedburner:info uri="openresearch" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><item>
<title>Geizhals App on TV</title>
<link>http://feedproxy.google.com/~r/openresearch/~3/fU10Lxa685Y/</link>
<comments>http://www.openresearch.com/2012/01/03/geizhals-app-on-tv/#comments</comments>
<pubDate>Tue, 03 Jan 2012 02:52:58 +0000</pubDate>
<dc:creator>Philipp Schmid</dc:creator>
<category>
<![CDATA[Development]]>
</category>
<category>
<![CDATA[iPhone]]>
</category>
<category>
<![CDATA[OpenResearch]]>
</category>
<category>
<![CDATA[Work]]>
</category>
<guid isPermaLink="false">http://www.openresearch.com/?p=616</guid>
<description><![CDATA[
]]>
</description>
<content:encoded><![CDATA[
<p><iframe width="560" height="315" src="http://www.youtube.com/embed/k-79lzaaT0s" frameborder="0" allowfullscreen></iframe></p>

<img src="http://feeds.feedburner.com/~r/openresearch/~4/fU10Lxa685Y" height="1" width="1"/>]]></content:encoded>
<wfw:commentRss>http://www.openresearch.com/2012/01/03/geizhals-app-on-tv/feed/</wfw:commentRss>
<slash:comments>0</slash:comments>
<feedburner:origLink>http://www.openresearch.com/2012/01/03/geizhals-app-on-tv/</feedburner:origLink></item>
<item>
<title>Bash Completion for git on Mac OS X</title>
<link>http://feedproxy.google.com/~r/openresearch/~3/PxDRCXPVERM/</link>
<comments>http://www.openresearch.com/2011/12/09/bash-completion-for-git-on-mac-os-x/#comments</comments>
<pubDate>Fri, 09 Dec 2011 00:14:16 +0000</pubDate>
<dc:creator>Philipp Schmid</dc:creator>
<category>
<![CDATA[Development]]>
</category>
<guid isPermaLink="false">http://www.openresearch.com/?p=584</guid>
<description>
<![CDATA[Most of our development work happens on Macs, but our server infrastructure runs on Ubuntu Linux, so we are used to the great bash command line argument completion feature. Bash ...]]>
</description>
<content:encoded><![CDATA[
<p>Most of our development work happens on Macs, but our server infrastructure runs on Ubuntu Linux, so we are used to the great bash command line argument completion feature.</p>
<p>Bash completion is basically a collection of bash scripts, which know the command line argument options for most popular command line applications. So additionally to the completion of directory- and filenames (by pressing tab), you also get completion of command line arguments.</p>
<p>Now Mac OS X doesn&#8217;t ship with bash completion, so to get it running on your Mac, you need to have <a title="MacPorts" href="http://www.macports.org/" target="_blank">MacPorts</a> (or another package manager) installed and install the <code>bash-completion</code> package:</p>
<p><code>sudo port install bash-completion</code></p>
<p>Now that we have bash completion installed, we still need bash to actually load the scripts. Add the following to your <code>~/.profile</code> (if the file <code>.profile</code> doesn&#8217;t exist in your home directory, just create an empty file):</p>
<p><code>if [ -f /opt/local/etc/bash_completion ]; then<br />
. /opt/local/etc/bash_completion<br />
fi</code></p>
<p>You now need close and reopen your Terminal for bash to reload your <code>.profile</code> (you can also run <code>source ~/.profile</code> instead).</p>
<p>Let&#8217;s try if it works by entering <code>dd&lt;space&gt;</code> in your Terminal and pressing tab twice. You should see the command line options for the <code>dd</code> utility:</p>
<p><code>Fast:~ schmidp$ dd&lt;space&gt;&lt;tab&gt;&lt;tab&gt;<br />
--help --version bs= cbs= conv= count= ibs= if= obs= of= seek= skip=</code></p>
<p>Yay, we have working bash completion!</p>
<p>But we are not finished yet, as the <code>bash-completion</code> package ships without <code>git</code> support. So let&#8217;s run the following commands:</p>
<pre>cd /opt/local/etc/bash_completion.d
sudo curl -O https://raw.github.com/git/git/master/contrib/completion/git-completion.bash</pre>
<p>Reload your <code>.profile</code> again (see above), enter <code>git su</code> and press tab. Bash should now autocomplete your command to <code>git submodule</code>.</p>

<img src="http://feeds.feedburner.com/~r/openresearch/~4/PxDRCXPVERM" height="1" width="1"/>]]></content:encoded>
<wfw:commentRss>http://www.openresearch.com/2011/12/09/bash-completion-for-git-on-mac-os-x/feed/</wfw:commentRss>
<slash:comments>1</slash:comments>
<feedburner:origLink>http://www.openresearch.com/2011/12/09/bash-completion-for-git-on-mac-os-x/</feedburner:origLink></item>
<item>
<title>Skip for iPad &amp; iPhone went live!</title>
<link>http://feedproxy.google.com/~r/openresearch/~3/i33hEyRWrQw/</link>
<comments>http://www.openresearch.com/2011/11/11/skip-for-ipad-iphone-went-live/#comments</comments>
<pubDate>Thu, 10 Nov 2011 23:02:22 +0000</pubDate>
<dc:creator>Philipp Schmid</dc:creator>
<category>
<![CDATA[Development]]>
</category>
<category>
<![CDATA[iPad]]>
</category>
<category>
<![CDATA[iPhone]]>
</category>
<category>
<![CDATA[OpenResearch]]>
</category>
<guid isPermaLink="false">http://www.openresearch.com/?p=581</guid>
<description><![CDATA[
]]>
</description>
<content:encoded><![CDATA[
<p><a href="http://www.openresearch.com/wp-content/uploads/2011/11/skip.png"><img src="http://www.openresearch.com/wp-content/uploads/2011/11/skip-135x300.png" alt="" title="skip" width="135" height="300" class="alignnone size-medium wp-image-582" /></a></p>
<p><a href="http://itunes.apple.com/at/app/skip/id466270308?mt=8" target="_blank"><img class="alignnone size-full wp-image-552" title="Available on the App Store" src="http://www.openresearch.com/wp-content/uploads/2011/10/app_store.png" alt="Available on the App Store" width="200" height="69" /></a></p>

<img src="http://feeds.feedburner.com/~r/openresearch/~4/i33hEyRWrQw" height="1" width="1"/>]]></content:encoded>
<wfw:commentRss>http://www.openresearch.com/2011/11/11/skip-for-ipad-iphone-went-live/feed/</wfw:commentRss>
<slash:comments>0</slash:comments>
<feedburner:origLink>http://www.openresearch.com/2011/11/11/skip-for-ipad-iphone-went-live/</feedburner:origLink></item>
<item>
<title>Our Apotheken App is still #1</title>
<link>http://feedproxy.google.com/~r/openresearch/~3/AFmuhDgvtyc/</link>
<comments>http://www.openresearch.com/2011/11/09/our-apotheken-app-is-still-1/#comments</comments>
<pubDate>Wed, 09 Nov 2011 16:46:42 +0000</pubDate>
<dc:creator>Philipp Schmid</dc:creator>
<category>
<![CDATA[Development]]>
</category>
<category>
<![CDATA[iPhone]]>
</category>
<category>
<![CDATA[OpenResearch]]>
</category>
<category>
<![CDATA[Work]]>
</category>
<guid isPermaLink="false">http://www.openresearch.com/?p=571</guid>
<description>
<![CDATA[Even after we got some competition from AppScape and the Apothekerkammer itself, our &#8220;Apotheken&#8221;-App is still the #1 pharmacy app in the austrian App Store!]]>
</description>
<content:encoded><![CDATA[
<p>Even after we got some competition from AppScape and the Apothekerkammer itself, our &#8220;Apotheken&#8221;-App is still the #1 pharmacy app in the austrian App Store!</p>
<p><a href="http://www.openresearch.com/wp-content/uploads/2011/11/IMG_0188.png"><img class="alignnone size-medium wp-image-572" title="Apotheken #1" src="http://www.openresearch.com/wp-content/uploads/2011/11/IMG_0188-200x300.png" alt="" width="200" height="300" /></a></p>

<img src="http://feeds.feedburner.com/~r/openresearch/~4/AFmuhDgvtyc" height="1" width="1"/>]]></content:encoded>
<wfw:commentRss>http://www.openresearch.com/2011/11/09/our-apotheken-app-is-still-1/feed/</wfw:commentRss>
<slash:comments>0</slash:comments>
<feedburner:origLink>http://www.openresearch.com/2011/11/09/our-apotheken-app-is-still-1/</feedburner:origLink></item>
<item>
<title>Geizhals App Available</title>
<link>http://feedproxy.google.com/~r/openresearch/~3/KqWMRrMyxO8/</link>
<comments>http://www.openresearch.com/2011/06/20/geizhals-app-available/#comments</comments>
<pubDate>Mon, 20 Jun 2011 09:39:35 +0000</pubDate>
<dc:creator>Philipp Schmid</dc:creator>
<category>
<![CDATA[iPhone]]>
</category>
<category>
<![CDATA[OpenResearch]]>
</category>
<guid isPermaLink="false">http://www2.openresearch.com/?p=404</guid>
<description>
<![CDATA[After quite some work, Apple just made our latest creation available on the App Store. We are already getting some good reviews: derStandard.at futurezone.at &#160;]]>
</description>
<content:encoded><![CDATA[
<p>After quite some work, Apple just made our latest creation available on the <a href="http://itunes.apple.com/gb/app/geizhals-preisvergleich/id440214693" target="_blank">App Store</a>.</p>
<p>We are already getting some good reviews:</p>
<ul>
<li><a title="derStandart.at" href="http://derstandard.at/1308186454129/Kostenlos-Geizhals-bringt-iPhone-App" target="_blank">derStandard.at</a></li>
<li><a title="futurezone.at" href="http://futurezone.at/produkte/3668-geizhals-barcode-scanner-fuer-das-iphone.php" target="_blank">futurezone.at</a></li>
</ul>
<p>&nbsp;</p>
<p><a href="http://www.openresearch.com/wp-content/uploads/2011/10/Unknown.jpeg"><img class="alignnone size-full wp-image-406" title="Geizhals Kategorien" src="http://www.openresearch.com/wp-content/uploads/2011/10/Unknown.jpeg" alt="" width="320" height="480" /></a></p>
<p><a href="http://www.openresearch.com/wp-content/uploads/2011/10/Unknown-3.jpeg"><img class="alignnone size-full wp-image-407" title="Geizhals Details" src="http://www.openresearch.com/wp-content/uploads/2011/10/Unknown-3.jpeg" alt="" width="320" height="480" /></a></p>
<p><img class="alignnone size-full wp-image-408" title="Geizhals Price-Chart" src="http://www.openresearch.com/wp-content/uploads/2011/10/Unknown-1.jpeg" alt="" width="480" height="320" /></p>

<img src="http://feeds.feedburner.com/~r/openresearch/~4/KqWMRrMyxO8" height="1" width="1"/>]]></content:encoded>
<wfw:commentRss>http://www.openresearch.com/2011/06/20/geizhals-app-available/feed/</wfw:commentRss>
<slash:comments>0</slash:comments>
<feedburner:origLink>http://www.openresearch.com/2011/06/20/geizhals-app-available/</feedburner:origLink></item>
<item>
<title>PandaKit</title>
<link>http://feedproxy.google.com/~r/openresearch/~3/JMTqsODVWWo/</link>
<comments>http://www.openresearch.com/2011/06/20/pandakit/#comments</comments>
<pubDate>Mon, 20 Jun 2011 09:37:56 +0000</pubDate>
<dc:creator>Philipp Schmid</dc:creator>
<category>
<![CDATA[Development]]>
</category>
<category>
<![CDATA[iPad]]>
</category>
<category>
<![CDATA[iPhone]]>
</category>
<category>
<![CDATA[OpenResearch]]>
</category>
<guid isPermaLink="false">http://www2.openresearch.com/?p=402</guid>
<description>
<![CDATA[We just released a little, unpolished web app, to ease ad-hoc distribution of iOS apps and collecting and symbolicating crash reports: http://www.pandakit.com]]>
</description>
<content:encoded><![CDATA[
<p>We just released a little, unpolished web app, to ease ad-hoc distribution of iOS apps and collecting and symbolicating crash reports: <a href="http://www.pandakit.com/">http://www.pandakit.com</a></p>

<img src="http://feeds.feedburner.com/~r/openresearch/~4/JMTqsODVWWo" height="1" width="1"/>]]></content:encoded>
<wfw:commentRss>http://www.openresearch.com/2011/06/20/pandakit/feed/</wfw:commentRss>
<slash:comments>0</slash:comments>
<feedburner:origLink>http://www.openresearch.com/2011/06/20/pandakit/</feedburner:origLink></item>
<item>
<title>There is a Horse in the Apple Store</title>
<link>http://feedproxy.google.com/~r/openresearch/~3/7Nez8nYL6fs/</link>
<comments>http://www.openresearch.com/2010/09/04/there-is-a-horse-in-the-apple-store/#comments</comments>
<pubDate>Sat, 04 Sep 2010 09:48:58 +0000</pubDate>
<dc:creator>Philipp Schmid</dc:creator>
<category>
<![CDATA[Apple]]>
</category>
<guid isPermaLink="false">http://www2.openresearch.com/?p=414</guid>
<description>
<![CDATA[Source: via Frank]]>
</description>
<content:encoded><![CDATA[
<p><a href="http://www.openresearch.com/wp-content/uploads/2011/10/1916_c59a.jpeg"><img class="alignnone size-full wp-image-415" title="Horse in Apple Store" src="http://www.openresearch.com/wp-content/uploads/2011/10/1916_c59a.jpeg" alt="" width="500" height="375" /></a></p>
<p>Source: <a title="There is a Horse in the Apple Store" href="http://blog.frankchimero.com/post/1059696119" target="_blank">via Frank</a></p>

<img src="http://feeds.feedburner.com/~r/openresearch/~4/7Nez8nYL6fs" height="1" width="1"/>]]></content:encoded>
<wfw:commentRss>http://www.openresearch.com/2010/09/04/there-is-a-horse-in-the-apple-store/feed/</wfw:commentRss>
<slash:comments>0</slash:comments>
<feedburner:origLink>http://www.openresearch.com/2010/09/04/there-is-a-horse-in-the-apple-store/</feedburner:origLink></item>
<item>
<title>Apotheken app launched today!</title>
<link>http://feedproxy.google.com/~r/openresearch/~3/5EBDKP6NPic/</link>
<comments>http://www.openresearch.com/2010/04/16/apotheken-app-launched-today/#comments</comments>
<pubDate>Fri, 16 Apr 2010 16:50:18 +0000</pubDate>
<dc:creator>Philipp Schmid</dc:creator>
<category>
<![CDATA[Development]]>
</category>
<category>
<![CDATA[iPad]]>
</category>
<category>
<![CDATA[iPhone]]>
</category>
<category>
<![CDATA[OpenResearch]]>
</category>
<category>
<![CDATA[Work]]>
</category>
<guid isPermaLink="false">http://www.schmidp.com/?p=400</guid>
<description>
<![CDATA[Get the iPhone Apotheken (Pharmacies) App here: http://www.apoapp.at]]>
</description>
<content:encoded><![CDATA[
<p><a href="http://www.apothekenapp.at"><img src="http://www.schmidp.com/wp-content/uploads/2010/04/IMG_0546-768x1024.jpg" alt="" title="iPad" width="512" height="683" class="aligncenter size-large wp-image-401" /></a></p>
<p>Get the iPhone Apotheken (Pharmacies) App here: <a href="http://www.apoapp.at">http://www.apoapp.at</a></p>

<img src="http://feeds.feedburner.com/~r/openresearch/~4/5EBDKP6NPic" height="1" width="1"/>]]></content:encoded>
<wfw:commentRss>http://www.openresearch.com/2010/04/16/apotheken-app-launched-today/feed/</wfw:commentRss>
<slash:comments>0</slash:comments>
<feedburner:origLink>http://www.openresearch.com/2010/04/16/apotheken-app-launched-today/</feedburner:origLink></item>
<item>
<title>Zimt – OpenResearch iPhone Library</title>
<link>http://feedproxy.google.com/~r/openresearch/~3/POVwkck7w_s/</link>
<comments>http://www.openresearch.com/2010/02/20/zimt-openresearch-iphone-library/#comments</comments>
<pubDate>Sat, 20 Feb 2010 17:01:26 +0000</pubDate>
<dc:creator>Philipp Schmid</dc:creator>
<category>
<![CDATA[Development]]>
</category>
<category>
<![CDATA[iPhone]]>
</category>
<category>
<![CDATA[OpenResearch]]>
</category>
<guid isPermaLink="false">http://www.schmidp.com/?p=393</guid>
<description>
<![CDATA[We just started our own public iPhone library: http://github.com/openresearch/zimt For now it includes: ZTFakeLocationManager CLLocationManager subclass that can read a list of waypoints from a file and simulate location updates. ...]]>
</description>
<content:encoded><![CDATA[
<p>We just started our own public iPhone library: <a href="http://github.com/openresearch/zimt">http://github.com/openresearch/zimt</a></p>
<p>For now it includes:</p>
<h3>ZTFakeLocationManager</h3>
<p>CLLocationManager subclass that can read a list of waypoints from a file and simulate location updates. Meant to be used on simulator for testing. See samples/FakeLocation</p>
<h3>ZTWebSocket</h3>
<p>Probably the first WebSocket client implementation written in Objective-C</p>

<img src="http://feeds.feedburner.com/~r/openresearch/~4/POVwkck7w_s" height="1" width="1"/>]]></content:encoded>
<wfw:commentRss>http://www.openresearch.com/2010/02/20/zimt-openresearch-iphone-library/feed/</wfw:commentRss>
<slash:comments>0</slash:comments>
<feedburner:origLink>http://www.openresearch.com/2010/02/20/zimt-openresearch-iphone-library/</feedburner:origLink></item>
<item>
<title>iPad Prototype</title>
<link>http://feedproxy.google.com/~r/openresearch/~3/MYvOsRAMIjI/</link>
<comments>http://www.openresearch.com/2010/02/05/ipad-prototype/#comments</comments>
<pubDate>Fri, 05 Feb 2010 10:52:13 +0000</pubDate>
<dc:creator>Philipp Schmid</dc:creator>
<category>
<![CDATA[Apple]]>
</category>
<category>
<![CDATA[iPad]]>
</category>
<category>
<![CDATA[OpenResearch]]>
</category>
<guid isPermaLink="false">http://www2.openresearch.com/?p=418</guid>
<description><![CDATA[
]]>
</description>
<content:encoded><![CDATA[
<p><a href="http://www.openresearch.com/wp-content/uploads/2011/10/5802_ffc2_500.jpeg"><img class="alignnone size-full wp-image-419" title="iPad Paper Prototype" src="http://www.openresearch.com/wp-content/uploads/2011/10/5802_ffc2_500.jpeg" alt="" width="500" height="667" /></a></p>
<p><img class="alignnone size-full wp-image-421" title="iPad Paper Prototype" src="http://www.openresearch.com/wp-content/uploads/2011/10/5820_4ed7_500.jpeg" alt="" width="500" height="375" /></p>
<p><a href="http://www.openresearch.com/wp-content/uploads/2011/10/5819_56d5_500.jpeg"><img class="alignnone size-full wp-image-420" title="iPad Paper Prototype" src="http://www.openresearch.com/wp-content/uploads/2011/10/5819_56d5_500.jpeg" alt="" width="500" height="375" /></a></p>

<img src="http://feeds.feedburner.com/~r/openresearch/~4/MYvOsRAMIjI" height="1" width="1"/>]]></content:encoded>
<wfw:commentRss>http://www.openresearch.com/2010/02/05/ipad-prototype/feed/</wfw:commentRss>
<slash:comments>0</slash:comments>
<feedburner:origLink>http://www.openresearch.com/2010/02/05/ipad-prototype/</feedburner:origLink></item>
</channel>
</rss><!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using apc
Page Caching using apc
Object Caching 575/708 objects using apc

Served from: www.openresearch.com @ 2012-01-10 18:29:07 -->

