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
    
  
  
    
  | javascript: Promise.all([import('https://unpkg.com/[email protected]?module'), import('https://unpkg.com/@tehshrike/[email protected]'), ]).then(async ([{ | |
| default: Turndown | |
| }, { | |
| default: Readability | |
| }]) => { | |
| /* Optional vault name */ | |
| const vault = "Brain"; | |
| /* Optional folder name such as "Clippings/" */ | 
  
    
      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 | |
| set -Eeuo pipefail | |
| trap cleanup SIGINT SIGTERM ERR EXIT | |
| script_dir=$(cd "$(dirname "${BASH_SOURCE[0]}")" &>/dev/null && pwd -P) | |
| usage() { | |
| cat <<EOF | |
| Usage: $(basename "${BASH_SOURCE[0]}") [-h] [-v] [-f] -p param_value arg1 [arg2...] | 
  
    
      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
    
  
  
    
  | # source <(curl -L -s https://bit.ly/trumpi-ubuntu-bootstrap) | |
| mkdir -p ~/Downloads | |
| sudo apt install -y git jq | |
| curl -sfL 'https://vault.bitwarden.com/download/?app=cli&platform=linux' > ~/Downloads/bitwarden.zip | |
| sudo unzip ~/Downloads/bitwarden.zip -d /bin | |
| sudo chmod +x /bin/bw | |
| pushd / | |
| curl -sfL https://git.io/chezmoi | sudo sh | |
| popd | 
  
    
      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
    
  
  
    
  | #NoEnv | |
| #MaxHotKeysPerInterval 2000 | |
| #If GetKeyState("ScrollLock", "T") | |
| ; Top row | |
| [::q | |
| p::w | |
| o::e | |
| i::r | |
| u::t | 
  
    
      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
    
  
  
    
  | CC=g++ | |
| CFLAGS=-c -Wall | |
| LDFLAGS= | |
| SOURCES=main.cpp hello.cpp factorial.cpp | |
| OBJECTS=$(SOURCES:.cpp=.o) | |
| EXECUTABLE=hello | |
| all: $(SOURCES) $(EXECUTABLE) | |
| $(EXECUTABLE): $(OBJECTS) |