Pragmatic thinking
https://pragprog.com/book/ahptl/pragmatic-thinking-and-learning

ellievsbear

gracie abrams
I'd rather be in outer space 🛸
Today's Document

Kiana Khansmith

tannertan36

Origami Around
ojovivo
"I'm Dorothy Gale from Kansas"
tumblr dot com
Xuebing Du
sheepfilms
Game of Thrones Daily
$LAYYYTER
KIROKAZE
RMH
will byers stan first human second
🩵 avery cochrane 🩵
EXPECTATIONS
art blog(derogatory)
seen from Morocco

seen from China

seen from United States
seen from Philippines

seen from Spain
seen from Vietnam
seen from United Kingdom

seen from Uzbekistan
seen from Saudi Arabia
seen from Poland

seen from Türkiye
seen from Brazil

seen from United States
seen from Colombia
seen from Argentina

seen from Tunisia

seen from United Kingdom
seen from South Africa
seen from Mexico
seen from Italy
@maistaff
Pragmatic thinking
https://pragprog.com/book/ahptl/pragmatic-thinking-and-learning
Tunnelin software - Easy to use
https://ngrok.com/
JS lib to create href links inside a string context
https://github.com/gregjacobs/Autolinker.js
Free MySQL database hosting with PHP
http://www.000webhost.com/
Check website speed with Google PageSpeed
https://developers.google.com/speed/pagespeed/insights/
Assign own User Agent
https://developer.chrome.com/multidevice/user-agent
Are you online? Check with JS!
https://developer.mozilla.org/en-US/docs/Web/API/NavigatorOnLine.onLine#Specification
MongoDB, Restify, NodeJs RESTful tutorial
http://backbonetutorials.com/nodejs-restify-mongodb-mongoose/
Cool looking JavaScript libraries
http://requirejs.org/ File and module loader http://greensock.com/ GASP and plugins
http://backbonejs.org/# Structure for web apps - custom methods Tutorial: http://arturadib.com/hello-backbonejs/docs/1.html http://underscorejs.org/# Tied to backbone. Extends built-in objects
http://hammerjs.github.io/getting-started/ Gesture detection
Javascript Module Pattern (what to put in "return")
http://javascriptplayground.com/blog/2012/04/javascript-module-pattern/
Fix Brightness in Ubuntu
http://itsfoss.com/fix-brightness-ubuntu-1310/
Know what is running at port 80 with Linux terminal
netstat -pan | grep :80
CURL sites with XML or JSON output
curl -v -H "Accept: application/xml" http://www.url.com curl -v -H "Accept: application/JSON" http://www.url.com
Cover BG
http://jsfiddle.net/yHucT/
CSS transitions stuff
http://learn.shayhowe.com/advanced-html-css/transitions-animations/
Grunt htmlcompressor
https://github.com/jney/grunt-htmlcompressor
The Resizor class
function Resizor(){ var winwidth = $(window).width(); var winheight = $(window).height(); this.setWinwidth = function(w){ winwidth = s; } this.getWinwidth = function(){ return winwidth; } this.setWinheight = function(h){ winheight = h; } this.getWinheight = function(){ return winheight; } } Resizor.prototype.resizeHeight = function(div){ var winheight = this.getWinheight(); this.div = div; $(div).css({'min-height': winheight + 'px'}); } Resizor.prototype.resizeWidth = function(div){ var winwidth = this.getWinwidth(); this.div = div; $(div).css({'width': winwidth + 'px'}); } Resizor.prototype.resizeBoth = function(div){ var winwidth = this.getWinwidth(); var winheight = this.getWinheight(); this.div = div; $(div).css({'min-height': winheight + 'px'}); $(div).css({'width': winwidth + 'px'}); $(div).css({'max-width': winwidth + 'px'}); } Resizor.prototype.hello = function(message){ this.message = message; alert(message); }