Hints
Send HTML emails using GMail
0
An excellent script for testing HTML emails, shame that GMail flags the message as a phishing email – good enough for testing though.
(1) make a copy of this Google Docs sheet. (2) Then Authorise the script by clicking ‘GMail’ > ‘HTML Mail’ which should appear next to ‘Help’ in the menu bar a few seconds after you’ve loaded the doc.
(3) Then create your HTML email, and after authorising the script (in Google docs), click ‘GMail’ > ‘HTML Mail’ again and send your message from there. Original article found here… http://www.labnol.org/internet/send-html-email/19672/
Use a USB pen to install Windows 7 on a Netbook or Laptop without a CD / DVD drive
0Handy for when you replace you hard disk in your netbook or Laptop and rather than cloning your old driveyou simply want a fresh install of windows. You’ll obviously need to get yourself a copy of Windows 7, either on a DVD or an ISO of the setup files and a 4GB or 8GB USB pen drive. We’re going to wipe the pen drive (or at least flag the data for deletion), create a primary partition, format the drive, mount the pen drive before copying across our windows 7 set-up files from a DVD.
1// open start > type ‘diskpart‘ > execute diskpart.exe > click ‘yes’ to the User account control window prompt

2// When diskpart is running in cmd window, type ‘list disk‘ >

3// Identify the your USB drive by the size of the disk – in this case it’s a 4GB (3700MB) drive – and type ‘select disk #‘ (where # is the number of your disk – in my case it was disk 6). Type ‘clean’ and press enter.
4// Type ‘create partition primary‘ and press enter. Type ‘active‘ and press enter. Type ‘format fs=fat32 quick’ or if the USB key is over 4GB type ‘format fs=ntfs quick‘
5// Type ‘assign‘ and windows will map a drive letter to the drive. Click ‘Open folder to view files and copy your windows set-up files across from your DVD to your USB drive. Use your USB pen to install your copy of windows to your netbook.

Google Chrome Extensions
0
Here is a quick list of the Chrome extensions that I use.
AddThis – Share & Bookmark (new) - Version: 2.0
bit.ly | a simple URL shortener - Version: 1.2.1.3
Chrome SEO - Version: 0.8
Docs PDF/PowerPoint Viewer (by Google) - Version: 3.1
Downloads - Version: 1
Eye Dropper - Version: 0.2.3
Firebug Lite for Google Chrome - Version: 1.3.1.7759
Google Chrome to Phone Extension - Version: 2.1.3
Google Docs - Version: 1.2
Google Mail Checker - Version: 3.1
Google Reader Notifier (by Google) - Version: 1.2
IE Tab - Version: 1.4.30.4
RSS Subscription Extension (by Google) - Version: 2.1.3
Send from Gmail (by Google) - Version: 1.11
SmoothScroll - Version: 0.9.8
StumbleUpon - Version: 2.9.8.1
Web Developer - Version: 0.3.1
Webpage Screenshot - Version: 5.0
Window Resizer - Version: 1.6.0
Make a background image into a link or make the whole DIV clickable
0<div onclick="location.href='http:/ / pmlmedia.co.uk';" style="cursor: pointer;"></ div>
…or you could use this CSS trick which makes a background image into a link…
Add a hyperlink in the div somewhere to place a text link in your div…
<a href=’http://pmlmedia.co.uk’ title=’Professional Website Development’ id=’pmlmedia-logo’>PMLMEDIA</a>
…then set the id of the link to be a block element, set to display the background image and set the text of the link to indent way off the screen….
#pmlmedia-logo {
background-image:url(images/logo.png);
display:block;
height:58px;
text-indent:-9999px;
width:200px;
}
Fix Page Shift with Overflow-y: hidden
0Ever had your page layout shift down when your page loads before the elements snap back into position?
Fix this by adding the ‘overflow:’ or ‘overflow-y:’ property to the wrapper that contains your elements that are jumping around onLoad and use the value ‘hidden’ or ‘scroll’ to stop your browser automatically setting this to ‘auto’.
#navwrapper {Overflow-y:hidden;}
