Re: ClojureScript at its best

2016-03-04 Thread Paweł Rozynek
http://jinteki.net is most impressive for me personally as im playing the game. here is the src code: http://github.com/mtgred/netrunner/ regards PR -- You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group, send email to

Re: better way to group consecutive numbers in a vector?

2014-11-07 Thread Paweł Rozynek
(def data '(1 3 4 5 7 9 10 11 12)) (map #(map last %) (partition-by #(apply - %) (map-indexed vector data))) = ((1) (3 4 5) (7) (9 10 11 12)) regards PR -- You received this message because you are subscribed to the Google Groups Clojure group. To post to this group, send email to

Re: clojurescript introduction

2014-08-01 Thread Paweł Rozynek
thank u all for responses, very helpful regards PR -- 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.

clojurescript introduction

2014-07-31 Thread Paweł Rozynek
hi is there something similar to http://clojurescriptone.com/ that actually works? unfortunately one is failing on 3rd command from tutorial which is 'lein bootstrap'. id appreciate some good learning materials suggestions for clojurescript. regards PR -- You received this message because

Re: is their a Clojure framework for handling form validation?

2012-07-23 Thread Paweł Rozynek
noir framework got something for it: http://webnoir.org/autodoc/1.3.0/noir.validation.html never saw standalone lib just for that purpose tho. regards PR -- You received this message because you are subscribed to the Google Groups Clojure group. To post to this group, send email to