/explore

Click through on any links that interest you or select the planets on the right to continue exploring the Outer Web.
You are here

culttt.com
| | yotam.net
17.0 parsecs away

Travel
| | A blog about free software and programming
| | inventwithpython.com
13.6 parsecs away

Travel
| |
| | nurkiewicz.com
18.1 parsecs away

Travel
| | Clojure is a dynamically, strongly typed programming language. It's a dialect of _Lisp_ running on the Java Virtual Machine. Lisp is 6 decades old and has a really weird syntax. That weird syntax is called _Polish prefix notation_. Basically, in every other language you've used math operators like plus or minus are infix. It means they are placed between operands. For example, `1 + 2`. In Clojure, you always put the operator (or any other function for that matter) in front. So simple addition becomes... `+ 1 2`.
| | venam.net
31.2 parsecs away

Travel
| An executable is something that causes a computer to perform some tasks according to encoded instructions. It's in opposition to a data file which must be parsed by another program to be meaningful, for example an image or video. The instructions are usually in machine code, read by the cpu and so dependent on the cpu architecture. An ex...