← back to the blog
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 |
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 ...
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!
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...
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...