rmurri's comments

rmurri | 2 years ago | on: Firefox 118

I don't know about TST, but sidebery can alter your window title when it's active, so you can match css rules against it.

    #main-window[titlepreface*="Sidebery"] #TabsToolbar {
      visibility: collapse !important;
    }

rmurri | 5 years ago | on: Why are so many coders still using Vim and Emacs?

It's not merely nostalgia or availability. I continue to use emacs because it has the features that I want, where other software does not.

Some things I want out of an editor:

* Never having to touch the mouse in any way.

* The ability to customize any feature for my current project or mindset on a whim.

* No UI, as much as possible. Show me the content I'm editing and nothing else.

* A good, extensible, set of keybindings with a bunch of features for editing of raw text

I run my project in an IDE and will sometimes use a feature, but I generally don't develop there.

rmurri | 5 years ago | on: Why is infrastructure as code such a big deal?

Reproducibility and peace of mind! There's nothing worse that getting woken up at 3:30 AM and realizing that it'll probably take a few hours to rebuild a server because it's dead and not coming back.

When infrastructure is code, you just spin up a new machine...no thinking involved. Also, since you're used to deploying this way, the process is smooth and as quick possible.

When you build the server by hand...you're often searching around for old ssl certificates, installing packages you forgot were dependencies, etc. Takes a long time to get it right.

If you're skeptical of the cost/benefit of the approach, you realize really quick that it's worthwhile when stuff starts to fail. Especially if it happens more than once.

rmurri | 7 years ago | on: The advantages of an email-driven Git workflow

I don't think the intent is to do code review from email. The idea would be to send the merge request through email, which is then imported into your local git as a branch. Then you're able to do review/analysis/etc with whichever git tooling you prefer.

rmurri | 8 years ago | on: Ask HN: Would you recommend someone to learn Emacs now?

Yes and no. I generally don't recommend emacs to everybody by default because I've come to realize it's not what everybody wants. Until people want to have a powerful, customizable editor I recommend something pretty and user friendly. Perhaps sublime text, where they can ease into being productive.

That said, I do definitely recommend it to people on a case by case basis (Power users, command line gurus, mouse haters, etc). Those who make it over the initial learning hump tend to really love it.

rmurri | 8 years ago | on: Sublime Text 3 now has font ligature support

Magit user here.

I am both comfortable with git on the command line and through emacs. I prefer magit mostly because of its contextual support. With the command line, each command can derive no context from the last command. With magit, it's easy to drill in and see more relevant data (or edit that data) quicker and easier.

Just wanted to point out that not everybody is merely looking for an easier experience, or one that looks prettier.

page 1