- I already use it
- Multiple cursors
- It has multiple cursors now
- I don't want to get left behind =(
| # More info at http://unix.stackexchange.com/questions/165369/whats-the-difference-between-commit-hash-parent-hash-and-tree-hash-in-gi | |
| # Make two git repositories with the same first commit and compare logs | |
| for dir in {a,b}; do | |
| mkdir $dir | |
| ( | |
| cd $dir | |
| ( | |
| git init | |
| echo 'foo' > foo | |
| git add foo |
| git init | |
| git commit --allow-empty -m 'Initial commit' | |
| # Commit a file | |
| echo 'foo' > a | |
| git add a | |
| git commit -m 'Commit' | |
| # Commit another file with the same contents | |
| echo 'foo' > b | |
| git add b | |
| git commit -m 'Commit' |
| app.service('AppEvents', [ | |
| '$rootScope', '$log', | |
| function ($rootScope, $log) { | |
| // Store for callback functions. | |
| this._events = {}; | |
| // Deregister an event. | |
| var deregister = function (offFunc) { | |
| if (offFunc) { |
| (function (angular, _) { | |
| 'use strict'; | |
| var module = angular.module('canvas', [ | |
| 'swipe' | |
| ]); | |
| // In your article: | |
| // <div canvas-circle value="0" min="0" max="100"></div> | |
| app.directive('canvasCircle', [ |
| .DS_Store | |
| *.pyc | |
| *.sw[o|p] | |
| *.un~ | |
| .project | |
| .rvmrc | |
| ._* | |
| .venv | |
| .ropeproject | |
| .sass-cache |
| [core] | |
| excludesfile = ~/.gitignore | |
| whitespace = blank-at-eol,cr-at-eol,tab-in-indent | |
| [user] | |
| name = <name> | |
| email = <email> | |
| [github] | |
| user = <username> |
| { | |
| "folder_exclude_patterns": | |
| [ | |
| ".svn", | |
| ".git", | |
| ".hg", | |
| "CVS", | |
| ".sass-cache" | |
| ], | |
| "ensure_newline_at_eof_on_save": true, |
| <!-- Charset is in http-equiv --> | |
| <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> | |
| <!-- Does Charset have to be defined in an attribute? --> | |
| <link type="text/css" charset="utf-8" rel="stylesheet" href="media/styles/application.css" /> |