|
You are here |
box.matto.nl | ||
| | | | |
github.com
|
|
| | | | | A Common Lisp dev environment for Vim (and Neovim) - vlime/vlime | |
| | | | |
johnj.com
|
|
| | | | | [AI summary] The post details the author's experiences and notes on setting up and working with Common Lisp, including project creation, environment setup, dependencies, and tools. | |
| | | | |
anticrisis.github.io
|
|
| | | | | After a few years of hacking with Clojure, and before that Erlang,Python, and JavaScript, I decided to dig into Common Lisp. This wasa few months ago, and I ... | |
| | | | |
www.paepper.com
|
|
| | | A note on bit-wise operations Today I read some JavaScript source code and stumbled on a line like var delta = ~~time; and I was unsure what that purpose of using ~~ was. So I started to research and digging a bit deeper. It turns out that the binary not operator (~) when applied twice on a floating number (e.g. 4.12) returns an integer (~~4.12 = 4). Why not simply use Math. | ||