[ Launch: y axes times 3 ] a88fef04ccee175f56282d7a50ffb1d9 by dalemanthei
-- hattip https://github.com/lodestone/hyper-hacks | |
-- hattip https://gist.github.com/ttscoff/cce98a711b5476166792d5e6f1ac5907 | |
-- hattip https://gist.github.com/prenagha/1c28f71cb4d52b3133a4bff1b3849c3e | |
-- A global variable for the Hyper Mode | |
k = hs.hotkey.modal.new({}, "F17") | |
-- The following keys are configured as hot keys in their respective apps (or in Keyboard Maestro) | |
-- d → Dash (configure in Dash preferences) |
[ Launch: reddit base number 2 ] 051b78bf790ee04784e7dcb36d9ed7f7 by dalemanthei[ Launch: reddit base number 2 ] f3df8943329bc0c38a9fd6d9c0c90c23 by dad700[ Launch: reddit base number 2 ] adf6ec91f4337816a03a5e9f736a39cb by dalemanthei[ Launch: reddit base ] 6ce55b12e0dac6f3e2d0fc0de1b3ed5f by dalemanthei[ Launch: reddit base ] a5a0685f36e9ec0fcc1e54a6c02aa9f8 by dalemanthei[ Launch: reddit base ] 6633418 by enjalot[ Launch: simple histogram ] 6631652 by enjalot
[ Launch: reddit base number 2 ] adf6ec91f4337816a03a5e9f736a39cb by dalemanthei[ Launch: reddit base ] 6ce55b12e0dac6f3e2d0fc0de1b3ed5f by dalemanthei[ Launch: reddit base ] a5a0685f36e9ec0fcc1e54a6c02aa9f8 by dalemanthei[ Launch: reddit base ] 6633418 by enjalot[ Launch: simple histogram ] 6631652 by enjalot
[ Launch: reddit base ] 6ce55b12e0dac6f3e2d0fc0de1b3ed5f by dalemanthei[ Launch: reddit base ] a5a0685f36e9ec0fcc1e54a6c02aa9f8 by dalemanthei[ Launch: reddit base ] 6633418 by enjalot[ Launch: simple histogram ] 6631652 by enjalot
[ Launch: reddit base ] a5a0685f36e9ec0fcc1e54a6c02aa9f8 by dalemanthei[ Launch: reddit base ] 6633418 by enjalot[ Launch: simple histogram ] 6631652 by enjalot
{ | |
"path": "/<path-to-project-folder>", | |
"folder_include_patterns": [], | |
"folder_exclude_patterns": ["**/jspm_packages", "**/node_modules", "**/target", "**/.settings", "**/.externalToolBuilders"], | |
"file_exclude_patterns": [".gitignore", ".jazzignore", "pom.xml", ".factorypath", ".project"] | |
}, |
var compileDirective = function (html, scope) { | |
element = $compile(angular.element(html))(scope); | |
scope.$digest(); | |
return element; | |
}; |
var myFilter; | |
beforeEach(function () { | |
module('myModule'); | |
inject(function ($injector) { | |
myFilter = $injector.get('$filter')('myFilter'); | |
}); | |
}); |
beforeEach(module(function ($provide) { | |
$provide.decorator('$window', ['$delegate', | |
function ($delegate) { | |
$windowMock = {}; | |
$windowMock.prototype = $delegate; | |
$windowMock.reloadCount = 0; | |
$windowMock.location = {}; | |
$windowMock.location.reload = function () { | |
$windowMock.reloadCount = $windowMock.reloadCount + 1; | |
}; |