The process of creation of a startup is the creation of a system. “A system is an interconnected set of elements that is coherently organised in a way that achieves something”. Your ability to influence that system extends to the elements (called “stocks”) you chose, the way in which they are organised (called “flows”), and the achievement itself. There is also a feedback loop in most systems, which takes time. Whether it’s adding a new feature, changing pricing, architecture, go-to-market and so on, it needs to be planned, implemented and measured for impact. Your goal as a startup is to get to product-market fit (“being in a good market with a product that can satisfy that market.”). Thus the achievement, or output, is to produce a product fit for a given market using a model which both satisfies the market and is profitable for the producer. The race is to do that before you run out of money, or grit, or both. Since feedback loops take time, and since changes to your system...
Clojure is a dynamic functional language, and is a dialect of Lisp with a priority of concurrency. It can run on top of the JVM (Java Virtual Machine), CLR (Common Language Runtime) and Javascript platforms like NodeJS through ClojureScript. Its pioneer is Rich Hickey , and if you have not heard his talks, I recommend this one on "Simple made easy" . You can learn about the current state of adoption of the language in this Infoworld article . If you'd like to understand why Clojure is a good choice to learn, Uncle Bob can tell you . Tl;dr "I began to realize that this language was the easiest, most elegant, least imposing language I had ever used – and not by a small margin.". If you have never interacted with Lisp, Clojure can have a steep learning curve. The aim of this post is not to give a level of understanding of how Clojure operates. Rather, it exists to help people realise they can achieve a basic program very quickly even if they do not yet ...