Cast for two
Tuesday, December 07, 2010
Bye bye battery of MacBook Pro
Posted by cast42 at 7:27 PM 1 comments
Labels: battery, macbook pro
Saturday, September 11, 2010
Fireworks shot with Canon Ixus 300HS
Yesterday evening, I went to the yearly firework held in Leuven, Belgium. I filmed the finale with my new Canon Ixus 300HS (aka Powershot 4000 SD) at 720p. Here's the result:
I also took some pictures in the fireworks mode. I think the movie catches the moment much more than the pictures. But for those interested, here is a picasa album containing the original unedited files. Here's a nice one:
From Vuurwerk |
Posted by cast42 at 11:40 AM 0 comments
Labels: canon Ixus 300HS, firework, youtube
Saturday, July 31, 2010
Tuesday, July 27, 2010
Hosting my pictures in the cloud: Google Storage
My workflow is now as follows:
- Copy the pictures from my digital camera (currently a Canon Ixus 300 HS) to my mac with Iphoto. Iphoto puts the pictures into new events (= pictures taken at the same time of the day)
- Then I select the pictures I like and put them into an album of Iphoto.
- Next I export the album on Picasa Web using Picasa Web Albums Uploader, selecting "Actual Size" so that it archives the original files in the cloud. This may take a bit longer for uploading but will save the day when all my pictures disappear from my mac and backup.
If I manage to fill up the 20 Gigabyte, it can upgrade to 80 GByte/ year for 20 dollar/year. So that's save for the future ;-)
Posted by cast42 at 9:08 PM 1 comments
Labels: google, picasa, technology
Wednesday, May 19, 2010
HTML5 example to change the opacity of an image via CSS3
Here's a simple HTML5 example that changes the opacity of an image via CSS3 using an input range element and some Javascript.
<!DOCTYPE html> <html> <head> <title>HTML5 example to change the opacity of an image via CSS3</title> </head> <body> <img id="img_0576" src="IMG_0576.jpg" alt="My bike"style="opacity: 0.5;" /> <input id="img_op" type='range' min='0' max='100' value='50' onchange="changeOpacity()"> <script> function changeOpacity() { var opacity = document.getElementById('img_op').value/100; document.getElementById('img_0576').style.opacity = opacity; } </script> </body> </html>This example is mainly to test out the use of code highlighting on Blogger as explained by Luka Marinko. It seems to work well. Huray!
If you're interested in HTML5 you can follow the Friendfeed on HTML5.
Posted by cast42 at 2:04 PM 2 comments
Labels: code, friendfeed, HTML5
Monday, April 26, 2010
Trailer for the episode 3 of the virtual revolution on the Flemish television
On tuesday 24 april 2010, VRT will air a dutch spoken version of the third episode of BBC's Virtual Revolution. Here's the trailer:
The code to embed this:
<!-- BEGIN EMBEDCODE CANVAS-->
<div id='canvasvideo_container_47281' style="width: 507px; height: 320px; border: 1px solid black;">
<object id="canvasvideo_47281" width="507" height="320">
<param name="movie" value="http://static.vrt.be/swf/jwplayer45.swf"/>
<param name="allowScriptAccess" value="always" />
<param name="allowFullScreen" value="true" />
<param name="flashvars" value="config=http://video.canvas.be/embed%3Fvideo%3D47281"/>
<param name="wmode" value="transparent">
<embed type="application/x-shockwave-flash" wmode="transparent" name="media" src="http://static.vrt.be/swf/jwplayer45.swf" quality="high" allowscriptaccess="always" allowfullscreen="true" flashvars="config=http://video.canvas.be/embed%3Fvideo%3D47281" width="507" height="320">
</embed>
</object>
</div>
<!-- EINDE EMBEDCODE CANVAS-->
It's a pitty the embed code is not working on Blogger.....
UPDATE: It tried to solve this by using an Iframe:
usign this code:
<iframe src ="http://programmas.canvas.be/wp-content/uploads/2010/04/The-virtual-revolution-Aflevering-3-trailer.html" width="507" height="320">
But that is still not working. Strange.
UPDATE 3: maybe I have to URL unescape the value of flashvars to
http://video.canvas.be/embed?video=47281
Posted by cast42 at 10:34 PM 3 comments
Saturday, March 06, 2010
Skiing in Stuben am Arlberg, Austria
In a yearly tradition, I publish a short movie about the skiing holiday. It's not as cool as with a Go Pro Hero cam but still interesting. This year I edited again with Imovie on the mac. Imovie is really the tool you need for such a job. When finished, I pushed the button to upload to youtube and half an hour later:
This year we stayed in Stuben am Arlberg in Austria. They say that stuben is the capital of off piste skiing, but this year we stayed on the slopes because the danger of snowavalanches was very real.
I only noticed an annoying bug. Although the star wars end trailer is in imovie:
the end of the movie on Youtube is just the black background with white stars but without the moving end credits. Annoying bug !
Posted by cast42 at 3:07 PM 2 comments
Labels: austria, imovie, skill level, stuben
Monday, February 01, 2010
How to deal with search crawlers for your mobile site
So you've setup your mobile site (for example hosted at http://m.yoursite.com) derived from a desktop version (for example hosted at http://www.yoursite.com).Typically, you're using a Content Management System and by providing adapted templates for your mobile items, you can provide a mobile version of your site. The question is now how to deal with robots that crawl the web to build a search index. The danger exists that the robots detect duplicate content because the mobile version from a content item might contain the same text and pictures but wrapped on another template. I think the following steps should be taken:
- Only allow the mobile web crawlers with the following robot.txt in the root of the mobile site (for example http://m.yoursite.com) by allowing bots with user agent "Googlebot-Mobile" or "YahooSeeker/M1A1-R2D2" and to disallow all others:
User-agent: Googlebot-Mobile
Disallow:
User-agent: YahooSeeker/M1A1-R2D2
Disallow:
User-agent: *
Disallow: /
Also, disallow mobile crawlers to your desktop version of your site by adding the following robot.txt in the root of your site (for example http://www.yoursite.com/robot.txt ):
User-agent: Googlebot-Mobile
Disallow: /
User-agent: YahooSeeker/M1A1-R2D2
Disallow: /
User-agent: *
Disallow:
With the first robot.txt in the mobile root and the second one (here above) in the root of your desktop site, your mobile site items should only appear when people search with a mobile search engine (for example by using http://m.google.com ) but not when searching with the desktop version (for example http://www.google.com ).
As far as I know, the MSNbot that crawls for the Microsoft Bing index together does not have a bot version that crawls strickly for the mobile Bing search engine at http://m.bing.com. - Add your mobile site to Google : http://www.google.com/support/webmasters/bin/answer.py?answer=40348 , Bing http://www.bing.com/webmaster/SubmitSitePage.aspx, Yahoo (http://siteexplorer.search.yahoo.com/mobilesubmit) and other relevant mobile indexes
- Create a mobile sitesmap : http://www.google.com/support/webmasters/bin/answer.py?answer=34648&cbid=-1rt6r3us7wrvl&src=cb&lev=answer
Let me know I've you have anything to add to this strategy in the comments.
Posted by cast42 at 5:51 PM 0 comments