Re: [ANN] cljzmq-0.1.1 - A Clojure binding for ØMQ
Here is a simple way to send and receive Clojure data over ØMQ: https://gist.github.com/trevorbernard/6118918 On Monday, July 29, 2013 10:00:13 AM UTC-3, Trevor Bernard wrote: > > Hello, > > I'd like to announce the immediate availability of cljzmq-0.1.1 on maven > central. > > https://github.com/zeromq/cljzmq > > For sample usage, I've started porting the zguide examples here: > > https://github.com/trevorbernard/cljzmq-examples > > Pull requests welcome! > > Warmest regards, > > Trev > -- -- 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 group, send email to clojure+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/clojure?hl=en --- You received this message because you are subscribed to the Google Groups "Clojure" group. To unsubscribe from this group and stop receiving emails from it, send an email to clojure+unsubscr...@googlegroups.com. For more options, visit https://groups.google.com/groups/opt_out.
[ANN] cljzmq-0.1.1 - A Clojure binding for ØMQ
Hello, I'd like to announce the immediate availability of cljzmq-0.1.1 on maven central. https://github.com/zeromq/cljzmq For sample usage, I've started porting the zguide examples here: https://github.com/trevorbernard/cljzmq-examples Pull requests welcome! Warmest regards, Trev -- -- 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 group, send email to clojure+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/clojure?hl=en --- You received this message because you are subscribed to the Google Groups "Clojure" group. To unsubscribe from this group and stop receiving emails from it, send an email to clojure+unsubscr...@googlegroups.com. For more options, visit https://groups.google.com/groups/opt_out.
Jenkins/leiningen trigger build when a snapshot gets updated
Hi, Does there exist a Hudson/Jenkins plugin for leiningen to trigger a build when a SNAPSHOT dependency gets updated? Warmest regards, Trevor -- -- 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 group, send email to clojure+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/clojure?hl=en --- You received this message because you are subscribed to the Google Groups "Clojure" group. To unsubscribe from this group and stop receiving emails from it, send an email to clojure+unsubscr...@googlegroups.com. For more options, visit https://groups.google.com/groups/opt_out.
Re: Understanding boxing
> If you want to be 100% sure, AOT-compile your code and look > at the emitted Java classes with `javap`. > Some observations I found about autoboxing and Clojure. If you typehint a deftype/defrecord with a primitive, the generated class will store it as it's primitive type but this is not the case with primitive arrays. It will store it as an Object. But do you own verification to be sure. -Trev -- -- 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 group, send email to clojure+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/clojure?hl=en --- You received this message because you are subscribed to the Google Groups "Clojure" group. To unsubscribe from this group and stop receiving emails from it, send an email to clojure+unsubscr...@googlegroups.com. For more options, visit https://groups.google.com/groups/opt_out.
[ANN] phaser-1.1.2 - A Clojure DSL for the LMAX Disruptor 3.0.1
I'd like to officially announce the immediate availability of Phaser, a Clojure DSL for the LMAX Disruptor 3.0.1. https://github.com/userevents/phaser Pull requests welcome! -Trev -- -- 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 group, send email to clojure+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/clojure?hl=en --- You received this message because you are subscribed to the Google Groups "Clojure" group. To unsubscribe from this group and stop receiving emails from it, send an email to clojure+unsubscr...@googlegroups.com. For more options, visit https://groups.google.com/groups/opt_out.
Re: Clojurescript One and Websockets
Any updates Kushal Pisavadia on Websockets and Ring jiving? On Monday, March 19, 2012 9:40:20 AM UTC-3, Kushal Pisavadia wrote: > > I am in discussion with James, but it's very high-level at the moment and > no work has been done on integration yet. > > I don't think it'll get into the next tagged release of Ring (1.1) in > time, as that's likely to be released fairly soon once the current set of > issues are cleared up. > > On 19 March 2012 12:19, Jay Fields wrote: > >> I'm not involved (much) with Webbit other than using it in prod for my >> web socket stuff. >> >> I believe Kushal Pisavadia (cc'd) & James Reeves have been talking >> about webbit features that Ring could leverage, but I'm not familiar >> with the details. >> >> Cheers, Jay >> >> On Sat, Mar 17, 2012 at 7:23 PM, Brian Rowe wrote: >> > Hey Jay, >> > >> > Are there any plans to make a ring adapter for webbit? >> > >> > >> > On Friday, March 2, 2012 6:40:27 AM UTC-5, Jay Fields wrote: >> >> >> >> clojure + web sockets, not using >> >> aleph: >> http://blog.jayfields.com/2011/02/clojure-web-socket-introduction.html >> >> >> >> On Mar 1, 2012, at 10:51 PM, Brian Rowe wrote: >> >> >> >> Hi, >> >> >> >> I'm thinking about using clojurescript one a starting point for a web >> >> game. I would like to use websockets as the primary communication >> mechanism >> >> between the browser and the server. As far as I know Zack Tellman's >> Aleph >> >> is the only clojure web server that supports websockets. Is this >> true? If >> >> so, are there any guides showing how to modify clojurescript one to use >> >> Aleph? If there are no guides, how much work would it take to modify >> cljs >> >> one to use aleph? >> >> >> >> 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 - please be patient with >> >> your first post. >> >> To unsubscribe from this group, send email to >> >> clojure+unsubscr...@googlegroups.com >> >> For more options, visit this group at >> >> http://groups.google.com/group/clojure?hl=en >> >> >> >> >> > -- >> > 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 group, send email to >> > clojure+unsubscr...@googlegroups.com >> > For more options, visit this group at >> > http://groups.google.com/group/clojure?hl=en >> > > -- 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 group, send email to clojure+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/clojure?hl=en