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
{ | |
"debug.allowBreakpointsEverywhere": true, | |
"debug.inlineValues": true, | |
"files.autoSave": "onFocusChange", | |
"files.insertFinalNewline": true, | |
"files.trimTrailingWhitespace": true, | |
"editor.cursorStyle": "line-thin", | |
"editor.wordWrap": "on", |
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
{"lastUpload":"2017-12-22T17:14:41.087Z","extensionVersion":"v2.8.7"} |
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
#!/usr/bin/env bash | |
# This bootstraps installing ssh-keys to github | |
# set colors | |
if tput setaf 1 &> /dev/null; then | |
tput sgr0 | |
if [[ $(tput colors) -ge 256 ]] 2>/dev/null; then | |
ORANGE="$(tput setaf 172)" | |
else |
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
# --------------------------------------------------------------------------- | |
# | |
# Description: This file holds all my BASH configurations and aliases | |
# | |
# Sections: | |
# 1. Environment Configuration | |
# 2. Make Terminal Better (remapping defaults and adding functionality) | |
# 3. File and Folder Management | |
# 4. Searching | |
# 5. Process Management |
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
/** | |
* Localytics Coding Challenge | |
* | |
* Written by Jared Williams | |
* http://github.com/jaredwilli | |
* | |
* Life would be so much easier if we only had the source code... | |
*/ | |
/** |
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
postgres: postgres -D /usr/local/var/postgres/ | |
api: pserve Config/cl/conf/localhost.ini#api --reload | |
internalapi: pserve Config/cl/conf/localhost.ini#internalapi --reload | |
webhook: pserve Config/cl/conf/localhost.ini#webhook --reload | |
rabbit: rabbitmq-server | |
redis: redis-server /usr/local/etc/redis.conf | |
flower: flower --broker=amqp://guest:guest@localhost:5672// | |
celery1: celery worker -A cl.vendor.celery_setup.app -c 4 -n 'celery worker' -l info | |
celery2: celery worker -A cl.vendor.scheduler.scheduler_app -c 1 -l info -n scheduler -Q scheduled_jobs |
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
What is the release date for 2.0? | |
No exact release date yet. They don't want what happened with 1.2.They want to | |
make sure they get it done right for 2.0 so they are not setting a date yet. | |
What is the plan for having a migration path for 2.0? How much rewriting of 1.x | |
apps will need to be done to migrate to 2.0? | |
Mishko said that there will definitely be a migration plan for 2.0. They dont know |
What are we trying to observe? Raw object data.
// Objects
var obj = { id: 2 };
obj.id = 3; // obj == { id: 3 }
// Arrays
var arr = ['foo', 'bar'];
arr.splice(1, 1, 'baz'); // arr == ['foo', 'baz'];
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
/** | |
* Brightcove Consulting | |
*/ | |
var bcc = { | |
common : { | |
init: function(){ | |
$('body').append('<h2>HIIIIII<h2>'); | |
} |