- eloquent javascript
- exploring es6
- Would be a secondary JS book
- Javascript, The Good Parts
- JS Style / Patterns
- Javascript Allonge
- The episodes of JavaScript Jabber with Reginald Braithwaite are really interesting
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script> | |
var thing_id = "441444475001111765"; | |
$('.thing-related-photo img').each(function(){ | |
if($(this).width()>$(this).height()){ | |
$(this).css("height","60px"); | |
}else{ | |
$(this).css("width","60px"); | |
} | |
}); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var async = require('async'); | |
var http = require('http'); | |
var URL = 'www.walmart.com'; | |
var MAX_SOCKETS = 50; | |
var NUM_CONNECTIONS = 100; | |
http.globalAgent.maxSockets = MAX_SOCKETS; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"Personal Care": [ | |
"Hair", | |
"Laundry", | |
"Spa & Massage" | |
], | |
"Entertainment": [ | |
"Amusement", | |
"Arts", | |
"Movies & DVDs", |
OlderNewer