←back to thread

539 points todsacerdoti | 1 comments | | HN request time: 0s | source
Show context
pjmlp ◴[] No.44363232[source]
As someone that was happy that I could finally afford owning computers with a graphics display on them, this going back to the terminal doesn't stop surprising me.

We still do horses, but hardly anyone is favouring them for travelling around the continent delivering mail.

Kudos to the people that would rather experience that, I guess.

replies(12): >>44363308 #>>44363330 #>>44363352 #>>44363403 #>>44363450 #>>44363648 #>>44363674 #>>44364156 #>>44364655 #>>44364828 #>>44365517 #>>44365685 #
ur-whale ◴[] No.44363674[source]
> We still do horses, but hardly anyone is favouring them for travelling around the continent delivering mail.

Except that if you've ever seen someone who truly knows how to use a terminal, you'd be surprised how many times faster he can work than with any other UI-based workflow.

This may change with AI, but so far I'm not holding my breath.

replies(2): >>44363705 #>>44364528 #
delta_p_delta_x ◴[] No.44364528[source]
Literally twenty minutes ago, I had to submit several hospital invoices for insurance claims. The website, despite claiming it'd accept PDFs, didn't consider the PDFs I uploaded valid, but somehow PNGs worked. My first thought was 'let's script the conversion', but then I realised there were only six PDFs, so I opened Acrobat, and used keyboard navigation to run through the menus to export all PDFs to PNGs. Done in two minutes flat.

Had I chosen to script it, I would probably still be hunting for the CLI to convert PDFs to PNGs. Sometimes, the trade-off is not so clear.

replies(2): >>44365251 #>>44365281 #
huimang ◴[] No.44365281[source]
fd -e pdf -x magick {} {/}.png

Took less than a minute to write, test, and get the right dependencies (nix-shell -p imagemagick ghostscript). Scales to any number of pdfs.

The terminal just wins probably 95% of the time as long as you know about available tools.

replies(1): >>44387201 #
1. delta_p_delta_x ◴[] No.44387201{3}[source]
> nix-shell

So I have to install NixOS to get your 'took me less than a minute to write, test, and get the right dependencies'. Given my work-flow, and since I don't use Nix, doing what I did was absolutely 100% faster.