Any reason why the name of this group is not comp.lang.clojure?

2013-05-28 Thread Seven Hong
Hi all! I recently began learning Clojure, and I like it a lot; then I found this group on google. Is there any particular reason that it's not called comp.lang.clojure? :-) But anyway, this is the official user group for Clojure, right? Many thanks! :-) Best, Seven Hong -- --

difference between first & peek; rest & pop

2013-05-29 Thread Seven Hong
Hi all, Could some one explain what's the difference between first and peek, rest and pop? For me it looks like they behave exactly same on sequences.. Thanks! Best, Seven Hong -- -- You received this message because you are subscribed to the Google Groups "Clojure" group.

How to send GET http request with range header, using clj-http or http-kit?

2013-08-24 Thread Seven Hong
Hi all: I am trying to grab down a segment of a file on a http server, so technically I should send a GET message with a range header specifying the range of bytes I wanna get. But how do I exactly do that with clj-http? Or is it possible to do this with clj-http? I looked up their documentatio

Re: How to send GET http request with range header, using clj-http or http-kit?

2013-08-24 Thread Seven Hong
It works!! Thaks!! :-D On Sunday, August 25, 2013 12:09:12 AM UTC-4, Sean Corfield wrote: > > Can't you just do (get "..." {:headers {..}}) and pass the range > header that way? > > On Sat, Aug 24, 2013 at 8:12 PM, Seven Hong > > > wrote: > >