Re: Clojure Conj extracurricular activities spreadsheet

2011-11-08 Thread fyuryu
Please add me to the following: ClojureScipt core.logic Clojure tooling ClojureCLR Literate Programming D3 and ClojureScript Thanks, Roland Sadowski -- You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group, send email to clojure@googleg

Re: 2D graphics options with Clojure?

2011-05-01 Thread fyuryu
Processing has PDF exporting capabilities via one of the standard libraries that ship with it: http://processing.org/reference/libraries/pdf/index.html I haven't used it myself, but I remember seeing nice stuff rendered with it. -Roland -- You received this message because you are subscribed t

Re: Who's using Clojure?

2011-04-20 Thread fyuryu
Citigroup is using Clojure. In serious projects, not as perl replacement on some developer's machine. I'm not at liberty to share more details. -- You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group, send email to clojure@googlegroups.

Re: Are you supposed to turn ClojureCLR into DLLs?

2010-06-04 Thread fyuryu
Yes, you can compile the code to a DLL using th compile function, similarly to how it's done on the JVM. You have to set two env. variables, though (just like one has to set the classpath for the JVM): clojure.compile.path and clojure.load.path -Roland On Jun 3, 8:49 am, Peter Hultgren wrote: >

Re: Clojure for game programming?

2009-08-30 Thread fyuryu
In general, staying on the purely functional side will most likely kill your performance. You will need some mutation (I'd like to be proven otherwise, though). And not mutation via refs and so on, but mutation in the Java sense. So you'll have to create some Java classes for your game objects It

gen-struct: a Clojure macro for generating classes with mutable state

2009-08-03 Thread fyuryu
Hi, I modified the gen-struct macro a bit and got it to generate simple, mutable and immutable structures. You can customize only one aspect of those classes: their fields. Here's an example: (gen-struct :name my.test.struct :mutable-fields [[float x] [f

Re: Clojure Users Group - Denmark

2009-04-01 Thread fyuryu
Hi, I'm currently in Copenhagen so I'm definitely interested. -Roland --~--~-~--~~~---~--~~ 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 To unsubscribe fro

Re: Got a Clojure library?

2009-01-31 Thread fyuryu
Name: Roland Sadowski (fyuryu on IRC). Library name: Clojure+Processing Library home page URL: http://github.com/rosado/clj-processing/tree/master Category: visualization, graphics, wrapper License: Common Public License Version 1.0 Dependencies: a recent version of Processing (processing.org

Re: lancet: Clojure controlling Ant

2008-11-07 Thread fyuryu
Driving ant from Clojure would be cool. I like the syntax of rake (but I don't use ruby) and started working on something similar. I also wanted to look at ant's internals to reuse some of its code (probably). Here's what I'm working towards (taken from a presentation about rake): (task :build [

Re: Processing wrapper

2008-11-03 Thread fyuryu
> should call strokeWeight instead of strokeJoin. > > Best regards, > > On Sep 9, 8:28 am, fyuryu <[EMAIL PROTECTED]> wrote: > > > It's on github now (worked from linux...) > > >http://github.com/rosado/clj-processing > > > Roland --~--~-~

Re: offtopic - where are you come from? (poll)

2008-10-17 Thread fyuryu
I'm from Żory, Poland. Roland --~--~-~--~~~---~--~~ 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 To unsubscribe from this group, send email to [EMAIL PROTEC

Re: Processing wrapper

2008-09-08 Thread fyuryu
It's on github now (worked from linux...) http://github.com/rosado/clj-processing Roland --~--~-~--~~~---~--~~ 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

Re: Processing wrapper

2008-09-08 Thread fyuryu
Sorry, forgot the link: http://bit.ly/3ZT3ZG I wanted to put it on github, but windows/ssh/git don't want to cooperate. Roland --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group

Processing wrapper

2008-09-08 Thread fyuryu
Hi all, I've written a wrapper for Processing.org. It covers most of the functions, some have slightly changed name. You need to have processing's core.jar in the CLASSPATH to use it. There's an example script with an amazing graphics demo. It works as a standalone script but it's more fun via ed