rprimus

Results 37 comments of rprimus

Wed Aug 5 01:28:32 BST 2015 Thanks for the ccl build info. 1. I have checked out stable: ``` % ../ccl-stable/dx86cl64 Welcome to Clozure Common Lisp Version 1.10-r16196 (DarwinX8664)! ```...

Wed Aug 5 11:43:13 BST 2015 **UPDATE:** My bad - I still had my original `ccl` in my `$PATH`. I've also removed `sbcl` from path. 1. I found this issue:...

On Wed, Aug 05, 2015 at 08:25:40AM -0700, Joshua Kordani wrote: > Just got there this morning as well. I'm using the slime debugger to jump around, and c-c c-w...

Sun Aug 18 15:14:40 BST 2019 I use: ``` ipconfig getifaddr $(netstat -rn | grep default | awk '{print $NF}' | head -1) ``` > ifconfig | sed -En 's/127.0.0.1//;s/.*inet...

Mon Aug 9 08:35:10 BST 2021 Hi, > Am I right? Yes. If you query the variable `features` in a fresh emacs, you'll see that the first defined named feature...

Tue Oct 29 09:53:02 GMT 2019 Using `emacs-lisp-macroexpand` on the `use-package` snippet above, produces: ```elisp (add-hook 'flycheck-mode-hook #'js2-mode) ``` This means that whenever `flycheck-mode` is activated, `js2-mode` will be activated....

Wed Oct 30 09:32:43 GMT 2019 > I don't see a facility for "when I launch js2-mode, please also load these other packages" @justinabrahms That's exactly what `hooks` are used...

Fri Aug 28 11:13:11 BST 2020 > init.el:13:13:Error: Cannot open load file: No such file or directory, use-package As @a13 mentioned, `use-package` is not found in your `load-path`. To show...

Sun Nov 3 22:24:36 GMT 2019 As of Chrome 80.0.3955.4, `hints` are broken. This is beacause: > [Deprecation] Element.createShadowRoot is deprecated and will be removed in M73, around March 2019....

Mon Nov 4 00:01:46 GMT 2019 To get `hints` working again: in `hints.hs:727`, replace call to `main.createShadowRoot()` with `main.attachShadow({mode: 'open'})`