<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="wordpress/2.3.2" -->
<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/"
	>

<channel>
	<title>blog</title>
	<link>http://vaclav.synacek.com/blog</link>
	<description>Just another WordPress weblog. And yes, I happen to like the default tagline.</description>
	<pubDate>Wed, 02 Apr 2008 16:35:15 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.3.2</generator>
	<language>en</language>
			<item>
		<title>Eshop pro Nakladatelství Toužimský a Moravec</title>
		<link>http://vaclav.synacek.com/blog/2008/04/02/eshop-pro-nakladatelstvi-touzimsky-a-moravec/</link>
		<comments>http://vaclav.synacek.com/blog/2008/04/02/eshop-pro-nakladatelstvi-touzimsky-a-moravec/#comments</comments>
		<pubDate>Wed, 02 Apr 2008 16:35:15 +0000</pubDate>
		<dc:creator>Vaclav Synacek</dc:creator>
		
		<category><![CDATA[Česky]]></category>

		<guid isPermaLink="false">http://vaclav.synacek.com/blog/2008/04/02/eshop-pro-nakladatelstvi-touzimsky-a-moravec/</guid>
		<description><![CDATA[Udělal jsem nový eshop pro strejdu Michala Moravce. V nakladatelství Toužimský &#38; Moravec vydává knížky o Bigglesovi, dobrodružné knížky z divokého západu včetně těch od Karla Maye a sem tam něco od Wericha nebo dokumentárního mimo normální edice, takže pokud toto čtete, tak jinde těžko najdete nižší ceny (omlouvám se za malou reklamu, ale je [...]]]></description>
			<content:encoded><![CDATA[<p>Udělal jsem <a href="http://www.touzimskyamoravec.cz/">nový eshop</a> pro strejdu Michala Moravce. V nakladatelství <a href="http://www.firmy.cz/detail/417314-michal-moravec-nakladatelstvi-touzimsky-moravec-praha-nusle.html">Toužimský &amp; Moravec</a> vydává knížky o <a href="http://www.touzimskyamoravec.cz/edice/hrdinove-vzdusnych-bitev/biggles/">Bigglesovi</a>, dobrodružné knížky <a href="http://www.touzimskyamoravec.cz/edice/s-puskou-a-lasem/">z divokého západu</a> včetně těch od Karla Maye a sem tam něco od Wericha nebo dokumentárního <a href="http://www.touzimskyamoravec.cz/edice/mimo-edice/">mimo normální edice</a>, takže pokud toto čtete, tak jinde těžko najdete nižší ceny (omlouvám se za malou reklamu, ale je to pravda).</p>
<p>Technicky jde o upravený Wordpress. Žádný kouzla, žádný nákupní košík ani placení kreditkou. Prostě místo příspěvků do blogu, krátké anotace knih a navíc jednoduchý formulář pro objednání. Easy, easy, teď mě jen zajímá, za jak dlouho si to na sebe vydělá.</p>
]]></content:encoded>
			<wfw:commentRss>http://vaclav.synacek.com/blog/2008/04/02/eshop-pro-nakladatelstvi-touzimsky-a-moravec/feed/</wfw:commentRss>
		</item>
		<item>
		<title>GeoURL Mapplet for Google Maps</title>
		<link>http://vaclav.synacek.com/blog/2008/02/22/geourl-mapplet-for-google-maps/</link>
		<comments>http://vaclav.synacek.com/blog/2008/02/22/geourl-mapplet-for-google-maps/#comments</comments>
		<pubDate>Fri, 22 Feb 2008 21:27:54 +0000</pubDate>
		<dc:creator>Vaclav Synacek</dc:creator>
		
		<category><![CDATA[English]]></category>

		<category><![CDATA[geo]]></category>

		<category><![CDATA[web2.0]]></category>

		<guid isPermaLink="false">http://vaclav.synacek.com/blog/2008/02/22/geourl-mapplet-for-google-maps/</guid>
		<description><![CDATA[GeoURL is a service that maintains list of web sites and their geographical coordinations. It is possible to search a site and get it&#8217;s location as well as search a location and get all nearby sites. However the results are not shown on map.  There have been attempts to map results (see comments under [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://geourl.org">GeoURL</a> is a service that maintains list of web sites and their geographical coordinations. It is possible to search a site and get it&#8217;s location as well as search a location and get all nearby sites. However the results are not shown on map.  There have been attempts to map results (see comments under <a href="http://geourl.org/news/2005/06/geourl-meets-go.html#000014">GeoURL meets Google Maps</a> post at <a href="http://geourl.org/news/">GeoURL offical blog</a>). <a href="http://cse-mjmcl.cse.bris.ac.uk/blog/2005/07/05/1120521477109.html">Some of these attempts</a> don&#8217;t work any more or require server instalation.</p>
<p>Now that <a href="http://code.google.com/apis/maps/documentation/mapplets/">Google Mapplets</a> <a href="http://googlemapsapi.blogspot.com/2007/07/mapplets-launched-add-your-mapplet-to.html">have been released</a> for quite some time I decided to write one for GeoURL:</p>
<p><code><br />
var map = new GMap2();<br />
var overlay = null;<br />
GEvent.addListener(map, "moveend", function() {<br />
map.getCenterAsync(function(center) {<br />
var overlayTmp=overlay;<br />
overlay = new GGeoXml('http://geourl.org/near/?lat=' + center.lat() + '&amp;long=' + center.lng() + ';format=rss10');<br />
if (overlayTmp!=null) {<br />
map.removeOverlay( overlayTmp );<br />
}<br />
map.addOverlay( overlay );<br />
});<br />
});</code></p>
<p>This was not super hard and solves the visualization problem nicely. Once installed to Google MyMaps it displays the nearest sites to map center wherever you go on Google Maps. It can be used together with other Mapplets so one can see GeoURL sites next to flickr images or any other geocoded information provided by mapplets.</p>
<p>To instal this GeoURL Mapplet <a href="http://maps.google.com/ig/add?synd=mpl&amp;pid=mpl&amp;moduleurl=http://vaclav.synacek.com/upload/geourlmapplet.xml">use this link</a> or search for GeoURL on <a href="http://maps.google.com/ig/directory?synd=mpl&amp;pid=mpl&amp;features=sharedmap,geofeed">Mapplets gallery</a>.</p>
<p>This is how Prague center looks like after instalation:</p>
<p><img src="http://vaclav.synacek.com/upload/geourlmappletscreenshot.jpg" alt="GeoUrl Mapplet Screenshot" height="353" width="397" /></p>
]]></content:encoded>
			<wfw:commentRss>http://vaclav.synacek.com/blog/2008/02/22/geourl-mapplet-for-google-maps/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Google Earth or Google Maps overlay for Czech golf courses</title>
		<link>http://vaclav.synacek.com/blog/2008/01/27/google-earth-or-google-maps-overlay-for-czech-golf-courses/</link>
		<comments>http://vaclav.synacek.com/blog/2008/01/27/google-earth-or-google-maps-overlay-for-czech-golf-courses/#comments</comments>
		<pubDate>Sun, 27 Jan 2008 22:14:02 +0000</pubDate>
		<dc:creator>Vaclav Synacek</dc:creator>
		
		<category><![CDATA[English]]></category>

		<category><![CDATA[geo]]></category>

		<category><![CDATA[golf]]></category>

		<guid isPermaLink="false">http://vaclav.synacek.com/blog/2008/01/27/google-earth-or-google-maps-overlay-for-czech-golf-courses/</guid>
		<description><![CDATA[I wanted to do this myself, but first I searched, if somebody wasn’t faster. And there I found it. Complete kmz file for all Czech golf courses with some basic info like address, email and www of each course. It includes a bit of advertising for the map creators but I think this is much [...]]]></description>
			<content:encoded><![CDATA[<p>I wanted to do this myself, but first I searched, if somebody wasn’t faster. And there I found it. Complete kmz file for all Czech golf courses with some basic info like address, email and www of each course. It includes a bit of advertising for the <a href="http://www.tin-cup.net/">map creators</a> but I think this is much deserved credit where its due.</p>
<p>Personally I like this map much more than <a href="http://www.cgf.cz/Courses.aspx">the one</a> provided by Czech Golf Federation. It does not filter by course size or region, but viewed in Google Earth or Maps it can be used to find directions and zoom in to see actual course if Google has bought satellite map good enough for the location. As an example, this is a GE screen shot of <a href="http://www.golfhostivar.cz/">Golf Hostivař</a> (including the new clubhouse under construction).</p>
<p><a href="http://vaclav.synacek.com/blog/wp-content/golfhostivar-screenshot.JPG" title="Golf Hostivař in Google Earth"><img src="http://vaclav.synacek.com/blog/wp-content/golfhostivar-screenshot.JPG" alt="Golf Hostivař in Google Earth" /></a></p>
<p>View the original map in <a href="http://maps.google.com/maps/ms?hl=en&#038;ie=UTF8&#038;om=0&#038;t=h&#038;msa=0&#038;output=nl&#038;msid=103543375523419640230.00044017b5abb16c9b814">Google Earth</a>, <a href="http://maps.google.com/maps/ms?hl=en&#038;ie=UTF8&#038;msa=0&#038;msid=103543375523419640230.00044017b5abb16c9b814&#038;om=0&#038;t=h&#038;ll=49.75288,15.446777&#038;spn=3.201177,10.283203&#038;z=7">Google Maps</a> or embedded underneath.</p>
<p><iframe width="640" height="480" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="http://maps.google.com/maps/ms?hl=en&#038;ie=UTF8&#038;msa=0&#038;msid=103543375523419640230.00044017b5abb16c9b814&#038;om=0&#038;t=h&#038;s=AARTsJqceEmIHCU1OaNT4lcgJ5sgYK16lw&#038;ll=49.75288,15.424805&#038;spn=3.40729,7.03125&#038;z=7&#038;output=embed"></iframe><br /><small><a href="http://maps.google.com/maps/ms?hl=en&#038;ie=UTF8&#038;msa=0&#038;msid=103543375523419640230.00044017b5abb16c9b814&#038;om=0&#038;t=h&#038;ll=49.75288,15.424805&#038;spn=3.40729,7.03125&#038;z=7&#038;source=embed" style="color:#0000FF;text-align:left">View Larger Map</a></small></p>
]]></content:encoded>
			<wfw:commentRss>http://vaclav.synacek.com/blog/2008/01/27/google-earth-or-google-maps-overlay-for-czech-golf-courses/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Facebook OpenID App</title>
		<link>http://vaclav.synacek.com/blog/2007/06/18/facebook-openid-app/</link>
		<comments>http://vaclav.synacek.com/blog/2007/06/18/facebook-openid-app/#comments</comments>
		<pubDate>Mon, 18 Jun 2007 19:56:24 +0000</pubDate>
		<dc:creator>Vaclav Synacek</dc:creator>
		
		<category><![CDATA[English]]></category>

		<category><![CDATA[OpenID]]></category>

		<category><![CDATA[web2.0]]></category>

		<guid isPermaLink="false">http://vaclav.synacek.com/blogMT/?p=22</guid>
		<description><![CDATA[Update: This has been implemented at identitu.de. I&#8217;m not sure if the implementation details are exactly as described in this post, but they seem so. See (de)railed blog for details.
Facebook does not officially support OpenID. But would the Facebook Platform make it possible for 3rd party developers to implement OpenID App on top of it? [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Update:</strong><em> This has been implemented at <a href="http://identitu.de/">identitu.de</a>. I&#8217;m not sure if the implementation details are exactly as described in this post, but they seem so. See <a href="http://armanddp.net/">(de)railed blog</a> for details.</em></p>
<p>Facebook does not officially support OpenID. But would the Facebook Platform make it possible for 3rd party developers to implement OpenID App on top of it? I&#8217;ve been thinking about this lately while reading <a href="http://developers.facebook.com/">the API documentation</a>. I think it is not possible to implement OpenID consumer, so those of you who wanted a way how to log in to Facebook with their existing OpenID might now stop reading.<br />
OpenID provider on the other hand should be possible. According to <a href="http://developers.facebook.com/documentation.php?v=1.0&amp;doc=auth">Authentification description</a> in the documentation:</p>
<blockquote><p>In order for a Facebook API client to use the API, the user of the client application must be logged in to Facebook. To accomplish this, direct your users to: http://www.facebook.com/login.php?api_key=YOUR_API_KEY&amp;v=1.0, which will prompt the user to log in if necessary.</p></blockquote>
<p>After successfull login it is possible to retrieve all user date with <a href="http://developers.facebook.com/documentation.php?v=1.0&amp;method=users.getInfo#fql_equiv">facebook.users.getInfo</a> method and thus verify the user&#8217;s identity.</p>
<p>So the complete workflow looks like this:</p>
<ol>
<li>User enters OpenID enabled site (OpenID consumer) such as this blog, Zooomr, Jyte or whatever.</li>
<li>He enters his OpenID URL such as http://www.f8ID.org/700107342. The number is his facebook profile number and the domain is a domain of the hypothetical OpenID App service provider (the domain is free as of writing this).</li>
<li>The consumer site redirects him to f8ID according to OpenID protocol.</li>
<li>f8ID redirects him to Facebook login page.</li>
<li>User logs in with his Facebook password.</li>
<li>Facebook redirects him back to f8ID.</li>
<li>f8ID calls the Facebook getInfo method and verifies that this session has the the same profile number as is in the OpenID URL. If they are equal f8ID redirects back to original OpenID consumer site according to OpenID protocol.</li>
</ol>
<p>This might seem complicated and unintuitive. But as with OpenID in general, the theoretical description puts off average internet user, but practical use is much easier to understand and use. I practice the user is involved only in step 2 and the first time of the day also in step 5. The rest is transparent to him.</p>
<p>So technically implementing this is possible, but would anybody actually use it? I&#8217;m not sure. There are many OpenID providers to chose from. This app would have just one advantage - one can use just one password for OpenID, one password that you need to have anyway. In principle it is very similar to <a href="http://idproxy.net/">idproxy.net</a>, which turns Yahoo ID into OpenID. I can&#8217;t find the numbers, but I guess that only a very small fraction of Yahoo users use idproxy.</p>
<p>Please share your opinion. Would you consider using Facebook as OpenId server?</p>
<p><iframe src="http://jyte.com/widget/claim/i-would-consider-using-facebook-openid-app-as-openid-server" style="border: 1px solid #777777; width: 400px; height: 60px" scrolling="no"></iframe></p>
<p><iframe src="http://jyte.com/widget/claim/facebooks-new-api-system-would-make-it-possible-to-use-it-as-an-openid-server" style="border: 1px solid #777777; width: 400px; height: 60px" scrolling="no"></iframe></p>
<p><iframe src="http://jyte.com/widget/claim/facebook-should-adopt-openid" style="border: 1px solid #777777; width: 400px; height: 60px" scrolling="no"></iframe></p>
]]></content:encoded>
			<wfw:commentRss>http://vaclav.synacek.com/blog/2007/06/18/facebook-openid-app/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Google Maps Street View and my memories of NY</title>
		<link>http://vaclav.synacek.com/blog/2007/06/03/google-maps-street-view-and-my-memories-of-ny/</link>
		<comments>http://vaclav.synacek.com/blog/2007/06/03/google-maps-street-view-and-my-memories-of-ny/#comments</comments>
		<pubDate>Sun, 03 Jun 2007 18:01:13 +0000</pubDate>
		<dc:creator>Vaclav Synacek</dc:creator>
		
		<category><![CDATA[English]]></category>

		<category><![CDATA[geo]]></category>

		<category><![CDATA[useless]]></category>

		<category><![CDATA[web2.0]]></category>

		<guid isPermaLink="false">http://vaclav.synacek.com/blogMT/?p=21</guid>
		<description><![CDATA[Google has done another big thing. They released the Street View feature for their maps. As with every google announcement the blogosphere is exited with a post about it every few minutes. And as with almost every google product people are asking if it compromises our privacy. Maybe, may be not. I don&#8217;t have a [...]]]></description>
			<content:encoded><![CDATA[<p>Google has done another big thing. They released the <a href="http://maps.google.com/help/maps/streetview/">Street View</a> feature for their maps. As with every google announcement the <a href="http://www.technorati.com/posts/tag/google+street+view">blogosphere is exited</a> with a post about it every few minutes. And as with almost every google product people are <a href="http://www.geospatialsemanticweb.com/2007/06/02/google-stree-view-privacy-scare">asking if it compromises our privacy</a>. Maybe, may be not. I don&#8217;t have a strong opinion yet.</p>
<p><a href="http://www.zooomr.com/photos/synacek/2404878/" class="imageLink" title="Pizza place from hostel room"><img src="http://static.zooomr.com/images/2404878_9e03180814_m.jpg" class="alignright" alt="Pizza place from hostel room" height="160" width="240" /></a></p>
<p>All I have is one positive experience: I have been to the states only once for a few months. I stayed in New York only about a 4 days of the time. I have walked down the Central Park, across the Brooklyn Bridge and I have seen the Flat Iron Building. I also remember eating several meals at one pizza place across the street from the hostel. It is probably a place like hundreds others, but I liked it a lot. Especially the fact, that the waitress spoke worse English than me.</p>
<p>I took a photo of the place from the hostel room. Now, 5 years later, while trying out the new google feature I became curious if I still can find the place and if so, if google took a photo too. And guess what! <a href="http://maps.google.com/maps?f=l&amp;hl=en&amp;ie=UTF8&amp;ll=40.799679,-73.966817&amp;spn=0.001953,0.005&amp;z=18&amp;om=1&amp;layer=c&amp;cbll=40.798678,-73.96699&amp;cbp=1,292.5800643086817,0.5,0">I can and they did!</a></p>
<p><a href="http://www.zooomr.com/photos/synacek/2404898/" class="imageLink" title="Pizza place from google maps"><img src="http://static.zooomr.com/images/2404898_fba77e386c.jpg" alt="Pizza place from google maps" /></a></p>
<p>There is only one thing missing in the puzzle - a photo of the waitress. I can&#8217;t google it, it&#8217;s neither on flickr nor on Zooomr.  Anybody going there for pizza, who would send me the photo?</p>
]]></content:encoded>
			<wfw:commentRss>http://vaclav.synacek.com/blog/2007/06/03/google-maps-street-view-and-my-memories-of-ny/feed/</wfw:commentRss>
		</item>
		<item>
		<title>StarWars - Mistrovo tajemství</title>
		<link>http://vaclav.synacek.com/blog/2007/05/25/starwars-mistrovo-tajemstvi/</link>
		<comments>http://vaclav.synacek.com/blog/2007/05/25/starwars-mistrovo-tajemstvi/#comments</comments>
		<pubDate>Fri, 25 May 2007 17:47:57 +0000</pubDate>
		<dc:creator>Vaclav Synacek</dc:creator>
		
		<category><![CDATA[film]]></category>

		<category><![CDATA[Česky]]></category>

		<guid isPermaLink="false">http://vaclav.synacek.com/blogMT/?p=20</guid>
		<description><![CDATA[Připravovaná parodie na Hvězdné války mého souseda Radka a jeho kamarádů má nové stránky. Zatím neobsahují trailery, jen několik obrázků z natáčení a encyklopedii postav a vybavení. Nicméně i z obrázků je vidět, že kluci začínají dobře zvládat filmové efekty světelných mečů, mají pěkné kostýmy a hlavně pěkné poctivé kovové světelné meče. Takže já už [...]]]></description>
			<content:encoded><![CDATA[<p>Připravovaná parodie na Hvězdné války mého souseda Radka a jeho kamarádů má <a href="http://vfs.ic.cz/">nové stránky</a>. Zatím neobsahují trailery, jen několik obrázků z natáčení a encyklopedii postav a vybavení. Nicméně i z obrázků je vidět, že kluci začínají dobře zvládat filmové efekty světelných mečů, mají pěkné kostýmy a hlavně <a href="http://vfs.ic.cz/fotky/mec_DR.jpg">pěkné</a> <a href="http://vfs.ic.cz/fotky/mec_KM.jpg">poctivé</a> <a href="http://vfs.ic.cz/fotky/mec_TD.jpg">kovové</a> <a href="http://vfs.ic.cz/fotky/rivolis_hod.jpg">světelné</a> meče. Takže já už se těším na hotové dílo.</p>
]]></content:encoded>
			<wfw:commentRss>http://vaclav.synacek.com/blog/2007/05/25/starwars-mistrovo-tajemstvi/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Deep tagging</title>
		<link>http://vaclav.synacek.com/blog/2007/05/20/deep-tagging/</link>
		<comments>http://vaclav.synacek.com/blog/2007/05/20/deep-tagging/#comments</comments>
		<pubDate>Sun, 20 May 2007 18:02:58 +0000</pubDate>
		<dc:creator>Vaclav Synacek</dc:creator>
		
		<category><![CDATA[web2.0]]></category>

		<category><![CDATA[Česky]]></category>

		<guid isPermaLink="false">http://vaclav.synacek.com/blogMT/?p=19</guid>
		<description><![CDATA[Tak jsem zase jednou zjistil, že jsem dlouho žil v nevědomosti. Tagy znám, ale hluboké tagy? Už dávno psali na TechCrunch &#8220;All The Cool Kids Are Deep Tagging&#8220;. Jak mě to mohlo minout? Deep tagging není nějaká novinka ani úplná blbost, soudě podle milionových investic do společností, které se tím hodlají živit.
Takže ve zkratce: Deep [...]]]></description>
			<content:encoded><![CDATA[<p>Tak jsem zase jednou zjistil, že jsem dlouho žil v nevědomosti. Tagy znám, ale hluboké tagy? Už dávno psali na TechCrunch &#8220;<a href="http://www.techcrunch.com/2006/10/01/all-the-cool-kids-are-deep-tagging/">All The Cool Kids Are Deep Tagging</a>&#8220;. Jak mě to mohlo minout? Deep tagging není nějaká novinka ani úplná blbost, soudě podle <a href="http://www.techcrunch.com/2007/05/16/veotags-deep-tagging-gets-750k/">milionových investic</a> do společností, které se tím hodlají živit.</p>
<p>Takže ve zkratce: Deep Tagging je tagování částí obrázků, zvukových nahrávek a videa a odkazování na tyto části. Něco jako #relativní odkazy v HTML, které lze navíc otagovat.</p>
<p>Kromě <a href="http://www.veotag.com/">veotag</a> (výše zmíněná investice) se tímto konceptem zabývá více webů. <a href="http://flickr.com/">flickr</a> a <a href="http://zooomr.com/">Zooomr</a> umožňují tagovat části obrázků. Pro video se mi zdá nejlepší služba <a href="http://www.scenemaker.net/">SceneMaker</a>, která umí otagovat scény z videí na Google Video, YouTube, Metacafe a DailyMotion, takže je možné otagovat filměčky už dávno uploadnuté bez jejich migrace na jinou službu à la veotag. Například <a href="http://www.scenemaker.net/player/index.html?c=entertainment&#038;t=10617&#038;s=64727">scénu z 66 Seconds, kde hraju</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://vaclav.synacek.com/blog/2007/05/20/deep-tagging/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Blogging harder than seems</title>
		<link>http://vaclav.synacek.com/blog/2007/05/20/blogging-harder-than-seems/</link>
		<comments>http://vaclav.synacek.com/blog/2007/05/20/blogging-harder-than-seems/#comments</comments>
		<pubDate>Sun, 20 May 2007 17:14:48 +0000</pubDate>
		<dc:creator>Vaclav Synacek</dc:creator>
		
		<category><![CDATA[English]]></category>

		<category><![CDATA[useless]]></category>

		<guid isPermaLink="false">http://vaclav.synacek.com/blogMT/?p=18</guid>
		<description><![CDATA[Yeah, yeah, I have not posted anything for last two months. TWO MONTHS! Yes, I know some of my friends told me this would happen. I just never believed it would come so fast. Looking at the access statistics, there is about 15 visits per day on the blog. What are the people reading? The [...]]]></description>
			<content:encoded><![CDATA[<p>Yeah, yeah, I have not posted anything for last two months. TWO MONTHS! Yes, I know some of my friends told me this would happen. I just never believed it would come so fast. Looking at the access statistics, there is about 15 visits per day on the blog. What are the people reading? The same nothing over and over again?</p>
<p>I&#8217;m not going to promise any regular post from now on, but still I don&#8217;t want to close this site down. Why? Because if I did, I may start to wonder again: &#8220;Shouldn&#8217;t I start a blog&#8221;.</p>
<p>I still have one or two ideas for posts, but not much time to work on them. So maybe this year I will write a few more little posts. And that&#8217;s a reason not to close this down too.</p>
]]></content:encoded>
			<wfw:commentRss>http://vaclav.synacek.com/blog/2007/05/20/blogging-harder-than-seems/feed/</wfw:commentRss>
		</item>
		<item>
		<title>ClaimID goes social</title>
		<link>http://vaclav.synacek.com/blog/2007/03/22/claimid-goes-social/</link>
		<comments>http://vaclav.synacek.com/blog/2007/03/22/claimid-goes-social/#comments</comments>
		<pubDate>Wed, 21 Mar 2007 23:56:03 +0000</pubDate>
		<dc:creator>Vaclav Synacek</dc:creator>
		
		<category><![CDATA[English]]></category>

		<category><![CDATA[OpenID]]></category>

		<category><![CDATA[rdf]]></category>

		<category><![CDATA[web2.0]]></category>

		<guid isPermaLink="false">http://vaclav.synacek.com/blogMT/?p=17</guid>
		<description><![CDATA[ClaimID has announced new feature: contacts (see also Fred&#8217;s blog post). This makes ClaimID, originally an elegant service for keeping and verifying links about oneself, a social network a bit like LinkedIn, Orkut, Myspace&#8230; The big difference is, that to connect with someone, he does not have to be a ClaimID user, he just needs [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://claimID.com/">ClaimID</a> <a href="http://blog.claimid.com/2007/03/new-feature-openid-based-contacts/">has announced</a> new feature: <a href="http://blog.claimid.com/2007/03/contacts-walkthrough/">contacts</a> (see also Fred&#8217;s <a href="http://chimprawk.blogspot.com/2007/03/on-eating-ones-own-dog-food-openid.html">blog post</a>). This makes ClaimID, originally an elegant service for keeping and verifying links about oneself, a social network a bit like LinkedIn, Orkut, Myspace&#8230; The big difference is, that to connect with someone, he does not have to be a ClaimID user, he just needs to have an OpenID. This makes the social network possibly very open, depending on the <a href="http://www.openidenabled.com/">OpenID adoption</a>.</p>
<p>I have always wanted this kind of openness in social networks. I thought that <a href="http://www.foaf-project.org/">FOAF</a> will eventually evolve in this kind of network (I even wrote a <a href="http://simile.mit.edu/wiki/LinkedIn_Scraper">scraper</a> transforming LinkedIn account data into FOAF). Now I have to admit, that maybe ClaimID&#8217;s approach is more user friendly and also more secure and verified (after all, anyone can write FOAF about anyone, but stealing OpenID is difficult).</p>
<p>The only disadvantage compared to FOAF distributed files is the little lock-in. In ClaimID, you don&#8217;t have to lock yourself or your contacts in the service, but you still lock the relationships in. If one day ClaimID disappears, so will the relationships. Even worse, if you want to build similar competing service, although both will be open to all OpenID users, the relationships will never mix-every user will have some of them in one service and other ones in the other service never seeing them all at once.</p>
<p>XFN solves the problem a bit. Still I think marking the relationships with FOAF and <a href="http://rdfa.info/">RDFa</a> would make the service even more transparent, allowing anyone to make SPARQL queries over the social network and possibly several social networks following the same approach, making the social networks part of the semantic web.</p>
<p>Even without FOAF/RDFa integration, ClaimID seems like a very good social network offering. The problem is, most of the people I know, don&#8217;t use OpenID, so <a href="http://claimid.com/vaclav-synacek">my ClaimID</a> will stay contact-less until OpenID goes massive in this part of the world. Considering most of my friends are only recently discovering LinkedIn and using it as their first social network, this might take a long time. Or does the sudden interest in LinkedIn among my peers have something to do with the actual <a href="http://chimprawk.blogspot.com/2006/01/situational-relevance-in-social.html">situational relevance</a> as most of them are now (like me) graduating and starting careers?</p>
]]></content:encoded>
			<wfw:commentRss>http://vaclav.synacek.com/blog/2007/03/22/claimid-goes-social/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Twitter v Čechách</title>
		<link>http://vaclav.synacek.com/blog/2007/03/21/twitter-v-cechach/</link>
		<comments>http://vaclav.synacek.com/blog/2007/03/21/twitter-v-cechach/#comments</comments>
		<pubDate>Tue, 20 Mar 2007 23:09:34 +0000</pubDate>
		<dc:creator>Vaclav Synacek</dc:creator>
		
		<category><![CDATA[web2.0]]></category>

		<category><![CDATA[Česky]]></category>

		<guid isPermaLink="false">http://vaclav.synacek.com/blogMT/?p=16</guid>
		<description><![CDATA[Tak to vypadá, že převážně anglofonní blogosféra žije twitterem, kolem 7-mi až 8-mi set blog postů denně je docela dost, myslím. Určitě doporučuji především dva posty na Unit Structures.
A v Čechách? Zatím relativně mrtvo, ikdyž první vlaštovky už se objevují.
Otázkou je, k čemu je twitter vůbec dobrej. Já zatím nevím a ani nemám účet. Co [...]]]></description>
			<content:encoded><![CDATA[<p>Tak to vypadá, že převážně anglofonní blogosféra žije <a href="http://twitter.com/">twitterem</a>, kolem 7-mi až 8-mi set<a href="http://www.technorati.com/search/twitter"> blog postů denně</a> je docela dost, myslím. Určitě doporučuji především <a href="http://chimprawk.blogspot.com/2007/03/on-twitter-and-youth-adoption.html">dva</a> <a href="http://chimprawk.blogspot.com/2007/03/hyper-twitterers-and-killer-app.html">posty</a> na <a href="http://chimprawk.blogspot.com/">Unit Structures</a>.<br />
A v Čechách? Zatím <a href="http://search.seznam.cz/searchScreen?w=twitter">relativně</a> <a href="http://jagg.cz/search/all/twitter">mrtvo</a>, ikdyž <a href="http://fflog.blog.lupa.cz/0703/twitter-je-esence-internetu">první vlaštovky</a> už se objevují.<br />
Otázkou je, k čemu je twitter vůbec dobrej. Já zatím nevím a ani nemám účet. Co bych tam taky dával, že? V práci, doma, v práci, doma,&#8230;. , víkend, v práci, doma,&#8230;.<br />
Abych trochu poodhalil, jak to s twitterem je v Čechách, hledal jsem <a href="http://twittermap.com/maps?mapstring=prague">na twittermap</a> (pozor, varuji před svým lehkým pragocentrismem), což je mash-up google maps a twitteru, který zobrazuje geokódované twitterposty na mapě. V době psaní tohoto postu jsou tam v Praze a v Čechách (v tomto případě se v Praze opravdu rovná v Čechách) celkem 3 twitterposty. Takže na to, že od poledne do půlnoci by měla podle mě být ta aktivnější 12-ti hodinovka dne, celkem nic moc. No uvidíme, jak se to bude vyvíjet.<br />
Pro mě osobně velmi zajímavé zjištění je, že <a href="http://twitter.com/defe/statuses/10095161">jeden</a> ze těch 3 aktivních postů je od <a href="http://twitter.com/defe">defe</a>ho, což je můj vzdálený bratranec. Tímto zdravím Šimona a lehce populisticky dodávám, že nejen, že 100% teď aktivních twitterpostů je z Prahy, ale 33% je z rodiny.</p>
<p><strong>Update po 24 hodinách:</strong> dneska to vypadá tak, že na technorati padl nový rekord-1500 blogpostů o twitteru za dnešek a na twittermaps jsou 4 twitterposty z Čech-50% Praha, 25% Roudnice nad Labem, 25% Kladno a 0% rodina. Lehká progrese, ale  zatím předčasné z toho dělat závěry.</p>
]]></content:encoded>
			<wfw:commentRss>http://vaclav.synacek.com/blog/2007/03/21/twitter-v-cechach/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
