• 0 Posts
  • 6 Comments
Joined 2 years ago
cake
Cake day: July 1st, 2023

help-circle
  • I’m down to listen to their response myself but as someone who tried really hard to explain away their last dumb controversy only to be proven wrong multiple times, I wouldn’t be surprised if it was just pure negligence. Actions speak louder than words and their actions have shown they’re a flawed company like any other despite what their conversations on WAN show would have you believe.

    Fuck Honey/PayPal first and foremost, don’t get me wrong. But unless there were legal issues around it, we also can’t ignore it if the biggest tech YouTube channel found out about one of the biggest sponsors on YouTube being a scam, stopped working with them for that reason, but said absolutely nothing to anyone else.




  • Oh boy, my time to shine:

    • mkd - Create directory and immediately cd into it
    • dei - docker exec -i
    • dps - docker ps
    • mdocker - Switch to minikube’s docker context
    • n - nvim
    • n. - nvim .

    Node package managers

    Exampes use pnpm but I have them for yarn, npm, and bun too

    • pi - pnpm install
    • pd - pnpm run dev

    fzf stuff

    • sdh - Search home directory (directories, recursive)

    Meme

    • fuckyou - git push --force
    • nano - nvim

    Misc

    createpgdb - Create a postgres db on the given container with the given name

    Usage: createpgdb "postgres container" "db name"

    I have similar ones for dropdb and pg_dump. Here’s the command:

    f() { local __user; if [ -z $3 ]; then __user=postgres; else __user=$3; fi; docker exec -i $1 createdb -U $__user $2; unset -f f; }; f'