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

pixel skylines
Sweet Seals For You, Always

blake kathryn

Origami Around
Mike Driver
One Nice Bug Per Day

Kaledo Art

titsay
KIROKAZE

No title available
let's talk about Bridgerton tea, my ask is open
will byers stan first human second
Aqua Utopia|海の底で記憶を紡ぐ
No title available

Discoholic 🪩

No title available
wallacepolsom
"I'm Dorothy Gale from Kansas"
Today's Document

#extradirty

seen from Chile
seen from Chile

seen from Germany

seen from United States

seen from United States

seen from Spain

seen from United States
seen from United States
seen from Brazil
seen from Canada

seen from United States
seen from United Kingdom
seen from Vietnam

seen from Malaysia
seen from United States
seen from Hong Kong SAR China
seen from United Kingdom
seen from United States
seen from United States
seen from United States
@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); }