Syncing Sublime Text 2 Settings via Dropbox

I migrated to Sublime Text 2 a while ago, and not looking back. It’s by far the best editor I’ve ever used. Its packaging system is simple and efficient. But one thing that annoys me is the lack of synchronization across different computers. Not anymore. The solution is rather simple. You can just move three directories – Packages, Installed Packages, Pristine Packages – to your Dropbox, create a symbolic link for each directory (ln on Linux/OSX, mklink /d on Windows), and your packages will always be perfectly in sync across multiple computers - even using different platforms. ...

October 28, 2012

EW-7811Un wireless adapter on Raspberry Pi

After upgrading my Raspberry Pi Wheezy to the latest kernel 3.2.27+, my wireless adapter EW-7811Un stopped working. Here’s the fix: su - root mkdir ~/drivers cd ~/drivers wget http://dl.dropbox.com/u/80256631/8192cu-latest.tar.gz tar zxvf 8192cu-latest.tar.gz cd 8192cu-latest install -p -m 644 8192cu.ko /lib/modules/3.2.27+/kernel/drivers/net/wireless depmod -a cat <<EOF >> /etc/modprobe.d/blacklist.conf blacklist rtl8192cu EOF cat <<EOF >> /etc/modules 8192cu EOF shutdown -r now After reboot you should have wlan0. You may need to configure your wireless network if you didn’t so already, by editing /etc/network/interface. Recommended that you use wpa_passphrase to generate your encrypted wifi password: ...

September 16, 2012