View git-log-pretty
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Visualizing branch topology in git on the commandline | |
git log --graph --oneline --full-history --all | |
git log --graph --full-history --all --pretty=format:"%h%x09%d%x20%s" | |
# With colors in Bash: | |
git log --graph --full-history --all --color --pretty=format:"%x1b[31m%h%x09%x1b[32m%d%x1b[0m%x20%s" |
View gist:3e0432fe02bae3c574b5
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Verifying I am +udayms on my passcard. https://onename.com/udayms |
View Team.json.postman_collection
This file has been truncated, but you can view the full file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"id": "124e573f-bc1b-4d9a-a7ec-c4c17f2095e1", | |
"name": "Team", | |
"description": "", | |
"order": [ | |
"0fa78cfe-0d72-19c6-3ac7-b299a3e95540", | |
"57194727-54b8-caa3-bb58-c78f0cfcb32f", | |
"c36dccba-09af-3b85-f3d0-b3bfb925dd59", | |
"34bea456-2f76-d5ea-f39a-0305ed2bab4e", | |
"4b5a2548-c9ab-73bb-13d5-e35d256a4e19", |
View angular-directives.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
app.directive('databank', ['$parse','$http', '$rootScope', function($parse, $http, $rootScope) { | |
return { | |
restrict: 'E', | |
replace: true, | |
scope: { accept: "=",fn:"=onReady" }, | |
link: function(scope, elem, attr){ | |
var files = attr.files.split(' '); | |
var promises = {}; | |
var db = {}; |
View hammer-directives.js (ported for Hammer v2)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Inspired by AngularJS' implementation of "click dblclick mousedown..." | |
* | |
* This ties in the Hammer v2 events to attributes like: | |
* The v2 version of Hammer can be found at https://github.com/EightMedia/hammer.js/tree/v2 | |
* | |
* hm-tap="add_something()" | |
* hm-swipe="remove_something()" | |
* | |
* and also has support for Hammer options with: |