If you encounter the following:
GitHub rate limit reached. To increase the limit use GitHub authentication.
Run jspm endpoint config github to set this up.
Sources :
| // http://wiki.c2.com/?FizzBuzzTest | |
| const result = Array.from(Array(100), (_, i) => i + 1).map(number => { | |
| if (number%5 === 0 && number%3 === 0) { | |
| return "FizzBuzz"; | |
| } | |
| if (number%3 === 0) { | |
| return "Fizz"; | |
| } | |
| if (number%5 === 0) { | |
| return "Buzz"; |
If you encounter the following:
GitHub rate limit reached. To increase the limit use GitHub authentication.
Run jspm endpoint config github to set this up.
Sources :
| init-author-name=Christophe Rosset | |
| [email protected] | |
| init-author-url=http://labs.topheman.com | |
| init-version=0.0.1 | |
| init-license=MIT | |
| message=Bump to v%s |
| [core] | |
| excludesfile = /Users/Tophe/.gitignore_global | |
| editor = vi | |
| [difftool "sourcetree"] | |
| cmd = opendiff \"$LOCAL\" \"$REMOTE\" | |
| path = | |
| [mergetool "sourcetree"] | |
| cmd = /Applications/SourceTree.app/Contents/Resources/opendiff-w.sh \"$LOCAL\" \"$REMOTE\" -ancestor \"$BASE\" -merge \"$MERGED\" | |
| trustExitCode = true | |
| [user] |
#Git notes
Warning : Support for isplay of git notes has been dropped by github : https://github.com/blog/707-git-notes-display
Resource : https://vimeo.com/34273537
##Add
git notes add
#Install
If cask not installed : https://github.com/caskroom/homebrew-cask
$ brew install caskroom/cask/brew-cask
Install vagrant - http://sourabhbajaj.com/mac-setup/Vagrant/README.html
| " Vundle config | |
| set nocompatible " be iMproved, required | |
| filetype off " required | |
| " set the runtime path to include Vundle and initialize | |
| set rtp+=~/.vim/bundle/Vundle.vim | |
| call vundle#begin() | |
| " alternatively, pass a path where Vundle should install plugins | |
| "call vundle#begin('~/some/path/here') |
| <DOCTYPE html> | |
| <html> | |
| <head> | |
| </head> | |
| <body> | |
| <div id="dataContainerOrientation"> | |
| No device orientation data | |
| </div> | |
| <script> | |
| function init() { |