You can also use jawin. For example:
(ns reports.pdf
(:import org.jawin.DispatchPtr org.jawin.win32.Ole32))
(defn merge-pdfs
"Combines all the input-files into a single output-file."
[input-files output-file]
(Ole32/CoInitialize)
(let [app (DispatchPtr. "AcroExch.App")
doc1
On Tuesday, July 5, 2011 8:08:51 PM UTC+2, Sean Corfield wrote:
>
> It might be an interesting community exercise to examine the 23 GoF
>
patterns and discuss whether they are applicable in an FP world and,
>
if a pattern _is_ still applicable, what it would look like?
>
Hi Sean,
take a look at
Hello,
I don't know if there is a better way to file bug reports (if there is one,
it's not easy to find).
(use 'clojure.pprint)
(let [x 111.1]
(doseq [fmt ["~3f~%" "~4f~%" "~5f~%" "~6f~%"]]
(cl-format true fmt x)))
;; 111.1
;; 111.1
;; 111.1
;; 111.11
There is clearly a pro