Re: [ANN] Session 0.1.3 - A live-coding environment for Clojure

2014-03-25 Thread Gaofeng Zeng
gorilla-repl and session is very cool, I can use it in our log data statistics. thank your! On Monday, March 24, 2014 8:12:48 PM UTC+8, kovasb wrote: > > Session is a live coding environment, built on Datomic and Om. > > repo: https://github.com/kovasb/session > video: https://vimeo.com/8989902

Re: [ANN] Session 0.1.3 - A live-coding environment for Clojure

2014-03-25 Thread Sven Richter
Hi, This looks pretty awesome. Do you plan to integrate some authentication mechanism. I just imagined running session on my server and being able to access it from everywhere around the world, always having a repl available instantly. But obv. I dont want everybody to access it. Best Regards,

Clojure/West 2014 Videos

2014-03-25 Thread Ustun Ozgur
Looks like most of the videos at Clojure/West 2014 which started yesterday have been already posted on Youtube: https://www.youtube.com/playlist?list=PLZdCLR02grLp__wRg5OTavVj4wefg69hM&feature=c4-feed-u I would like to thank Cognitect and Alex Miller and the Clojure/West team for this. Best,

Clojure/West 2014 Videos

2014-03-25 Thread Alex Miller
Enjoy! The ones that aren't up yet were recorded and edited but had glitches in the upload or encoding that might take a bit to correct. Thanks to Prismatic for letting us borrow their upload bandwidth to get them online and to Lynn Grogan for doing the metadata editing late last night. Alex -

Re: Clojure + BDD + TDD + Pairing...

2014-03-25 Thread Marc Bluemner
Hey Marcus, Im Marc from Germany! Im actualy learning Clojure and am trying to get good at BDD, we are trying to implement it at work so practice would be great. I must say Ive never done pair programming but Im realy eager to try. SO if you like Im absolutly open for everything. Greetings Ma

[ANN] Clojure 1.6

2014-03-25 Thread Alex Miller
We are pleased to announce the release of Clojure 1.6. Getting Clojure: Web: http://clojure.org/downloads Lein/Maven: :dependencies [[org.clojure/clojure "1.6.0"]] (The download should be available shortly) This release includes significant features and bug fixes, documented

Re: Clojure/West 2014 Videos

2014-03-25 Thread Manuel Paccagnella
Thank you a lot to everyone involved! I can barely imagine the amount of effort and dedication required to bring all this value to the community at large. Speaking for myself, and I think a lot of other people, having the chance to at least watch the presentations even If I live overseas is inv

Re: Clojure + BDD + TDD + Pairing...

2014-03-25 Thread Gilberto Garcia
Hi Marcus, I'm also starting with Clojure and would like to find someone to pair and to study Clojure together. Best regards, Gilberto On 03/25/2014 09:50 AM, Marc Bluemner wrote: Hey Marcus, Im Marc from Germany! Im actualy learning Clojure and am trying to get good at BDD, we are trying

Re: [ANN] Clojure 1.6

2014-03-25 Thread Aaron Cohen
Great job! Sorry I didn't catch this in the RC, but the release notes state that: - CLJ-1099 If non-seq passed where seq is needed, error message now is an ExceptionInfo with the instance value, retrievable via ex-data. I think that change w

Re: [ANN] Clojure 1.6

2014-03-25 Thread Paul deGrandis
Awesome work everyone! Thanks! Paul -- 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 unsubscrib

Re: [ANN] Clojure 1.6

2014-03-25 Thread Alex Miller
Yes, that fix was reverted - we did not get a chance to fix in the release notes but I will do so for the future record. On Tuesday, March 25, 2014 7:16:32 AM UTC-7, Aaron Cohen wrote: > > Great job! > > Sorry I didn't catch this in the RC, but the release notes state that: > >- CLJ-1099

Re: [ANN] Clojure 1.6

2014-03-25 Thread Fergal Byrne
Well done and thanks to all concerned! Switched over to 1.6.0 without a hiccup. Using datomic-free, quil, adi, lein-midje-doc, clj-time, and a few others. All tests are passing, so looking great! Regards, Fergal Byrne On Tue, Mar 25, 2014 at 2:32 PM, Alex Miller wrote: > Yes, that fix was rev

Re: Clojure/West 2014 Videos

2014-03-25 Thread Mauricio Aldazosa
Wow, that was fast! Thanks for al the effort, Mauricio -- 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 p

Re: Clojure/West 2014 Videos

2014-03-25 Thread Leif
Wow! Great job! Of course, with the bar set so high, this means that every clojure conference will have to be live-streamed from now on ;) On Tuesday, March 25, 2014 8:46:50 AM UTC-4, Ustun Ozgur wrote: > > Looks like most of the videos at Clojure/West 2014 which started yesterday > have been

Re: Clojure + BDD + TDD + Pairing...

2014-03-25 Thread Jason Felice
I do TDD, even with my clojure (combined with repl-driven development). BDD, however, doesn't make a lot of sense in clojure-land. If logic is kept to pure functions as much as possible and state management kept to the "outside" of the app (highly recommended), TDD becomes really fun and managabl

Re: [ANN] Clojure 1.6

2014-03-25 Thread Andrey Antukh
Very great job! Thanks! 2014-03-25 15:16 GMT+01:00 Aaron Cohen : > Great job! > > Sorry I didn't catch this in the RC, but the release notes state that: > >- CLJ-1099 If non-seq >passed where seq is needed, error message now is an ExceptionI

Re: [ANN] Clojure 1.6

2014-03-25 Thread Jochen Schmitt
On Tue, Mar 25, 2014 at 07:00:17AM -0700, Alex Miller wrote: > We are pleased to announce the release of Clojure 1.6. I will only inform you, that this release should be available on Fedora Rawhide in the next days. The build was completed sucessfully on the build server. Regarding to our update

Re: data associated with a particular state

2014-03-25 Thread Moritz Ulrich
The data type created by defstruct isn't anything more than a map which can store the specified fields a bit more efficient than 'normal' maps. You can just `assoc' any other key-value pairs as in any other map. Also, have a look at records - I think StructMaps have been deprecated (or at least ar

extending a class to work as a function

2014-03-25 Thread Phillip Lord
I would like to extend an pre-existing Java class so that it operates as a function. Now something like this... (extend-type Object clojure.lang.IFn (invoke [this] (str "Hello:" this))) ((Object.)) => "Hello Object@fdafsd" seems like a good idea, but fails because IFn is not a protocol. Al

Re: data associated with a particular state

2014-03-25 Thread László Török
AFAIK the only thing that records do not support compared to StructMaps is namespaced keyword lookup, i.e. (:some-ns/a-key a-record). If you do not need this, you should consider using records. Las On Tue, Mar 25, 2014 at 4:52 PM, Moritz Ulrich wrote: > The data type created by defstruct isn't

Re: [ANN] Session 0.1.3 - A live-coding environment for Clojure

2014-03-25 Thread kovas boguta
On Mon, Mar 24, 2014 at 9:53 PM, John Jacobsen wrote: > Having only watched the video and skimmed the blog post so far, my first > thought is that it would be nice to see support for rendering Markdown and > math formulae (TeX), like iPN has. Any thoughts about how this might be > accomplished?

Re: [ANN] Session 0.1.3 - A live-coding environment for Clojure

2014-03-25 Thread kovas boguta
On Tue, Mar 25, 2014 at 6:09 AM, Sven Richter wrote: > Hi, > > This looks pretty awesome. Do you plan to integrate some authentication > mechanism. I just imagined running session on my server and being able to > access it from everywhere around the world, always having a repl available > instantl

Re: [ANN] Session 0.1.3 - A live-coding environment for Clojure

2014-03-25 Thread Jony Hudson
On Monday, 24 March 2014 21:02:07 UTC, Paul Mooser wrote: > This looks great - I saw your talk at one of the clojure conferences, and > I'm glad you've continued to work on this! > > I'm curious as to whether your approach to rendering is similar to that > used in gorilla repl (http://gorilla-re

Re: Garden, Thorn - Looking for contributors

2014-03-25 Thread Julien
Hi Joel, thanks for your great work on garden! Definitively helping me every day. Can you share what you have in mind regarding CSSOM integration? It certainly opens cool perspective and I'm curious how you see it fit with garden. I would be interested in giving you a hand here. Maybe a github

Re: Garden, Thorn - Looking for contributors

2014-03-25 Thread Alan Moore
Joel, Count me in... You can contact me offline at kahunamoore coopsource org Thanks for this library! Alan On Tuesday, March 25, 2014 12:33:15 PM UTC-7, Julien wrote: > > Hi Joel, > > thanks for your great work on garden! Definitively helping me every day. > > Can you share what you have i

Re: [ANN] Session 0.1.3 - A live-coding environment for Clojure

2014-03-25 Thread kovas boguta
On Tue, Mar 25, 2014 at 3:05 PM, Jony Hudson wrote: > the way you aggregate things in the rendered output is just the way you'd > aggregate the values. I think these are the core ideas which make both of > the renderers powerful. I'm highly in agreement with this POV. The way most JS libraries t

Garden, Thorn - Looking for contributors

2014-03-25 Thread Daniel
I wonder what is so bad about pure CSS. Don't get me wrong - I do appreciate projects like these. -- 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 moder

Re: [ANN] Clojure 1.6

2014-03-25 Thread Mikera
Congrats everyone, and thanks for all the hard work Alex in particular! Looking forward to getting this out into production today On Tuesday, 25 March 2014 22:00:17 UTC+8, Alex Miller wrote: > > We are pleased to announce the release of Clojure 1.6. > > Getting Clojure: > > Web: