$_ = value of the last thing printed to the chrome console
copy(var) = Copy anything from the chrome console to the clipboard
debug()
monitor()
queryObjects()
$_ = value of the last thing printed to the chrome console
copy(var) = Copy anything from the chrome console to the clipboard
debug()
monitor()
queryObjects()
```javascript | |
function example1 () { | |
y = 20; | |
var y = 0; | |
jump(); | |
var jump = function () { | |
y += 15; | |
} | |
jump(); | |
function jump() { |
Jeff Atwood : Better Programmer
Chad Fowler : Check out his books section and follow on twitter
Martin Fowler : Founder of ThoughtWorks
TJ Holowaychuk : Creator of Express.js! How he got good
Code Complete : Steve McConnell
Pragmatic Programmer : Dave Thomas
Clean Code - Uncle Bob Martin
Refactoring - Martin Fowler
Release It! - Michael Nygard
module.exports = function(sequelize, DataTypes) { | |
var Task = sequelize.define("Task", { | |
title: DataTypes.STRING | |
}); | |
Task.associate = function(models) { | |
Task.belongsTo(models.User); | |
} | |
return Task; |
var MongoClient = require('mongodb').MongoClient; | |
// Connection URL | |
var url = 'mongodb://localhost:27017/mongo_demo'; | |
module.exports = function createConnection() { | |
} | |
// Use connect method to connect to the server |
I hereby claim:
To claim this, I am signing this object:
// ++ NOTES | |
/** | |
* console.log() --> PRINT TO SCREEN | |
* function () {} --> Declare a function (but don't run it) | |
* {functionName}(arg1, arg2) --> Actually using the function by name | |
*/ | |
// GLOBAL VARIABLES | |
var foo = 2; |
https://gist.github.com/paulirish/5d52fb081b3570c81e3a | |
https://medium.com/@vilcins/css-tools-that-i-use-67cb8bfa2e2d | |
https://developers.google.com/web/fundamentals/look-and-feel/animations/css-vs-javascript?hl=en | |
http://csstriggers.com/ | |
https://slides.com/taesup/css-perf |