Аневризма retweeted
Script & Style Show: Episode 22: JavaScript, Mentoring, and Blockchain with Kyle Simpson davidwalsh.name/script-style… #JavaScript
2
1
async/await allows write asynchronous programs without understanding how asynchronicity works, that if you put those “decorations” in your code, then you can stay sequencial and don’t understand what the code does. What we need to do is embrace asynchronicity #javascript #parseq
1
async/await works and produces cleaner code, but is the wrong paradigm, is trying to keep you in this sequential mindset and you’ll never use the network correctly. #javascript #parseq
1
1
#flowtype strict mode will break you up millions of pieces I love it @flowtype @javascript #javascript #react
Аневризма retweeted
Creating sliding effects using sticky positioning css-tricks.com/creating-slid… #CSS
1
1
Global variables are evil Avoid global variables “Douglas Crockford” #javascript
Аневризма retweeted
3
3
Аневризма retweeted
JavaScript testing tutorial – part three. Testing props, the mount function and snapshot tests. ow.ly/Ql9D30lNeKm #JavaScript #Testing
1
1
#javascript scientific notation literal means to multiply a number by 10, then raising it to a given power 1e6 === 1 * 10 ** 6
Аневризма retweeted
“Essentials of Garbage Collectors” ow.ly/YFVD30lMcWr #WebDev #JavaScript
1
function matrix(m, n, initial) { let a, i, j, mat = []; for (i = 0; i < m; i += 1) { a = []; for (j = 0; j < n; j += 1) { a[j] = initial; } mat[i] = a; } return mat; }; #javascript #matrix is my nigga
1
1
3
a loop where the indexes are moving through the list can be modeled recursively as the list getting shorter cause if you move index from 0 to 1 is the same as taking the item off the list, do something and then you’ve a shorter list like if index has moved #javascript #recursion
1
Аневризма retweeted
Lazy Loading Images – The Complete Guide imagekit.io/blog/lazy-loadin… #WebDev #JavaScript
1
1
Аневризма retweeted
The practical guide for Building REST API in Nodejs and MongoDB include Passport and JWT ow.ly/Lb3p30lIiiS #NodeJS #MongoDB
1
1
Аневризма retweeted
look Ma, no media queries
28
177
1,186
Аневризма retweeted
V8 Internals: How Small is a “Small Integer?” medium.com/fhinkel/v8-intern… #JavaScript
1