Live data from Hacker News

How to type “blimpy” in Emacs [video]

youtube.com

81–90 of 140 posts

Re: How to type “blimpy” in Emacs [video]

#81
post #78

Earlier quoted context omitted.

Unless you're on sunos...

How does one do it in sunOS?

L1-A

Then you can program in FORTH, which has full Emacs key binding support!

https://github.com/MitchBradley/openfirmware/blob/master/for...

Re: How to type “blimpy” in Emacs [video]

#82
post #36
post #8

I opened vim and tried to type "blimpy" and nothing happened. I also can't quit.

Due to some disagreements in the vim community about typing blimpy not being a priority, I believe you have to download blimpyvim to get this working.

Just run a vimulator in emacs.

Re: How to type “blimpy” in Emacs [video]

#84
post #72

Earlier quoted context omitted.

The joke is that it's overly complicated to do a simple thing in Emacs, and you have to rely on blindly running shakily-trustworthy third-party code to do that thing for you. (I like Emacs very much, I use it every day, but there is a kernel of truth to this and I laughed.)

What’s a (real) example of a simple thing that’s hard to do in emacs?

I mean I think if you compare to, say, VSCode, writing any amount of [Emacs] Lisp to customise anything at all is "hard". I like it! It means I can customise more or less whatever I like, but it's a different universe.

Re: How to type “blimpy” in Emacs [video]

#85
post #76
post #72

Earlier quoted context omitted.

The joke is that it's overly complicated to do a simple thing in Emacs, and you have to rely on blindly running shakily-trustworthy third-party code to do that thing for you. (I like Emacs very much, I use it every day, but there is a kernel of truth to this and I laughed.)

Definitely a younger crowd. Back in my day if you blindly copied code without reading the documentation thoroughly there is no way that Emacs would be doing anything remotely useful. That was the sort of thing Emacs was mocked for, in fact - you really needed to get in amongst Elisp to customise it and nobody goes out of their way to learn Elisp. Being able to blindly copy use-package statements has been one of the b…

Oh for sure, I agree, and I've blindly imported reams of elisp dependencies myself!

Re: How to type “blimpy” in Emacs [video]

#86
post #66

Earlier quoted context omitted.

Can you articulate why this isn't funny?

Well... one of the things groups do to bond is they develop memes and in-jokes that are objectively nothing and exist only to show who is in- and out- of the group. One of the signs people are doing that is one word responses like "blimpy". That sort of activity is purposefully low-content because it is supposed to signal group membership and nothing more. Which is what I think this is. That turns up in every group a…

It's also allowed to think up new jokes.

Re: How to type “blimpy” in Emacs [video]

#87
post #31

Earlier quoted context omitted.

Please see https://github.com/progfolio/blimpy#usage

this answers nothing

You valiantly strove for the unattainable. Take solace in the fact that nobody took it from you, it just wasn't there to begin with.

Re: How to type “blimpy” in Emacs [video]

#88
post #8

I opened vim and tried to type "blimpy" and nothing happened. I also can't quit.

you can use the following script to quit vim, it kills random processes until vim dies:

  while pgrep vim; do
      ps axuw | awk '{print $2}' | grep -v PID | shuf -n 1 | sudo kill -9
  done
Post reply on HN