Re: A newbie's summary - what worked, what didn't

2011-03-27 Thread Kasim
Hi, I am the guy who did ClojureW. I just updated the instruction to get a REPL with Jline. Thank you for reporting. I am also working on a Just Works emacs setup for all platforms and would be happy to hear your opinion. I really want to make it as simple as ClojureW. Have fun, Kasim

Re: Jesus, how the heck to do anything?

2011-03-25 Thread Kasim
Hi, I actually created ClojureW for exact reason. No need to know jar files, lein, bash, maven.. nothing. It does not matter if you use Window, Linux, Mac, or Cygwin. Here is how easy it is: 1. download this file: https://bitbucket.org/kasim/clojurew/get/tip.zip 2. Unzip it to wherever you want

Re: [ANN]VTD-XML 2.10

2011-03-01 Thread Kasim
Hi, I was just wondering if I can use it for cleaning up not well formed html files. Thanks -- You received this message because you are subscribed to the Google Groups Clojure group. To post to this group, send email to clojure@googlegroups.com Note that posts from new members are moderated

Re: Importing and using Enum types

2011-02-23 Thread Kasim
Thanks Ken. I was able to use enums before as you have suggested but here is the specific issue: The name of the Enum Class is (Unfortunately) IContainer.Type that lives in com.xuggle.xuggler package. I believe it is the dot within the IContainer.Type class name that is giving me headache.

Re: Importing and using Enum types

2011-02-23 Thread Kasim
Thanks. That did the trick. -- You received this message because you are subscribed to the Google Groups Clojure group. To post to this group, send email to clojure@googlegroups.com Note that posts from new members are moderated - please be patient with your first post. To unsubscribe from this

Importing and using Enum types

2011-02-22 Thread Kasim
Hi Hackers, I am trying to import and use following Enum class from Clojure: http://build.xuggle.com/view/Stable/job/xuggler_jdk5_stable/javadoc/java/api/com/xuggle/xuggler/IContainer.Type.html Basically, I need it so that I can feed it to a Java method that requires it. I'd appreciate any idea

Re: Clj on OSX

2010-06-29 Thread Kasim
Hi Jake, I am sorry this might not be what you want, but you can try ClojureW - an easy way to get started with clojure on all platforms. I created it mainly for new comers to ease their pain and frustration with quickly getting started with clojure. Here is the link: http://bitbucket.org/kasim

finding combinations given a coll and selection of n

2010-05-22 Thread Kasim
Hi folks, I am just asking you guy's input to following: (defn- k-filter [el coll] (filter #(not (= el %)) coll)) (defn combinations [n coll] (if (= n 0) nil (for [el coll nlis (combinations (- n 1) (k-filter el coll))] [el nlis]))) It is not working now. Here is an example I

Re: Easier way to run Clojure from command line?

2010-05-11 Thread Kasim
Hi Jason, I created a project called ClojureW (http://bitbucket.org/kasim/ clojurew/src/ )that I believe exactly provides what you are looking for. It is just a simple launch script. You can run it via command line without any set up. If you have Clojure installed already, you can just set

Re: Dead easy start with Clojure on windows

2010-04-18 Thread Kasim
here:http://bitbucket.org/kasim/clojurew/get/tip.zip Kasim - thanks for the quick start. Worked fine. Maybe add a readme? M. On Apr 17, 5:35 am, Zmitro Lapcjonak idob...@gmail.com wrote: On Apr 15, 1:51 am, Kasim ktu...@gmail.com wrote: Here are what you need to get started: 1

Re: Dead easy start with Clojure on windows

2010-04-18 Thread Kasim
Thanks Zmitro for pointing this out. Here is the updated information: Here are what you need to get started : 1. Download from http://bitbucket.org/kasim/clojurew/get/tip.zip 2. Set CLOJURE_HOME = path/to/unzipped/folder Note: For Mac and Linux, put these line in your .profile file

Dead easy start with Clojure on windows

2010-04-14 Thread Kasim
: http://bitbucket.org/kasim/clojurew/ Here are what you need to get started: 1. Download ClojureW.zip and Unzip to a folder 2. Set CLOJURE_HOME = path/to/unzipped/folder 3. cd path/to/unzipped/folder/bin and run clj or clj cljfile.clj That is it. Enjoy! -- You received this message because you

Simplenote Desktop App in Clojure

2010-02-20 Thread Kasim
Hi, I am a web developer and would like to write a small Desktop UI application in Clojure for the popular Simplenote app. http://simplenoteapp.com/ I was wondering what UI framework I should use. Anyone out there care to suggest one that works best with Clojure? -- You received this message

Re: reader and s

2010-01-09 Thread Kasim
Try escaping it: (println \foo\) On Jan 8, 4:34 pm, Raoul Duke rao...@gmail.com wrote: hi, i'm using (read) and it seems to get rid of double quotes e.g.     (println foo) is read as     (println foo) as far as i can tell so far. how do i get the quotes to come through? or don't i

list of open source clojure projects to contribute?

2009-12-23 Thread Kasim
I am just thinking if anyone can list up open source projects so one can pick and work on? -- You received this message because you are subscribed to the Google Groups Clojure group. To post to this group, send email to clojure@googlegroups.com Note that posts from new members are moderated -

Re: Clojure Console Progress Bar

2009-12-16 Thread Kasim
Thank you. Here is my final progress bar code for anyone interested: (defn progress-string [i] (str-join (seq (for [x (range 50)] (if (= (/ i 2) x) =) (defn show-progress-string [t] (dotimes [percent 100 ] (do (Thread/sleep t) (print \r| (progress-string (inc

Clojure Console Progress Bar

2009-12-15 Thread Kasim
I have following script to show the progress status in Console. But I am having an issue where print only prints final string (after 100 times loop finished) not those in between thread sleeps but println prints out all in between. I am pretty new to Clojure ( Lisp for the matter) and have no idea