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
// Shamelessly stolen from https://github.com/vercel/storage/blob/6104c9fa9731b9610d9e4e8b68652b27d355b0ba/packages/postgres/src/index.ts | |
import type { QueryResult, QueryResultRow } from '@neondatabase/serverless'; | |
import { type VercelPool, createPool } from './create-pool'; | |
import type { Primitive } from './sql-template'; | |
export * from './create-client'; | |
export * from './create-pool'; | |
export * from './types'; | |
export { postgresConnectionString } from './postgres-connection-string'; |
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
function gch { | |
BRANCH=$(git branch | fzf --cycle | tr -d '[:space:]') | |
if [[ $BRANCH =~ '^\*' ]] then | |
echo "current branch selected, nothing to do" | |
return 0 | |
fi | |
if [[ -n $BRANCH ]] then | |
git checkout $BRANCH |
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
# huge inspiration from https://scriptingosx.com/2019/07/moving-to-zsh-06-customizing-the-zsh-prompt/ | |
export PROMPT='%(?.%F{green}√.%F{red}?%?)%f %B%F{blue}%1~%f%b %(!.#.❯) ' |
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
Re-open the last closed tab. | |
CTRL + SHIFT + t | |
COMMAND + SHIFT + t | |
App: Chrome, Edge, Brave, Firefox | |
Switch to another window of the same program on MacOS | |
COMMAND + ` | |
App: / |
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
def gch [] { | |
let branch = git branch | fzf --cycle | tr -d '[:space:]' | |
git checkout $branch | |
} |
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
# From https://stackoverflow.com/a/17029936 | |
# git branch -d keeps us on the safe side | |
git fetch -p ; git branch -r | awk '{print $1}' | egrep -v -f /dev/fd/0 <(git branch -vv | grep origin) | awk '{print $1}' | xargs git branch -d |
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
set runtimepath^=~/.vim runtimepath+=~/.vim/after | |
"runtimepath+=/opt/homebrew/share/vim/vim91/pack/ | |
let &packpath = &runtimepath | |
source ~/.vimrc |
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
nnoremap <leader>b <Cmd>echo system("git blame " .. expand("%") .. " -L " .. line(".") .. "," .. line("."))<CR> |