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
{ | |
"$schema": "https://json-schema.org/draft/2020-12/schema", | |
"$id": "", | |
"$defs": { | |
"arrayOfString": { | |
"type": "array", | |
"items": { | |
"type": "string" | |
} | |
}, |
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
# .hushlogin | |
# .inputrc | |
"\e\e[C": forward-word | |
"\e\e[D": backward-word | |
# .bashrc | |
ulimit -n 2048 # /Library/LaunchDaemons/limit.maxfiles.plist |
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
{ | |
"name": "", | |
"description": "", | |
"background_color": "#", | |
"icons": [{ | |
"src": ".png", | |
"sizes": "512x512", | |
"type": "image/png" | |
}] | |
} |
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
"complex_modifications": { | |
"parameters": { | |
"basic.simultaneous_threshold_milliseconds": 50, | |
"basic.to_delayed_action_delay_milliseconds": 500, | |
"basic.to_if_alone_timeout_milliseconds": 1000, | |
"basic.to_if_held_down_threshold_milliseconds": 400, | |
"mouse_motion_to_scroll.speed": 100 | |
}, | |
"rules": [ | |
{ |
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
try { | |
angular.bootstrap(document.body, ['moduleName']); | |
} catch(e) { | |
angular.element(document.body).injector().invoke(function($compile) { | |
var scope = angular.element(element).scope(); | |
$compile(element)(scope); | |
scope.$apply(); | |
}); | |
} |
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
// ZuZizqDF4q8 | |
:root { | |
--ON: initial; | |
--OFF: ; | |
} | |
-khtml-border-radius: px; | |
-moz-border-radius: px; | |
-webkit-border-radius: px; | |
border-radius: px; |
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
https://github.com/Mouvedia/cb-fetch | |
// xhr.onabort | |
// xhr.onerror | |
// xhr.ontimeout | |
// XMLHttpRequest({mozAnon: true}); | |
// if (typeof obj.then === "function") | |
mode | |
"cors" |
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
//https://github.com/Mouvedia/isString | |
String.parseAsClass = function(className, HTML5) { | |
if (!String.isString(className)) | |
throw new TypeError('The passed argument must be a string.'); | |
if (className === '') | |
throw new SyntaxError('The string provided must not be empty.'); | |
if (!HTML5) { | |
className = className.replace(/^[ \t\n\f\r\u200b]+|[ \t\n\f\r\u200b]+$/g, ''); |
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 "cmd-alt-right" :tabset.next] | |
[:app "cmd-alt-left" :tabset.prev] | |
[:app "ctrl-shift-right" :tabs.next] | |
[:app "ctrl-shift-left" :tabs.prev] | |
[:app "alt-w" :workspace.show] | |
[:app "alt-f" :searcher.show] | |
[:app "alt-space" :navigate-workspace-transient] | |
[:app "pmeta-b" :add-browser-tab] |
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 :-lt.objs.intro/show-intro] | |
[:app :lt.objs.style/set-skin "dark"] | |
[:app :lt.objs.sidebar.workspace/workspace.open-on-start] | |
[:app :lt.objs.app/run-post-init [:window.maximize]] | |
[:app :lt.plugins.gitlight/config {:git-binary "git" :max-history 64}] | |
[:tabset.tab :lt.plugins.user/push-active-tab] | |
[:tabs-extended :lt.plugins.user/last-tab] |
NewerOlder