This file contains hidden or 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
| require 'github_api' | |
| require 'optparse' | |
| require 'pp' | |
| options = {} | |
| OptionParser.new do |opts| | |
| opts.banner = "Usage: github_org_backup.rb [options]" | |
| opts.on("-u", "--user USER", "Your Github username") do |v| | |
| options[:user] = v |
This file contains hidden or 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
| window.onclick=function() { | |
| alert('wtf!'); | |
| } |
This file contains hidden or 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
| :root { | |
| --font-main: "Inter", system-ui, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"; | |
| --font-lufga: "Inter", system-ui, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"; | |
| } | |
| .theme_dark, .theme_moon_dark, .theme_moon_dark_conditional { | |
| --app-bg: #181715; | |
| --page-text: #F2E6D7; | |
| --app-text: #F2E6D7; | |
| --primary: #F2E6D7; |
This file contains hidden or 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
| #!/bin/bash | |
| # Path to SwitchAudioSource | |
| SWITCH_AUDIO="/opt/homebrew/bin/SwitchAudioSource" | |
| # Get current output device | |
| current=$("$SWITCH_AUDIO" -c) | |
| # Define preferred devices in order | |
| declare -a devices=( |
OlderNewer