fousa archive

  JAN FEB MRT APR MAY JUN JUL AUG SEP OCT NOV DEC
2010 8 15 24 5     1          
2009 15 13 3 2 2 1   4 6 X 5 6
2008                     1 5
28 OCT

Create a bootable USB key from a Windows installer CD

I recently bought an Asus Eee PC 1005 HA with the intention of using it when I travel to work... I first tried jolicloud, but at the moment I'm still not very satisfied by it. Maybe I should wait until the final release and then install it next to my Windows. So I decided to install Windows 7. The only problem is that my netbook doesn't have ...

26 OCT

I'm currently trying to install Windows 7 on my Eee PC, but without any luck! For some reason, I'm not able to create a bootable USB key... Just found another tutorial online, and I hope this works!

22 OCT

Just bought myself a brand new Asus Eeepc 1005HA netbook... Now I'm finally able to test Jolicloud and maybe go for a quick install of Windows 7... It's going to be an exiting evening! A blog post will follow with some interesting applications for you to use!

20 OCT

Canvas drawing

This is just an example of how I created the image below. The image is drawn using the canvas tag in HTML5. var canvas_element = document.getElementById("canvas_element"); var canvas_context = canvas_element.getContext("2d"); // Draw body path canvas_context.beginPath(); canvas_context.moveTo(50, 250); canvas_context.lineT...

3 OCT

Things I didn't know about validations

VALIDATE INCLUSION When you want to check if a value is included in a list of values, you can use the validation helper below. The array with the possible values is passed with the :in symbol. validates_inclusion_of :size, :in => %w(small medium large), :message => "{{value}} is not a valid size" VALIDATE EXCLUSION...

go to the top ↑ ← back to the blog