brew install git bash-completion
Configure things:
git config --global user.name "Your Name"
git config --global user.email "you@example.com"
| <!DOCTYPE html> | |
| <html data-ng-app="TestApp"> | |
| <head> | |
| <script src="http://code.angularjs.org/1.2.9/angular.js"></script> | |
| <script> | |
| angular.module('TestApp', []) | |
| .factory('beforeUnload', function ($rootScope, $window) { | |
| // Events are broadcast outside the Scope Lifecycle |
| import {Promise} from "es6-promise"; | |
| export class Header { | |
| header: string; | |
| data: string; | |
| constructor(header: string, data: string) { | |
| this.header = header; | |
| this.data = data; | |
| } | |
| } |
| /* Polyfill indexOf. */ | |
| var indexOf; | |
| if (typeof Array.prototype.indexOf === 'function') { | |
| indexOf = function (haystack, needle) { | |
| return haystack.indexOf(needle); | |
| }; | |
| } else { | |
| indexOf = function (haystack, needle) { | |
| var i = 0, length = haystack.length, idx = -1, found = false; |
| // Type definitions for PostalJS | |
| // Project: https://github.com/postaljs/postal.js | |
| // Definitions By: Bart Breen (https://github.com/barticus) | |
| interface PostalEnvelope { | |
| channel?: string; | |
| topic: string; | |
| timeStamp?: any; | |
| data?: any; | |
| } |
| 'use strict'; | |
| var util = require('util'), | |
| winston = require('winston'), | |
| logger = new winston.Logger(), | |
| production = (process.env.NODE_ENV || '').toLowerCase() === 'production'; | |
| module.exports = { | |
| middleware: function(req, res, next){ | |
| console.info(req.method, req.url, res.statusCode); |
| /*! | |
| * SSSL: smallest, simpelst script loader | |
| * version: 1.0.1 | |
| * | |
| * API: | |
| * Normal usage | |
| * sssl(source [,complete]); | |
| * | |
| * Example: | |
| * sssl('jquery.js', function(){ |
| # Your init script | |
| # | |
| # Atom will evaluate this file each time a new window is opened. It is run | |
| # after packages are loaded/activated and after the previous editor state | |
| # has been restored. | |
| # | |
| # An example hack to log to the console when each text editor is saved. | |
| # | |
| # atom.workspace.observeTextEditors (editor) -> | |
| # editor.onDidSave -> |
| Function New-SymLink { | |
| <# | |
| .SYNOPSIS | |
| Creates a Symbolic link to a file or directory | |
| .DESCRIPTION | |
| Creates a Symbolic link to a file or directory as an alternative to mklink.exe | |
| .PARAMETER Path | |
| Name of the path that you will reference with a symbolic link. |
brew install git bash-completion
Configure things:
git config --global user.name "Your Name"
git config --global user.email "you@example.com"
| Install homebrew | |
| Install Git and bash-completion: brew install git bash-completion | |
| Add bash-completion to your .bash_profile: | |
| if [ -f `brew --prefix`/etc/bash_completion ]; then | |
| . `brew --prefix`/etc/bash_completion | |
| fi |