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
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<plist version="1.0"> | |
<dict> | |
<key>allowFilters</key> | |
<string>docs.snowflake.com/en/*</string> | |
<key>basicIndexEnabled</key> | |
<true/> | |
<key>cssToInject</key> | |
<string>footer, #masthead, aside { |
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
// ==UserScript== | |
// @name Remove a.target | |
// @version 0.1 | |
// @match http://*/* | |
// @match https://*/* | |
// @grant none | |
// @run-at document-idle | |
// ==/UserScript== | |
(function() { |
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
$$('div.p-channel_sidebar__channel').map(function(x) { | |
return [x.dataset.qaChannelSidebarChannelId, x.children[1].textContent]; | |
}).map(x => x.join(',')).join('\n') |
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
// 1. Add a Gmail "azure" filter to all Azure email for instance | |
// Matches: from:(azuredevops@microsoft.com) | |
// Do this: Skip Inbox, Apply label "azure" | |
// 2. Add a Gmail "azure-forwarded" filter to keep track of those threads that have forwarded messages. | |
// 3. Add this script to a new project at https://script.google.com | |
// 4. Replace "X-VSS-Scope: example" with your "X-VSS-Scope" header (open an email, then click "Show original") | |
// Replace "user@example.com" with your preferred forwarding email target. |
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
#!/usr/bin/env bash | |
set -euo pipefail | |
# USAGE | |
# elgato-air-light IP ON BRIGHTNESS TEMPERATURE | |
# | |
# ON can be 0 or 1 | |
# BRIGTHNESS can be 0-100 | |
# TEMPERATURE can be 0-100 | |
# |
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
. /usr/local/share/liquidprompt | |
. path/to/lp_andreineculau.theme | |
lp_theme andreineculau |
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
// ==UserScript== | |
// @name TravisCI 100% width | |
// @match *://travis-ci.com/* | |
// ==/UserScript== | |
.centered .main, | |
.centered .wrapper-main, | |
.centered.wrapper .main, | |
.centered.wrapper .wrapper-main, | |
.loading-page .main, |
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
# Assuming that 2.js is executable | |
# chmod +x ./2.js | |
npx -p lodash ./2.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
{ | |
"BTTPresetName" : "Andrei", | |
"BTTPresetColor" : "77.201250, 220.575000, 158.446375, 255.000000", | |
"BTTGeneralSettings" : { | |
"BTTPathSampleSize" : 100, | |
"BTTHTTPServerPort" : 12345, | |
"BTTCMOnTop" : true, | |
"ctrlDisables" : false, | |
"BTTForceForceClickPressure2F" : 700, | |
"BSTLeftHalfBlock" : true, |
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
# NOTE .git/config not .git-config, but github gist doesn't allow slash | |
[filter "jet"] | |
clean = \"$(git rev-parse --git-common-dir)\"/../git-filter-jet-clean %f | |
smudge = \"$(git rev-parse --git-common-dir)\"/../git-filter-jet-smudge | |
required = true | |
[diff "jet"] | |
textconv = \"$(git rev-parse --git-common-dir)\"/../git-filter-jet-textconv | |
cachetextconv = true | |
binary = true |
NewerOlder