- Checkout what's out there
- What are employers looking for?
- Checkout linkedin and see if you can get intros
- See if they host open houses or events
- Meetup
- Network
- Learn something know
- Meet cool people!
- Github
This file contains 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
module.exports = { | |
hello: 'hello', | |
blah: 'blah', | |
default: 'default' | |
} |
This file contains 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
defaults read > a | |
Open system preferences and change the setting to some other value than the default. | |
defaults read > b | |
Post diff a b here. |
This file contains 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 RowActionsCell = ReactDataGridPlugins.Draggable.RowActionsCell; | |
var DraggableContainer = ReactDataGridPlugins.Draggable.Container; | |
var DropTargetRowContainer = ReactDataGridPlugins.Draggable.DropTargetRowContainer; | |
var Selectors = ReactDataGridPlugins.Data.Selectors; | |
var priorities = [{id:0, title : 'Critical'}, {id:1, title : 'High'}, {id:2, title : 'Medium'}, {id:3, title : 'Low'}] | |
var issueTypes = ['Bug', 'Improvement', 'Epic', 'Story']; | |
//helper to generate a random date | |
function randomDate(start, end) { |
This file contains 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
setTimeout(function () { | |
async.parallel(conditions, function (err) { | |
setTimeout(function () { | |
$('[lazo-cmp-container="lazo-layout-body"]').animate({ | |
}, 500, function () { | |
setTimeout(function () { | |
}, 100); | |
}); | |
}, 10); | |
}); |
This file contains 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 d3 = require('d3'); | |
var internals = {}; | |
module.exports = function ($parse, $compile) { | |
return { | |
restrict: 'E', | |
replace: false, | |
scope: { | |
data: '=chartData', | |
width: '=width', |
- How good are you at foosball?
- What developer tools do you use and what are some things you like about them?
- Walk me through a Cross site scripting attack? Cross site request forgery?
- NPM? How does node resolve dependencies? require('foo');
- Walk me through binding a model to a text input?
- How do you learn a library?
- Whats the most recent one you've tried?
This file contains 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
it('waits for delete to return before saving', function(done){ | |
// Given | |
var options = { | |
model: new Backbone.Model({ | |
modules: new Backbone.Collection([ | |
new Model(), | |
new Model() | |
]) | |
}), | |
success: function(){} |
NewerOlder