Ollama lets you run powerful AI models locally on your computer, giving you complete control over your AI experience.
Privacy & Control
- Your conversations and data never leave your machine
Jujutsu (jj) is a next-generation version control system that addresses several pain points Git users face daily:
Problems jj Solves:
git add
complexitygit rebase --continue
dance# 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:
To claim this, I am signing this object:
;; -*- geiser-scheme-implementation: 'mit -*- | |
(load "sdf/manager/load") | |
(manage 'new-environment 'combinators) | |
#!/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 |
#!/usr/bin/env bash | |
set -eo pipefail | |
if [[ "$#" -eq 0 ]]; then | |
cat <<EOF | |
usage: $(basename $0) <REGION> [OPTIONS] | |
REGION - a valid AWS region e.g. us-east-1 | |
OPTIONS - any valid AWS CLI options e.g. --profile home | |
EOF |