15

Dec/14

error Error: ENOENT

Overview I was using the Angular generator in Yeoman but came across some funny errors when it was scaffolding. It turns out a clean out of the cache and quick update of Node fixed it. Error Example error I was … Continue reading

01

Dec/14

Windows 8 Disables WoL

Overview I had Wake on LAN working on Windows 7 but since Windows 8 it didn’t work. It didn’t help that every UEFI firmware flash would wipe the settings. It turns out Windows 8 shutdown behavior is different to Windows … Continue reading

24

Nov/14

Enable Backspace In Firefox On Ubuntu

Not sure why but the backspace keyboard short is disabled in Ubuntu. To enable it: type about:config into the address bar. Accept the warning. Find the key browser.backspace_action and change the value to 0. Enable Backspace In Firefox In Ubuntu … Continue reading

17

Nov/14

Github Over HTTPS

Github defaults to using the default SSH port (22) but it can be reconfigured to use HTTPS port 443. To test this run the following command: ssh -T -p 443 git@ssh.github.com The above -p 443 parameter tells SSH to connect … Continue reading

10

Nov/14

Ubuntu 14.04 Desktop Sharing

I tried connecting to a newly installed Ubuntu 14.04 install using the VNC after setting up Desktop Sharing: The clue is in the error message. To fix this it requires disabling Ubuntu requiring an encrypted connection. DO THIS AT YOUR … Continue reading

03

Nov/14

Firefox Interupts localhost To www.localhost.com

Firefox tries to be too clever and when the address doesn’t work, it tries to connect to sites on common patterns like adding .com or www. to the address in case the user accidentally forgot to put them in. For … Continue reading

27

Oct/14

Modify “Places” In Nautilus, Ubuntu

Places in the Ubuntu equivilent explorer bar is quick and easy way to navigate to folders but there is no easy way to customise them. The configuration file is actually located in ~/.config/user-dirs.dirs so it’s on a per user basis. … Continue reading

20

Oct/14

Install HA Proxy 1.5 On Ubuntu

Overview Apache’s HAProxy is a proxy software but it can also load balance between servers. The significance of version 1.5 is it’s ability to handle SSL connections where as before you needed to off load the connection to a different … Continue reading