Steve Losh
Steve Losh
My custom css and js don't seem to get loaded if the target page has any errors in its own css/js. Firefox 21, dotjs 1.10.
``` sjl at alephnull in ~ > curl -Ss https://foldr.org/~michaelw/projects/cl-dot/ 404 Not Found 404 Not Found nginx/1.14.2 ```
This works as expected: ``` (write-string-at-point charms:*standard-window* "ó" 0 0) ``` But using the `-char` version doesn't seem to write anything at all: ``` (write-char-at-point charms:*standard-window* #\ó 0 0) ```...
Things work fine when using a variable as the lower bound, but Potion seems to segfault when using one as the upper bound. Example: ``` >> n = 3, n...
Sometimes the `polygon` function seems to break and spew lots of strange output. If you clone down http://github.com/sjl/coding-math and check out commit 3d6ba7a35004215b185674032cbba9b2d4a2e452 you can see an example. Run with:...
http://clhs.lisp.se/Body/f_random.htm says (emphasis mine): > random limit &optional random-state => random-number > ... > Returns a pseudo-random number that is a non-negative number **less than limit** and of the same...
I've got a class with a slot of type `(simple-array (unsigned-byte 54) (* *))` (the `54` is not a typo, I have something that needs fifty-four bits (I'm aware it'll...
Paredit.vim `imap`s `` to provide its electric return functionality: https://github.com/kovisoft/paredit/blob/master/plugin/paredit.vim#L205-L208 Vlime currently also `imap`s `` to show the argument list of the function. It would be nice if Vlime could...
I love having the arglist buffer, but it's a little annoying that it's an actual buffer/window that I have to manage (e.g. when I `H` to move a window to...
I have a key mapping I use to indent the current top level form. When I use it on something like this: https://github.com/sjl/euler/blob/master/src/problems.lisp#L1941-L2005 it hangs for about 4 seconds while...