I hereby claim:
- I am hmps on github.
- I am hmps (https://keybase.io/hmps) on keybase.
- I have a public key ASBSOgH3wxwdxRD1tHLgpa0PxQJeRPlgkabedy2jddaV7wo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| { | |
| "48": { | |
| "shifted": 61, | |
| "alted": 125 | |
| }, | |
| "49": { | |
| "shifted": 33 | |
| }, | |
| "50": { | |
| "shifted": 34, |
| #!/bin/bash | |
| # | |
| # Usage | |
| # 1. Put this file somewhere safe in your file system | |
| # 2. Make sure it is executable: chmod +x gor.sh | |
| # 3. Create an alias in your CLI. | |
| # | |
| # Example alias: | |
| # alias gor='bash ~/.cli-scripts/gor.sh'; |
finish.sh (see below) in your repo root.finish.sh executable: $ chmod u+x finish.shIf you want to have easy access to it without having to the script it in every repo you can save it somewhere safe and alias it. Something like this:
~/finish.sh. Make it executable. (chmod +x finish.sh)alias finish='bash ~/finish.sh'. Make your alias whatever you want. Just remember it. :)| ;(function(angular) { | |
| 'use strict'; | |
| /* globals angular */ | |
| /* jshint latedef: false */ | |
| /** | |
| * @module Apsis.modules.select | |
| * @name SelectController | |
| * | |
| * @description Controller for the select.directive |
I've struggled a little with versioning in JSPM. It adheres to SemVer but does not support everything that NPM does. Here are the rules:
Installs only exactly the version given.
[email protected] => Only installs version 1.0.0 of angular
[email protected] => Only installs version 1.4.3 of angular
| { | |
| "parser": "babel-eslint", | |
| "rules": { | |
| "indent": [ 2, 4 ], | |
| "quotes": [ 2, "single" ], | |
| "linebreak-style": [ 2, "unix" ], | |
| "semi": [ 2, "always" ], | |
| "func-names": 2, | |
| "comma-style": 2, | |
| "brace-style": [2, "1tbs", { "allowSingleLine": true }], |
| (function(d) { | |
| var style = document.querySelector('#hmpsBlurStyle'), | |
| body; | |
| if ( style ) { | |
| style.parentElement.removeChild(style); | |
| } else { | |
| body = d.querySelector('body'); | |
| style = d.createElement('style'); |
| javascript: (function() { | |
| var root = $(document.getElementsByTagName('html')); | |
| var watchers = []; | |
| var attributes = []; | |
| var attributes_with_values = []; | |
| var elements = []; | |
| var elements_per_attr = []; | |
| var scopes = []; |
| // THE RIDDLE | |
| (function() { | |
| if ( !!document.getElementById('ProspectEyeDebugger') ) { | |
| document.getElementById('ProspectEyeDebugger').remove(); | |
| } | |
| function styleEl(el, styles) { | |
| for( var style in styles) { | |
| if ( styles[style].length === 2 ) { |