May 23rd, 2011 by Chris
Useful list of html 5 tags http://www.w3schools.com/html5.
Also a good start when making an html5 website is using Paul Irish boilerpalt template http://html5boilerplate.com.
May 23rd, 2011 by Chris
Another troublesome driver that I dont seem to find very easily is the Globetrotter HSDPA modem. This warning comes up in my device manager even after installing everthing I can from samsung. I should point out I am installing windows 7 on my Samsung Q45 netbook. So here is a direct link to the file that works for me everytime. Hope this helps other.
Globetrotter HSDPA modem driver
May 23rd, 2011 by Chris
How chuffed am I? Very!
Because the laptop is quite old in terms of laptops and there is no drivers for windows 7 on the samsung site available for the Samsung Q45.
I finally found a solution to the annoying birghtness keys not working in windows 7 on my Samsung Q45 laptop. After failing after several reinstalls of windows 7. I persisted today and found that installing this version of Intel VGA Driver solved my problem.
VGA_Intel_GM964_ v7.14.10.1409
If after installing it doesn’t work go into the control panel > Device Manager > Display Adapters then double click the Mobile Intel 965 Express chipset Family and under driver uninstall driver then install above driver again. Hope this helps others as it helped me.
March 22nd, 2011 by Chris
Found this peice of code helpful when developing my own dynamic pages in wordpress custom theme. The body of the post displays with no formatting so ignores indents, carriage returns, lists, etc. this simple peice of code solves problem.
apply_filters('the_content', $post->post_content);
Hope this helps others.