cat some-file | pbcopy Copies it to your clipboard on osx. I use this a lot.
alias pbcopy='xclip -selection clipboard'
alias pbpaste='xclip -selection clipboard -o'
21–30 of 58 posts
cat some-file | pbcopy Copies it to your clipboard on osx. I use this a lot.
alias pbcopy='xclip -selection clipboard'
alias pbpaste='xclip -selection clipboard -o'
[flagged]
You may like https://httpie.io/ if you've not memorised all the curl flags already. The CLI tools way of making requests with headers and post bodies is really nice in my opinion `http PUT pie.dev/put X-API-Token:123 name=John`
code-server, instead of VSCode. I can build my own podman image on top of it with whatever dev tools I need for whatever languages I'm working with, and if I have to install something weird or something breaks I can just restart the container. Especially on my work machine that isn't Linux, I have this running in a VM and can just use in my browser and don't have to jump through hoops to get the dev environment I wan…
Why not just devcontainers? I know its a PITA to setup on podman.