Re: Genetic Algorithm in Clojure

2018-03-20 Thread Jose Figueroa Martinez
Hello, There are many parts of the genetic algorithm that can be parallelized. The most common part is the evaluation of each individual. You can start with that. Take your population and calculate the fitness of every member in a parallel way. Clojure has many mechanisms to use like pmap, futu

Re: [ANN] Clojure 1.9.0 is now available!

2017-12-08 Thread Jose Figueroa Martinez
Excelent news! Thank you all for your effort. It feels like christmas but earlier :-D *"We wish you a merry christmas and a happy new Clojure!"* José FM El viernes, 8 de diciembre de 2017, 13:35:39 (UTC-6), Alex Miller escribió: > > Clojure 1.9 is now available! > > > Clojure 1.9 introduces two

Re: Seeking a function to partially parallelize collection processing

2017-06-16 Thread Jose Figueroa Martinez
Hello Tom, I think you are talking about distribution, not parallelization. As I see (sorry for not reading enough previously) you want a way to handle different things in a sequential way where each sequence of things (already grouped) are handled in a different thread. You can put the things

Re: Seeking a function to partially parallelize collection processing

2017-06-16 Thread Jose Figueroa Martinez
Hello, there are many videos on how parallelize sequential processing on ClojureTV, but, the most basic way in Clojure I think is *pmap* Saludos. El viernes, 16 de junio de 2017, 9:13:11 (UTC-5), Tom Connors escribió: > > I'm looking for a function that would likely be named something like >

Re: component dependency cleanup problem

2017-01-18 Thread Jose Figueroa Martinez
oles, 18 de enero de 2017, 10:56:37 (UTC-6), Jose Figueroa Martinez escribió: > > Hello, your code is acting ok, as you are not dissocing the data component > from the compute component during its "stop" method . > > Remember, this is not object oriented programming. Yo

Re: component dependency cleanup problem

2017-01-18 Thread Jose Figueroa Martinez
Hello, your code is acting ok, as you are not dissocing the data component from the compute component during its "stop" method . Remember, this is not object oriented programming. You removed the data from the data component, but did nothing to the compute component. That is the reason why the

Re: [ANN] 2016 State of Clojure Community Survey

2016-12-13 Thread Jose Figueroa Martinez
Me too :-| El martes, 13 de diciembre de 2016, 2:44:08 (UTC-6), Patrick Kristiansen escribió: > > On Tuesday, December 13, 2016 at 2:00:10 AM UTC+1, Mike Rodriguez wrote: >> >> Uh oh. I should have asked. I ranked my priorities in the exact opposite >> order since I thought 1 was lowest. > > > I

Re: Clojure 1.4 Released

2012-04-18 Thread Jose Figueroa Martinez
Thanks to all of you!! You are doing a great job with Clojure :-D José FM. On Apr 17, 9:05 pm, Alan Dipert wrote: > We are pleased to announce the release of Clojure 1.4: > >  http://clojure.org/downloads > > For maven/leiningen users, your settings are now: > >   :dependencies [[org.clojure/c

Re: Clojure Code Highlighting in Presentations

2011-04-04 Thread Jose Figueroa Martinez
Hello, I use my own web code highlighter based on vim7. It output html code which can be used with lot of css color styles. Try it, maybe it can help you :-) http://buhoz.net/codevim/ Saludos. José Figueroa Martínez. On 3 abr, 17:15, "Heinz N. Gies" wrote: > Hi everyone, > not a clojure techn

Re: VimClojure 2.2.0 released

2010-10-06 Thread Jose Figueroa Martinez
Hello Meikel, Thank you very much for your work. Vim is my prefered text/code editor and thanks to your work I can use Clojure in an eficient and enjoyable way :-) I use my own plugin (Vicle http://www.vim.org/scripts/script.php?script_id=2551) to work with the clojure repl, but it is just my pr