Related Setup: https://gist.github.com/hofmannsven/6814278
Related Pro Tips: https://ochronus.com/git-tips-from-the-trenches/
Related Setup: https://gist.github.com/hofmannsven/6814278
Related Pro Tips: https://ochronus.com/git-tips-from-the-trenches/
create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "[email protected]"
var mixin = require('mixin'); | |
class Cyclist { | |
ride() { | |
console.log(`${this.name} is riding`); | |
} | |
} | |
class Swimmer { | |
swim() { |
The following document is a written account of the Code School screencasting framework. It should be used as a reference of the accompanying screencast on the topic.
You're probably aren't going to take the time to read this document if you're not interested, but there are a lot of nice side effects caused by learning how to create quality screencasts.
Make a clickable area larger (mobile app issue): http://stackoverflow.com/a/20327676/3412545 |
# find head commit | |
git reflog | |
# now reset hard - where N is the head commit found in the reflog | |
git reset --hard HEAD@{N} |
directiveTest({ | |
module: angular.module('app'), | |
name: 'phonebookDirectve', | |
template: '<phonebook phone-numbers="testNumbers"></phonebook>', | |
controller: 'phonebook', | |
selectors: { | |
'phonenumber': 0 | |
}, | |
assertions: { | |
'should expose refresh functionality': function($element) { |
#Install Elixir, Posgresql, and Phoenix for this repo: https://github.com/dantswain/beanie#
On MacOS Sierra (10.12) with Xcode 8 and node >= 5.0
brew update
brew install elixir
brew install postgresql
createuser postgres --superuser