<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:georss='http://www.georss.org/georss' xmlns:gd='http://schemas.google.com/g/2005' xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-8781345212716328856</id><updated>2012-02-16T03:28:56.354-08:00</updated><category term='openid'/><category term='fun'/><category term='law privat'/><category term='mac'/><title type='text'>Stephan Zehrer</title><subtitle type='html'></subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://www.stephan-zehrer.de/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8781345212716328856/posts/default'/><link rel='alternate' type='text/html' href='http://www.stephan-zehrer.de/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>Stephan Zehrer</name><uri>http://www.blogger.com/profile/08362903714516329647</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='26' height='32' src='http://4.bp.blogspot.com/_7sUIXJ71D4w/TRDoxrvXCFI/AAAAAAAAAA8/VrnHwyuV8Dc/s1600-R/IMG_0093_01_OK.gif'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>17</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>25</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-8781345212716328856.post-4208101219032904893</id><published>2011-02-19T11:34:00.000-08:00</published><updated>2011-02-19T12:07:50.138-08:00</updated><title type='text'>Static Library in iOS (Xcode)</title><content type='html'>&lt;div&gt;As you can read in the following blog entries &lt;/div&gt;&lt;div&gt;&lt;ul&gt;&lt;li&gt;&lt;span class="Apple-style-span"&gt;&lt;a href="http://www.amateurinmotion.com/articles/2009/02/08/creating-a-static-library-for-iphone.html"&gt;Creating a Static Library for iPhone&lt;/a&gt;&lt;/span&gt;&lt;meta charset="utf-8"&gt;&lt;/li&gt;&lt;li&gt;&lt;span class="Apple-style-span" style="color: rgb(34, 34, 34); line-height: 33px; font-size: medium; "&gt;&lt;span class="Apple-style-span"&gt;&lt;a href="http://mobileorchard.com/code-sharing-via-static-libraries-and-cross-project-references/"&gt;Tutorial: Code Sharing Via Static Libraries And Cross-Project References&lt;/a&gt;&lt;/span&gt;&lt;/span&gt;&lt;/li&gt;&lt;/ul&gt;&lt;div&gt;&lt;span class="Apple-style-span"&gt;&lt;span class="Apple-style-span" style="line-height: 33px;"&gt;static libraries are the best way to reuse code between several iOS projects. &lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"&gt;&lt;span class="Apple-style-span" style="line-height: 33px;"&gt;In the second tutorial (part1) they define the &lt;/span&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-family: Helvetica; "&gt;&lt;span class="Apple-style-span"&gt;&lt;a href="http://developer.apple.com/library/mac/documentation/DeveloperTools/Reference/XcodeBuildSettingRef/1-Build_Setting_Reference/build_setting_ref.html#//apple_ref/doc/uid/TP40003931-CH3-SW42"&gt;BUILT_PRODUCTS_DIR&lt;/a&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="color: rgb(34, 34, 34); line-height: 33px; font-size: medium; "&gt; to have a shared build output locations. I prefere here a bit different settings:&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;ul&gt;&lt;li&gt;&lt;span class="Apple-style-span" style="color: rgb(34, 34, 34); line-height: 33px; font-size: medium; "&gt;/Users/Shared/${USER}/products&lt;span class="Apple-tab-span" style="white-space:pre"&gt;			&lt;/span&gt;(Place Build Products in) &lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span class="Apple-style-span" style="color: rgb(34, 34, 34); line-height: 33px; font-size: medium; "&gt;/Users/Shared/${USER}/products/Temp&lt;span class="Apple-tab-span" style="white-space:pre"&gt;	&lt;/span&gt;(Place Intermediate Build Files in)&lt;/span&gt;&lt;/li&gt;&lt;/ul&gt;&lt;div&gt;&lt;span class="Apple-style-span"&gt;&lt;span class="Apple-style-span" style="line-height: 33px;"&gt;This separate the real products (as. e.g. a static library and its header files) and the all the other build results (e.g. object files).&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"&gt;&lt;span class="Apple-style-span" style="line-height: 33px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"&gt;&lt;span class="Apple-style-span" style="line-height: 33px;"&gt;Additional this setting you can simplify you search path for header files. The source tree setup of the tutorial is not required therefore.&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"&gt;&lt;span class="Apple-style-span" style="line-height: 33px;"&gt;You can set you "Header Search Path" to &lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;ul&gt;&lt;li&gt;&lt;span class="Apple-style-span" style="color: rgb(34, 34, 34); line-height: 33px; font-size: medium; "&gt;${BUILT_PRODUCTS_DIR}/usr/local/include&lt;/span&gt;&lt;/li&gt;&lt;/ul&gt;&lt;div&gt;&lt;span class="Apple-style-span"&gt;&lt;span class="Apple-style-span" style="line-height: 33px;"&gt;The advantage is this setup work even independent of the configuration and therefor it is sufficient to define it for "All Configurations" either for each target or even for the project.&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"&gt;&lt;span class="Apple-style-span" style="line-height: 33px;"&gt;Hope this helps a bit ..&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"&gt;&lt;span class="Apple-style-span" style="line-height: 33px;"&gt;Stephan&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"&gt;&lt;span class="Apple-style-span" style="line-height: 33px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"&gt;&lt;span class="Apple-style-span" style="line-height: 33px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"&gt;&lt;span class="Apple-style-span" style="line-height: 33px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="color: rgb(34, 34, 34); line-height: 33px; font-size: medium; "&gt; &lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;meta charset="utf-8"&gt;&lt;meta charset="utf-8"&gt;&lt;meta equiv="Content-Type" content="text/html; charset=UTF-8"&gt; &lt;meta equiv="Content-Style-Type" content="text/css"&gt; &lt;title&gt;&lt;/title&gt; &lt;meta name="Generator" content="Cocoa HTML Writer"&gt; &lt;meta name="CocoaVersion" content="1038.35"&gt; &lt;style type="text/css"&gt; p.p1 {margin: 0.0px 0.0px 0.0px 0.0px; font: 16.0px Helvetica} &lt;/style&gt;   &lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8781345212716328856-4208101219032904893?l=www.stephan-zehrer.de' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://www.stephan-zehrer.de/feeds/4208101219032904893/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8781345212716328856&amp;postID=4208101219032904893' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8781345212716328856/posts/default/4208101219032904893'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8781345212716328856/posts/default/4208101219032904893'/><link rel='alternate' type='text/html' href='http://www.stephan-zehrer.de/2011/02/static-library-in-ios-xcode.html' title='Static Library in iOS (Xcode)'/><author><name>Stephan Zehrer</name><uri>http://www.blogger.com/profile/08362903714516329647</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='26' height='32' src='http://4.bp.blogspot.com/_7sUIXJ71D4w/TRDoxrvXCFI/AAAAAAAAAA8/VrnHwyuV8Dc/s1600-R/IMG_0093_01_OK.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8781345212716328856.post-3240540994437576131</id><published>2011-01-09T00:25:00.001-08:00</published><updated>2011-01-09T00:31:08.659-08:00</updated><title type='text'>No languages settings in Mac Chrome</title><content type='html'>&lt;div xmlns="http://www.w3.org/1999/xhtml"&gt;&lt;p&gt;Seems there is no big chance to change the language settings in mac chrome.&lt;br /&gt;&lt;br /&gt;Well even I am a native German I use in default the English UI. So my preferred language order (in system settings is English ,Deutsch ...&lt;br /&gt;&lt;br /&gt;Seems Chrome only care's about the primary language but in some cases I like to have a translation from English to Germany ... seems this is at the moment not possible with chrome, isn't it?&lt;/p&gt;in Bezug auf: &lt;a href="http://www.google.com/support/chrome/bin/answer.py?hl=en&amp;amp;answer=95416"&gt;Fonts, languages, and encodings : Basic browser settings - Google Chrome Help&lt;/a&gt; (&lt;a href="http://www.google.com/sidewiki/entry/115943812288728777813/id/6AqXiamSDG0vAa8nC1ZAIMy1HQA"&gt;auf Google Sidewiki anzeigen&lt;/a&gt;)&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8781345212716328856-3240540994437576131?l=www.stephan-zehrer.de' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://www.stephan-zehrer.de/feeds/3240540994437576131/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8781345212716328856&amp;postID=3240540994437576131' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8781345212716328856/posts/default/3240540994437576131'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8781345212716328856/posts/default/3240540994437576131'/><link rel='alternate' type='text/html' href='http://www.stephan-zehrer.de/2011/01/no-languages-settings-in-mac-chrome.html' title='No languages settings in Mac Chrome'/><author><name>Stephan Zehrer</name><uri>http://www.blogger.com/profile/08362903714516329647</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='26' height='32' src='http://4.bp.blogspot.com/_7sUIXJ71D4w/TRDoxrvXCFI/AAAAAAAAAA8/VrnHwyuV8Dc/s1600-R/IMG_0093_01_OK.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8781345212716328856.post-514215437221999309</id><published>2008-12-27T02:13:00.000-08:00</published><updated>2008-12-27T02:52:06.810-08:00</updated><title type='text'>Open VMware Tools on Ubuntu 8.10</title><content type='html'>Hey,&lt;br /&gt;&lt;br /&gt;I just finally  installed the latest version of the Open Virtual Machine Tools (&lt;a href="http://sourceforge.net/project/showfiles.php?group_id=204462"&gt;2008.12.23&lt;/a&gt;) on my Ubuntu 8.10 installation (2.6.27-9-generic) under VM Ware Fusion (2.0.1).&lt;br /&gt;&lt;br /&gt;Primary based on this &lt;a href="http://x86virtualization.com/open-source/howto-install-open-vmware-tools-in-linux-kernel-2624.html"&gt;HOWTO&lt;/a&gt; (first hit i found on google).&lt;br /&gt;&lt;br /&gt;Under the expectation you downloaded the source package and you are in the following folder&lt;br /&gt;&lt;blockquote&gt;cd open-vm-tools-2008.12.23-137496&lt;/blockquote&gt;You need some (additional) libraries and packages:&lt;br /&gt;&lt;blockquote&gt;sudo apt-get install build-essential&lt;br /&gt;sudo apt-get install  linux-headers-$(uname -r)&lt;br /&gt;sudo apt-get install libdumbnet-dev libdumbnet&lt;br /&gt;sudo apt-get install libicu-dev&lt;/blockquote&gt;Cause I have no X development lib installed I run all with the following parameter&lt;br /&gt;&lt;blockquote&gt;./configure --without-x  &amp;amp;&amp;amp; make&lt;/blockquote&gt;Afterwards I could install to tools:&lt;br /&gt;&lt;blockquote&gt;&lt;/blockquote&gt;&lt;blockquote&gt;sudo make install&lt;/blockquote&gt;We will see what is working now and what not..&lt;br /&gt;&lt;br /&gt;Greetings and Happy New Year&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;blockquote&gt;&lt;/blockquote&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8781345212716328856-514215437221999309?l=www.stephan-zehrer.de' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://www.stephan-zehrer.de/feeds/514215437221999309/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8781345212716328856&amp;postID=514215437221999309' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8781345212716328856/posts/default/514215437221999309'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8781345212716328856/posts/default/514215437221999309'/><link rel='alternate' type='text/html' href='http://www.stephan-zehrer.de/2008/12/open-vmware-tools-on-ubuntu-810.html' title='Open VMware Tools on Ubuntu 8.10'/><author><name>Stephan Zehrer</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8781345212716328856.post-366034710339514498</id><published>2008-03-16T14:28:00.000-07:00</published><updated>2008-03-16T14:29:45.052-07:00</updated><title type='text'>Test RSS2Email</title><content type='html'>Well let's see if my new RSS2Email is working :) ...&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8781345212716328856-366034710339514498?l=www.stephan-zehrer.de' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://www.stephan-zehrer.de/feeds/366034710339514498/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8781345212716328856&amp;postID=366034710339514498' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8781345212716328856/posts/default/366034710339514498'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8781345212716328856/posts/default/366034710339514498'/><link rel='alternate' type='text/html' href='http://www.stephan-zehrer.de/2008/03/test-rss2email.html' title='Test RSS2Email'/><author><name>Stephan Zehrer</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8781345212716328856.post-2491043313272838019</id><published>2008-02-08T08:26:00.000-08:00</published><updated>2008-02-08T08:33:36.285-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='openid'/><title type='text'>Native support of OpenID in Firefox</title><content type='html'>A new enhancement is suggested for Firefox. Native OpenID support.&lt;br /&gt;&lt;br /&gt;Yes their are AddOns  already available but why an extra AddOn&lt;br /&gt;Now after MS is in the boat ... what will happen with IE 8/Vista?&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;So vote for native support: &lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=416359"&gt;https://bugzilla.mozilla.org/show_bug.cgi?id=416359&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8781345212716328856-2491043313272838019?l=www.stephan-zehrer.de' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://www.stephan-zehrer.de/feeds/2491043313272838019/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8781345212716328856&amp;postID=2491043313272838019' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8781345212716328856/posts/default/2491043313272838019'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8781345212716328856/posts/default/2491043313272838019'/><link rel='alternate' type='text/html' href='http://www.stephan-zehrer.de/2008/02/native-support-of-openid-in-firefox.html' title='Native support of OpenID in Firefox'/><author><name>Stephan Zehrer</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8781345212716328856.post-1582018380416493857</id><published>2008-01-07T02:53:00.001-08:00</published><updated>2008-01-07T07:40:17.848-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='openid'/><title type='text'>morzilla.org on the path to OpenID</title><content type='html'>Now after years of discussion mozilla.org is on the path to support OpenID. At least for the sub project "Bugzilla". It is now on the roadmap for on of the next versions ( 3.2 or 4.0). Sources: &lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=294608"&gt;Bugzilla&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;But you can vote for more OpenID support on mozilla.org. Think about the possibilities e.g. of  "native" support in one of the big browsers. &lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=400598"&gt;Vote here&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Yes Scott 2008 will be great ;) ... btw Happy New Year!&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8781345212716328856-1582018380416493857?l=www.stephan-zehrer.de' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://www.stephan-zehrer.de/feeds/1582018380416493857/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8781345212716328856&amp;postID=1582018380416493857' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8781345212716328856/posts/default/1582018380416493857'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8781345212716328856/posts/default/1582018380416493857'/><link rel='alternate' type='text/html' href='http://www.stephan-zehrer.de/2008/01/morzillaorg-on-path-to-openid.html' title='morzilla.org on the path to OpenID'/><author><name>Stephan Zehrer</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8781345212716328856.post-5131456409372293894</id><published>2007-12-21T03:52:00.000-08:00</published><updated>2007-12-21T03:54:50.598-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='law privat'/><title type='text'>Class-action law suit against data retention</title><content type='html'>Say no!&lt;br /&gt;&lt;blockquote&gt;&lt;br /&gt;On 9th November, the Bundestag passed the bill by the majority of votes of the big coalition to implement data retention into German law. Before the law becomes effective, the Bundespraesident has to sign it and if he does, we are going to make use of a constitutional complaint. The complete storage of communication data offends against secrecy of telecommunication and the basic right of informational self-determination.&lt;br /&gt;&lt;br /&gt;Source: &lt;a href="https://www.vorratsdatenspeicherung.de/content/view/51/70/"&gt;www.vorratsdatenspeicherung.de&lt;/a&gt;&lt;br /&gt;&lt;/blockquote&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8781345212716328856-5131456409372293894?l=www.stephan-zehrer.de' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://www.stephan-zehrer.de/feeds/5131456409372293894/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8781345212716328856&amp;postID=5131456409372293894' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8781345212716328856/posts/default/5131456409372293894'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8781345212716328856/posts/default/5131456409372293894'/><link rel='alternate' type='text/html' href='http://www.stephan-zehrer.de/2007/12/class-action-law-suit-against-data.html' title='Class-action law suit against data retention'/><author><name>Stephan Zehrer</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8781345212716328856.post-479239634533368455</id><published>2007-12-19T02:50:00.000-08:00</published><updated>2007-12-19T03:04:47.608-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='openid'/><title type='text'>Google and identity ...</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp0.blogger.com/_GrPP50aHRwo/R2j6BqyccDI/AAAAAAAAAdc/N-8VXVR-dQE/s1600-h/Snapshot+2007-12-19+11-56-03.jpg"&gt;&lt;img style="margin: 0pt 0pt 10px 10px; float: right; cursor: pointer;" src="http://bp0.blogger.com/_GrPP50aHRwo/R2j6BqyccDI/AAAAAAAAAdc/N-8VXVR-dQE/s200/Snapshot+2007-12-19+11-56-03.jpg" alt="" id="BLOGGER_PHOTO_ID_5145637480843472946" border="0" /&gt;&lt;/a&gt;Today I read some articles about Knol a "new" idea  from Google and  entered the  page&lt;br /&gt;&lt;br /&gt;A page which discuss Knol is already online but for me not clear how far Google is involved.  (&lt;a href="http://knolstuff.com/"&gt;http://knolstuff.com&lt;/a&gt;)&lt;br /&gt;At register they speak about a Ning ID.  What's that?&lt;br /&gt;&lt;br /&gt;Google added another feature:  &lt;a href="http://www.google.com/help/profile/"&gt;http://www.google.com/help/profile/&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;What's going on here?&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8781345212716328856-479239634533368455?l=www.stephan-zehrer.de' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://www.stephan-zehrer.de/feeds/479239634533368455/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8781345212716328856&amp;postID=479239634533368455' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8781345212716328856/posts/default/479239634533368455'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8781345212716328856/posts/default/479239634533368455'/><link rel='alternate' type='text/html' href='http://www.stephan-zehrer.de/2007/12/google-and-identity.html' title='Google and identity ...'/><author><name>Stephan Zehrer</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://bp0.blogger.com/_GrPP50aHRwo/R2j6BqyccDI/AAAAAAAAAdc/N-8VXVR-dQE/s72-c/Snapshot+2007-12-19+11-56-03.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8781345212716328856.post-7677171899746602694</id><published>2007-12-16T07:29:00.000-08:00</published><updated>2007-12-16T07:32:38.035-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='openid'/><title type='text'>Who is more famous?</title><content type='html'>This is really simple to find out.&lt;br /&gt;&lt;br /&gt;Just see the live trend on Google for: "&lt;a href="http://www.google.com/trends?q=SAML%2C+OpenID%2C+OpenSSO%2C++SignOn%2C+SourceID&amp;amp;ctab=0&amp;amp;geo=all&amp;amp;date=all&amp;amp;sort=0"&gt;SAML, OpenID, OpenSSO,  SignOn, SourceID&lt;/a&gt;"&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8781345212716328856-7677171899746602694?l=www.stephan-zehrer.de' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://www.stephan-zehrer.de/feeds/7677171899746602694/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8781345212716328856&amp;postID=7677171899746602694' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8781345212716328856/posts/default/7677171899746602694'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8781345212716328856/posts/default/7677171899746602694'/><link rel='alternate' type='text/html' href='http://www.stephan-zehrer.de/2007/12/who-is-more-famouse.html' title='Who is more famous?'/><author><name>Stephan Zehrer</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8781345212716328856.post-4144954940576632569</id><published>2007-12-15T23:20:00.000-08:00</published><updated>2007-12-15T23:25:30.009-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='openid'/><title type='text'>Atlassian add support for OpenID</title><content type='html'>I just read on &lt;a href="http://it-republik.de/jaxenter/news/Atlassian-bringt-neue-Version-seiner-SSO-Software-039812.html"&gt;Jaxenter&lt;/a&gt; even Atlassian support with the SSO software Crowd 1.2 OpenID.&lt;br /&gt;&lt;br /&gt;Atlassian is well know in the area of Bug-Tracking (JIRA)  and Enterprise Wiki (Confluence), especially JIRA is used in many open source projects because Atlassian support a free version for them.&lt;br /&gt;&lt;br /&gt;&lt;a href="http://it-republik.de/jaxenter/news/Atlassian-bringt-neue-Version-seiner-SSO-Software-039812.html"&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8781345212716328856-4144954940576632569?l=www.stephan-zehrer.de' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://www.stephan-zehrer.de/feeds/4144954940576632569/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8781345212716328856&amp;postID=4144954940576632569' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8781345212716328856/posts/default/4144954940576632569'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8781345212716328856/posts/default/4144954940576632569'/><link rel='alternate' type='text/html' href='http://www.stephan-zehrer.de/2007/12/atlassian-add-support-for-openid.html' title='Atlassian add support for OpenID'/><author><name>Stephan Zehrer</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8781345212716328856.post-923215373577316209</id><published>2007-12-02T22:24:00.000-08:00</published><updated>2007-12-02T22:33:13.169-08:00</updated><title type='text'>Bogger support OpenID</title><content type='html'>cool .. Blogger and therefore Google is starting to support OpenID.&lt;br /&gt;&lt;br /&gt;see the article on &lt;a href="http://bloggerindraft.blogspot.com/2007/11/new-feature-openid-commenting.html"&gt;bloggerindraft&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;I just enabled OpenID support for all my blogs!&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8781345212716328856-923215373577316209?l=www.stephan-zehrer.de' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://www.stephan-zehrer.de/feeds/923215373577316209/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8781345212716328856&amp;postID=923215373577316209' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8781345212716328856/posts/default/923215373577316209'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8781345212716328856/posts/default/923215373577316209'/><link rel='alternate' type='text/html' href='http://www.stephan-zehrer.de/2007/12/bogger-support-openid.html' title='Bogger support OpenID'/><author><name>Stephan Zehrer</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8781345212716328856.post-6619377262723211705</id><published>2007-11-25T01:17:00.000-08:00</published><updated>2007-11-25T02:41:54.496-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='mac'/><title type='text'>18 years PC</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp1.blogger.com/_GrPP50aHRwo/R0lFDH0-IvI/AAAAAAAAAc8/MSZeNtPXoXY/s1600-h/IMG_0324_2.JPG"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://bp1.blogger.com/_GrPP50aHRwo/R0lFDH0-IvI/AAAAAAAAAc8/MSZeNtPXoXY/s320/IMG_0324_2.JPG" alt="" id="BLOGGER_PHOTO_ID_5136712769935909618" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;I remember very well. I finished in this year (1989) secondary school (Hauptschule there exist no English word as far as I know) and worked about 5 weeks in summer holiday.&lt;br /&gt;&lt;br /&gt;With the money I earned I bought my first PC (&lt;a href="http://images.google.de/images?q=Olivetti%20M19"&gt;Olivetti M19&lt;/a&gt;). To get an impression for younger&lt;br /&gt;people. This PC had 640KB RAM, no harddisk, just two floppy 5 1/4" discs. No CD drive ! (1985 Sony released the first generation of CD-ROM drives),  green Screen (no flat *smile*) ...&lt;br /&gt;&lt;br /&gt;And now after 18 years I took the decision to move from the "dark side" to white :) ...&lt;br /&gt;.. and I can only say it is worth!&lt;br /&gt;&lt;br /&gt;I like it really, most of the stuff I have to do is native available in Mac OS X Leopard and other stuff you get as open source. Just a few application are left, but therefor BootCamp and VMWare Fusion can help. :)&lt;br /&gt;&lt;br /&gt;So maybe in future more posts on this topic :)&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8781345212716328856-6619377262723211705?l=www.stephan-zehrer.de' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://www.stephan-zehrer.de/feeds/6619377262723211705/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8781345212716328856&amp;postID=6619377262723211705' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8781345212716328856/posts/default/6619377262723211705'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8781345212716328856/posts/default/6619377262723211705'/><link rel='alternate' type='text/html' href='http://www.stephan-zehrer.de/2007/11/18-years-pc.html' title='18 years PC'/><author><name>Stephan Zehrer</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://bp1.blogger.com/_GrPP50aHRwo/R0lFDH0-IvI/AAAAAAAAAc8/MSZeNtPXoXY/s72-c/IMG_0324_2.JPG' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8781345212716328856.post-1141795909013293634</id><published>2007-11-04T11:15:00.000-08:00</published><updated>2007-11-15T13:52:29.476-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='fun'/><title type='text'>Windows is secure!</title><content type='html'>Last week I had this situations on my screen. (Shot by digital cam!)&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp3.blogger.com/_GrPP50aHRwo/Ry4bKI3P3UI/AAAAAAAAAbE/qjzSbhcndhM/s1600-h/screenshot.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://bp3.blogger.com/_GrPP50aHRwo/Ry4bKI3P3UI/AAAAAAAAAbE/qjzSbhcndhM/s320/screenshot.jpg" alt="" id="BLOGGER_PHOTO_ID_5129066886613425474" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;So well, you see Windows is more than secure, even login fields are disabled. Theirs was no other change, I had to switch it off.&lt;br /&gt;&lt;br /&gt;:)&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8781345212716328856-1141795909013293634?l=www.stephan-zehrer.de' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://www.stephan-zehrer.de/feeds/1141795909013293634/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8781345212716328856&amp;postID=1141795909013293634' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8781345212716328856/posts/default/1141795909013293634'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8781345212716328856/posts/default/1141795909013293634'/><link rel='alternate' type='text/html' href='http://www.stephan-zehrer.de/2007/11/windows-is-secure.html' title='Windows is secure!'/><author><name>Stephan Zehrer</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://bp3.blogger.com/_GrPP50aHRwo/Ry4bKI3P3UI/AAAAAAAAAbE/qjzSbhcndhM/s72-c/screenshot.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8781345212716328856.post-1555778816793865458</id><published>2007-11-03T07:41:00.000-07:00</published><updated>2007-11-03T07:57:11.094-07:00</updated><title type='text'>iTuns Plus now Germany...</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp3.blogger.com/_GrPP50aHRwo/RyyKko3P3TI/AAAAAAAAAaM/wLbIR9bey9k/s1600-h/iTunes_plus.gif"&gt;&lt;img style="margin: 0pt 0pt 10px 10px; float: right; cursor: pointer;" src="http://bp3.blogger.com/_GrPP50aHRwo/RyyKko3P3TI/AAAAAAAAAaM/wLbIR9bey9k/s320/iTunes_plus.gif" alt="" id="BLOGGER_PHOTO_ID_5128626437717220658" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;Yesterday I got one of my new favorite songs from iTunes (yes I have a iPod :) ) and I just realized that "iTunes Plus" is available in Germany (the plus sign in front of the prize).&lt;br /&gt;&lt;br /&gt;For the same price now you can get several (unfortunately not all)  song with a much better quality (well in my age you don't here the different, but well its free *smile*) and more important it is without any copy protection! So you can hear the songs on all players (which support the format).&lt;br /&gt;&lt;br /&gt;Thats really cool now!&lt;br /&gt;&lt;br /&gt;I love Apple more and more .. ;)&lt;br /&gt;&lt;br /&gt;Greets&lt;br /&gt;&lt;br /&gt;Steve&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8781345212716328856-1555778816793865458?l=www.stephan-zehrer.de' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://www.stephan-zehrer.de/feeds/1555778816793865458/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8781345212716328856&amp;postID=1555778816793865458' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8781345212716328856/posts/default/1555778816793865458'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8781345212716328856/posts/default/1555778816793865458'/><link rel='alternate' type='text/html' href='http://www.stephan-zehrer.de/2007/11/ituns-plus-now-germany.html' title='iTuns Plus now Germany...'/><author><name>Stephan Zehrer</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://bp3.blogger.com/_GrPP50aHRwo/RyyKko3P3TI/AAAAAAAAAaM/wLbIR9bey9k/s72-c/iTunes_plus.gif' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8781345212716328856.post-484737594931489372</id><published>2007-11-03T05:20:00.000-07:00</published><updated>2007-11-03T05:33:59.550-07:00</updated><title type='text'>When will Apple open the iPhone?</title><content type='html'>I just read on a Germany IT ticker (&lt;a href="http://www.heise.de/newsticker/meldung/98411/from/atom10"&gt;heise.de&lt;/a&gt;) that more and more people hack their iPhone to install more application.&lt;br /&gt;&lt;br /&gt;What I don't understand, why the iPhone doesn't support JavaME?&lt;br /&gt;Almost all other mobile on the world support Java and there are so many application available. In Java you can control the rights much better. Some of them even have a Java based OS!&lt;br /&gt;&lt;br /&gt;Many people hack their mobil to install stuff, Apple (or Steven J. ;) ) ... it is time to see you have to open the phone. In a short period in France a not SIM locked version will come on the marked!&lt;br /&gt;&lt;br /&gt;Isn't it stupid to fight again the people. Just support them as far you can. &lt;br /&gt;"&lt;span&gt;The customer is always right." He buys your stuff and it seems like he like it!&lt;br /&gt;&lt;br /&gt;Btw. If Somebody like to send me a nice iPhone present? .. ;)&lt;br /&gt;&lt;br /&gt;Greets&lt;br /&gt;&lt;br /&gt;Steve&lt;br /&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8781345212716328856-484737594931489372?l=www.stephan-zehrer.de' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://www.stephan-zehrer.de/feeds/484737594931489372/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8781345212716328856&amp;postID=484737594931489372' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8781345212716328856/posts/default/484737594931489372'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8781345212716328856/posts/default/484737594931489372'/><link rel='alternate' type='text/html' href='http://www.stephan-zehrer.de/2007/11/when-will-apple-open-iphone.html' title='When will Apple open the iPhone?'/><author><name>Stephan Zehrer</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8781345212716328856.post-5571912739746580582</id><published>2007-11-02T06:11:00.000-07:00</published><updated>2007-11-02T06:45:09.409-07:00</updated><title type='text'>OpenSocial - pro and cons</title><content type='html'>Now Google found again a way to make history ...&lt;br /&gt;&lt;br /&gt;Well is this good or bad? ..  I don't care lets just see what't about.&lt;br /&gt;&lt;br /&gt;Summary:&lt;br /&gt;A open standard API helps a lot to save time ant at the end money. Most of us know stuff like POP3 or IMAP, http and so on. All the social networks have the problem, they can not provide all functionality by there own. So the created an API to let other provider get connected. Most famous is &lt;a href="http://www.facebook.com/"&gt;Facebook&lt;/a&gt;. But the problem now is each party has his own API and for developers it is really hard to support all of them! So the solution is create on API and get all (or most of them) to support this, and this is what Google did.&lt;br /&gt;&lt;br /&gt;Thanks for this! I personally think it was really time for this.&lt;br /&gt;&lt;br /&gt;Pro:&lt;br /&gt;&lt;ul&gt;&lt;li&gt;Open API - free to use from everybody&lt;/li&gt;&lt;li&gt;Based on standard ( html and javascript)&lt;/li&gt;&lt;li&gt;Interface for server and client&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Define the most imported subset for application provider&lt;/li&gt;&lt;li&gt;Develop once - share one application in may networks&lt;/li&gt;&lt;/ul&gt;&lt;br /&gt;What it's not!&lt;br /&gt;&lt;br /&gt;It does not solve yet the problem of having accounts in many networks (as far as I understand!). I have a account in &lt;a href="https://www.xing.com/profile/Stephan_Zehrer"&gt;XING &lt;/a&gt;(famous in Germany), &lt;span style="text-decoration: underline;"&gt;L&lt;/span&gt;&lt;a href="http://www.linkedin.com/in/stephanzehrer"&gt;inkedIn&lt;/a&gt;, Facebook and others, because friend of mine are in different Networks. The problem I liked so solved is, all my friends in a super network!&lt;br /&gt;&lt;br /&gt;Tags: see "&lt;a href="http://blog.stephan-zehrer.de/2007/09/tag-management.html"&gt;Tag Management&lt;/a&gt;" Is there a solution for this available? As far as I understood the API don't support tag interactions.&lt;br /&gt;&lt;br /&gt;Identifications: No identifications method as &lt;a href="http://www.openid.net/"&gt;OpenID&lt;/a&gt; is supported.&lt;br /&gt;&lt;br /&gt;So we (users) still have to wait for a solution to manage our accounts in the net :(&lt;br /&gt;&lt;br /&gt;Source: &lt;a href="http://code.google.com/apis/opensocial/"&gt;http://code.google.com/apis/opensocial/&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8781345212716328856-5571912739746580582?l=www.stephan-zehrer.de' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://www.stephan-zehrer.de/feeds/5571912739746580582/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8781345212716328856&amp;postID=5571912739746580582' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8781345212716328856/posts/default/5571912739746580582'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8781345212716328856/posts/default/5571912739746580582'/><link rel='alternate' type='text/html' href='http://www.stephan-zehrer.de/2007/11/opensocial-pro-and-cons.html' title='OpenSocial - pro and cons'/><author><name>Stephan Zehrer</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8781345212716328856.post-3775010597102818874</id><published>2007-11-02T05:59:00.000-07:00</published><updated>2007-11-03T08:09:01.401-07:00</updated><title type='text'>New Blog ... Why?</title><content type='html'>I started with having one blog to comment all the things I think about. But know there several areas I like to give some comments on.&lt;br /&gt;&lt;br /&gt;Last moth I  renamed my major blog into "&lt;a href="http://www.the-zehrer-principle.com/"&gt;The Zehrer Principle&lt;/a&gt;" it is about my personal development and opinions of how you should interacted with other people  and the world.&lt;br /&gt;&lt;br /&gt;This new blog is about technology, I have many ideas in mind and I like to share them with the whole world :)&lt;br /&gt;&lt;br /&gt;I am at the moment not sure about, if there is a way to move my tech comments to this blog, but in future here is the place to find them!&lt;br /&gt;&lt;br /&gt;Greets&lt;br /&gt;Steve&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8781345212716328856-3775010597102818874?l=www.stephan-zehrer.de' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://www.stephan-zehrer.de/feeds/3775010597102818874/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8781345212716328856&amp;postID=3775010597102818874' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8781345212716328856/posts/default/3775010597102818874'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8781345212716328856/posts/default/3775010597102818874'/><link rel='alternate' type='text/html' href='http://www.stephan-zehrer.de/2007/11/new-blog-why.html' title='New Blog ... Why?'/><author><name>Stephan Zehrer</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry></feed>
