this post was submitted on 21 Feb 2024
345 points (90.2% liked)

Programmer Humor

32054 readers
1532 users here now

Post funny things about programming here! (Or just rant about your favourite programming language.)

Rules:

founded 5 years ago
MODERATORS
 
you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 34 points 7 months ago (2 children)

Eeeehhhh, I was kinda jealous of one of my coworkers Doom Emacs setup. He had automated like 80% of his own job with it. Still haven't bothered to try to learn it myself. One of these days...

[–] [email protected] 20 points 7 months ago (1 children)

What did they automate? I'm trying to get some ideas for my Neov... uhhhh... Emacs with evil-mode setup.

[–] [email protected] 21 points 7 months ago* (last edited 7 months ago) (2 children)

He did this thing where he unified his shell history across thousands of hosts - it was super handy given our extensive use of Ansible playbooks and database managment commands. He could then use a couple hotkeys to query this history within a new open document. Super handy for writing out shell command steps or wrapping things in a bash script you're working on. Unfortunately I don't really have a link to HOW to do this, I just remember thinking "Oh my god, that would save me SO much time".

Nowadays, I just have this giant document with hundreds of our runbook commands and enable Github Copilot to make it SUPER easy to do the same thing without establishing an SSH session in the backend.

[–] [email protected] 11 points 7 months ago (1 children)

Wow, that's super useful! I don't have thousands of hosts, but even with a dozen, it would save me so much time. Why have I never thought of doing this? Thanks for the idea! (now I just need a few lonely evenings configuring the thing)

[–] [email protected] 3 points 7 months ago

There's also Xpipe for that.

[–] [email protected] 4 points 7 months ago

atuin might be useful it syncs your shell history

[–] [email protected] 6 points 7 months ago (1 children)

I returned to emacs yesterday after using vscode out of laziness. I set up doom emacs and got everything I needed. Now typing is fun again. Actually before that tried neovim for the first time. I can't do modal. Makes me very uncomfortable.

[–] [email protected] 1 points 7 months ago (1 children)

Hi, what do you mean by modal?

[–] [email protected] 1 points 7 months ago

In vi for example you switch between modes. In insert mode you can insert text and in normal mode you can move around and do many other actions to edit. Getting used to this takes time and I don't have the energy for now.