Aaron Jensen

Results 177 comments of Aaron Jensen

I can also confirm the problem with akephalos 0.2.5 and spork 0.9.0.rc4

Also https://github.com/ajeetdsouza/zoxide (even faster)

This is [fixed in Emacs 29](https://github.com/emacs-mirror/emacs/commit/802e9b1b453506174c94f72c504fb4b83e85828e). It can be worked around on older Emacsen: https://github.com/minad/vertico/issues/115#issuecomment-973753577

Would this work: ```bash git-crypt unlock

@IvanSorokin No, I'm sorry. You'll need to talk to someone who is proficient with powershell, which I am not.

Also, I believe freezing functions requires some more care as you cannot freeze `caller`, `callee`, or `arguments` in strict mode. Not freezing null is a must though, it'll throw in...

As an aside, @winkler1, I noticed you used `Object.getOwnPropertyNames` instead of `Object.keys`. The former gets non-enumerable properties and the latter does not. In your experience, is there need for the...

:+1: wrt to dev vs prod, a couple things: You might consider looking for `NODE_ENV !== 'production'` as the sign to include things as this matches react: https://github.com/facebook/react/blob/d16481d0e7d23771c5d94e5a0eeaf64e02f07979/packages/react/react.js#L9 Also, for...

Actually, I went to do this on updeep and found that everything in [`freeze.js`](https://github.com/substantial/updeep/blob/master/lib/freeze.js) was already dead code eliminated by uglify--it's pretty smart.

Chrome or other dev tools will request this file. I don't think it's critical for it to be there. It just means you won't have a map back to the...