Explore >> Select a destination


You are here

artificial-mind.net
| | nurkiewicz.com
5.0 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`.
| | gustedt.wordpress.com
3.8 parsecs away

Travel
| | C++ seems to finally converge with their contracts proposal, https://wg21.link/p2900. I decided to give it a try and come up with ideas how such a thing would look for C. This is in early stages, not a full proposal yet, and still would need implementation by some of the major compilers. In particular, the C++...
| | mariusbancila.ro
3.7 parsecs away

Travel
| |
| | aykevl.nl
42.4 parsecs away

Travel
| [AI summary] The article explains how to debug AVR microcontroller programs using simavr and avr-gdb, providing a step-by-step example for setting up and using the tools.