adamgetchell.blogspot.com
Adam's Entropy: December 2011
http://adamgetchell.blogspot.com/2011_12_01_archive.html
One particular random walk through life. Thursday, December 01, 2011. A few months and a lot of Lisp later, I find myself convinced/converted . Rajesh, you were right! As far as language. Coolness, it has a bunch of features I like such as:. Which makes it easy to reason about concurrency. Via software transactional memory. OOP benefits without OOP using runtime polymorphism. Lots of modern libraries by being hosted on the JVM. By contrast, have had barely 2 messages in the past month). To get you started.
technitai.wordpress.com
Nathan | Technitai
https://technitai.wordpress.com/author/frund
Skip to main content. Skip to primary sidebar. Skip to secondary sidebar. Tales from a digital craftsman. TaskPaper: Insert Started Tag. On get date() set currentdate to do shell script date %Y-%m-%d end get date tell application TaskPaper tell front document tell selected entry make tag with properties {name:started, value:my get date()} end tell end tell end tell. Finding Clojure By Playing On The Seaside. I started out with Opa. Opa, I shall be back. Oh, yes. I shall be. I moved on to Seaside. With Se...
ctdean.com
Running Clojure on the Heroku stack
http://www.ctdean.com/blog/2012/04/11/heroku-on-clojure.html
The Heroku blog has a good description on running Clojure http:/ blog.heroku.com/archives/2011/7/5/clojure on heroku. But let’s do it ourselves. This is very similar to the previous post Running Clojure on the AWS Beanstalk. A Hello World web app. The source is on http:/ github.com/ctdean/heroku-hello. We’re assuming that you have lein and Java installed and that you’ve installed the tools from https:/ devcenter.heroku.com/articles/quickstart. We’ll use http:/ webnoir.org/. The entry point for Heroku.
ctdean.com
Running Clojure on the dotCloud stack
http://www.ctdean.com/blog/2012/04/22/dotcloud-on-clojure.html
To run a Clojure web app on dotCloud. You just need to build a WAR file locally and push it out. So let’s do that. We’ll. Make a simple web app. Push out a WAR file to dotCloud. See it live on the web. This is very similar to the previous post Running Clojure on the AWS Beanstalk. A Hello World web app. The source is on http:/ github.com/ctdean/dotcloud-hello. We’re assuming that you have lein and Java installed. We’ll use http:/ webnoir.org/. To build the app. First the app itself. Lein ring server &.
clojure-log.n01se.net
#clojure log - Jan 03 2012
http://clojure-log.n01se.net/date/2012-01-03.html
Clojure log - Jan 03 2012. The Joy of Clojure. List of all logged dates. Alexbaranosky: it should be possible if you have interfaces to mock out, but if you have to mock any concrete classes i think it's just not technically possible on the jvm. Amalloy, I may have misunderstood, but all the Java mocking libraries mock classes. Has anyone grabbed the entire clojure.contrib/complete 1.3 via leiningen successfully? Alexbaranosky: well, i don't know a lot about how the java mocking libs work. Pprint is pret...
ctdean.com
Running Clojure on the AWS Beanstalk
http://www.ctdean.com/blog/2012/04/10/aws-beanstalk-on-clojure.html
It’s straightforward to run a Clojure web app on the AWS Beanstalk. Amazon will run a Java WAR file and there are existing Clojure tools to build a WAR file and push it out. So let’s do that. We’ll. Make a simple web app. Push out a WAR file to beanstalk. See it live on the web. A Hello World web app. The source is on http:/ github.com/ctdean/beanstalk-hello. We’re assuming that you have lein and Java installed. We’ll use http:/ webnoir.org/. To build the app. First the app itself. Let’s try it out:.
irreverently.me
Ganelon | Irreverently Me
https://irreverently.me/2013/06/11/ganelon
Random thoughts of a software geek. Mocking with Midje →. June 11, 2013. When it comes to web development with Clojure everything pretty much revolves around Ring. For HTTP abstraction and routing with a generous helping of Hiccup or Enlive. For HTML templating plus Friend. One early attempt to do this for Clojure was Noir. A library that can be accessed by any Clojure code without the rest of the framework) and this was taken up by a couple of new frameworks such as Luminus. Essentially Ganelon is Ring,...
onbeyondlambda.blogspot.com
On Beyond Lambda: April 2012
http://onbeyondlambda.blogspot.com/2012_04_01_archive.html
Tuesday, April 24, 2012. On Lisp in Clojure chapter 7 (7.1 - 7.4). I am continuing to translate the examples from On Lisp. By Paul Graham into Clojure. You can find links to the other posts in this series and the code on the github repository. Stuart Halloway has also translated this chapter into Clojure on his blog. I definitely recommend reading that. In Chapter 7 we finally get to macros. Set atom to nil (def x (atom 0) (reset! X 5) (defmacro atomnil! Var nil) (defmacro refnil! Defmacro our-when [test...