Skip to content

Instantly share code, notes, and snippets.

View timothy's full-sized avatar
🎯
Focusing

Timothy timothy

🎯
Focusing
View GitHub Profile
function escapeHtml(unsafe) {
return unsafe
.replace(/&/g, "&")
.replace(/</g, "&lt;")
.replace(/>/g, "&gt;")
.replace(/"/g, "&quot;")
.replace(/'/g, "&#039;");
}
https://www.googleapis.com/books/v1/volumes?q=isbn:9781451648546
http://www.programmableweb.com/category/library/apis?category=20272&data_format=21190
http://www.programmableweb.com/apis/directory
http://xisbn.worldcat.org/xisbnadmin/doc/api.htm
https://developers.google.com/books/docs/v1/using#ids
@timothy
timothy / node v5 ubuntu 15.10
Last active January 17, 2016 19:31
install latest node js v5 in ubuntu 15.10
sudo apt-get install npm
sudo npm cache clean -f
sudo npm install -g n
sudo n stable
node -v
v5.0.0
//find all global packages