In newer versions of chrome you may not be able to just drag the code to your quick shortcuts. As a workaround you can just do:
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
function injectJquery(){ | |
var script = document.createElement('script'); | |
script.src = 'https://code.jquery.com/jquery-2.2.4.min.js'; | |
script.type = 'text/javascript'; | |
script.integrity = 'sha256-BbhdlvQf/xTY9gja0Dq3HiwQF8LaCRTXxZKRutelT44' | |
script.crossOrigin="anonymous" | |
document.getElementsByTagName('head')[0].appendChild(script); | |
} | |
//for more info or other versions see https://code.jquery.com/ |
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 ruby | |
# goto the root of your application before running this script | |
filename = 'node_modules/vue-loader/lib/template-compiler/index.js' | |
text = File.read(filename) | |
new_code = %q(code = prettier.format(code, { semi: false, parser: 'babel' })) | |
old_code = 'code = prettier.format(code, { semi: false })' | |
replace = text.gsub(old_code, new_code) |
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
.blob-code, .blob-code-inner { | |
font-weight: 300; | |
font-family: Hack Nerd Font; /* maybe */ | |
font-family: Ubuntu Mono; | |
font-size: 14px; | |
-webkit-text-stroke-width: 0.4px; | |
-webkit-text-stroke-color: inherit; | |
} | |
.js-details-container:not(.commit-tease) { |
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 ruby | |
branches = `git branch --sort=committerdate | awk '{print $1}'`.split("\n").reject{|l| l == '*'} | |
branches.each_with_index{|b, i| puts "#{i < 10 ? ' ' : ''}""#{i} - #{b}" } | |
puts "\n" | |
print 'type branch number: ' | |
target_num = gets.chomp | |
unless target_num.length == 0 |
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
# Show listing ports in MacOS from https://stackoverflow.com/a/30029855/3625433 | |
listening_ports() { | |
if [ $# -eq 0 ]; then | |
sudo lsof -iTCP -sTCP:LISTEN -n -P | |
elif [ $# -eq 1 ]; then | |
sudo lsof -iTCP -sTCP:LISTEN -n -P | grep -i --color $1 | |
else | |
echo "Usage: listening [pattern]" | |
fi |
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
tell application "System Preferences" | |
reveal anchor "trackpadTab" of pane "com.apple.preference.trackpad" | |
end tell | |
tell application "System Events" to tell process "System Preferences" | |
click checkbox 3 of tab group 1 of window 1 | |
end tell | |
quit application "System Preferences" |
For security, since this script injects CSS via AJAX, first fork the main slack night mode repo. The reason is explained here
UPDATE: The code has been modified to download the remote css to a local file and use ruby sass compiler to verify there is no malicious code in the remote css. This will error if the code has been modified to include anything malicious (i.e. script or img tags etc.) It's also been refactored to use the local file inside the js injection, it makes sure it's safe first in the very unlikely event the local file somehow differs from the remote css. The chances of this happening are remote, but this should suffice for safety.
- save this script wherever you keep your ruby scripts for example
~/lacostenycoder/scripts/ruby/
- change the URL in the
remote_repo
variable in ruby script to use YOUR repo. The rawgit.com file is crea
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 ruby | |
username = `whoami`.strip | |
filename = "/Users/#{username}/Library/Application\ Support/Google/Chrome/Default/Preferences" | |
data = File.read filename | |
string = data.split("theme")[1] | |
sha = string.split(/\W/)[7] | |
chrome_store_url = "https://chrome.google.com/webstore/detail/#{sha}" | |
puts chrome_store_url | |
`open #{chrome_store_url}` |
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
[user] | |
name = Your Name | |
email = [email protected] | |
[color] | |
ui = auto | |
[alias] | |
st = status -sb -uall | |
lg = log --pretty='%Cred%h%Creset | %C(yellow)%d%Creset %s %Cgreen(%cr)%Creset %C(cyan)[%an]%Creset' --graph | |
ll = log --pretty='%Cred%h%Creset | %C(yellow)%d%Creset %s %Cgreen(%cr)%Creset %C(cyan)[%an]%Creset' |