Learn Ring - 3. Prerequisite less than 1 minute read Notes Prerequisite git https://git-scm.com/ IDE VSCode https://code.visualstudio.com/ Antigravity https://antigravity.google/ Clojure https://clojure-book.gitlab.io/ Web Tech HTML https://www.w3schools.com/html/ CSS https://www.w3schools.com/css/ JavaScript https://www.w3schools.com/js/ SQL https://www.w3schools.com/sql/ Twitter Facebook LinkedIn Previous Next
project.clj in initial ring app 2 minute read (defproject little_ring_things "0.1.0-SNAPSHOT" :description "FIXME: write description" :url "http://example.com/FIXME" :min-lein-version "2.0.0" :de...
What’s Jetty? 1 minute read Jetty is an open-source Java-based HTTP server and servlet container. It’s what actually listens on a port, accepts incoming HTTP requests, and hands them of...