<?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>blog.seric.at</title>
	<atom:link href="http://blog.seric.at/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.seric.at</link>
	<description>photography programming politics life</description>
	<lastBuildDate>Tue, 10 Jan 2012 22:01:27 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.4-alpha-19719</generator>
		<item>
		<title>Blogging from iPad</title>
		<link>http://blog.seric.at/2012/01/10/blogging-from-ipad/</link>
		<comments>http://blog.seric.at/2012/01/10/blogging-from-ipad/#comments</comments>
		<pubDate>Tue, 10 Jan 2012 22:01:26 +0000</pubDate>
		<dc:creator>Franziskus Domig</dc:creator>
				<category><![CDATA[Allgemeines]]></category>
		<category><![CDATA[Blog]]></category>
		<category><![CDATA[iPad]]></category>

		<guid isPermaLink="false">http://blog.seric.at/?p=396</guid>
		<description><![CDATA[Since I recently got an iPad2 from my employer, I am able to update my blog from everywhere thanks to pretty decent 3g coverage in Austria. However, what you want to use if you start blogging from your iPad ...]]></description>
			<content:encoded><![CDATA[<p>Since I recently got an iPad2 from my employer, I am able to update my blog from everywhere thanks to pretty decent 3g coverage in Austria. However, what you want to use if you start blogging from your iPad with your WordPress blog, is the native WordPress App which is available for free in the Appstore.</p>
<p>I will hopefully start to blog more often with this new opportunity. Let&#8217;s give its a try.</p>
<div class="gpo_bottomcontainer">
						<div class="gpo_buttons">
						        <g:plusone href="http://blog.seric.at/2012/01/10/blogging-from-ipad/" size="standard" count="true"></g:plusone>
						</div>
			   </div>
			   <div style="clear:both"></div><p class="wp-flattr-button"></p>]]></content:encoded>
			<wfw:commentRss>http://blog.seric.at/2012/01/10/blogging-from-ipad/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Start an Android Intent without pushing on the history stack</title>
		<link>http://blog.seric.at/2011/09/16/start-an-android-intent-without-pushing-on-the-history-stack/</link>
		<comments>http://blog.seric.at/2011/09/16/start-an-android-intent-without-pushing-on-the-history-stack/#comments</comments>
		<pubDate>Fri, 16 Sep 2011 10:42:32 +0000</pubDate>
		<dc:creator>Franziskus Domig</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[Android]]></category>
		<category><![CDATA[Java]]></category>

		<guid isPermaLink="false">http://blog.seric.at/?p=384</guid>
		<description><![CDATA[I was wondering how to create an Intent with the Android SDK which will not be pushed on top of the history stack. Which means, if another Intent will be started, the back button pressed event will not move ...]]></description>
			<content:encoded><![CDATA[<p>I was wondering how to create an Intent with the Android SDK which will not be pushed on top of the history stack. Which means, if another Intent will be started, the back button pressed event will not move back to the specific Intent. Actually this is done pretty easy with setting a <a href="http://developer.android.com/reference/android/content/Intent.html#FLAG_ACTIVITY_NO_HISTORY" title="Intent Description in the Android Developer Documentation">FLAG_ACTIVITY_NO_HISTORY</a>. An example the is given with the following code snipped.<br />
<span id="more-384"></span></p>

<div class="wp_syntax"><div class="code"><pre class="java"><span class="kw1">public</span> <span class="kw4">void</span> doSomething<span class="br0">&#40;</span><span class="br0">&#41;</span>
<span class="br0">&#123;</span>
	Intent intent <span class="sy0">=</span> <span class="kw1">new</span> Intent<span class="br0">&#40;</span><span class="kw1">this</span>, SomeOtherClass.<span class="kw1">class</span><span class="br0">&#41;</span><span class="sy0">;</span>
&nbsp;
	<span class="co1">// do not keep this intent in history</span>
	intent.<span class="me1">setFlags</span><span class="br0">&#40;</span>Intent.<span class="me1">FLAG_ACTIVITY_NO_HISTORY</span><span class="br0">&#41;</span><span class="sy0">;</span>
&nbsp;
	startActivity<span class="br0">&#40;</span>intent<span class="br0">&#41;</span><span class="sy0">;</span>
<span class="br0">&#125;</span></pre></div></div>

<div class="gpo_bottomcontainer">
						<div class="gpo_buttons">
						        <g:plusone href="http://blog.seric.at/2011/09/16/start-an-android-intent-without-pushing-on-the-history-stack/" size="standard" count="true"></g:plusone>
						</div>
			   </div>
			   <div style="clear:both"></div><p class="wp-flattr-button"></p> <p><a href="http://blog.seric.at/?flattrss_redirect&amp;id=384&amp;md5=adff4215547f239df61c26599b472d51" title="Flattr" target="_blank"><img src="http://blog.seric.at/wp-content/plugins/flattr/img/flattr-badge-large.png" alt="flattr this!"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://blog.seric.at/2011/09/16/start-an-android-intent-without-pushing-on-the-history-stack/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Authorship on blog posts</title>
		<link>http://blog.seric.at/2011/07/06/authorship-on-blog-posts/</link>
		<comments>http://blog.seric.at/2011/07/06/authorship-on-blog-posts/#comments</comments>
		<pubDate>Wed, 06 Jul 2011 22:32:03 +0000</pubDate>
		<dc:creator>Franziskus Domig</dc:creator>
				<category><![CDATA[Web]]></category>
		<category><![CDATA[Authorship]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Google Profiles]]></category>

		<guid isPermaLink="false">http://blog.seric.at/?p=375</guid>
		<description><![CDATA[Google released Google+. But what they are doing is actually fight back Content-Farms with stupid "content" and Facebooks Social-Graph.

Their first step was change the algorithms to calculate the search results different. Do not trust websites which just give you ...]]></description>
			<content:encoded><![CDATA[<p>Google released <a rel="author" href="https://plus.google.com/100673535742914439086">Google+</a>. But what they are doing is actually fight back Content-Farms with stupid &#8220;content&#8221; and Facebooks Social-Graph.</p>
<p>Their first step was change the algorithms to calculate the search results different. Do not trust websites which just give you lots of buzz- and keywords. Remove content in search results which was optimized by companies (SEO) to generate a lot of traffic. That is neither what the web is in need of nor what a typical user wants to read. So they had to add more value on people recommending content not keywords. The added the Google +1 Button. Letting people decide which content added value to their research.</p>
<p>The next step had to be adding recommendations from your friends to your search results. To identify your friends, Google could not just relay on data they get from Google Contacts (e.g. GMail) but were in need to create something like Facebooks Social-Graph. Which is exactly what Google did with Google+. (Thumbs up, a social network that adds more value than Facebook or Twitter ever did).</p>
<p>So the next logical step is, adding semantics to articles, blog posts or any other content that you as a user produce online. Google adds <a href="http://www.google.com/support/webmasters/bin/answer.py?answer=1229920">Authorship (with complete description)</a>. A way of linking your content back to your Google+ profile, which is then processed by Googles Searchbots. This is actually done by adding the:</p>
<pre>&lt;a rel="author" href="https://plus.google.com/&lt;your-id&gt;"&gt;Your Name&lt;/a&gt;</pre>
<p>to each content you produce.</p>
<p>Et voila. This leads to more semantic and more value of search results and even shows my profile picture beside search results for my friends. This is great.</p>
<p>Let&#8217;s see what&#8217;s next. I am excited.</p>
<div class="gpo_bottomcontainer">
						<div class="gpo_buttons">
						        <g:plusone href="http://blog.seric.at/2011/07/06/authorship-on-blog-posts/" size="standard" count="true"></g:plusone>
						</div>
			   </div>
			   <div style="clear:both"></div><p class="wp-flattr-button"></p> <p><a href="http://blog.seric.at/?flattrss_redirect&amp;id=375&amp;md5=263e56a52644d4f5cde0088b289ebbbb" title="Flattr" target="_blank"><img src="http://blog.seric.at/wp-content/plugins/flattr/img/flattr-badge-large.png" alt="flattr this!"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://blog.seric.at/2011/07/06/authorship-on-blog-posts/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Anonyme Amazoniker</title>
		<link>http://blog.seric.at/2011/06/20/anonyme-amazoniker/</link>
		<comments>http://blog.seric.at/2011/06/20/anonyme-amazoniker/#comments</comments>
		<pubDate>Mon, 20 Jun 2011 21:37:10 +0000</pubDate>
		<dc:creator>Franziskus Domig</dc:creator>
				<category><![CDATA[Allgemeines]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[Amazon]]></category>
		<category><![CDATA[Einkaufen]]></category>
		<category><![CDATA[Statistik]]></category>

		<guid isPermaLink="false">http://blog.seric.at/?p=369</guid>
		<description><![CDATA[Ja, wie es bereits Kristian Köhntopp schreibt, man hätte diese Statistik wohl besser nicht erstellt. However.



Nur amazon.de, keine digitalen Bestellungen sowie keine amazon.com Bestellungen.]]></description>
			<content:encoded><![CDATA[<p>Ja, wie es bereits <a href="http://blog.koehntopp.de/archives/3093-Anomyme-Amazoniker.html" title="Kristian Köhntopp">Kristian Köhntopp</a> schreibt, man hätte diese Statistik wohl besser nicht erstellt. However.</p>
<p><img src="http://blog.seric.at/wp-content/uploads/2011/06/amazon-500x245.png" alt="" title="amazon" width="500" height="245" class="alignnone size-medium wp-image-370" /></p>
<p>Nur amazon.de, keine digitalen Bestellungen sowie keine amazon.com Bestellungen.</p>
<div class="gpo_bottomcontainer">
						<div class="gpo_buttons">
						        <g:plusone href="http://blog.seric.at/2011/06/20/anonyme-amazoniker/" size="standard" count="true"></g:plusone>
						</div>
			   </div>
			   <div style="clear:both"></div><p class="wp-flattr-button"></p> <p><a href="http://blog.seric.at/?flattrss_redirect&amp;id=369&amp;md5=82c961d2fe82af993efedcc3833c0ee1" title="Flattr" target="_blank"><img src="http://blog.seric.at/wp-content/plugins/flattr/img/flattr-badge-large.png" alt="flattr this!"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://blog.seric.at/2011/06/20/anonyme-amazoniker/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Annotations with Symfony2</title>
		<link>http://blog.seric.at/2011/05/03/annotations-with-symfony2/</link>
		<comments>http://blog.seric.at/2011/05/03/annotations-with-symfony2/#comments</comments>
		<pubDate>Tue, 03 May 2011 21:14:39 +0000</pubDate>
		<dc:creator>Franziskus Domig</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[Annotaions]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Symfony]]></category>
		<category><![CDATA[Symfony2]]></category>

		<guid isPermaLink="false">http://blog.seric.at/?p=344</guid>
		<description><![CDATA[With Symfony2 much configuration can be added directly to actions with annotations. With Symfony1 there have been cache.yml, route.yml, security.yml and many more configuration files for a single controller. This has not changed with Symfony2. You still are able ...]]></description>
			<content:encoded><![CDATA[<p>With Symfony2 much configuration can be added directly to actions with annotations. With Symfony1 there have been <code>cache.yml</code>, <code>route.yml</code>, <code>security.yml</code> and many more configuration files for a single controller. This has not changed with Symfony2. You still are able to configure your (bundle) controller with single files. However, there is a new way which offers more flexibility and adds the configuration right to the place where it is used: to the specific action as meta-info with some sort of annotations.</p>
<p>First, your <code>route.yml</code> has to be edited and your bundle has to be added.</p>

<div class="wp_syntax"><div class="code"><pre class="yml"># app/config/route.yml
your_bundle:
    resource &quot;@YourBundle/Controller/YourController.php&quot;
    type: annotation</pre></div></div>

<p>This is needed in every setup, but as you see, you can specify the route type as annotation. This means, Symfony2 will parse the doc block on any action of your controller file, and import this to <code>route.yml</code>. But don&#8217;t worry, Symfony2 does this just once and stores the information on the cached <code>route.yml</code> file.</p>
<p>Now you have to add the routing information on each action which should be imported as route, as shown below. You can also insert params to your route. Additionally to the route you can add various other settings direct to the action as also shown below.</p>

<div class="wp_syntax"><div class="code"><pre class="php"><span class="kw2">class</span> YourController
<span class="br0">&#123;</span>
  <span class="co4">/**
   * @extra:Route(&quot;/action/{id}&quot;, name&quot;route_name&quot;, requirements = {&quot;id&quot; = &quot;\d+&quot;})
   * @extra:Template(&quot;YourBundle:Controller:action&quot;, vars={&quot;your&quot;})
   * @extra:Secure(roles=&quot;ROLE_MEMBER&quot;)
   * @extra:Cache(expires=&quot;+7 days&quot;)
   */</span>
  <span class="kw2">public</span> <span class="kw2">function</span> yourAction<span class="br0">&#40;</span><span class="re0">$id</span><span class="br0">&#41;</span>
  <span class="br0">&#123;</span>
    <span class="re0">$your</span> <span class="sy0">=</span> <span class="st_h">'code '</span> <span class="sy0">.</span> does<span class="br0">&#40;</span><span class="st_h">'something with'</span><span class="sy0">,</span> <span class="re0">$id</span><span class="br0">&#41;</span><span class="sy0">;</span>
  <span class="br0">&#125;</span>
<span class="br0">&#125;</span></pre></div></div>

<p>There is much more to come and everything is still under development. So expect changes and additions to these existing annotations.</p>
<p><strong>Update 24.05.11</strong><br />
Yesterday, Fabien Potencier announced a change in the Annotation System of Symfony2. There is a <a href="http://symfony.com/blog/symfony2-annotations-gets-better">official blog post explaining the changes</a>.</p>
<div class="gpo_bottomcontainer">
						<div class="gpo_buttons">
						        <g:plusone href="http://blog.seric.at/2011/05/03/annotations-with-symfony2/" size="standard" count="true"></g:plusone>
						</div>
			   </div>
			   <div style="clear:both"></div><p class="wp-flattr-button"></p> <p><a href="http://blog.seric.at/?flattrss_redirect&amp;id=344&amp;md5=53db471b71a113d9f1ce29e5bc15d594" title="Flattr" target="_blank"><img src="http://blog.seric.at/wp-content/plugins/flattr/img/flattr-badge-large.png" alt="flattr this!"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://blog.seric.at/2011/05/03/annotations-with-symfony2/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Pressespiegel Österreich &#8211; Finde den Fehler</title>
		<link>http://blog.seric.at/2011/04/20/pressespiegel-osterreich-finde-den-fehler/</link>
		<comments>http://blog.seric.at/2011/04/20/pressespiegel-osterreich-finde-den-fehler/#comments</comments>
		<pubDate>Wed, 20 Apr 2011 14:20:15 +0000</pubDate>
		<dc:creator>Franziskus Domig</dc:creator>
				<category><![CDATA[Allgemeines]]></category>
		<category><![CDATA[Politics]]></category>
		<category><![CDATA[Kurz]]></category>
		<category><![CDATA[Österreich]]></category>
		<category><![CDATA[ÖVP]]></category>
		<category><![CDATA[Politik]]></category>

		<guid isPermaLink="false">http://blog.seric.at/?p=338</guid>
		<description><![CDATA[Der heutige Pressespiegel Online aus Österreich. Finde den Fehler.



Bilder Copyright:
www.kurier.at, www.derstandard.at, www.orf.at, www.heute.at, www.oe24.at, www.diepresse.com, www.krone.at]]></description>
			<content:encoded><![CDATA[<p>Der heutige Pressespiegel Online aus Österreich. Finde den Fehler.</p>
<p><a href="http://blog.seric.at/wp-content/uploads/2011/04/pressespiegel.jpg"><img src="http://blog.seric.at/wp-content/uploads/2011/04/pressespiegel-404x350.jpg" alt="" title="Pressespiegel Österreich 20.04.2011" width="404" height="350" class="alignnone size-medium wp-image-339" /></a></p>
<p>Bilder Copyright:<br />
www.kurier.at, www.derstandard.at, www.orf.at, www.heute.at, www.oe24.at, www.diepresse.com, www.krone.at</p>
<div class="gpo_bottomcontainer">
						<div class="gpo_buttons">
						        <g:plusone href="http://blog.seric.at/2011/04/20/pressespiegel-osterreich-finde-den-fehler/" size="standard" count="true"></g:plusone>
						</div>
			   </div>
			   <div style="clear:both"></div><p class="wp-flattr-button"></p>]]></content:encoded>
			<wfw:commentRss>http://blog.seric.at/2011/04/20/pressespiegel-osterreich-finde-den-fehler/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>My computers</title>
		<link>http://blog.seric.at/2011/03/29/my-computers/</link>
		<comments>http://blog.seric.at/2011/03/29/my-computers/#comments</comments>
		<pubDate>Tue, 29 Mar 2011 21:42:07 +0000</pubDate>
		<dc:creator>Franziskus Domig</dc:creator>
				<category><![CDATA[Allgemeines]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Computer]]></category>
		<category><![CDATA[Hardware]]></category>

		<guid isPermaLink="false">http://blog.seric.at/?p=332</guid>
		<description><![CDATA[So there are a couple of computers idling around here. I all of them gave names of planets and have come to the point where I have to use names of stars because I ran out of planets. Here ...]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-thumbnail wp-image-333" src="http://blog.seric.at/wp-content/uploads/2011/03/mbp-150x80.jpg" alt="" width="150" height="80" />So there are a couple of computers idling around here. I all of them gave names of planets and have come to the point where I have to use names of stars because I ran out of planets. Here I have a list of all the devices that I am using on a more or less regular basis. I left out smartphones, server in data centers or not anymore working computers at home.</p>
<p><strong>Earth</strong><br />
My old, but still working home file server which runs Ubuntu. It has three internal HDDs and offers a total of approx. 1,5TB of storage space. I don&#8217;t like the really loud fan but I live with it.</p>
<p><strong>Mars</strong><br />
An old Sony Vaio notebook which is not really in use anymore but still works. It runs Windows XP and is often used by others in the living room for just browsing the web. However, I don&#8217;t use it anymore.</p>
<p><strong>Pluto</strong><br />
A 15&#8243; MacBook Pro (first generation unibody) which is used by my dad on a daily basis. I just use a remote ssh connection occasionally to fix things or install new software. Yes Pluto is actually not a planet anymore (since 2006), however. I had a Netbook (Saturn) at this time and no other planet name was left.</p>
<p><strong>Jupiter</strong><br />
My main notebook. This is a 15&#8243; MacBook Pro (late 2009) with 8GB of RAM but still a really slow 320GB HDD. I am probably replacing the HDD with a SDD quite soon. I use this MBP every day at university or at home. I am doing my photo editing, programming and daily office work with this computer.</p>
<p><strong>Venus</strong><br />
Not my computer, but my girlfriends. It is a Fujitsu Siemens Windows 7 notebook which I personally do not use at all.</p>
<p><strong>Merkur</strong><br />
My HTPC just beside my TV. It is a Zotac Mag Mini system which runs with Ubuntu with MythTV. It records TV series and movies. I use it also as a small web server for developing small applications.</p>
<p><strong>Uranus</strong><br />
A 23&#8243; iMac actually used by my mum and not quite often by myself. I however often ssh in and install stuff.</p>
<p><strong>Neptun</strong><br />
A 15&#8243; ASUS notebook from 2006. It is running Windows XP, standing around somewhere and not used anymore. It was my main computer for quite a long time before I switched to my MBP (jupiter).</p>
<p><strong>Genua</strong><br />
A 27&#8243; iMac at work I already had to name after an astroid and not a planet, since there are no names left and this is actually not my personal computer.</p>
<div class="gpo_bottomcontainer">
						<div class="gpo_buttons">
						        <g:plusone href="http://blog.seric.at/2011/03/29/my-computers/" size="standard" count="true"></g:plusone>
						</div>
			   </div>
			   <div style="clear:both"></div><p class="wp-flattr-button"></p>]]></content:encoded>
			<wfw:commentRss>http://blog.seric.at/2011/03/29/my-computers/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Should my next project use Symfony2?</title>
		<link>http://blog.seric.at/2011/02/28/should-my-next-project-use-symfony2/</link>
		<comments>http://blog.seric.at/2011/02/28/should-my-next-project-use-symfony2/#comments</comments>
		<pubDate>Mon, 28 Feb 2011 22:17:13 +0000</pubDate>
		<dc:creator>Franziskus Domig</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[sflive]]></category>
		<category><![CDATA[Symfony]]></category>
		<category><![CDATA[Symfony2]]></category>

		<guid isPermaLink="false">http://blog.seric.at/?p=319</guid>
		<description><![CDATA[In a couple of hours, the Symfony Live event in Paris is going to start. You can expect Fabien Potencier to release Symfony 2.0 at the keynote he is holding on March 3rd at 17:30.

This is actually not a ...]]></description>
			<content:encoded><![CDATA[<p>In a couple of hours, the <a href="http://www.symfony-live.com/paris">Symfony Live</a> event in Paris is going to start. You can expect Fabien Potencier to release Symfony 2.0 at the keynote he is holding on March 3rd at 17:30.<img src="http://blog.seric.at/wp-content/uploads/2011/02/symfony2-150x80.png" alt="" title="symfony2" width="150" height="80" class="alignleft size-thumbnail wp-image-320" /></p>
<p>This is actually not a big deal since Symfony2 has been <a href="http://symfony-reloaded.org/code">around</a> for a couple of months. The big question is, should you already start developing your next project with Symfony2? There is no definite answer to that but what you can expect is a &#8220;not so much&#8221; changing API and already robust Framework right from the start. If you are planing a big project with longer time to develop, Symfony2 is a must. If you have already started and use Symfony1.4, stick with it.</p>
<div class="gpo_bottomcontainer">
						<div class="gpo_buttons">
						        <g:plusone href="http://blog.seric.at/2011/02/28/should-my-next-project-use-symfony2/" size="standard" count="true"></g:plusone>
						</div>
			   </div>
			   <div style="clear:both"></div><p class="wp-flattr-button"></p>]]></content:encoded>
			<wfw:commentRss>http://blog.seric.at/2011/02/28/should-my-next-project-use-symfony2/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Ein Monat Nexus S</title>
		<link>http://blog.seric.at/2011/02/11/ein-monat-nexus-s/</link>
		<comments>http://blog.seric.at/2011/02/11/ein-monat-nexus-s/#comments</comments>
		<pubDate>Fri, 11 Feb 2011 00:27:09 +0000</pubDate>
		<dc:creator>Franziskus Domig</dc:creator>
				<category><![CDATA[Allgemeines]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Android]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Nexus S]]></category>
		<category><![CDATA[Review]]></category>

		<guid isPermaLink="false">http://blog.seric.at/?p=311</guid>
		<description><![CDATA[Vor genau einem Monat habe ich mein Google Nexus S bekommen. Besorgt hat es mir ein Freund in London und es mir nach Österreich geschickt. Bin ich soweit zufrieden? Absolut! Es gibt dennoch ein paar kleine Dinge die mich ...]]></description>
			<content:encoded><![CDATA[<p>Vor genau einem Monat habe ich mein Google Nexus S bekommen. Besorgt hat es mir ein Freund in London und es mir nach Österreich geschickt. Bin ich soweit zufrieden? Absolut! Es gibt dennoch ein paar kleine Dinge die mich stören.</p>
<p><span id="more-311"></span><br />
<img class="aligncenter size-medium wp-image-312" title="Nexus S unboxing" src="http://blog.seric.at/wp-content/uploads/2011/02/IMG_8659-500x333.jpg" alt="" width="500" height="333" /><br />
Das Nexus S ist ja der Nachfolger des Nexus One und ist im Prinzip für Entwickler gedacht. Nun programmiere ich zwar auch ein wenig für Android, gerade arbeite ich an einem vernünftigen Musikplayer, der meinen Wünschen genügen soll, da ich mit dem Standardplayer sowie den möglichen Alternativen (z.B.: Doubletwist) nicht sonderlich zufrieden war. Das ist also eigentlich grundsätzlich ein Pluspunkt für das Nexus S. Es lässt sich zum testen der aktuellsten Android Version verwenden und auch den entsprechenden APIs welche auf dem Google Entwickler-Phone immer als erstes verfügbar sind.</p>
<p>Der Akku ist hervorragend. Deutlich besser als alles was ich bisher an Android Smartphones gesehen hatte. Das Display ist ausgezeichnet. Android 2.3 ist schnell und mittlerweile fast überall intuitiv. Die Sprachqualität ist hervorragend und das Gerät liegt gut in der Hand.</p>
<p>Nun was fehlt? Viele waren der Meinung, 16GB interner Speicher ohne Erweiterungsmöglichkeit durch eine microSD-Card wären zu wenig. Ich hatte bisher damit keine Probleme, habe immer genügend Musik dabei und mit Android 3.0 &#8211; Honeycomb soll ein Android eigener Musikdienst erscheinen, welcher die Musik in der Cloud speichert.</p>
<p>Aber irgendwas muss ja auch nicht passen. Ja. Ich vermisse eine Status LED welche mich über SMS, Email &amp; Co. informiert ohne das Display einschalten zu müssen. Das war ich von meinem HTC Magic sowie meinem HTC Desire Z gewöhnt. Es gibt zwar eine App, welche auf dem Display einen (oder mehrere) Pixel bei Notifications aktiviert, allerdings empfand ich das als eher unbrauchbar.</p>
<p>Was fehlt noch? Eine Tastatur. Das Desire Z hatte mir beim tippen deutlich mehr Freude bereitet, aber dafür war es schwerer, dicker und vor allem hatte mich der Hinge Mechanismus nicht sonderlich überzeugt. Die Software-Tastatur ist allerdings mit Android 2.3 deutlich besser geworden, und mit SwiftKey kann man sogar ordentlich tippen.</p>
<p>Dass die Kamera kein 720p Videos aufzeichnen kann ist mir übrigens egal. Ernsthafte Videos mache ich sowieso mit meiner Canon DSLR.</p>
<p>Ansonsten bin ich äußerst zufrieden und kann das Nexus S nur weiterempfehlen.</p>
<div class="gpo_bottomcontainer">
						<div class="gpo_buttons">
						        <g:plusone href="http://blog.seric.at/2011/02/11/ein-monat-nexus-s/" size="standard" count="true"></g:plusone>
						</div>
			   </div>
			   <div style="clear:both"></div><p class="wp-flattr-button"></p>]]></content:encoded>
			<wfw:commentRss>http://blog.seric.at/2011/02/11/ein-monat-nexus-s/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Die ersten &#8220;Freunde&#8221; sind da</title>
		<link>http://blog.seric.at/2011/02/11/die-ersten-freunde-sind-da/</link>
		<comments>http://blog.seric.at/2011/02/11/die-ersten-freunde-sind-da/#comments</comments>
		<pubDate>Thu, 10 Feb 2011 23:31:02 +0000</pubDate>
		<dc:creator>Franziskus Domig</dc:creator>
				<category><![CDATA[Whisky]]></category>
		<category><![CDATA[Bowmore]]></category>
		<category><![CDATA[Bruichladdich]]></category>
		<category><![CDATA[Laphroaig]]></category>

		<guid isPermaLink="false">http://blog.seric.at/?p=302</guid>
		<description><![CDATA[Vor bereits einer Woche, habe ich die ersten bestellten Flaschen Whisky bekommen. Das ist ein Novum, da ich doch bisher Whisky bzw. Spirituosen beim vorbeigehen im Supermarkt mitgenommen habe. Erstmals habe ich (online) bestellt. Und dies beim scheinbar besten ...]]></description>
			<content:encoded><![CDATA[<p>Vor bereits einer Woche, habe ich die ersten bestellten Flaschen Whisky bekommen. Das ist ein Novum, da ich doch bisher Whisky bzw. Spirituosen beim vorbeigehen im Supermarkt mitgenommen habe. Erstmals habe ich (online) bestellt. Und dies beim <a href="http://www.whisky.de/">scheinbar besten Whisky Shop in Deutschland</a>, dem &#8220;The Whisky Store&#8221; von Theresia Lüning.</p>
<p>Bestellt habe ich nicht irgendwas, sondern habe mich fachkundig von <a href="http://blog.koehntopp.de/archives/3013-Bah..html">Kris</a> beraten lassen. Somit sind es drei &#8220;Freunde&#8221; von der selben Gegend in Schottland geworden. Genauer gesagt, von der <a href="http://islay.org.uk/">Insel Islay</a>, welche vor allem für sehr rauchige/torfige Whiskys bekannt ist.</p>
<p><img src="http://blog.seric.at/wp-content/uploads/2011/02/IMG_8668-350x350.jpg" alt="" title="Laphroaig Bowmore Bruichladdich" width="350" height="350" class="aligncenter size-medium wp-image-303" /></p>
<p>Ein <a href="http://www.whisky.de/tws/product_info.php?info=p13159_Laphroaig-Quarter-Cask.html">Laphroaig Quarter Cask</a>, ein <a href="http://www.whisky.de/tws/product_info.php?info=p14417_Bowmore-Darkest.html">Bowmore Darkest</a> und ein <a href="http://www.whisky.de/tws/product_info.php?info=p14012_Bruichladdich-Peat.html">Bruichladdich Peat</a>. Ich habe alle bereits getestet und kann auch alle ohne grobe Einschränkung weiterempfehlen. Einzig für Einsteiger auf dem Gebiet (speziell Nichtrauchern) wird das rauchige/torfige anfangs etwas ungewohnt vorkommen.</p>
<div class="gpo_bottomcontainer">
						<div class="gpo_buttons">
						        <g:plusone href="http://blog.seric.at/2011/02/11/die-ersten-freunde-sind-da/" size="standard" count="true"></g:plusone>
						</div>
			   </div>
			   <div style="clear:both"></div><p class="wp-flattr-button"></p>]]></content:encoded>
			<wfw:commentRss>http://blog.seric.at/2011/02/11/die-ersten-freunde-sind-da/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

