Explore >> Select a destination


You are here

www.retroprogramming.com
| | nurkiewicz.com
14.5 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`.
| | citizen428.net
14.3 parsecs away

Travel
| | I recently got quite interested in a relatively new programming language called Uiua (pronounced "wee-wuh"), which its creator Kai Schmidt describes as follows: Uiua is a general purpose, stack-based, array-oriented programming language with a focus on simplicity, beauty, and tacit code. I've long been fascinated by array languages (like APL, J, or BQN), as well as stack languages like FORTH and Factor. Combining these two paradigms leads to very interesting and - in my opinion at least - beautiful code,...
| | siderite.dev
14.4 parsecs away

Travel
| | While trying to optimize a sorting algorithm that worked on iterables I've noticed how slow iterators and generator functions are.
| | taylorbrazelton.com
78.4 parsecs away

Travel
| Taylor Brazelton's personal blog - Software engineer sharing insights on Python, AWS, DevOps, and business.