[ANN] Yet another CSS DSL.

2013-05-20 Thread JeremyS
Hi guys, At the risk of being redundant (I am thinking Garden) I have released some libraries to generate css from clojure data structures. Take a look at my github if you are interested. It's one my first clojure project and I'd r

Re: Game Project - HTML5 or Applet?

2013-05-24 Thread JeremyS
Hi, I haven't investigated much game development in HTML5 with ClojureScript, but Chris granger did ! You can find here [1] some explanations about a game he developped for a node knockout, in [2] you can find the code of the game and [3] is a library implementing the pattern he used to model h

Re: Game Project - HTML5 or Applet?

2013-05-24 Thread JeremyS
JavaFx could also be a nice way to go... On Friday, May 24, 2013 3:15:25 PM UTC+2, Laurent PETIT wrote: > > It's for a contest project, so maybe this doesn't matter ... but > anyway what I'm thinking deep inside is that I would not do it with a > Java Applet. For the same reasons I would not do

Re: [pre-ANN] test2, the last Clojure testing framework

2013-06-10 Thread JeremyS
Hi guys, > > This might not be a good idea but if the goal is to have a minimal testing utilities (or testing abstractions might I say ?) do you plan to port them to ClojureScript ? The idea of a minimal testing utility that would be extensible to suit everyone's taste and style of testing would

Re: [pre-ANN] test2, the last Clojure testing framework

2013-06-11 Thread JeremyS
ted and I there's is more functionality in the doc than I have had to use. So congrats Brian. Once again it would also be nice to see Test2 include ClojureScript. And the spec might be a good start. Cheers, Jeremys. On Tuesday, June 11, 2013 2:56:44 PM UTC+2, Laurent PETIT wrote: > > You

Re: [ANN] Instaparse 1.1.0

2013-06-11 Thread JeremyS
Hi Puzzler, I was wondering if you planned to port Instaparse to ClojureScript. I know it's asking a lot, but I am one of those who would love to be able to run it in a browser or in node.js... Cheers, Jeremys. On Tuesday, May 14, 2013 10:13:52 AM UTC+2, puzzler wrote: > > Insta

Re: [ANN] Instaparse 1.1.0

2013-06-12 Thread JeremyS
dvocate lisp philosophy of programming, molding the language to your problem and coding in a language that suits the domain of the problem. Instaparse is a great tool to generate our own languages and I am coding some ClojureScript code at the moment so call me biased... :) Cheers, Jeremys On We

Javapocalypse

2013-06-14 Thread JeremyS
Hi guys, I just stumbled on this video <http://jz13.java.no>. I'm sure many of you have found it on hacker news, but for those who haven't here is a bit of fun with our dear jvm. Cheers, Jeremys. -- -- You received this message because you are subscribed to the Google

Re: New CSS library - Garden

2013-06-18 Thread JeremyS
Hi Joel, I have a quick and dirty implementation of a 960-ish grid systemusing a DSL similar to garden If you want to take a look. On Friday, April 26, 2013 1:01:44 AM UTC+2, Joel Holdbrooks wrote: > > It's funny you should bring that up! I've actually be

Re: New CSS library - Garden

2013-06-19 Thread JeremyS
#x27;t think I could even fathom the idea of doing it in Sass. > > TL;DR you have Clojure at your disposal! Though we're SOL on some very > nice Sass libraries, we can potentially do more and at a higher level! > > Thanks for sharing! It's inspiring. > > On Jun 18,

Re: core.async

2013-06-29 Thread JeremyS
m not running around like a headless chicken, since my mind (and so my head) is blown away, I am very close to... Exciting times !!! Cheers, Jeremys. On Saturday, June 29, 2013 2:01:29 PM UTC+2, Jim foo.bar wrote: > > On 29/06/13 12:07, Peter Taoussanis wrote: > > > > I

Re: Implementing a Scribble-like preprocessor for Clojure

2013-08-24 Thread JeremyS
Hi Bogdan, That's a cool Idea ! I'm wondering if you wouldn't be better off with something like Instaparse <https://github.com/Engelberg/instaparse>. Cheers, Jeremys. On Friday, August 23, 2013 3:37:53 PM UTC+2, Bogdan Opanchuk wrote: > > Hi all, > > Fo

Re: Implementing a Scribble-like preprocessor for Clojure

2013-09-07 Thread JeremyS
Hi bogdan, Sweet! On Saturday, September 7, 2013 5:38:03 PM UTC+2, Bogdan Opanchuk wrote: > > For what it's worth, I've finished a draft implementation using reader API > utilities from Clarity . The > result can be seen on github

Re: [ANN] dewdrop 0.1.0 -- lenses made simple(r?)

2016-01-02 Thread JeremyS
Hey guys, I might be besides the point but, have you played with specter ? It seems to me that it's worth investigating when going the lens route. What's your take on it ? Cheers, Jeremy. -- You received this message because you are subscribed to the

Re: [ANN] New clojure.org!

2016-01-14 Thread JeremyS
The new website is great ! Cheers, Jeremy. On Thursday, January 14, 2016 at 5:08:41 PM UTC+1, Colin Yates wrote: > > +1 this is really great. > > > On 14 Jan 2016, at 16:07, Stephen Gilardi > > wrote: > > > > +1 great fresh look and process! > > > >> On Jan 14, 2016, at 11:01 AM, Marc O'Mo

Re: Clojure/West 2013 videos?

2013-04-06 Thread JeremyS
Here I am on my very first post here, finding myself adding to a troll that has gone far beyond what I would have imagine for the clojure google group. First, to Fogus, your book with Chouser is a the perfect start on the road to lisp enlightenment and I am impatient to discover the second edit

Re: Clojure/West 2013 videos?

2013-04-06 Thread JeremyS
First post, first mistake, ashamed that I am. Big time. I spoke before I thought. No need say more here. On Saturday, April 6, 2013 11:51:26 PM UTC+2, Laurent PETIT wrote: > > Hello Jeremy, > > 2013/4/6 JeremyS >: > > Here I am on my very first post here, finding mys

Re: New CSS library - Garden

2013-04-25 Thread JeremyS
Hi Murtaza, the simple way to go is have something like (def rules1 [...]) (def rules2 [...]) (spit "rules.css" (css (concat rules1 rules2))) I am not sure about my good use of the library here but I think the idea is there. When you develop with the repo you can just eval the (spit ...) ca

Re: Do functions never get inlined by jvm?

2013-04-25 Thread JeremyS
Hi guys, Maybe we'll see some change in the future, Atlas already seems to be interesting. I think there is also a huge potential with Codeq. >From what I gather Codeq only parse thing looking like (defsomething ) for now. But we can imagine that if we augment th

Re: [GSoC Idea] cljs layer/dsl over express js

2013-05-02 Thread JeremyS
Hi everyone, I was wondering if the interceptor concept from Pedestal would also be a good fit in this proposal ? >From what I gathered it helps break the flow of execution of the handling of requests while still having something that looks like ring middlewares. Am I off topic or is there so

Re: [ANN] Instaparse 1.1.0

2013-05-14 Thread JeremyS
Hi Puzzler, Instaparse seems to be a wonderful piece of software congrats ! I haven't had the time to test it yet but it's on the top of my to do list. Cheers Jeremy. PS This is kind of a fan boy message but congratulations really seem to be in order nonetheless :) On Tuesday, May 14, 2013 1