Related Posts
X-Men III – The best of the 3
I went yesterday to the opening of X-Men III, and I found it as the best of the 3 movies (Wish it had been this way for the Matrix, my favorite is the second, the third had a too simple ending) I was expecting a lot from the Da Vinci code, but they couldn’t make […]
Understanding South Park’s “What What (In the butt)”
I just saw South Park’s episode “Canada on Strike“, the boys decide to make a youtube video to make money and give it to all the Canadians on strike. The episode mocks the writer’s strike and all famous videos on the internet. The funny thing for me is that I had never seen this video: […]
Playing with basics of HTML5 Canvas
Here’s a snippet of something I did tonight to play a bit with the Canvas and 2d Graphics context objects in javascript. [html] <html> <head> <title>Playing with Canvas</title> </head> <body style="padding:0 0; margin: 0 0; background:black"> <canvas id="myCanvas" width="1024" height="1024" ></canvas> <script type="text/javascript"> //convert to CSS friendly Hex String function d2h (n) { var result […]