A methodology for building modern, scalable, maintainable software-as-a-service apps.
Moved to Codeberg; this is a temporary convenience mirror - technomancy/leiningen
A methodology for building modern, scalable, maintainable software-as-a-service apps.
Last week I introduced the Den of Clojure to Heroku. I really enjoyed learning more about Clojure and experiencing super simple Clojure deployment on Heroku. For those who haven’t yet deployed Clojure on Heroku, lets walk through 8 quick steps to get you started: Install the Heroku Toolbelt and Leiningen Login to Heroku from the command line: ```bash heroku login If this is your first time logging into Heroku from the command line then you will be led through some steps to associate an SSH key with your Heroku account.</li> * Create a new Leiningen build definition by creating a file named **project.clj** containing: ```clojure (defproject hello-clojure-noir "0.1.0-SNAPSHOT" :main web :dependencies [[org.clojure/clojure "1.4.0"] [noir "1.2.1"]]) As you can see from the dependencies, this simple app uses the [Noir web framework][4].</li> * Create a simple Noir app by creating a file named **src/web.clj** containing: ```clojure (ns web (:use noir.core) (:require [noir.server :as server]))
Oracle Data Change Notification in Clojure (interlaye.red)
Cancelling blocking reads in Java is anything but sane.
Here is a quick overview of what is in my Leiningen profiles.clj
At Red Planet Labs we’ve been quietly developing a new kind of developer tool for many years. Our tool reduces the cost of building large-scale end-to-end applications by multiple orders of magnitu…
This guide is aimed to the developer who’s interested in Clojure and want to install it and start using it right away.
Update: Heroku now does support Java. Heroku does not officially support Java applications yet (yes, it does). However, the most recently launched stack comes with support for Clojure. Well, if Her…
We're pleased to announce the public beta of Heroku for Java. Java is the fourth official language available on the Cedar stack. Java is, by many measures,
software, programming, computers, technology
Franklin Chen's personal website and blog
Lightweight threads, CSP and Erlang-like actors for Clojure
I recently started to learn clojure programming. It is an interesting experience. Ever since I learned computer programming almost 20 years ago, in Pascal, on a VAX minicomputer terminal, I have not experienced this newbie sensation with a computer language. The sense of excitement and novelty is high, and the …
Dmitri's blog about programming, Clojure, and software development
Dmitri's blog about programming, Clojure, and software development
Here is a quick overview of what is in my Leiningen profiles.clj
Taking Bret Victor's notion of connecting to your creation and turning it into a ClojureScript live game editor.
Figwheel Main provides tooling for developing ClojureScript applications
We're pleased to announce the public beta of Heroku for Java. Java is the fourth official language available on the Cedar stack. Java is, by many measures,