Re: Module For COM Objects

2013-02-22 Thread Carlos Ungil
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

Re: Please stand firm against Steve Yegge's "yes language" push

2011-07-06 Thread Carlos Ungil
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

bug report : cl-format

2011-04-03 Thread Carlos Ungil
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