<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/atom10full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><feed xmlns="http://www.w3.org/2005/Atom" xmlns:openSearch="http://a9.com/-/spec/opensearch/1.1/" xmlns:georss="http://www.georss.org/georss" xmlns:gd="http://schemas.google.com/g/2005" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" gd:etag="W/&quot;DkAESX87cSp7ImA9WxNWFEw.&quot;"><id>tag:blogger.com,1999:blog-13095557</id><updated>2009-10-13T08:18:28.109+02:00</updated><title>cast42</title><subtitle type="html">Cast for two</subtitle><link rel="http://schemas.google.com/g/2005#feed" type="application/atom+xml" href="http://castfortwo.blogspot.com/feeds/posts/default" /><link rel="alternate" type="text/html" href="http://castfortwo.blogspot.com/" /><link rel="hub" href="http://pubsubhubbub.appspot.com/" /><link rel="next" type="application/atom+xml" href="http://www.blogger.com/feeds/13095557/posts/default?start-index=26&amp;max-results=25&amp;redirect=false&amp;v=2" /><author><name>cast42</name><uri>http://www.blogger.com/profile/15954114607504297643</uri><email>noreply@blogger.com</email></author><generator version="7.00" uri="http://www.blogger.com">Blogger</generator><openSearch:totalResults>118</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>25</openSearch:itemsPerPage><link rel="license" type="text/html" href="http://creativecommons.org/licenses/by/2.0/" /><link rel="self" href="http://feeds.feedburner.com/cast42" type="application/atom+xml" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com" /><entry gd:etag="W/&quot;DEUDQX04fSp7ImA9WxJaEkw.&quot;"><id>tag:blogger.com,1999:blog-13095557.post-4823743244246594526</id><published>2009-08-02T13:39:00.008+02:00</published><updated>2009-08-02T14:31:10.335+02:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2009-08-02T14:31:10.335+02:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="anchor" /><category scheme="http://www.blogger.com/atom/ns#" term="_blank" /><category scheme="http://www.blogger.com/atom/ns#" term="jquery" /><category scheme="http://www.blogger.com/atom/ns#" term="code" /><category scheme="http://www.blogger.com/atom/ns#" term="html" /><title>Set all links target to _blank on a XHTML 1.0 Strict using jquery</title><content type="html">As explained &lt;a href="http://www.sitepoint.com/article/standards-compliant-world/3/"&gt;here&lt;/a&gt;, opening links in a new window is no longer possible via target=_blank in XHTML 1.0 strict. This code is a workaround using Javascript:&lt;br /&gt;&lt;pre class="prettyprint"&gt;&lt;br /&gt;function externalLinks() { &lt;br /&gt; if (!document.getElementsByTagName) return; &lt;br /&gt; var anchors = document.getElementsByTagName("a"); &lt;br /&gt; for (var i=0; i&amp;lt;anchors.length; i++) { &lt;br /&gt;   var anchor = anchors[i]; &lt;br /&gt;   if (anchor.getAttribute("href") &amp;&amp; &lt;br /&gt;       anchor.getAttribute("rel") == "external") &lt;br /&gt;     anchor.target = "_blank"; &lt;br /&gt; } &lt;br /&gt;} &lt;br /&gt;window.onload = externalLinks;&lt;br /&gt;&lt;/pre&gt;&lt;br /&gt;A link with attribute rel set to external will open in a new window:&lt;br /&gt;&lt;pre class="prettyprint"&gt;&lt;br /&gt;&amp;lt;a rel="external" href="http://castfortwo.blogpspot.com/"&amp;gt;cast42&amp;lt;/a&amp;gt;&lt;br /&gt;&lt;/pre&gt;&lt;br /&gt;On the &lt;a href="http://friendfeed.com/cast42/embed"&gt;Friendfeed realtime embed&lt;/a&gt; code, I saw they use jquery to do the job:&lt;br /&gt;&lt;pre class="prettyprint"&gt;&lt;br /&gt;&amp;lt;script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3/jquery.js"&amp;gt;&lt;br /&gt;&amp;lt;script type="text/javascript"&amp;gt; &lt;br /&gt;$("body").mousedown(function(e) {&lt;br /&gt;for (var target = e.target; target; target = target.parentNode) {&lt;br /&gt;  if (target.tagName == "A") {&lt;br /&gt;    if ((document.location.href.split("#")[0] + "#") == target.href) {&lt;br /&gt;      return;&lt;br /&gt;    }&lt;br /&gt;    target.target = "_blank";&lt;br /&gt;    return;&lt;br /&gt;    }&lt;br /&gt;}&lt;br /&gt;});&lt;br /&gt;&amp;lt;/script&amp;gt; &lt;br /&gt;&lt;/pre&gt;&lt;br /&gt;The advantage is that all links will open in a new window, except if the refere to an anchor in the page. Hence there's no need to add the attribute rel to each anchor.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/13095557-4823743244246594526?l=castfortwo.blogspot.com'/&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/cast42/~4/5_RxHEk0Dok" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://castfortwo.blogspot.com/feeds/4823743244246594526/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="https://www.blogger.com/comment.g?blogID=13095557&amp;postID=4823743244246594526" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/13095557/posts/default/4823743244246594526?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/13095557/posts/default/4823743244246594526?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/cast42/~3/5_RxHEk0Dok/set-all-link-target-to-blank-on-xhtml.html" title="Set all links target to _blank on a XHTML 1.0 Strict using jquery" /><author><name>cast42</name><uri>http://www.blogger.com/profile/15954114607504297643</uri><email>noreply@blogger.com</email><gd:extendedProperty name="OpenSocialUserId" value="03976202936616300919" /></author><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total><feedburner:origLink>http://castfortwo.blogspot.com/2009/08/set-all-link-target-to-blank-on-xhtml.html</feedburner:origLink></entry><entry gd:etag="W/&quot;CEQDQ30yeCp7ImA9WxJbF0o.&quot;"><id>tag:blogger.com,1999:blog-13095557.post-6739023821409044839</id><published>2009-07-28T10:53:00.005+02:00</published><updated>2009-07-28T11:12:52.390+02:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2009-07-28T11:12:52.390+02:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="webhook" /><category scheme="http://www.blogger.com/atom/ns#" term="google" /><category scheme="http://www.blogger.com/atom/ns#" term="realtime" /><category scheme="http://www.blogger.com/atom/ns#" term="pubsubhubbub" /><title>Urbain Airship: a webhook based service for Iphone 3.0 Push Notification</title><content type="html">&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://infosthetics.com/archives/telekom_installation.jpg"&gt;&lt;img style="float:right; margin:0 0 10px 10px;cursor:pointer; cursor:hand;width: 600px; height: 300px;" src="http://infosthetics.com/archives/telekom_installation.jpg" border="0" alt="picture about fast internet infrastructure" /&gt;&lt;/a&gt;&lt;br /&gt;This morning I discovered a &lt;a href="http://appengine-cookbook.appspot.com/recipe/googleappengine-python-with-urbanairship-to-send-out-iphone-os30-push-notifications/"&gt;new recipe on &lt;a href="http://appengine-cookbook.appspot.com/"&gt;Google App Engine Cookbook&lt;/a&gt; to send out Iphone 3.0 Push notifications via Google App Engine&lt;/a&gt;. In fact, the recipe makes use of a service called &lt;a href="http://urbanairship.com/"&gt;Urban Airship&lt;/a&gt;. They provide a free service that allows to send upto 5000 Push notifications a month. For larger volumes, the price seems reasonable. Image now that all content producers become pubsubhubbub (&lt;a href="http://castfortwo.blogspot.com/2009/07/pubsubhubbub-webhook-based.html"&gt;the pseudo realtime webhook based enabled publish/subscribe protocol proposed by two Googlers&lt;/a&gt;) enabled and maybe we scratch the surface of the future internet architecture that will drive the realtime web. Who knows?&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/13095557-6739023821409044839?l=castfortwo.blogspot.com'/&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/cast42/~4/IwqvNOEk2Iw" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://castfortwo.blogspot.com/feeds/6739023821409044839/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="https://www.blogger.com/comment.g?blogID=13095557&amp;postID=6739023821409044839" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/13095557/posts/default/6739023821409044839?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/13095557/posts/default/6739023821409044839?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/cast42/~3/IwqvNOEk2Iw/urbain-airship-webhook-based-service.html" title="Urbain Airship: a webhook based service for Iphone 3.0 Push Notification" /><author><name>cast42</name><uri>http://www.blogger.com/profile/15954114607504297643</uri><email>noreply@blogger.com</email><gd:extendedProperty name="OpenSocialUserId" value="03976202936616300919" /></author><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total><feedburner:origLink>http://castfortwo.blogspot.com/2009/07/urbain-airship-webhook-based-service.html</feedburner:origLink></entry><entry gd:etag="W/&quot;C0MHRHw6eyp7ImA9WxJbEEU.&quot;"><id>tag:blogger.com,1999:blog-13095557.post-2065656627769873410</id><published>2009-07-20T10:27:00.005+02:00</published><updated>2009-07-20T11:17:15.213+02:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2009-07-20T11:17:15.213+02:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="pubsubhubbub" /><title>Pubsubhubbub: a webhook based publish/subscribe</title><content type="html">On &lt;a href="http://www.techcrunch.com/2009/07/09/speeding-up-rss/"&gt;Friday 9 July 2009&lt;/a&gt;, Google engineers &lt;a href="http://bradfitz.com/"&gt;Brad Fitzpatrick&lt;/a&gt; and &lt;a href="http://friendfeed.com/brett"&gt;Brett Slatkin&lt;/a&gt; showed a demo of a new realtime protocol called &lt;a href="http://code.google.com/p/pubsubhubbub"&gt;pubsubhubbub&lt;/a&gt;. This new technology could lead to a more reactive, pseudo realtime web. I my humble opinion, this might be much bigger news from Google then the announcement of Chrome OS. Of course, only the latter made a big splash in the mainstream news.&lt;br /&gt;&lt;br /&gt;The issue of messaging is a topic addressed already many times in the course of computer science. Common wisdom is that the &lt;a href="http://en.wikipedia.org/wiki/Publish/subscribe"&gt;publish-subscribe pattern&lt;/a&gt; is a sound solution to this. The problem is that due to all kinds of practicalities it often regresses into a polling solution. Even with pubhubsubbub, the website that want to display realtime updates has to poll the hub to check if an update has happened. So there's still a nut to crack! &lt;a href="http://code.google.com/p/pubsubhubbub/source/browse/#svn/trunk/subscriber"&gt;In the example of a subscriber&lt;/a&gt;&lt;a href="http://code.google.com/p/pubsubhubbub/source/browse/trunk/subscriber/static/agg.js"&gt;, a Javascript polls the hub&lt;/a&gt; to check for an update.&lt;br /&gt;&lt;br /&gt;If anybody would know an implementation of the client that does not poll, please let me know.&lt;br /&gt;&lt;br /&gt;In the demo at Techcrunch, updates made by blogger appeared almost realtime in google reader. Currenlty,&lt;a href="http://friendfeed.com/svartling/d7fda94c/trying-to-real-time-blog-more-on-my-blogs-instead"&gt; not all blogger accounts support pubsubhubbub&lt;/a&gt;. &lt;br /&gt;&lt;br /&gt;To be ready when your blogger account is updated, do not forget to add your feed to Feedburner and to activate Pingshot:&lt;br /&gt;&lt;img src="http://img.skitch.com/20090720-gdhx3csrrhkkciidbmimd4e86d.png" alt="enable pingshot in feedburner"&gt;&lt;/img&gt;&lt;br /&gt;A &lt;a href="http://wordpress.org/extend/plugins/pubsubhubbub/"&gt;pubsubhubbub plugin for wordpress&lt;/a&gt; exists and the Drupal community is probably already working on it. Check the &lt;a href="http://code.google.com/p/pubsubhubbub/wiki/PublisherClients"&gt;overview of publisher code for clients on the pubsubhubbub project page&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;Pushed on publish post on monday 20 Juli 2009, at 10:41. Updated at 11u17&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/13095557-2065656627769873410?l=castfortwo.blogspot.com'/&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/cast42/~4/cgyd_EbQ7Dc" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://castfortwo.blogspot.com/feeds/2065656627769873410/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="https://www.blogger.com/comment.g?blogID=13095557&amp;postID=2065656627769873410" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/13095557/posts/default/2065656627769873410?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/13095557/posts/default/2065656627769873410?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/cast42/~3/cgyd_EbQ7Dc/pubsubhubbub-webhook-based.html" title="Pubsubhubbub: a webhook based publish/subscribe" /><author><name>cast42</name><uri>http://www.blogger.com/profile/15954114607504297643</uri><email>noreply@blogger.com</email><gd:extendedProperty name="OpenSocialUserId" value="03976202936616300919" /></author><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total><feedburner:origLink>http://castfortwo.blogspot.com/2009/07/pubsubhubbub-webhook-based.html</feedburner:origLink></entry><entry gd:etag="W/&quot;CEQHRHw8eSp7ImA9WxJWF0U.&quot;"><id>tag:blogger.com,1999:blog-13095557.post-4695119386453098468</id><published>2009-06-23T20:27:00.003+02:00</published><updated>2009-06-23T20:38:55.271+02:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2009-06-23T20:38:55.271+02:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="installation" /><category scheme="http://www.blogger.com/atom/ns#" term="ea" /><category scheme="http://www.blogger.com/atom/ns#" term="osx" /><category scheme="http://www.blogger.com/atom/ns#" term="spore" /><title>Spore Galactic Adventure Released in Europe, today 23 June 2009</title><content type="html">&lt;a href="http://www.flickr.com/photos/24480190@N05/3654866254/" title="IMG_0791 by cast42, on Flickr"&gt;&lt;img src="http://farm4.static.flickr.com/3545/3654866254_9c5be6d817.jpg" width="500" height="375" alt="IMG_0791" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a href="http://www.flickr.com/photos/24480190@N05/3654867184/" title="Spore Ruimteavonturen (Galactic Adventures) Picture 2 by cast42, on Flickr"&gt;&lt;img src="http://farm4.static.flickr.com/3255/3654867184_732b29d7bf.jpg" width="375" height="500" alt="Spore Ruimteavonturen (Galactic Adventures) Picture 2" /&gt;&lt;/a&gt;&lt;br /&gt;This afternoon i received a SMS that my preordered expention kit, called &lt;a href="http://www.spore.com/what/ga"&gt;Galactic Adventures &lt;/a&gt;for the EA Spore game, was available. I picked it up for 30 euros and installed it. Everything went smooth.&lt;br /&gt;&lt;a href="http://www.flickr.com/photos/24480190@N05/3654068855/" title="IMG_0794 by cast42, on Flickr"&gt;&lt;img src="http://farm3.static.flickr.com/2466/3654068855_6a8e3a603d.jpg" width="500" height="375" alt="IMG_0794" /&gt;&lt;/a&gt;&lt;br /&gt;After a succesfull installation, we clicked on the Spore icon in the dock of the mac and prepared for the new fun....that we didn't find. Looking up the documentation and calling the EA helpdesk brought no prevail. I tried a second install. Nothing helped. Until I went looking in the installation directory Spore in the Applications directory. I saw that a new executable was there called "Spore Ruimteavonturen" (dutch for Spore Galactic Adventures). Dubbel click this new executable and of we go:&lt;br /&gt;&lt;a href="http://www.flickr.com/photos/24480190@N05/3654069231/" title="IMG_0795 by cast42, on Flickr"&gt;&lt;img src="http://farm4.static.flickr.com/3634/3654069231_1106aa67cc.jpg" width="500" height="375" alt="IMG_0795" /&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/13095557-4695119386453098468?l=castfortwo.blogspot.com'/&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/cast42/~4/OZkAvCw7WtI" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://castfortwo.blogspot.com/feeds/4695119386453098468/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="https://www.blogger.com/comment.g?blogID=13095557&amp;postID=4695119386453098468" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/13095557/posts/default/4695119386453098468?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/13095557/posts/default/4695119386453098468?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/cast42/~3/OZkAvCw7WtI/spore-galactic-adventure-released-in.html" title="Spore Galactic Adventure Released in Europe, today 23 June 2009" /><author><name>cast42</name><uri>http://www.blogger.com/profile/15954114607504297643</uri><email>noreply@blogger.com</email><gd:extendedProperty name="OpenSocialUserId" value="03976202936616300919" /></author><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total><feedburner:origLink>http://castfortwo.blogspot.com/2009/06/spore-galactic-adventure-released-in.html</feedburner:origLink></entry><entry gd:etag="W/&quot;A0EASH0yfip7ImA9WxJSEko.&quot;"><id>tag:blogger.com,1999:blog-13095557.post-4349079990903284769</id><published>2009-05-02T17:35:00.004+02:00</published><updated>2009-05-02T17:54:09.396+02:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2009-05-02T17:54:09.396+02:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="standards" /><title>links to JPEG images in ATOM feed entries must be typed image/jpeg</title><content type="html">After some debugging, I found a nasty bug in an ATOM feed that validated by the W3C validator service. I was trying to parse image url's out of an ATOM feed. ATOM 1.0  feeds are defined by the &lt;a href="http://www.ietf.org/rfc/rfc4287"&gt;RFC 4287&lt;/a&gt;. In paragraph "&lt;span style="font-family: courier new;"&gt;4.2.7.3.  The "type" Attribute&lt;/span&gt;" it is defined that the type must conform to the syntax of a MIME media type. The MIME media type is in turn defined by &lt;a href="http://tools.ietf.org/html/rfc4288"&gt;RFC 4288&lt;/a&gt;. Media type registrations are listed by the IANA at: &lt;a href="http://www.iana.org/assignments/media-types/"&gt;http://www.iana.org/assignments/media-types/&lt;/a&gt;&lt;br /&gt;If we look up &lt;a href="http://www.iana.org/assignments/media-types/image/"&gt;the media subtypes of image/&lt;/a&gt; we find that JPEG images have MIME type image/jpeg . The feed I was parsing had images  with MIME type &lt;span style="font-family: courier new;"&gt;image/jpg&lt;/span&gt; instead of &lt;span style="font-family: courier new;"&gt;image/jpeg &lt;/span&gt;as it should have been. Apparently the W3C validator does not validate the type of links. I reported the bug/unconformence. Hopely it will be fixed soon.&lt;br /&gt;A &lt;a href="http://www.w3schools.com/media/media_mimeref.asp"&gt;handy list with all MIME types&lt;/a&gt; to be used as reference is also provided by w3cschools.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/13095557-4349079990903284769?l=castfortwo.blogspot.com'/&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/cast42/~4/HJjueoKQAoY" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://castfortwo.blogspot.com/feeds/4349079990903284769/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="https://www.blogger.com/comment.g?blogID=13095557&amp;postID=4349079990903284769" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/13095557/posts/default/4349079990903284769?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/13095557/posts/default/4349079990903284769?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/cast42/~3/HJjueoKQAoY/links-to-jpeg-images-in-atom-feed.html" title="links to JPEG images in ATOM feed entries must be typed image/jpeg" /><author><name>cast42</name><uri>http://www.blogger.com/profile/15954114607504297643</uri><email>noreply@blogger.com</email><gd:extendedProperty name="OpenSocialUserId" value="03976202936616300919" /></author><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total><feedburner:origLink>http://castfortwo.blogspot.com/2009/05/links-to-jpeg-images-in-atom-feed.html</feedburner:origLink></entry><entry gd:etag="W/&quot;C0AAQng_fCp7ImA9WxVUEkU.&quot;"><id>tag:blogger.com,1999:blog-13095557.post-1771268744953870384</id><published>2009-03-17T09:55:00.003+01:00</published><updated>2009-03-17T10:22:23.644+01:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2009-03-17T10:22:23.644+01:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="imovie" /><category scheme="http://www.blogger.com/atom/ns#" term="youtube" /><category scheme="http://www.blogger.com/atom/ns#" term="apple" /><title>First experiment with Imovie '09</title><content type="html">This weekend I bought &lt;a href="http://www.apple.com/ilife/"&gt;Ilife '09&lt;/a&gt; for the mac. The software packet has four components : Iphoto, Imovie, Garageband and Iweb. So I played around with Imovie '09 and made a small project with my ski trip movies I shot with an &lt;a href="http://www.steves-digicams.com/2008_reviews/panasonic_fs3.html"&gt;Panasonic DMC-FS3&lt;/a&gt;. The movies are 640x480 and come in a .mov file container. The video tracks are encoded in Photo Jpeg and the audio tracks are in 8-bit unsigned mono 8KHz. The resulting movie project is uploaded to Youtube by Imovie's built in share function. Here's the result:&lt;br /&gt;&lt;object width="480" height="295"&gt;&lt;param name="movie" value="http://www.youtube.com/v/v5K4z5ybXAw&amp;hl=nl&amp;fs=1"&gt;&lt;/param&gt;&lt;param name="allowFullScreen" value="true"&gt;&lt;/param&gt;&lt;param name="allowscriptaccess" value="always"&gt;&lt;/param&gt;&lt;embed src="http://www.youtube.com/v/v5K4z5ybXAw&amp;hl=nl&amp;fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="480" height="295"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;br /&gt;The &lt;a href="http://2dboy.com/2009/01/20/world-of-goo-soundtrack-now-available-for-download/"&gt;soundtrack&lt;/a&gt; is from World of Goo. The track is "Brave Adventure" by Kyle Gabler.&lt;br /&gt;&lt;br /&gt;I really enjoyed using Imovie'09 for this task. I works fast and intuitive. It proves that the choice to abandon the timeline is really working out for consumer oriented movie editing. Time will tell if this will also hold for professional editing. Imovie'09 has an export to Final Cut Pro (Apple professional editing program). Hence an escaped path is on board.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/13095557-1771268744953870384?l=castfortwo.blogspot.com'/&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/cast42/~4/vZNZpgNcclU" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://castfortwo.blogspot.com/feeds/1771268744953870384/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="https://www.blogger.com/comment.g?blogID=13095557&amp;postID=1771268744953870384" title="1 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/13095557/posts/default/1771268744953870384?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/13095557/posts/default/1771268744953870384?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/cast42/~3/vZNZpgNcclU/first-experiment-with-imovie-09.html" title="First experiment with Imovie '09" /><author><name>cast42</name><uri>http://www.blogger.com/profile/15954114607504297643</uri><email>noreply@blogger.com</email><gd:extendedProperty name="OpenSocialUserId" value="03976202936616300919" /></author><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">1</thr:total><feedburner:origLink>http://castfortwo.blogspot.com/2009/03/first-experiment-with-imovie-09.html</feedburner:origLink></entry><entry gd:etag="W/&quot;DEcAQXk_cSp7ImA9WxVVEkg.&quot;"><id>tag:blogger.com,1999:blog-13095557.post-8950127667320629486</id><published>2009-03-05T13:16:00.004+01:00</published><updated>2009-03-05T13:27:20.749+01:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2009-03-05T13:27:20.749+01:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="holiday" /><title>Back from ski trip</title><content type="html">&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_FRy3Wbrk89M/Sa_DAchRVYI/AAAAAAAAD_Q/6B9L25kILtA/s1600-h/P1000592.JPG"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 320px; height: 240px;" src="http://4.bp.blogspot.com/_FRy3Wbrk89M/Sa_DAchRVYI/AAAAAAAAD_Q/6B9L25kILtA/s320/P1000592.JPG" alt="" id="BLOGGER_PHOTO_ID_5309676898116261250" border="0" /&gt;&lt;/a&gt;&lt;span style="font-family: lucida grande;"&gt;Back from a skitrip in &lt;/span&gt;&lt;a style="font-family: lucida grande;" href="http://maps.google.com/maps?f=q&amp;amp;source=s_q&amp;amp;hl=en&amp;amp;geocode=&amp;amp;q=nassfeld,+austria+hotel+berghof&amp;amp;sll=47.052862,13.05631&amp;amp;sspn=0.040701,0.111494&amp;amp;g=nassfeld,+austria&amp;amp;ie=UTF8&amp;amp;ll=46.560786,13.276634&amp;amp;spn=0.004957,0.013937&amp;amp;t=h&amp;amp;z=17"&gt;Nassfeld, Austria in Hotel Berghof &lt;/a&gt;&lt;span style="font-family: lucida grande;"&gt;with the &lt;/span&gt;&lt;a style="font-family: lucida grande;" href="http://www.sportyvzw.be/index.php?id=104"&gt;Sporty organisation&lt;/a&gt;&lt;span style="font-family: lucida grande;"&gt;. Enjoyed good things in life.&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;script src="http://s.bit.ly/bitlypreview.js" language="javascript"&gt;&lt;/script&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/13095557-8950127667320629486?l=castfortwo.blogspot.com'/&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/cast42/~4/drenVI7exDA" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://castfortwo.blogspot.com/feeds/8950127667320629486/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="https://www.blogger.com/comment.g?blogID=13095557&amp;postID=8950127667320629486" title="1 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/13095557/posts/default/8950127667320629486?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/13095557/posts/default/8950127667320629486?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/cast42/~3/drenVI7exDA/back-from-ski-trip.html" title="Back from ski trip" /><author><name>cast42</name><uri>http://www.blogger.com/profile/15954114607504297643</uri><email>noreply@blogger.com</email><gd:extendedProperty name="OpenSocialUserId" value="03976202936616300919" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://4.bp.blogspot.com/_FRy3Wbrk89M/Sa_DAchRVYI/AAAAAAAAD_Q/6B9L25kILtA/s72-c/P1000592.JPG" height="72" width="72" /><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">1</thr:total><feedburner:origLink>http://castfortwo.blogspot.com/2009/03/back-from-ski-trip.html</feedburner:origLink></entry><entry gd:etag="W/&quot;A0ECRn08eip7ImA9WxVXFkQ.&quot;"><id>tag:blogger.com,1999:blog-13095557.post-8805238863123685742</id><published>2009-02-15T12:26:00.007+01:00</published><updated>2009-02-15T13:07:47.372+01:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2009-02-15T13:07:47.372+01:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="nokia" /><category scheme="http://www.blogger.com/atom/ns#" term="howto" /><category scheme="http://www.blogger.com/atom/ns#" term="syncml" /><category scheme="http://www.blogger.com/atom/ns#" term="google" /><title>Sync Nokia 6124 Classic contacts with Google Sync via SyncML</title><content type="html">&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://www.itechnews.net/wp-content/uploads/2008/03/nokia-6124-classic-3g-phone.jpg"&gt;&lt;img style="margin: 0pt 0pt 10px 10px; float: right; cursor: pointer; width: 400px; height: 444px;" src="http://www.itechnews.net/wp-content/uploads/2008/03/nokia-6124-classic-3g-phone.jpg" alt="" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;I own a &lt;a href="http://europe.nokia.com/A4997462"&gt;Nokia 6124 Classic&lt;/a&gt; since a  few months. It's the entry model employees get from my employer. Since I work on mac, I could not sync the contacts because &lt;a href="http://discussions.europe.nokia.com/discussions/board/message?board.id=pcsuite&amp;amp;thread.id=31227"&gt;there is no free Isync plugin available yet&lt;/a&gt;. Recently, &lt;a href="http://www.google.com/mobile/default/sync.html"&gt;Google Sync&lt;/a&gt; was announced. It worked very good to sync my contactc on my Iphone with my Google contacts. I use Google Contact as my main database. Hence, I begun to wonder if I could sync my Nokia using Google Sync. Based upon &lt;a href="http://www.google.com/support/mobile/bin/topic.py?topic=14298"&gt;the instructions from Google for another type of Nokia phone&lt;/a&gt;, I was able to derive a working setup. Here are the instructions:&lt;br /&gt;   &lt;ol&gt;&lt;li&gt;From the main menu, go to the "Settings" folder and select "Connectivity".&lt;/li&gt;&lt;li name="bullet-point" id="4"&gt;From the Sync screen, select "Options"-&gt;"New sync profile" and enter the following:&lt;span&gt;&lt;/span&gt;&lt;/li&gt;&lt;li name="bullet-point" id="4"&gt;&lt;span&gt;Sync profile name:&lt;/span&gt; Google Sync&lt;/li&gt;&lt;li name="bullet-point" id="4"&gt;Select "Applications" then "Contacts"&lt;span&gt;&lt;/span&gt;&lt;/li&gt;&lt;li name="bullet-point" id="4"&gt;&lt;span&gt;Include in sync:&lt;/span&gt; Yes&lt;span&gt;&lt;/span&gt;&lt;/li&gt;&lt;li name="bullet-point" id="4"&gt;&lt;span&gt;Remote database:&lt;/span&gt; contacts&lt;span&gt;&lt;/span&gt;&lt;/li&gt;&lt;li name="bullet-point" id="4"&gt;&lt;span&gt;Synchronisation type:&lt;/span&gt; Both Ways&lt;br /&gt;&lt;/li&gt;&lt;li name="bullet-point" id="10"&gt;Select "Back" then "Back" then "Connection settings"&lt;span&gt;&lt;/span&gt;&lt;/li&gt;&lt;li name="bullet-point" id="10"&gt;&lt;span&gt;Server version:&lt;/span&gt; 1.2&lt;/li&gt;&lt;li name="bullet-point" id="10"&gt;Server ID: Google&lt;span&gt;&lt;/span&gt;&lt;/li&gt;&lt;li name="bullet-point" id="10"&gt;&lt;span&gt;Data bearer:&lt;/span&gt; Internet&lt;span&gt;&lt;/span&gt;&lt;/li&gt;&lt;li name="bullet-point" id="10"&gt;&lt;span&gt;Access point:&lt;/span&gt; Always ask&lt;span&gt;&lt;/span&gt;&lt;/li&gt;&lt;li name="bullet-point" id="10"&gt;&lt;span&gt;Host address:&lt;/span&gt;  https://m.google.com/syncml&lt;/li&gt;&lt;li name="bullet-point" id="10"&gt;Port: 80&lt;/li&gt;&lt;li name="bullet-point" id="10"&gt;Username: username@gmail.com (fill in your own username)&lt;/li&gt;&lt;li name="bullet-point" id="10"&gt;Password: the password of your Google Account&lt;password of="" your="" google="" account=""&gt;&lt;/password&gt;&lt;/li&gt;&lt;li name="bullet-point" id="10"&gt;Allow sync requests: Yes&lt;/li&gt;&lt;li name="bullet-point" id="10"&gt;Accept all sync requests: No&lt;/li&gt;&lt;li name="bullet-point" id="10"&gt;Network authentication: No&lt;/li&gt;&lt;li name="bullet-point" id="10"&gt;Select "Back", "Back" and then "Exit" to save the settings&lt;/li&gt;&lt;li name="bullet-point" id="10"&gt;You have now finished the setup&lt;/li&gt;&lt;/ol&gt;To perform the sync operation, take the following steps:&lt;br /&gt;&lt;ol&gt;&lt;li&gt;From the main Settings menu, select "Connectivity".&lt;/li&gt;&lt;li&gt;From the Connectivity menu, select "Sync"'&lt;/li&gt;&lt;li name="bullet-point" id="28"&gt;&lt;span&gt;&lt;/span&gt;Highlight your Google Sync Profile.&lt;/li&gt;&lt;li name="bullet-point" id="29"&gt;&lt;span&gt;&lt;/span&gt;Select "Options" and click "Synchronise".&lt;/li&gt;&lt;li name="bullet-point" id="29"&gt;Select your access point: Px Live (depends on your configuration)&lt;br /&gt;&lt;/li&gt;&lt;li name="bullet-point" id="30"&gt;That's it. Your 6124 Classic will now connect and sync its  phonebook with your Google Contacts. The contacts on your phone will appear in your google contacts and all your Google contact are stored into your phone. If you don't want this, change the value for the synchronization type set in step 7 of the setup&lt;/li&gt;&lt;/ol&gt;The synchronisation goes via Internet over the air (OTA). The next I would like to find out if i could pair the phone to my mac via Bluetooth and use the internet connection of my mac to do the synchronisation. I don't now if that possible. On the other hand, the synchronisation of my 800 contacts or so only took a few minutes, so I don't now its worth the hassle.&lt;br /&gt;&lt;br /&gt;&lt;script src="http://s.bit.ly/bitlypreview.js" language="javascript"&gt;&lt;/script&gt;&lt;script src="http://s.bit.ly/bitlypreview.js" language="javascript"&gt;&lt;/script&gt;&lt;script src="http://s.bit.ly/bitlypreview.js" language="javascript"&gt;&lt;/script&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/13095557-8805238863123685742?l=castfortwo.blogspot.com'/&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/cast42/~4/-_Yzl_MJ3kk" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://castfortwo.blogspot.com/feeds/8805238863123685742/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="https://www.blogger.com/comment.g?blogID=13095557&amp;postID=8805238863123685742" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/13095557/posts/default/8805238863123685742?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/13095557/posts/default/8805238863123685742?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/cast42/~3/-_Yzl_MJ3kk/sync-nokia-6124-classic-contacts-with.html" title="Sync Nokia 6124 Classic contacts with Google Sync via SyncML" /><author><name>cast42</name><uri>http://www.blogger.com/profile/15954114607504297643</uri><email>noreply@blogger.com</email><gd:extendedProperty name="OpenSocialUserId" value="03976202936616300919" /></author><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total><feedburner:origLink>http://castfortwo.blogspot.com/2009/02/sync-nokia-6124-classic-contacts-with.html</feedburner:origLink></entry><entry gd:etag="W/&quot;DEYNQXgzcCp7ImA9WxVSGE4.&quot;"><id>tag:blogger.com,1999:blog-13095557.post-6774468620799683468</id><published>2009-01-04T13:47:00.005+01:00</published><updated>2009-01-13T09:43:10.688+01:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2009-01-13T09:43:10.688+01:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="ea" /><category scheme="http://www.blogger.com/atom/ns#" term="osx" /><category scheme="http://www.blogger.com/atom/ns#" term="mac" /><category scheme="http://www.blogger.com/atom/ns#" term="spore" /><title>Login failed for EA Spore : solution on Mac OSX</title><content type="html">I bought the galactic version of Spore when it was released in Europe on 5 september 2008. Since then, me and my two kids of 8 and 10 years old, enjoyed playing it offline. Due to some strange reason, I could not get Spore online. The error messages were different over time but last month I got a message something was wrong with privileges. I tried to change my password but that did not help. Finally, I found "&lt;a href="http://support.ea.com/cgi-bin/ea.cfg/php/enduser/std_adp.php?p_faqid=20276&amp;amp;p_created=1220650791&amp;amp;p_sid=*5WBM3nj&amp;amp;p_accessibility=0&amp;amp;p_redirect=&amp;amp;p_lva=&amp;amp;p_sp=cF9zcmNoPSZwX3NvcnRfYnk9JnBfZ3JpZHNvcnQ9JnBfcm93X2NudD01NzEsNTcxJnBfcHJvZHM9JnBfY2F0cz0mcF9wdj0mcF9jdj0mcF9zZWFyY2hfdHlwZT1hbnN3ZXJzLnNlYXJjaF9ubCZwX3BhZ2U9MSZwX3NlYXJjaF90ZXh0PWNhbm5vdCBsb2dpbiBvbiBzcG9yZQ**&amp;amp;p_li=&amp;amp;p_topview=1"&gt;What do I do if I get the error: 'Login failed: You do not have the proper spore.com privileges'?&lt;/a&gt;" on the support site of EA. Unfortunately, the explanation is windows only. But after some sniffing around I found the login.prop file on OSX :&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_FRy3Wbrk89M/SWC1FB6sKvI/AAAAAAAADig/D-KSz5P-S34/s1600-h/Afbeelding+2.png"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 643px; height: 173px;" src="http://3.bp.blogspot.com/_FRy3Wbrk89M/SWC1FB6sKvI/AAAAAAAADig/D-KSz5P-S34/s400/Afbeelding+2.png" alt="" id="BLOGGER_PHOTO_ID_5287425060551535346" border="0" /&gt;&lt;/a&gt;You can find the file as follows:&lt;br /&gt;&lt;ol&gt;&lt;li&gt;Go to your home directory&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Double click on &lt;span style="font-weight: bold;"&gt;Library&lt;/span&gt;&lt;/li&gt;&lt;li&gt;Double click on &lt;span style="font-weight: bold;"&gt;Preferences&lt;/span&gt;&lt;/li&gt;&lt;li&gt;Double click on &lt;span style="font-weight: bold;"&gt;SPORE Preferences&lt;/span&gt;&lt;/li&gt;&lt;li&gt;Double click on &lt;span style="font-weight: bold;"&gt;p_drive&lt;/span&gt;&lt;/li&gt;&lt;li&gt;Double click on &lt;span style="font-weight: bold;"&gt;User&lt;/span&gt;&lt;/li&gt;&lt;li&gt;Double click on &lt;span style="font-weight: bold;"&gt;Application Data&lt;/span&gt;&lt;/li&gt;&lt;li&gt;Double click on &lt;span style="font-weight: bold;"&gt;Spore&lt;/span&gt;&lt;/li&gt;&lt;li&gt;Double click on &lt;span style="font-weight: bold;"&gt;Preferences&lt;/span&gt;&lt;/li&gt;&lt;li&gt;In this folder there will be a file &lt;strong&gt;login.prop&lt;/strong&gt;, right click and delete this file and try &lt;em&gt;Spore&lt;/em&gt; once again.&lt;/li&gt;&lt;/ol&gt;After the login.prop file was deleted, Spore asked for a new email/password/nickname combination (or you can login with you EA account). You can find our Spore creatures under the name&lt;a href="http://www.spore.com/view/profile/losesi"&gt; losesi&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;Happy sporing&lt;script src="http://s.bit.ly/bitlypreview.js" language="javascript"&gt;&lt;/script&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/13095557-6774468620799683468?l=castfortwo.blogspot.com'/&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/cast42/~4/ZZQv59FVGYM" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://castfortwo.blogspot.com/feeds/6774468620799683468/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="https://www.blogger.com/comment.g?blogID=13095557&amp;postID=6774468620799683468" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/13095557/posts/default/6774468620799683468?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/13095557/posts/default/6774468620799683468?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/cast42/~3/ZZQv59FVGYM/login-failed-for-ea-spore-solution-on.html" title="Login failed for EA Spore : solution on Mac OSX" /><author><name>cast42</name><uri>http://www.blogger.com/profile/15954114607504297643</uri><email>noreply@blogger.com</email><gd:extendedProperty name="OpenSocialUserId" value="03976202936616300919" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://3.bp.blogspot.com/_FRy3Wbrk89M/SWC1FB6sKvI/AAAAAAAADig/D-KSz5P-S34/s72-c/Afbeelding+2.png" height="72" width="72" /><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total><feedburner:origLink>http://castfortwo.blogspot.com/2009/01/login-failed-for-ea-spore-solution-on.html</feedburner:origLink></entry><entry gd:etag="W/&quot;DUMDQno8fyp7ImA9WxRbFko.&quot;"><id>tag:blogger.com,1999:blog-13095557.post-3993582400596449976</id><published>2008-12-07T10:23:00.005+01:00</published><updated>2008-12-07T20:17:53.477+01:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2008-12-07T20:17:53.477+01:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="canon" /><category scheme="http://www.blogger.com/atom/ns#" term="innovation" /><category scheme="http://www.blogger.com/atom/ns#" term="apple" /><title>Canon EOS 5D Mark II : a game changer</title><content type="html">Recently, Canon made available a new picture camera that might become a game changer. A good preview, based on a preproduction sample, is made by &lt;a href="http://www.dpreview.com/previews/canoneos5dmarkii/"&gt;dpreview&lt;/a&gt;. The reason that this camera generates high expectations is twofold : a 35mm (full frame) sensor and the new Digic 4 processor. The large sensor means wide angle shots and excellent low light performance. The new digic 4 processor means that now you can record video from that excellent sensor with a resolution of 1920x1080 pixels (Full HD) at 30 frames per second. Hence, we might see a crossover happening from the photo camera business to the video camera's. The first results are indeed stunning. First, there's a professional made movie called "&lt;a href="http://www.usa.canon.com/dlc/controller?act=GetArticleAct&amp;articleID=2326"&gt;Reverie&lt;/a&gt;". A second movie, made with much lower budget, still captures my imagination:&lt;br /&gt;&lt;object width="400" height="225"&gt;&lt;param name="allowfullscreen" value="true" /&gt;&lt;param name="allowscriptaccess" value="always" /&gt;&lt;param name="movie" value="http://vimeo.com/moogaloop.swf?clip_id=2125645&amp;amp;server=vimeo.com&amp;amp;show_title=1&amp;amp;show_byline=1&amp;amp;show_portrait=0&amp;amp;color=&amp;amp;fullscreen=1" /&gt;&lt;embed src="http://vimeo.com/moogaloop.swf?clip_id=2125645&amp;amp;server=vimeo.com&amp;amp;show_title=1&amp;amp;show_byline=1&amp;amp;show_portrait=0&amp;amp;color=&amp;amp;fullscreen=1" type="application/x-shockwave-flash" allowfullscreen="true" allowscriptaccess="always" width="400" height="225"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;br /&gt;&lt;a href="http://vimeo.com/2125645"&gt;Tokyo Reality (Canon 5D MarkII)&lt;/a&gt; from &lt;a href="http://vimeo.com/utsuru"&gt;utsuru&lt;/a&gt; on &lt;a href="http://vimeo.com"&gt;Vimeo&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;The resulting movie files are Quicktime Movies encoded using MPEG-4 AVC and uncompressed PCM sound (a total of 38.6 Megabits/second).&lt;br /&gt;&lt;br /&gt;I asked &lt;a href="http://eirikso.com/"&gt;Eirik Solheim&lt;/a&gt; (Project manager, development department&lt;br /&gt;at the Norwegian Broadcasting Corporation (NRK)), who already has an &lt;a href="http://eirikso.com/2008/11/28/canon-5d-mark-ii-in-da-house/#comments"&gt;Canon Eos 5D Mark II two questions&lt;/a&gt;:&lt;ol&gt;&lt;li&gt;How is the process of getting the video into Final Cut Pro. Is there decoding/transcoding going on. If yes, does that take time ?&lt;br /&gt;&lt;span style="font-weight:bold;"&gt;Answer: &lt;/span&gt;You don’t have to transcode, but at this point you would probably end up transcoding: the files are standard H264 and can be edited directly in Final Cut. But the problem is that you need very powerful hardware to edit full HD H264 in Final Cut. If you want to edit on a laptop you have to transcode to Apple Intermediate or another less compressed format.&lt;/li&gt;&lt;br /&gt;&lt;li&gt;Video quality is amazing judging the videos that already circulating in the net. But how about audio ? How does the build-in microphone performs and what do you get if you connect an external passive microphone. This issue will determine if external audio recording is still necessary or not.&lt;br /&gt;&lt;span style="font-weight:bold;"&gt;Answer:&lt;/span&gt; With the tests we have done the audio is OK, but not good. Using the internal mic on the camera has serious limitations of course. Picking up the sound of all operations you do on the camera and the image stabilizer motor if you use an IS lens. With an external mic it is better, but still a bit noisy.&lt;br /&gt;For professional productions you would be better off recording audio with a separate device. For interviews and simple background audio you could do with the built in audio and preferably with an external mic.&lt;/li&gt;&lt;/ol&gt;&lt;br /&gt;To test how my macbook pro with a 2.33 GHZ Intel Core 2 Duo processor would be able to handle the HD files, &lt;a href="http://www.akihabaranews.com/en/news-17029-Download+Now+our+Full+HD+Canon%27s+5D+Mark+II+Video+%3A+The+World%27s+First+Forbidden+HD+Video.html"&gt;I downloaded the full HD version of "Tokyo Reality" via bittorrent&lt;/a&gt;. Playback on the macbook pro was unfortunately not smooth. On an Imac, playback was perfect. Hence, I guess my macbook pro will not be powerfull enough for working with Full HD files coming from the Canon 5D. Maybe a new technology, called OpenCl (Open Computing Language), will solve this issue. OpenCl makes it possible for developers to efficiently tap the vast gigaflops of computing power currently locked up in the graphics processing unit (GPU). With GPUs approaching processing speeds of a trillion operations per second, they’re capable of considerably more than just drawing pictures. OpenCL takes that power and redirects it for general-purpose computing. OpenCl is a new powerful &lt;a href="http://www.apple.com/macosx/snowleopard/"&gt;Snow Leopard&lt;/a&gt; technology.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/13095557-3993582400596449976?l=castfortwo.blogspot.com'/&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/cast42/~4/EodBpzYy0nk" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://castfortwo.blogspot.com/feeds/3993582400596449976/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="https://www.blogger.com/comment.g?blogID=13095557&amp;postID=3993582400596449976" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/13095557/posts/default/3993582400596449976?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/13095557/posts/default/3993582400596449976?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/cast42/~3/EodBpzYy0nk/canon-eos-5d-mark-ii-game-changer.html" title="Canon EOS 5D Mark II : a game changer" /><author><name>cast42</name><uri>http://www.blogger.com/profile/15954114607504297643</uri><email>noreply@blogger.com</email><gd:extendedProperty name="OpenSocialUserId" value="03976202936616300919" /></author><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total><feedburner:origLink>http://castfortwo.blogspot.com/2008/12/canon-eos-5d-mark-ii-game-changer.html</feedburner:origLink></entry><entry gd:etag="W/&quot;AkYAQ34yeip7ImA9WxRUEko.&quot;"><id>tag:blogger.com,1999:blog-13095557.post-2508489594742668163</id><published>2008-11-05T10:22:00.009+01:00</published><updated>2008-11-21T15:35:42.092+01:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2008-11-21T15:35:42.092+01:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="technology" /><category scheme="http://www.blogger.com/atom/ns#" term="news" /><category scheme="http://www.blogger.com/atom/ns#" term="wifi" /><title>Wifi on steriods in the USA</title><content type="html">&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://img.skitch.com/20081105-b4yb6p1h2gg9weidwjaht21uwd.png"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 401px; height: 300px;" src="http://img.skitch.com/20081105-b4yb6p1h2gg9weidwjaht21uwd.png" border="0" alt="" /&gt;&lt;/a&gt;&lt;br /&gt;While all news is currently alloted to the presidential campaign and the election of Barack Obama, on Tuesday 4 November another important vote was casted. The American regulator of the airwaves, FCC (Federal Communications Commission), voted 5-0 for the use of the white spaces between the television channels. Current wifi equipment makes use of the 2,4 GHz band (or the 5GHz band for more modern equipment supporting 802.11a/n, for example Apple Airport Basestation Extreme). The new vote of the FCC means that new wifi equipment will be able to use the unused white space between the channels alloted to TV. Why is this important ? The reason is that the TV spectrum has better characteristics for in home use. The &lt;a href="http://en.wikipedia.org/wiki/UHF"&gt;UHF band&lt;/a&gt;, used for televison distribution, spans from 300MHz upto 3GHz. Lower frequencies have larger wavelength. Therefore they propagate better trough walls and other obstacles typically encountered in urban environments. It boils down that using the white space frequencies will lower the cost for providing ubiquitous wireless networks. Hopefully we will see more wide area wifi networks that provide free or cheap internet access in the near future.&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://media.arstechnica.com/news.media/whitespace_broadband-1.jpg"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 341px; height: 412px;" src="http://media.arstechnica.com/news.media/whitespace_broadband-1.jpg" border="0" alt="" /&gt;&lt;/a&gt;&lt;br /&gt;More info:&lt;br /&gt;&lt;ul&gt;&lt;br /&gt;&lt;li&gt;&lt;a href="http://googleblog.blogspot.com/2008/11/vote-for-broadband-in-white-spaces.html"&gt;A vote for broadband in the "white spaces"&lt;/a&gt;, Official Google Blog&lt;/li&gt;&lt;br /&gt;&lt;li&gt;&lt;a href="http://arstechnica.com/news.ars/post/20081104-open-skies-for-white-space-broadband-as-fcc-gives-thumbs-up.html"&gt;Open skies for white space broadband as FCC gives thumbs up&lt;/a&gt;, Ars technica&lt;/li&gt;&lt;br /&gt;&lt;li&gt;&lt;a href="http://www.techcrunch.com/2008/11/04/googles-election-day-victory-fcc-approves-unlicensed-use-of-white-spaces-spectrum/"&gt;Google’s Election-Day Victory: FCC Approves Unlicensed Use Of “White Spaces” Spectrum&lt;/a&gt;, Techcrunch&lt;/li&gt;&lt;br /&gt;&lt;li&gt;&lt;a href="http://geekandpoke.typepad.com/geekandpoke/2008/11/simply-explained---part-21.html"&gt;Simply Explained&lt;/a&gt;, Cartoon by Geek and Poke&lt;/li&gt;&lt;br /&gt;&lt;li&gt;&lt;a href="http://www.telecommagazine.com/article.asp?HH_ID=AR_4607"&gt;FCC okays white space spectrum for wireless service&lt;/a&gt;, Telecom Magazine (thx, Kris for the tip)&lt;/li&gt;&lt;br /&gt;&lt;/ul&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/13095557-2508489594742668163?l=castfortwo.blogspot.com'/&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/cast42/~4/n3UA7xIoVlI" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://castfortwo.blogspot.com/feeds/2508489594742668163/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="https://www.blogger.com/comment.g?blogID=13095557&amp;postID=2508489594742668163" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/13095557/posts/default/2508489594742668163?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/13095557/posts/default/2508489594742668163?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/cast42/~3/n3UA7xIoVlI/wifi-on-steriods-in-usa.html" title="Wifi on steriods in the USA" /><author><name>cast42</name><uri>http://www.blogger.com/profile/15954114607504297643</uri><email>noreply@blogger.com</email><gd:extendedProperty name="OpenSocialUserId" value="03976202936616300919" /></author><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total><feedburner:origLink>http://castfortwo.blogspot.com/2008/11/wifi-on-steriods-in-usa.html</feedburner:origLink></entry><entry gd:etag="W/&quot;DEcCSHg8cSp7ImA9WxRQFkk.&quot;"><id>tag:blogger.com,1999:blog-13095557.post-8752416693744819966</id><published>2008-10-10T15:39:00.002+02:00</published><updated>2008-10-10T15:41:09.679+02:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2008-10-10T15:41:09.679+02:00</app:edited><title>On the workfloor</title><content type="html">&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_FRy3Wbrk89M/SO9bUCYYJ2I/AAAAAAAACpM/SLusPl7vffc/s1600-h/IMG_0085.JPG"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;" src="http://2.bp.blogspot.com/_FRy3Wbrk89M/SO9bUCYYJ2I/AAAAAAAACpM/SLusPl7vffc/s400/IMG_0085.JPG" border="0" alt=""id="BLOGGER_PHOTO_ID_5255519689959286626" /&gt;&lt;/a&gt;&lt;br /&gt;My collegue is wearing this T-shirt this week.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/13095557-8752416693744819966?l=castfortwo.blogspot.com'/&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/cast42/~4/DKT_iewhAxo" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://castfortwo.blogspot.com/feeds/8752416693744819966/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="https://www.blogger.com/comment.g?blogID=13095557&amp;postID=8752416693744819966" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/13095557/posts/default/8752416693744819966?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/13095557/posts/default/8752416693744819966?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/cast42/~3/DKT_iewhAxo/on-workfloor.html" title="On the workfloor" /><author><name>cast42</name><uri>http://www.blogger.com/profile/15954114607504297643</uri><email>noreply@blogger.com</email><gd:extendedProperty name="OpenSocialUserId" value="03976202936616300919" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://2.bp.blogspot.com/_FRy3Wbrk89M/SO9bUCYYJ2I/AAAAAAAACpM/SLusPl7vffc/s72-c/IMG_0085.JPG" height="72" width="72" /><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total><feedburner:origLink>http://castfortwo.blogspot.com/2008/10/on-workfloor.html</feedburner:origLink></entry><entry gd:etag="W/&quot;CEIEQH4yfCp7ImA9WxRRFk8.&quot;"><id>tag:blogger.com,1999:blog-13095557.post-1758825338230611176</id><published>2008-09-28T19:11:00.003+02:00</published><updated>2008-09-28T19:21:41.094+02:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2008-09-28T19:21:41.094+02:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="iphone" /><category scheme="http://www.blogger.com/atom/ns#" term="apple" /><title>Iphone friendly version of this blog cast42</title><content type="html">Apple's Iphone and Ipod Touch can render this blog using mobile Safari out of the box. Unfortunatly, this might not really what you want. Webservice &lt;a href="http://www.doyoufeed.com/us/index.php"&gt;DoYouFeed.com&lt;/a&gt; allows for for an Iphone friendly rendering. Fill in the feed address of your blog, choose a theme and click. Et voila, a link to an iphone optimized rendering appears. You can see the result for this blog at &lt;a href="http://tinyurl.com/4cgap6"&gt;http://tinyurl.com/4cgap6&lt;/a&gt; . It looks like this :&lt;br /&gt;&lt;img src="http://img.skitch.com/20080928-m8g81jmx6ej858ha6bpmsgt27a.png" alt="DoYouFeed.com: Turn any RSS feed into an iPhone friendly site"/&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/13095557-1758825338230611176?l=castfortwo.blogspot.com'/&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/cast42/~4/srmtMWtR-aU" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://castfortwo.blogspot.com/feeds/1758825338230611176/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="https://www.blogger.com/comment.g?blogID=13095557&amp;postID=1758825338230611176" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/13095557/posts/default/1758825338230611176?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/13095557/posts/default/1758825338230611176?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/cast42/~3/srmtMWtR-aU/iphone-friendly-version-of-this-blog.html" title="Iphone friendly version of this blog cast42" /><author><name>cast42</name><uri>http://www.blogger.com/profile/15954114607504297643</uri><email>noreply@blogger.com</email><gd:extendedProperty name="OpenSocialUserId" value="03976202936616300919" /></author><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total><feedburner:origLink>http://castfortwo.blogspot.com/2008/09/iphone-friendly-version-of-this-blog.html</feedburner:origLink></entry><entry gd:etag="W/&quot;AkIGSX44eyp7ImA9WxRSFUs.&quot;"><id>tag:blogger.com,1999:blog-13095557.post-4557356503771599986</id><published>2008-09-16T14:32:00.002+02:00</published><updated>2008-09-16T14:35:28.033+02:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2008-09-16T14:35:28.033+02:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="google" /><title>Attending Google Developers Days in London</title><content type="html">&lt;a href="http://code.google.com/events/developerday/2008/"&gt;Google is doing a tour around Europe&lt;/a&gt; to get into contact with the developers. Today, I'm attending the developer day in London at the Wembley station. More later.&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://s3.amazonaws.com/twitpic/photos/full/550219.jpg?AWSAccessKeyId=0ZRYP5X5F6FSMBCCSE82&amp;Expires=1221568978&amp;Signature=fIQmeKj%2FCt%2BnqK%2FqyngHXsuyKss%3D"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 400px;" src="http://s3.amazonaws.com/twitpic/photos/full/550219.jpg?AWSAccessKeyId=0ZRYP5X5F6FSMBCCSE82&amp;Expires=1221568978&amp;Signature=fIQmeKj%2FCt%2BnqK%2FqyngHXsuyKss%3D" border="0" alt="" /&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/13095557-4557356503771599986?l=castfortwo.blogspot.com'/&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/cast42/~4/GkZZHjQHpO4" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://castfortwo.blogspot.com/feeds/4557356503771599986/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="https://www.blogger.com/comment.g?blogID=13095557&amp;postID=4557356503771599986" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/13095557/posts/default/4557356503771599986?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/13095557/posts/default/4557356503771599986?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/cast42/~3/GkZZHjQHpO4/attending-google-developers-days-in.html" title="Attending Google Developers Days in London" /><author><name>cast42</name><uri>http://www.blogger.com/profile/15954114607504297643</uri><email>noreply@blogger.com</email><gd:extendedProperty name="OpenSocialUserId" value="03976202936616300919" /></author><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total><feedburner:origLink>http://castfortwo.blogspot.com/2008/09/attending-google-developers-days-in.html</feedburner:origLink></entry><entry gd:etag="W/&quot;CEUERXw_fSp7ImA9WxRTGEg.&quot;"><id>tag:blogger.com,1999:blog-13095557.post-3463280308596437929</id><published>2008-09-07T20:59:00.005+02:00</published><updated>2008-09-08T07:36:44.245+02:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2008-09-08T07:36:44.245+02:00</app:edited><title>Added Google Followers to this blog</title><content type="html">Google has released a feature that allows you to subscribe to a blog and appear in a public list of all other followers of it. More info by Ionut Alex Chitu on his &lt;a href="http://googlesystem.blogspot.com/2008/09/blogger-followers-new-social.html"&gt;Google Operating System&lt;/a&gt; blog. As an experiment, I added this feature to my cast42 blog. Currently, it looks like this:&lt;br /&gt;&lt;img src="http://img.skitch.com/20080907-nd6akc2y1i29ddq2sgpa72m49e.jpg" alt="cast42"/&gt;&lt;br /&gt;A bit sad, zero followers. Probably, this fact, that you have to start from zero, will hamper the adoption of this new feature. Who likes to admit there are no followers ? Secondly, I now have to take the risc that no people are willing to follow cast42 via this new feature. That's a kind of social popularity test. Let's hope that you, yes you, my dear vistors, quickly change that for me ;-) If not, i will have move the followers gadget down under the horizon on the sidebar of this blog and eventually remove it if this social feature doesn't gain traction. So lets see what happens.&lt;br /&gt;&lt;br /&gt;UPDATE Sunday 7 september 2008, 21u51: Thx to &lt;a href="http://www.studiomuscle.com/blog/"&gt;Hendrik&lt;/a&gt; the count changed from zero to one. And you can follow yourself. So now we are with two.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/13095557-3463280308596437929?l=castfortwo.blogspot.com'/&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/cast42/~4/VvfpFlq-WlM" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://castfortwo.blogspot.com/feeds/3463280308596437929/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="https://www.blogger.com/comment.g?blogID=13095557&amp;postID=3463280308596437929" title="4 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/13095557/posts/default/3463280308596437929?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/13095557/posts/default/3463280308596437929?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/cast42/~3/VvfpFlq-WlM/added-google-followers-to-this-blog.html" title="Added Google Followers to this blog" /><author><name>cast42</name><uri>http://www.blogger.com/profile/15954114607504297643</uri><email>noreply@blogger.com</email><gd:extendedProperty name="OpenSocialUserId" value="03976202936616300919" /></author><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">4</thr:total><feedburner:origLink>http://castfortwo.blogspot.com/2008/09/added-google-followers-to-this-blog.html</feedburner:origLink></entry><entry gd:etag="W/&quot;DEMGQ3Y9cCp7ImA9WxRTGEw.&quot;"><id>tag:blogger.com,1999:blog-13095557.post-426991106248266388</id><published>2008-09-06T14:48:00.010+02:00</published><updated>2008-09-07T21:40:22.868+02:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2008-09-07T21:40:22.868+02:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="games" /><category scheme="http://www.blogger.com/atom/ns#" term="spore" /><title>Spore arrived in Belgium, workaround for @ sign on mac</title><content type="html">&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_FRy3Wbrk89M/SMJ8UMw1nsI/AAAAAAAACjQ/CdBoqMJOqKU/s1600-h/IMG_9771.JPG"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;" src="http://2.bp.blogspot.com/_FRy3Wbrk89M/SMJ8UMw1nsI/AAAAAAAACjQ/CdBoqMJOqKU/s400/IMG_9771.JPG" border="0" alt=""id="BLOGGER_PHOTO_ID_5242889602677972674" /&gt;&lt;/a&gt;&lt;br /&gt;After years of salivation, dreaming and projecting, the mother of all games finally arrived. I just walked into the Fnac of Leuven in Belgium and bought the galactic version for 64,99 euros (the standard version was 54,99 euros). My collegues warned me that I was expecting so much from the game that I could be nothing else but dissappointed. However after the first few hours of play I'm still very excited by the game. It could very well be that Will Wright and his team created another master piece.&lt;br /&gt;&lt;br /&gt;Installation on the iMac went smooth. Registration didn't succeed. First, the bug that prevents entering the @ sign on a belgian / belgium keyboard was not solved yet. Just pressing the key with the @ sign doesn't work. A workaround is to use another key shortcut. Type the option &amp;#8997; key and the ` key (that's the key left of the enter key and above the shift key on the right, the superscript is the &amp;#163; sign). That resolved entering the email addres but then Spore refused to register. Trying a previous account created with the Spore creature editor also failed. Probably, the Spore servers are overwhelmed. Lukily, you can start to play. My seven years old son claim: "dad, this is much better then runescape" !&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight:bold;"&gt;UPDATE:&lt;/span&gt; sunday 7 september 2008:19u30, I got an confirmation mail from EA stating that my registration was successful.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/13095557-426991106248266388?l=castfortwo.blogspot.com'/&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/cast42/~4/3gJU91lk0hE" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://castfortwo.blogspot.com/feeds/426991106248266388/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="https://www.blogger.com/comment.g?blogID=13095557&amp;postID=426991106248266388" title="1 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/13095557/posts/default/426991106248266388?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/13095557/posts/default/426991106248266388?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/cast42/~3/3gJU91lk0hE/spore-arrived-in-belgium-workaround-for.html" title="Spore arrived in Belgium, workaround for @ sign on mac" /><author><name>cast42</name><uri>http://www.blogger.com/profile/15954114607504297643</uri><email>noreply@blogger.com</email><gd:extendedProperty name="OpenSocialUserId" value="03976202936616300919" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://2.bp.blogspot.com/_FRy3Wbrk89M/SMJ8UMw1nsI/AAAAAAAACjQ/CdBoqMJOqKU/s72-c/IMG_9771.JPG" height="72" width="72" /><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">1</thr:total><feedburner:origLink>http://castfortwo.blogspot.com/2008/09/spore-arrived-in-belgium-workaround-for.html</feedburner:origLink></entry><entry gd:etag="W/&quot;C0YARX48cCp7ImA9WxdbF08.&quot;"><id>tag:blogger.com,1999:blog-13095557.post-4304711723470380845</id><published>2008-08-14T14:49:00.004+02:00</published><updated>2008-08-14T15:39:04.078+02:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2008-08-14T15:39:04.078+02:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="social" /><category scheme="http://www.blogger.com/atom/ns#" term="research" /><category scheme="http://www.blogger.com/atom/ns#" term="media" /><category scheme="http://www.blogger.com/atom/ns#" term="youtube" /><title>An anthropological introduction to YouTube</title><content type="html">presented by &lt;a href="http://www.ksu.edu/sasw/anthro/wesch.htm"&gt;Michael Wesch&lt;/a&gt; at the Library of Congress, June 23rd 2008.  He decided to forgo the PowerPoint and instead worked with students to prepare over 40 minutes of video for the 55 minute presentation. This is the result:&lt;br /&gt;&lt;object width="425" height="344"&gt;&lt;param name="movie" value="http://www.youtube.com/v/TPAO-lZ4_hU&amp;hl=nl&amp;fs=1"&gt;&lt;/param&gt;&lt;param name="allowFullScreen" value="true"&gt;&lt;/param&gt;&lt;embed src="http://www.youtube.com/v/TPAO-lZ4_hU&amp;hl=nl&amp;fs=1" type="application/x-shockwave-flash" allowfullscreen="true" width="425" height="344"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;br /&gt;&lt;a href="http://www.youtube.com/watch?v=TPAO-lZ4_hU"&gt;An anthropological introduction to YouTube&lt;/a&gt;&lt;br /&gt;I already builded the insight that it's not technology that shapes the future. More important is what people do or don't do with it. It is basically the message of &lt;a href="http://www.shirky.com/"&gt;Clay Shirky&lt;/a&gt;'s book "Here comes everybody". Still I found the video of Michael Wesch presentation more insightfull if you're interested in media as cultural and social phenomenon.&lt;br /&gt;&lt;br /&gt;More info: &lt;a href="http://mediatedcultures.net"&gt;http://mediatedcultures.net&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/13095557-4304711723470380845?l=castfortwo.blogspot.com'/&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/cast42/~4/jfeecOaTalI" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://castfortwo.blogspot.com/feeds/4304711723470380845/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="https://www.blogger.com/comment.g?blogID=13095557&amp;postID=4304711723470380845" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/13095557/posts/default/4304711723470380845?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/13095557/posts/default/4304711723470380845?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/cast42/~3/jfeecOaTalI/anthropological-introduction-to-youtube.html" title="An anthropological introduction to YouTube" /><author><name>cast42</name><uri>http://www.blogger.com/profile/15954114607504297643</uri><email>noreply@blogger.com</email><gd:extendedProperty name="OpenSocialUserId" value="03976202936616300919" /></author><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total><feedburner:origLink>http://castfortwo.blogspot.com/2008/08/anthropological-introduction-to-youtube.html</feedburner:origLink></entry><entry gd:etag="W/&quot;DUYGSH05eip7ImA9WxdbFkw.&quot;"><id>tag:blogger.com,1999:blog-13095557.post-1073783745223705024</id><published>2008-08-12T14:41:00.008+02:00</published><updated>2008-08-13T10:45:29.322+02:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2008-08-13T10:45:29.322+02:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="mobile" /><category scheme="http://www.blogger.com/atom/ns#" term="qrcode" /><category scheme="http://www.blogger.com/atom/ns#" term="technology" /><category scheme="http://www.blogger.com/atom/ns#" term="google" /><category scheme="http://www.blogger.com/atom/ns#" term="iphone" /><category scheme="http://www.blogger.com/atom/ns#" term="bbc" /><title>QR codes for mobile tagging</title><content type="html">A "Quick Response" or QR code is an image that can be decoded into an text. It's like a two-dimensional barcode. Here's an example:&lt;br /&gt;&lt;img src="http://qrcode.kaywa.com/img.php?s=12&amp;d=http%3A%2F%2Fcastfortwo.blogspot.com" alt="qrcode"  /&gt;&lt;br /&gt;Scanning this picture resolves into the URL of this blog: http://castfortwo.blogspot.com .&lt;br /&gt;&lt;br /&gt;This kind of pictures are typically used for tagging. Add the QR code picture to a thing, take a picture of the thing, decode the picture on the thing and there's the text. For example, a link to a website with product information.&lt;br /&gt;You can make your QR code yourself here : &lt;a href="http://qrcode.kaywa.com/"&gt;http://qrcode.kaywa.com/&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Using the Google Chart API, you can also &lt;a href="http://code.google.com/apis/chart/#qrcodes"&gt;generate QR codes&lt;/a&gt;. The URL &lt;br /&gt;&lt;code&gt;&lt;br /&gt;http://chart.apis.google.com/chart?chs=300x300&amp;alt;cht=qr&amp;alt;chl=Hello|World&lt;br /&gt;&lt;/code&gt;&lt;br /&gt;generates a QR code for "Hello World":&lt;br /&gt;&lt;img src="http://chart.apis.google.com/chart?chs=300x300&amp;cht=qr&amp;chl=Hello|World" alt="QR code of Hello World" /&gt;&lt;br /&gt;&lt;br /&gt;Changing the parameter chl to the URL of this blog:&lt;br /&gt;&lt;code&gt;&lt;br /&gt;http://chart.apis.google.com/chart?chs=300x300&amp;alt;cht=qr&amp;alt;chl=http://castfortwo.blogspot.com/&lt;br /&gt;&lt;/code&gt;&lt;br /&gt;gives:&lt;br /&gt;&lt;img src="http://chart.apis.google.com/chart?chs=300x300&amp;cht=qr&amp;chl=http://castfortwo.blogspot.com" alt="QR code for URL of Cast42 blog" /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.bbc.co.uk/programmes"&gt;Every BBC programme&lt;/a&gt; has also an QR code. Just add /qrcode to the URL.&lt;br /&gt;For example, the URL of the Top Gear programme is: &lt;br /&gt;&lt;code&gt;http://www.bbc.co.uk/programmes/b006mj59&lt;/code&gt;&lt;br /&gt;Adding /qrcode gives:&lt;br /&gt;&lt;code&gt;&lt;br /&gt;http://www.bbc.co.uk/programmes/b006mj59/qrcode&lt;br /&gt;&lt;/code&gt;&lt;br /&gt;which render to:&lt;br /&gt;&lt;img src="http://img.skitch.com/20080812-ewfyf2uqqbacm48p4yri3rb3ft.jpg" alt="BBC - Programmes - QRcode"/&gt;&lt;br /&gt;&lt;br /&gt;There are several free applications on the iphone that can decode QR codes:&lt;br /&gt;&lt;img src="http://img.skitch.com/20080812-ny6e1w6b33dkceyhdjkkjmgtw6.jpg" alt="iTunes"/&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;&lt;a href="http://phobos.apple.com/WebObjects/MZStore.woa/wa/viewSoftware?id=285683111&amp;mt=8"&gt;Barcode&lt;/a&gt;&lt;/li&gt;&lt;br /&gt;&lt;li&gt;&lt;a href="http://phobos.apple.com/WebObjects/MZStore.woa/wa/viewSoftware?id=284973754&amp;mt=8"&gt;NeoReader&lt;/a&gt;&lt;/li&gt;&lt;br /&gt;&lt;li&gt;&lt;a href="http://phobos.apple.com/WebObjects/MZStore.woa/wa/viewSoftware?id=286795499&amp;mt=8"&gt;iDecode&lt;/a&gt;&lt;/li&gt;&lt;br /&gt;&lt;li&gt;&lt;a href="http://phobos.apple.com/WebObjects/MZStore.woa/wa/viewSoftware?id=286060121&amp;mt=8"&gt;2D Sense&lt;/a&gt;&lt;/li&gt;&lt;br /&gt;&lt;/ul&gt;&lt;br /&gt;Several other mobile phones have such application to.&lt;br /&gt;&lt;br /&gt;The BBC has even succeeded in &lt;a href="http://whomwah.com/2008/03/12/more-fun-with-qr-codes-and-the-bbc-logo/"&gt;tampering the QR code for the bbb.co.uk/programes URL&lt;/a&gt; such that the BBC text is clearly readable:&lt;br /&gt;&lt;img src="http://farm4.static.flickr.com/3205/2697480521_f30226a75d.jpg?v=0" alt="QR code for bbc.co.uk/programmes" /&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/13095557-1073783745223705024?l=castfortwo.blogspot.com'/&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/cast42/~4/f59ex-c635I" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://castfortwo.blogspot.com/feeds/1073783745223705024/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="https://www.blogger.com/comment.g?blogID=13095557&amp;postID=1073783745223705024" title="3 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/13095557/posts/default/1073783745223705024?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/13095557/posts/default/1073783745223705024?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/cast42/~3/f59ex-c635I/qr-codes-for-mobile-tagging.html" title="QR codes for mobile tagging" /><author><name>cast42</name><uri>http://www.blogger.com/profile/15954114607504297643</uri><email>noreply@blogger.com</email><gd:extendedProperty name="OpenSocialUserId" value="03976202936616300919" /></author><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">3</thr:total><feedburner:origLink>http://castfortwo.blogspot.com/2008/08/qr-codes-for-mobile-tagging.html</feedburner:origLink></entry><entry gd:etag="W/&quot;CUEMQ346fip7ImA9WxdbFEU.&quot;"><id>tag:blogger.com,1999:blog-13095557.post-5087236894008518996</id><published>2008-08-11T11:51:00.003+02:00</published><updated>2008-08-11T21:41:22.016+02:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2008-08-11T21:41:22.016+02:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="video" /><category scheme="http://www.blogger.com/atom/ns#" term="innovation" /><category scheme="http://www.blogger.com/atom/ns#" term="google" /><title>Eric Schmidt at the Management Lab Summit</title><content type="html">The ceo of Google, &lt;a href="http://en.wikipedia.org/wiki/Eric_Schmidt"&gt;Eric Smidt&lt;/a&gt;, was announced to speak at a management summit on May 29, 2008. But instead of speaking he just opens the floor for questions. If you're interested in innovation, this "converstation" is a must see.&lt;br /&gt;&lt;object width="425" height="344"&gt;&lt;param name="movie" value="http://www.youtube.com/v/juRkmecQD-8&amp;hl=nl&amp;fs=1"&gt;&lt;/param&gt;&lt;param name="allowFullScreen" value="true"&gt;&lt;/param&gt;&lt;embed src="http://www.youtube.com/v/juRkmecQD-8&amp;hl=nl&amp;fs=1" type="application/x-shockwave-flash" allowfullscreen="true" width="425" height="344"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;br /&gt;&lt;a href="http://www.youtube.com/watch?v=juRkmecQD-8"&gt;Video: Eric Schmidt at the Management Lab Summit&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/13095557-5087236894008518996?l=castfortwo.blogspot.com'/&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/cast42/~4/f26dtuNKvKc" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://castfortwo.blogspot.com/feeds/5087236894008518996/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="https://www.blogger.com/comment.g?blogID=13095557&amp;postID=5087236894008518996" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/13095557/posts/default/5087236894008518996?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/13095557/posts/default/5087236894008518996?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/cast42/~3/f26dtuNKvKc/eric-schmidt-at-management-lab-summit.html" title="Eric Schmidt at the Management Lab Summit" /><author><name>cast42</name><uri>http://www.blogger.com/profile/15954114607504297643</uri><email>noreply@blogger.com</email><gd:extendedProperty name="OpenSocialUserId" value="03976202936616300919" /></author><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total><feedburner:origLink>http://castfortwo.blogspot.com/2008/08/eric-schmidt-at-management-lab-summit.html</feedburner:origLink></entry><entry gd:etag="W/&quot;DUQASHY-eSp7ImA9WxdbE00.&quot;"><id>tag:blogger.com,1999:blog-13095557.post-8765165891018334865</id><published>2008-08-09T20:36:00.001+02:00</published><updated>2008-08-09T20:42:29.851+02:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2008-08-09T20:42:29.851+02:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="video" /><title>Dilemma</title><content type="html">Nice short movie:&lt;br /&gt;&lt;object width="420" height="354"&gt;&lt;param name="allowfullscreen" value="true"/&gt;&lt;br /&gt; &lt;param name="allowscriptaccess" value="always"/&gt;&lt;br /&gt; &lt;param name="movie" value="http://files.videobomb.pl/play/pl_offsite.swf?vID=028514c02b" /&gt;&lt;br /&gt;   &lt;embed src="http://files.videobomb.pl/player/pl_offsite.swf?vID=028514c02b" width="420" height="354" allowfullscreen="true" allowscriptaccess="always" type="application/x-shockwave-flash"&gt;&lt;/embed&gt; &lt;br /&gt;&lt;/object&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;a href="http://www.videobomb.pl/video/Dylemat"&gt;Dilemma&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/13095557-8765165891018334865?l=castfortwo.blogspot.com'/&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/cast42/~4/vKYzMfuydHg" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://castfortwo.blogspot.com/feeds/8765165891018334865/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="https://www.blogger.com/comment.g?blogID=13095557&amp;postID=8765165891018334865" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/13095557/posts/default/8765165891018334865?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/13095557/posts/default/8765165891018334865?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/cast42/~3/vKYzMfuydHg/dilemma.html" title="Dilemma" /><author><name>cast42</name><uri>http://www.blogger.com/profile/15954114607504297643</uri><email>noreply@blogger.com</email><gd:extendedProperty name="OpenSocialUserId" value="03976202936616300919" /></author><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total><feedburner:origLink>http://castfortwo.blogspot.com/2008/08/dilemma.html</feedburner:origLink></entry><entry gd:etag="W/&quot;AkYMR3kyeyp7ImA9WxdVF0k.&quot;"><id>tag:blogger.com,1999:blog-13095557.post-6243716534417139385</id><published>2008-07-22T16:14:00.007+02:00</published><updated>2008-07-22T19:36:26.793+02:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2008-07-22T19:36:26.793+02:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="strategy" /><category scheme="http://www.blogger.com/atom/ns#" term="innovation" /><title>About brands, strategy and innovation</title><content type="html">I'm often involved with strategy and innovation affairs of the public broadcaster that employs me. But branding was something I walked around and left to the professionals. Since I saw the presentation of Marty Neumeier titled "&lt;a href="http://www.slideshare.net/coolstuff/the-brand-gap"&gt;Brand Gap: how to bridge the distance between business strategy and design&lt;/a&gt;" : &lt;br /&gt;&lt;a href="http://www.slideshare.net/coolstuff/the-brand-gap"&gt;&lt;img src="http://img.skitch.com/20080722-bt786ryi1xyh79pt9qhckdwykt.jpg" alt="The Brand Gap"/&gt;&lt;/a&gt;&lt;br /&gt;it all ties together. Strategy, branding and innovation fit into a bigger picture. Thank you Marty for providing your presentation. I'm considering buying your books.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/13095557-6243716534417139385?l=castfortwo.blogspot.com'/&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/cast42/~4/81LEtseV5iA" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://castfortwo.blogspot.com/feeds/6243716534417139385/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="https://www.blogger.com/comment.g?blogID=13095557&amp;postID=6243716534417139385" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/13095557/posts/default/6243716534417139385?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/13095557/posts/default/6243716534417139385?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/cast42/~3/81LEtseV5iA/about-brands-strategy-and-innovation.html" title="About brands, strategy and innovation" /><author><name>cast42</name><uri>http://www.blogger.com/profile/15954114607504297643</uri><email>noreply@blogger.com</email><gd:extendedProperty name="OpenSocialUserId" value="03976202936616300919" /></author><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total><feedburner:origLink>http://castfortwo.blogspot.com/2008/07/about-brands-strategy-and-innovation.html</feedburner:origLink></entry><entry gd:etag="W/&quot;CkMNRHc_eyp7ImA9WxdWGE0.&quot;"><id>tag:blogger.com,1999:blog-13095557.post-598255915019371195</id><published>2008-07-11T14:19:00.005+02:00</published><updated>2008-07-11T20:21:35.943+02:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2008-07-11T20:21:35.943+02:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="ipod touch" /><category scheme="http://www.blogger.com/atom/ns#" term="apple" /><title>New 2.0 firmware for Ipod Touch</title><content type="html">I'm a happy owner of an Apple Ipod Touch 16GB. Today, the new Iphone 3G is launched. With it comes new firmware. The firmware is also available for the Ipod Touch. You can buy it for 10 dollar. Iphone firmware 2.0 is for free (meaning Apple is getting 10 bucks from you in an other way). I bought the 2.0 version because my employer uses Exchange. Until now I was using Google but small details prevent me to transparently interact with my work collegues. &lt;br /&gt;&lt;div class="thumbnail"&gt;&lt;a href="http://skitch.com/cast42/xw7j/apple-ipod-touch-whats-new"&gt;&lt;img src="http://img.skitch.com/20080711-4wpbex35n93aukaiur9at9emy.preview.jpg" alt="Apple - iPod touch - What2019s New" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;span style="font-family: Lucida Grande, Trebuchet, sans-serif, Helvetica, Arial; font-size: 10px; color: #808080"&gt;Uploaded with &lt;a href="http://plasq.com/"&gt;plasq&lt;/a&gt;'s &lt;a href="http://skitch.com"&gt;Skitch&lt;/a&gt;!&lt;/span&gt;&lt;/div&gt;&lt;br /&gt;Before you upgrade to version 2.0 you must upgrade Itunes to 7.7. One of the nice features, that comes with Itunes 7.7 is that it allows syncing your Google Mail contacts with those in Addresbook and on the Ipod in both ways. Just connect the Ipod with the USB cable to your labtop, fire up Itunes and go to the info tab :&lt;br /&gt;&lt;div class="thumbnail"&gt;&lt;a href="http://skitch.com/cast42/xw9w/itunes"&gt;&lt;img src="http://img.skitch.com/20080711-8ww8temsttcgjnd8i8hs428ui2.preview.jpg" alt="iTunes" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;span style="font-family: Lucida Grande, Trebuchet, sans-serif, Helvetica, Arial; font-size: 10px; color: #808080"&gt;Uploaded with &lt;a href="http://plasq.com/"&gt;plasq&lt;/a&gt;'s &lt;a href="http://skitch.com"&gt;Skitch&lt;/a&gt;!&lt;/span&gt;&lt;/div&gt;&lt;br /&gt;Now we have to wai untile the Itunes server become available. It seems they are flooded massively by al the new iphones. Let's hope Apple sorts this out soon.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/13095557-598255915019371195?l=castfortwo.blogspot.com'/&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/cast42/~4/uMio0nErLvo" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://castfortwo.blogspot.com/feeds/598255915019371195/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="https://www.blogger.com/comment.g?blogID=13095557&amp;postID=598255915019371195" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/13095557/posts/default/598255915019371195?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/13095557/posts/default/598255915019371195?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/cast42/~3/uMio0nErLvo/new-20-firmware-for-ipod-touch.html" title="New 2.0 firmware for Ipod Touch" /><author><name>cast42</name><uri>http://www.blogger.com/profile/15954114607504297643</uri><email>noreply@blogger.com</email><gd:extendedProperty name="OpenSocialUserId" value="03976202936616300919" /></author><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total><feedburner:origLink>http://castfortwo.blogspot.com/2008/07/new-20-firmware-for-ipod-touch.html</feedburner:origLink></entry><entry gd:etag="W/&quot;AkAMSXw5eSp7ImA9WxRbGE0.&quot;"><id>tag:blogger.com,1999:blog-13095557.post-5179353762098667835</id><published>2008-06-19T18:48:00.011+02:00</published><updated>2008-12-09T08:46:28.221+01:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2008-12-09T08:46:28.221+01:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="news" /><category scheme="http://www.blogger.com/atom/ns#" term="ea" /><category scheme="http://www.blogger.com/atom/ns#" term="spore" /><title>No download mac version of Spore Creature Editor</title><content type="html">&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_FRy3Wbrk89M/SFqY3z-y7mI/AAAAAAAACPE/7yC05PVk1uU/s1600-h/scc_not_on_mac.png"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://2.bp.blogspot.com/_FRy3Wbrk89M/SFqY3z-y7mI/AAAAAAAACPE/7yC05PVk1uU/s400/scc_not_on_mac.png" alt="" id="BLOGGER_PHOTO_ID_5213647603248590434" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;span style="font-weight:bold;"&gt;&lt;br /&gt;UPDATE sunday 14 september 2008, 22u08:&lt;/span&gt; A download of the complete Spore game for mac is available here : &lt;a href="http://www.gametreeonline.com/product.php?productid=16168 "&gt;http://www.gametreeonline.com/product.php?productid=16168&lt;br /&gt;&lt;/a&gt; (Thx, matt)&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight:bold;"&gt;&lt;br /&gt;UPDATE za 21 juni 2008, 11u30:&lt;/span&gt; A download version will become available by &lt;a href="http://www.gametreeonline.com/product.php?productid=16161"&gt;Gametree&lt;/a&gt; (hopefully soon).&lt;br /&gt;&lt;br /&gt;Being delighted with EA's Spore Creature Editor free demo (I excuse them for the bugs), I preordered the full version for 6,99 euro. When the transaction was cleared, I got an email with a download url of the PC version instead of the MAC version. Moreover, it turned out that I had to use EA download manager that is only availble for PC. Today, I got an EA support mail stating that the full version of the EA Spore Editor is only for PC. Lukily, they kindly suggest a refund. I guess EA is more concerned with the Take-2 takeover than building support for games on mac.&lt;br /&gt;Fortunately, this is now cleary indicated on &lt;a href="http://www.spore.com/trial"&gt;the spore website&lt;/a&gt; (it was not when I preordered the full editor):&lt;br /&gt;&lt;img src="http://img.skitch.com/20080619-e9dmrntp3kquyhp9c1j8suaiwc.jpg" alt="Trial" /&gt;&lt;br /&gt;No download mac version is available. Only the box version is for mac.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/13095557-5179353762098667835?l=castfortwo.blogspot.com'/&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/cast42/~4/pas1k4sO4vo" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://castfortwo.blogspot.com/feeds/5179353762098667835/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="https://www.blogger.com/comment.g?blogID=13095557&amp;postID=5179353762098667835" title="4 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/13095557/posts/default/5179353762098667835?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/13095557/posts/default/5179353762098667835?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/cast42/~3/pas1k4sO4vo/no-download-mac-version-of-spore.html" title="No download mac version of Spore Creature Editor" /><author><name>cast42</name><uri>http://www.blogger.com/profile/15954114607504297643</uri><email>noreply@blogger.com</email><gd:extendedProperty name="OpenSocialUserId" value="03976202936616300919" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://2.bp.blogspot.com/_FRy3Wbrk89M/SFqY3z-y7mI/AAAAAAAACPE/7yC05PVk1uU/s72-c/scc_not_on_mac.png" height="72" width="72" /><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">4</thr:total><feedburner:origLink>http://castfortwo.blogspot.com/2008/06/no-download-mac-version-of-spore.html</feedburner:origLink></entry><entry gd:etag="W/&quot;CE4AQHYyfip7ImA9WxdQF0Q.&quot;"><id>tag:blogger.com,1999:blog-13095557.post-310184544085824450</id><published>2008-06-17T21:53:00.004+02:00</published><updated>2008-06-18T14:42:21.896+02:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2008-06-18T14:42:21.896+02:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="news" /><category scheme="http://www.blogger.com/atom/ns#" term="spore" /><title>Spore Creature Editor Demo is available</title><content type="html">&lt;a href="http://eu.spore.com/whatisspore/creaturecreator.cfm"&gt;Here&lt;/a&gt; you can download the free demo of the Spore Creature Editor. This is what my nine years old son made:&lt;br /&gt;&lt;object width="425" height="344"&gt;&lt;param name="movie" value="http://www.youtube.com/v/30H6KNjOddY&amp;hl=en"&gt;&lt;/param&gt;&lt;embed src="http://www.youtube.com/v/30H6KNjOddY&amp;hl=en" type="application/x-shockwave-flash" width="425" height="344"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;br /&gt;&lt;br /&gt;I preordered the full version of the Spore Creature Editor for 6,99 euro. For the moment, I can't find the download link. I think it has something to do with the clearance of my visa card.&lt;br /&gt;&lt;br /&gt;Also in the free demo, I could not type the @ sign. Very inconvenient because you need to enter an emaik adress to register. This does not work from an Belgian keyboard. A first i8n bug ??&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/13095557-310184544085824450?l=castfortwo.blogspot.com'/&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/cast42/~4/aq_E20eNHNg" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://castfortwo.blogspot.com/feeds/310184544085824450/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="https://www.blogger.com/comment.g?blogID=13095557&amp;postID=310184544085824450" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/13095557/posts/default/310184544085824450?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/13095557/posts/default/310184544085824450?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/cast42/~3/aq_E20eNHNg/spore-creature-editor-demo-is-available.html" title="Spore Creature Editor Demo is available" /><author><name>cast42</name><uri>http://www.blogger.com/profile/15954114607504297643</uri><email>noreply@blogger.com</email><gd:extendedProperty name="OpenSocialUserId" value="03976202936616300919" /></author><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total><feedburner:origLink>http://castfortwo.blogspot.com/2008/06/spore-creature-editor-demo-is-available.html</feedburner:origLink></entry><entry gd:etag="W/&quot;CEYAQ3Yyfyp7ImA9WxdQE0k.&quot;"><id>tag:blogger.com,1999:blog-13095557.post-8536889125026281567</id><published>2008-06-13T09:22:00.003+02:00</published><updated>2008-06-13T09:29:02.897+02:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2008-06-13T09:29:02.897+02:00</app:edited><title>Making popcorn with a gsm is a spoof</title><content type="html">Also three bananas are extremely dangerous ;-) :&lt;br /&gt;&lt;object width="425" height="344"&gt;&lt;param name="movie" value="http://www.youtube.com/v/puEPl8wPXNE&amp;hl=nl"&gt;&lt;/param&gt;&lt;embed src="http://www.youtube.com/v/puEPl8wPXNE&amp;hl=nl" type="application/x-shockwave-flash" width="425" height="344"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;br /&gt;(thx, &lt;a href="http://www.bnox.be"&gt;bnox&lt;/a&gt; for the tip)&lt;br /&gt;&lt;br /&gt;The gsm-popcorn movies are viral marketing from a bluetooth vendor Cardo Systems:&lt;br /&gt;&lt;a href="http://www.cardosystems.com/pop/"&gt;&lt;br /&gt;&lt;img src="http://img.skitch.com/20080613-efbk1bd14maas9gt7yrcx7h218.jpg" alt="Only in the Movies"/&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/13095557-8536889125026281567?l=castfortwo.blogspot.com'/&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/cast42/~4/6Ab4cGdfxaQ" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://castfortwo.blogspot.com/feeds/8536889125026281567/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="https://www.blogger.com/comment.g?blogID=13095557&amp;postID=8536889125026281567" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/13095557/posts/default/8536889125026281567?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/13095557/posts/default/8536889125026281567?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/cast42/~3/6Ab4cGdfxaQ/making-popcorn-with-gsm-is-spoof.html" title="Making popcorn with a gsm is a spoof" /><author><name>cast42</name><uri>http://www.blogger.com/profile/15954114607504297643</uri><email>noreply@blogger.com</email><gd:extendedProperty name="OpenSocialUserId" value="03976202936616300919" /></author><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total><feedburner:origLink>http://castfortwo.blogspot.com/2008/06/making-popcorn-with-gsm-is-spoof.html</feedburner:origLink></entry></feed>
