Re: ANN simple-time

2014-03-24 Thread Zoka
Hi Matt, Looks very good - the little speed up you can make is to use :const attribute for conversion constants such as milliseconds-per-XXX , so there is no var lookup overhead during runtime. -- You received this message because you are subscribed to the Google Groups "Clojure" group. To

Re: A simple (and naive) online whiteboard using Aleph & ClojureScript

2012-03-31 Thread zoka
routing infrastructure at this stage does not support Websockets, so you app is unreachable by Websocket cllients. There is work being done on NGINX module to address this see: http://www.letseehere.com/reverse-proxy-web-sockets https://github.com/yaoweibin/nginx_tcp_proxy_module Zoka On Apr 1

ANN: ringMon 0.1.2 released

2012-03-25 Thread zoka
README.md page at GitHub. * Adjusted project.clj to be Leiningen v 2.0 compatible. The demo showcase app is at: http://noirmon.herokuapp.com/ Source code is at: https://github.com/zoka/ringMon/ Regards Zoka . -- You received this message because you are subscribed to the Google Groups "Cl

Re: ANN: ringMon 0.1.1 released

2012-03-21 Thread zoka
f maps that are sent back to Ring, converted to JSON, so the response is finally delivered by the jQuery AJAX response callback. I need [ring/ring-jetty-adapter "1.0.1"] dependency so I can run ringMon in standalone mode. Regards Zoka -- You received this message because you are sub

Re: ANN: ringMon 0.1.1 released

2012-03-21 Thread zoka
lojure/java.jmx "0.1"]                            [clj-json "0.5.0"]                            [org.clojure/tools.nrepl "0.2.0-beta2"]] It looks like clj-json might be a culprit. Is there a lein/maven utility that works out dependency chain? Regards Zoka On Mar 22, 3:52 am, Shantanu Kumar

Re: ANN: ringMon 0.1.1 released

2012-03-21 Thread zoka
lojure/java.jmx "0.1"] [clj-json "0.5.0"] [org.clojure/tools.nrepl "0.2.0-beta2"]] It looks like clj-json might be a culprit. Is there a lein/maven utility that works out dependency chain? Regards Zoka That is really wierd On Mar

ANN: ringMon 0.1.1 released

2012-03-19 Thread zoka
provides Web front end to nREPL server that runs in context of the web application itself. I can be used to provide easy insight into applications deployed on cloud platforms like Heroku, The demo showcase app is at: http://noirmon.herokuapp.com/ Source code is at: https://github.com/zoka/ringMon

Re: ANN: ringMon Ring middleware that provides monitoring and nREPL remote interface to any Ring based Clojure web app

2012-03-19 Thread zoka
Hi all, The first non-snapshot release of ringMon 0.1.1 is now in Clojars. The demo is at http://noirmon.herokuapp.com/ringmon/monview.html The source is at https://github.com/zoka/ringMon/ Regards Zoka -- You received this message because you are subscribed to the Google Groups "Cl

Try Clojure instance with web based REPL interface.

2012-03-18 Thread zoka
ability to start/stop Clojure scripts, persistent concurrent sessions and a chat facility to communicate with other people whose sessions are active at the same time. Regards Zoka -- You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this

Re: ANN: ringMon Ring middleware that provides monitoring and nREPL remote interface to any Ring based Clojure web app

2012-03-10 Thread zoka
This project is very fresh (only 2 weeks old) - I have just fixed couple of last minute bugs. I had to publish the JAR in Clojars since development process on Heroku requires me to build demo application with lein on their virtual host before it can be deployed. Zoka On Mar 10, 6:41 pm

ANN: ringMon Ring middleware that provides monitoring and nREPL remote interface to any Ring based Clojure web app

2012-03-09 Thread zoka
/ Source code at https://github.com/zoka/ringMon/ Regards Zoka -- 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 y

Re: clojure.java.jmx "0.1" - problem getiing java.lang:type=Threading :AllThreadIds attribute

2012-02-24 Thread zoka
nsibility to convert types appropriately for how > they are needed. > > > > > > > > On Wed, Feb 22, 2012 at 7:47 PM, zoka wrote: > > I was trying to convert result of JMX attributes query to JSON, and > > encountered  problem while reading one particular a

ANN Simple demo how to add JMX data monitoring to Noir web app.

2012-02-23 Thread zoka
Just by adding couple of files to a Noir web application, you can add JMX data monitoring admin page. Code at https://github.com/zoka/noirMon Demo at http://noirmon.herokuapp.com Regards Zoka -- You received this message because you are subscribed to the Google Groups "Clojure" grou

ANN Simple demo how to add JMX data monitoring to Noir web app.

2012-02-23 Thread zoka
Just by adding couple of files to a Noir web application, you can add JMX data monitoring admin page. Code at https://github.com/zoka/noirMon Demo at http://noirmon.herokuapp.com Regards Zoka -- You received this message because you are subscribed to the Google Groups "Clojure" grou

clojure.java.jmx "0.1" - problem getiing java.lang:type=Threading :AllThreadIds attribute

2012-02-22 Thread zoka
ure.java.jmx github repo, so I thought it would be appropriate to rise this issue, since it may be affecting some other attributes as well. Regards Zoka -- You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group, send email to

Re: ANN: Gloss, a byte-format DSL

2010-11-28 Thread zoka
that case Gloss decode fun would refuse to accept ByteBuffers with wrong order() and encode fun will always generate the correct result. Zoka On Nov 25, 3:00 am, Zach Tellman wrote: > ByteBuffers have an order() method which allows you to toggle the > endianness.  I haven't teste

Re: ANN: Gloss, a byte-format DSL

2010-11-27 Thread zoka
), ; followed by 4 byte float in little endian (Intel) format. Zoka On Nov 25, 3:00 am, Zach Tellman wrote: > ByteBuffers have an order() method which allows you to toggle the > endianness.  I haven't tested this, but since everything is built on > top of Java's ByteBuffer func

Re: ANN: Gloss, a byte-format DSL

2010-11-24 Thread zoka
JVM stores numbers in in big endian format - is there a way to process binary stream containing little endian numbers? Zoka On Nov 24, 7:24 am, Zach Tellman wrote: > Good question.  The solution didn't make the cut for my initial > release, but will be added soon.  My plan is