create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "your_email@youremail.com"
| So you've cloned somebody's repo from github, but now you want to fork it and contribute back. Never fear! | |
| Technically, when you fork "origin" should be your fork and "upstream" should be the project you forked; however, if you're willing to break this convention then it's easy. | |
| * Off the top of my head * | |
| 1. Fork their repo on Github | |
| 2. In your local, add a new remote to your fork; then fetch it, and push your changes up to it | |
| git remote add my-fork git@github...my-fork.git |
create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "your_email@youremail.com"
This is copy of Debugging with ipython and ipdb.
which easy_install| #!/usr/bin/env bash | |
| # | |
| # This is sp, the command-line Spotify controller. It talks to a running | |
| # instance of the Spotify Linux client over dbus, providing an interface not | |
| # unlike mpc. | |
| # | |
| # Put differently, it allows you to control Spotify without leaving the comfort | |
| # of your command line, and without a custom client or Premium subscription. | |
| # |
| #add 'node_modules' to .gitignore file | |
| git rm -r --cached node_modules | |
| git commit -m 'Remove the now ignored directory node_modules' | |
| git push origin <branch-name> |
Python syntax here : 2.7 - online REPL
Javascript ES6 via Babel transpilation - online REPL
import math| """ | |
| Assuming you have | |
| a UFO open in RoboFont | |
| a current glyph selected | |
| and furthermore that | |
| this glyph is part of a git repository | |
| and that you have done some work on it | |
| and would like to compare the current state in robofont |
#Quick Guide
sudo atsutil databases -remove
atsutil server -shutdown
atsutil server -ping
#Extended Guide from http://doc.extensis.com/Font-Management-in-OSX-Best-Practices-Guide.pdf
| 'use strict'; | |
| // ======================================================================= | |
| // Gulp Plugins | |
| // ======================================================================= | |
| var gulp = require('gulp'), | |
| nunjucks = require('nunjucks'), | |
| markdown = require('nunjucks-markdown'), | |
| marked = require('marked'), | |
| rename = require('gulp-rename'), | |
| gulpnunjucks = require('gulp-nunjucks'); |