How to import existing GIT repository into another?
Developer Mode for the Samsung Galaxy S4
From: Developer Mode for the Samsung Galaxy S4
Get to the phone's settings by tapping 'menu' from the home screen and then tapping 'settings'
- tap on 'more'
- tap on 'software information'
- tap on 'About Device'
- find the build number, and tap it 7 times
- on the 7th tap, a prompt …
How to install PostgreSQL 9.2 on Ubuntu 13.04
Set Default search_path for a User in PostgreSQL
Here's how to do it:
ALTER ROLE myuser IN DATABASE mydb SET search_path = myschema;
The same syntax works for any configuration parameter, such as localization parameters.
How to prefer IPv4 over IPv6 for some hosts
If an IPv6 address is unreachable, but you can reach the IPv4 one, you can set the preference to IPv4 for that particular address by adding a line such as this in /etc/gai.conf:
precedence ::ffff:198.145.11.105/128 100
That will set the preference for host …
Fix jsctags with node.js 0.10
Setting Vim whitespace preferences by filetype
Guide to CSS support in email
How to install the latest node.js on Ubuntu
How to install the latest node.js on Ubuntu
sudo apt-get install python-software-properties sudo add-apt-repository ppa:chris-lea/node.js sudo apt-get update sudo apt-get remove nodejs nodejs-dev npm sudo apt-get install nodejs