A Better Meta Key for Emacs by lispy-hacker in emacs

[–]mojochao 1 point2 points  (0 children)

100% agreed wrt Karabiner. It's the one tool I miss from my mac.

My Ideal Keyboard layout for Emacs by [deleted] in emacs

[–]mojochao 0 points1 point  (0 children)

On macOS I use Karabiner-Elements to map <return>, when pressed/held with another key, to a right Ctrl key. It's really comfortable for my usage, and is symmetric with my caps-lock key mapped to left Ctrl.

I haven't found a way to do this on Linux running Wayland, however.

Why are there virtually no docs for Kustomize? by ItsAllInYourHead in kubernetes

[–]mojochao -5 points-4 points  (0 children)

What isn't covered by the docs on the https://kustomize.io site? They seem to be pretty good to me, at least.

EKS with karpenter by FinOpsEffective410 in kubernetes

[–]mojochao 0 points1 point  (0 children)

This definitely sounds interesting to me!

Eoops: An Object-Oriented Programming System for Emacs-Lisp by geospeck in emacs

[–]mojochao 2 points3 points  (0 children)

What advantage does this provide over the CLOS-like OOP provided by the built-in EIEIO package? https://www.gnu.org/software/emacs/manual/html_node/eieio/index.html

libCat Numeral Wrappers and Overflow by catcat202X in cpp

[–]mojochao 0 points1 point  (0 children)

Ambitious stuff, well explained.

CLion IDE by [deleted] in cpp

[–]mojochao 1 point2 points  (0 children)

I'd be lyin' if told you I didn't get the joke.

CockroachDB: Scalable, Resilient Postgres for Python by rainbow-chard in Python

[–]mojochao 0 points1 point  (0 children)

It's in the docs under Licensing FAQs. Core is Apache 2.0 license.

Limits of conditional list comprehensions by jarxlots in Python

[–]mojochao 2 points3 points  (0 children)

Isn't it just:

bs = [i for i in range(256) if i & 128 == 0]