Clojure seems likes it might have a good shot at being a popular Lisp. I was wondering how many people have actually adopted it to solve some of the small, yet real, problems that they have encountered. Since Clojure doesn't have an entry in Pleac, I thought that it would be great if people posted their small solutions to problems that they've solved in Clojure.
|
12
|
|||||||||
|
|
|
This prints a weather forecast via Yahoo! Weather.
For example:
|
||||||||||||||||
|
|
|
Not really particularly useful by itself, but the idea is similar to JSON in Javascript--you can move Clojure data structures to and from the file system. Adopted from Practical Common Lisp's Database example:
Example usage:
Certainly beats writing your own (complex) save mechanism for your program. I'm sure reading purely from a string is possible just by changing some of the readers provided via Java. |
|||
|
|
|
|
This creates a thumbnail from an image. The image can be a local File, remote URL or anything else (use '(clojure.contrib java-utils))
(defn make-thumbnail
"Given an input image (File, URL, InputStream, ImageInputStream),
output a smaller, scaled copy of the image to the given filename.
The output format is derived from the output filename if possible.
Width should be given in pixels."
([image out-filename width]
(if-let [format (re-find #"\.(\w+)$" out-filename)]
(make-thumbnail image out-filename width (nth format 1))
(throw (Exception. "Can't determine output file format based on filename."))))
([image out-filename width format]
(let [img (javax.imageio.ImageIO/read image)
imgtype (java.awt.image.BufferedImage/TYPE_INT_RGB)
width (min (.getWidth img) width)
height (* (/ width (.getWidth img)) (.getHeight img))
simg (java.awt.image.BufferedImage. width height imgtype)
g (.createGraphics simg)]
(.drawImage g img 0 0 width height nil)
(.dispose g)
(javax.imageio.ImageIO/write simg format (as-file out-filename)))))
Create a JPG thumbnail from a local PNG:
Create a GIF thumbnail from a remote JPG:
|
||||||
|
|
|
99 Bottles of Beer
|
||||||||
|
|
|
Clojure probably has a power function, but I was really excited when I figured this out:
|
|||
|
|
The most useful thing I've written for myself in Clojure is the almost trivial function:
I use this all the time in the work I do. Very useful for histograms. Brian Carper was kind enough to suggest the following improved form of the function.
|
|||
|
|
|
|
|
|||
|
|
Writing Swing apps, the JMenuBar stuff is always annoying. Thanks to dorun/map it's much easier:
Right now I don't need sub-menus, but it's a trivial change to |
|||
|
|
