It's actually very easy to type blimpy in ed, the standard text editor.
$ ed blimpy ? exit ? quit ? stop ? go away ? ^C ?
Ah, so that’s how you do it!
121–130 of 140 posts
I opened vim and tried to type "blimpy" and nothing happened. I also can't quit.
In Vim the editor is one part of a larger operating system, called Unix. To type blimpy in Vim, combine several Unix tools and read the output. Type this:
:read ! cat /dev/urandom | LC_CTYPE=C tr -cd 'blimpy' | head -c 1000000 | fold -w 1 | sort | uniq | tr -d '\n'
( means "hit the RETURN key". don't type it!)That gives us something just a little bit off but we can fix that with only three keystrokes. Just type:
lxp
Now you have blimpy!More than anything else I'm confused by the positive response this is getting. * Very few people use Emacs * Anyone who nevertheless is using Emacs should be willing to read documentation. The only way to learn Emacs is through reading the docs. * As illustrated, copy-pasting a use-package clause is an easy way to get started with something. The pain point is the alternative ways to set a package up that are distract…
I know this is a joke, but people should really give Emacs a try. Check out this interview about Emacs if you’re not convinced: https://youtu.be/urcL86UpqZc?si=3ew2h0iI0FIT5Zmd
I know this is a joke, but people should really give Emacs a try. Check out this interview about Emacs if you’re not convinced: https://youtu.be/urcL86UpqZc?si=3ew2h0iI0FIT5Zmd
You recommend using a framework like doom or building up your own config?
Earlier quoted context omitted.
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.
Earlier quoted context omitted.
You recommend using a framework like doom or building up your own config?
I'd recommend starting from scratch. The whole point of emacs is it's super easy to hack and make your own. So you'd just end up "undoing" everything in a starter kit anyway. But you should definitely look at those starter kits to see what you can do.
I know this is a joke, but people should really give Emacs a try. Check out this interview about Emacs if you’re not convinced: https://youtu.be/urcL86UpqZc?si=3ew2h0iI0FIT5Zmd
You recommend using a framework like doom or building up your own config?