brew install jujutsu # Install on macOS
jj config set --user user.name "Your Name"
jj config set --user user.email "[email protected]"Jujutsu (jj) is a next-generation version control system that addresses several pain points Git users face daily:
Problems jj Solves:
- No staging area confusion - Work directly with commits, no
git addcomplexity - Automatic conflict resolution workflow - No
git rebase --continuedance - Safe history rewriting - Rebase/amend operations can't lose work
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
| # Fish shell completions for nu-day.fish | |
| # Fish completions work by matching command names (-c) with completion definitions. | |
| # When you type a command and press Tab, Fish searches ~/.config/fish/completions/ for matching files. | |
| # The 'complete' command defines completions: -c specifies the command name, -l defines long options, and -d provides descriptions. | |
| # Complete the available options | |
| complete -c nu-day -l help -d "Show help message" | |
| complete -c nu-day -l skip-nucli -d "Skip updating nucli development tools" | |
| complete -c nu-day -l skip-tokens -d "Skip AWS access token refresh" | |
| complete -c nu-day -l skip-br -d "Skip Brazil environment AWS credentials refresh" |
This project is a simple minor mode for Emacs to interact with the YouTube Data API v3.
This mode allows the user to perform basic YouTube playlist management from within Emacs. It does not aim to provide comprehensive coverage of the YouTube Data API.
I hereby claim:
- I am christianromney on github.
- I am christianromney (https://keybase.io/christianromney) on keybase.
- I have a public key ASDQT7Xc5VEM9sVNu2_EjdbyCizbbreD-x3qiLBzvP0-nwo
To claim this, I am signing this object:
- TODO: backfill notes
- proceeds by question and answer
- some questions are open ended (especially in the beginning)
- e.g. propose a definition
- the person being questioned is the partner of the inquirer
- focus on consistency of statements
- consistency is probed with the elenchus
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
| ;; -*- geiser-scheme-implementation: 'mit -*- | |
| (load "sdf/manager/load") | |
| (manage 'new-environment 'combinators) | |
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 | |
| # | |
| # DESCRIPTION | |
| # utility to aid in the setup of temporary AWS assumed role credentials | |
| # | |
| # USAGE | |
| # pipe the output of aws sts assume-role to this script and redirect the output | |
| # to append the temporary credentials to your $HOME/.aws/credentials | |
| # | |
| # you may supply a profile name as an argument. if you do not, then one is generated |
NewerOlder