May 2010
15 posts
The Google Font Directory - font-face →
May 26th
Image to fit exactly on an A4 page
At 300 dpi, it would have to be exactly 2480 x 3508 pixels and half that 1240 x 1754 pixels for 150 dpi.
May 26th
Comparison between Bazaar, Git, Subversion  →
More here: http://versioncontrolblog.com/comparison/
May 23rd
Codeigniter enable benchmarking / profiling
$this->output->enable_profiler(TRUE);
May 20th
1 note
Add coda snippets from website
<script> var name = "Snippet name"; var html = '<p>Test</p>'; window.location = 'codaclips://<<**Title:' + name + '**>>' + html; </script>
May 20th
[SOLUTION] Tried to install Ubuntu onto USB on Mac...
1. Insert the mac install dvd. And wait for ages until it loads. Choose your language and when you get to the first install step at the top there should be the menu. Select Utilities > Disk Utility 2. Click on your internal hard disk in the sidemenu (the disk itself, not the partition under it). In my case 500.11 GB ST3500630A.. 3. Now click on the Partition tab. If you drag the...
May 12th
Firefox 4: fast, powerful and empowering
http://blog.mozilla.com/blog/2010/05/10/firefox-4-vision-fast-powerful-and-empowering/
May 11th
Petabytes on a budget: How to build cheap cloud... →
May 10th
1 note
“Video For Everybody” Test Page - HTML5 / OGG /... →
May 10th
nforce2_smbus error probing smb2 and modprobe:...
https://bugs.launchpad.net/ubuntu/+bug/561738 modprobe: FATAL: Error inserting padlock_sha (/lib/modules/2.6.32-21-server/kernel/drivers/crypto/padlock_sha.ko): No such device http://ubuntuforums.org/showthread.php?t=1469470 >_< reinstall..
May 6th
Ubuntu set static IP in Terminal
sudo nano /etc/network/interfaces add auto eth0 iface eth0 inet static address 192.168.0.4 netmask 255.255.255.0 network 192.168.0.0 broadcast 192.168.0.255 gateway 192.168.0.1 save, then sudo nano /etc/resolv.conf add nameserver 192.168.0.1 save, then sudo /etc/init.d/networking restart
May 5th
1 note
Access NFS share in Windows 7 Ultimate
1. Control panel > Programs > Turn Windows features on or off Enable Services for NFS 2. Set the “default” anonymous UID and GID for Client for NFS to access a NFS share. Run regedit and locate. HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\ClientForNFS\CurrentVersion\Default Create two new DWORD values: AnonymousUid and AnonymousGid. Right click in the right panel, New >...
May 2nd
Umount mapped network drive in Windows 7
Replace Z with the letter of the drive you want disconnect. Start > Run > cmd net use Z: /delete
May 2nd
Google Maps Navigation Review (UK) – A Free Mobile... →
May 1st
Slow inital SSH local connection
I had this issue where it would take 5secs before asking for the password. Now its instant. Re-post of the tips here: http://www.idimmu.net/2010/01/23/Slow-SSH-and-SCP-connections-on-Ubuntu 1. Open the ssh config file sudo nano /etc/ssh/sshd_config 2. Add this line to the bottom of the file, save and close. UseDNS no 3. Reload the config file sudo /etc/init.d/ssh reload 4. Thats it,...
May 1st