Explore >> Select a destination


You are here

box.matto.nl
| | github.com
5.4 parsecs away

Travel
| | A Common Lisp dev environment for Vim (and Neovim) - vlime/vlime
| | johnj.com
2.8 parsecs away

Travel
| | [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
5.7 parsecs away

Travel
| | 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
27.4 parsecs away

Travel
| 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.