<a href="https://www.buymeacoffee.com/gbraad" target="_blank"><img src="https://www.buymeacoffee.com/assets/img/custom_images/orange_img.png" alt="Buy Me A Coffee" style="height: 41px !important;width: 174px !important;box-shadow: 0px 3px 2px 0px rgba(190, 190, 190, 0.5) !important;-webkit-box-shadow: 0px 3px 2px 0px rgba(190, 190, 190, 0.5) !important;" ></a>
  
    
      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
    
  
  
    
  | { | |
| "anuppuccin-theme-settings@@anuppuccin-theme-light": "ctp-rosepine-light", | |
| "anuppuccin-theme-settings@@anuppuccin-theme-dark": "ctp-mocha", | |
| "anuppuccin-theme-settings@@anuppuccin-accent-toggle": true, | |
| "anuppuccin-theme-settings@@anuppuccin-theme-accents": "ctp-accent-rosewater", | |
| "anuppuccin-theme-settings@@anp-colorful-frame-opacity": 1, | |
| "anuppuccin-theme-settings@@anp-colorful-frame-color@@dark": "#43BFBA", | |
| "anuppuccin-theme-settings@@anp-colorful-frame-color@@light": "#74B7C4", | |
| "anuppuccin-theme-settings@@anp-callout-toggle": true, | |
| "anuppuccin-theme-settings@@anp-callout-select": "anp-callout-default", | 
  
    
      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
    
  
  
    
  | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
| ; OSX style keys; | |
| ; Taking from post: https://www.autohotkey.com/board/topic/60675-osx-style-command-keys-in-windows/ | |
| ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
| ; CapsLock switch language | |
| CapsLock::Send, {Alt Down}{Shift Down}{Shift Up}{Alt Up} | |
| ;Command-backspace deletes whole line | |
| #BS::Send {LShift down}{Home}{LShift Up}{Del} | 
  
    
      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
    
  
  
    
  | #!/usr/bin/env bash | |
| DB_FILE=$1 | |
| TABLE=$2 | |
| if [ -z "$DB_FILE" ] || [ -z "$TABLE" ]; then | |
| echo "Usage: $0 <db_file> <table>" | |
| exit 1 | |
| fi | |
| sqlite3 $DB_FILE <<EOF | 
  
    
      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
    
  
  
    
  | class bcolors: | |
| HEADER = '\033[95m' | |
| OKBLUE = '\033[94m' | |
| OKCYAN = '\033[96m' | |
| OKGREEN = '\033[92m' | |
| WARNING = '\033[93m' | |
| FAIL = '\033[91m' | |
| ENDC = '\033[0m' | |
| BOLD = '\033[1m' | |
| UNDERLINE = '\033[4m' | 
  
    
      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
    
  
  
    
  | #!/usr/bin/env bash | |
| curl -O https://bootstrap.pypa.io/ez_setup.py | |
| python3 ez_setup.py | |
| curl -O https://bootstrap.pypa.io/get-pip.py | |
| python3 get-pip.py | 
  
    
      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
    
  
  
    
  | # Translations for Traditional Chinese | |
| # https://gohugo.io/content-management/multilingual/#translation-of-strings | |
| # === baseof == | |
| [backToTop] | |
| other = "回到頂端" | |
| [viewComments] | |
| other = "查看評論" | |
| # === baseof == | 
  
    
      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
    
  
  
    
  | # 0 is too far from ` ;) | |
| set -g base-index 1 | |
| # Automatically set window title | |
| set-window-option -g automatic-rename on | |
| set-option -g set-titles on | |
| #set -g default-terminal screen-256color | |
| set -g status-keys vi | |
| set -g history-limit 10000 | 
