need help automating continuous deployment

2014-05-29 Thread Cody Ruby
in legitimate functional programming, specifically cloud related with Clojure. Only catch is their office is up in White Plains, NY. Can anyone help spread the word to those interested in a software engineering opportunity like this? Any help is greatly appreciated. Cody Ruby | Managing

Re: Simple things should be simple

2010-09-10 Thread cody koeninger
On Sep 10, 1:32 am, Mike Meyer mwm-keyword-googlegroups. 620...@mired.org wrote: I think that Java's strength is enterprise-level, highly scalable web servers make people assume that every problem must be a nail for that hammer. I think that Unix's strength is small independent programs

Re: The % Schemer Series - are they worth the money?

2010-03-23 Thread cody koeninger
On Mar 23, 10:37 am, Sean Devlin francoisdev...@gmail.com wrote: Hey folks, I'm looking to add to my bookshelf.  I was wondering what this groups experience with the Schemer series of books is? Sean Little, seasoned, + the little MLer are awesome, only thing that comes close in terms of

Re: Lift equivalent

2010-01-03 Thread cody koeninger
On Jan 2, 11:50 am, Mike Meyer mwm-keyword-googlegroups. 620...@mired.org wrote: There are definitely some good ideas there - and I agree with most of the goals. But Lift, like most other page-centric web frameworks, seems to break one of the fundamental rules of good API design: Simple things

Re: Clojure Scoping Rules

2009-11-21 Thread cody koeninger
http://clojure.org/lisps All (global) Vars can be dynamically rebound without interfering with lexical local bindings. No special declarations are necessary to distinguish between dynamic and lexical bindings. Other part of that explanation is whether x in a given piece of code refers to a

Re: Datatypes and Protocols - early experience program

2009-11-13 Thread cody koeninger
On Nov 13, 9:42 am, Sean Devlin francoisdev...@gmail.com wrote: In this case, you provide the docs for each method after parameters. Would the following be possible: (defprotocol AProtocol :on AnInterface   A doc string for AProtocol abstraction   (bar bar docs [a b] :on barMethod)   (baz

Re: Periodic tasks

2009-10-31 Thread cody koeninger
On Oct 31, 5:22 am, alxtoth alexandru.t...@gmail.com wrote: Why not use the OS task scheduler? On un*x there is good old cron or at. On windoze there is similar task scheduler. Overhead from starting and stopping the JVM every couple of minutes would probably be unacceptable. My

Re: Periodic tasks

2009-10-31 Thread cody koeninger
On Oct 31, 11:42 am, Richard Newman holyg...@gmail.com wrote: VimClojure relies on Nailgun, with a bunch of people on this list   using it with Clojure every day. My recollection from list and IRC was that (aside from random nailgun issues + the project not being updated in 4 years) there

Re: apply for macros?

2009-10-05 Thread cody koeninger
On Oct 4, 1:31 am, Meikel Brandmeyer m...@kotka.de wrote: Here we have the smell! You cannot define functions with a function.   You have to use a macro! I am not clear on what you mean by this. From a user's point of view, what is the difference between defining a function, and interning a

Re: seeking examples/tutorials on clojure/lisp-y design (vs Java/Ruby)

2009-09-11 Thread cody koeninger
On Sep 11, 10:56 am, Michael Teter tot...@gmail.com wrote: What I would like to find now is some kind of guide or document to help me learn to design the functional way, instead of just writing Java in Clojure. http://htdp.org/ --~--~-~--~~~---~--~~ You

Re: I18n

2009-08-28 Thread cody koeninger
On Aug 28, 12:16 am, ngocdaothanh ngocdaoth...@gmail.com wrote: Hi all, Is there an i18n library for Clojure? What Java i18n library should I use in a Clojure program (it suits Clojure syntax for example)? For Ruby and Erlang I prefer Gettext, but for Java it seems that .properties files

Re: clojure vs scala

2009-08-26 Thread cody koeninger
On Aug 26, 5:29 am, Christian Vest Hansen karmazi...@gmail.com wrote: Another Scala downer: Scala is very powerful, some developers might shoot themselves into the foot - I don't see how this applies more to Scala than Clojure. If we want to talk about foot-shooting, we could talk about

Durable transactions in practice?

2009-08-08 Thread cody koeninger
Assuming people aren't patching clojure ala dave griffith's external transactions patch in the group files, what are people doing in practice to durably store the state of refs? Storing within a transaction and somehow ensuring your store operation is idempotent (not to mention reversible)?

Re: Clojure as a First Language

2009-08-06 Thread cody koeninger
On Aug 6, 3:22 am, Lauri Pesonen lauri.peso...@iki.fi wrote: There was a post recently on LtU about a paper by Matthias Felleisen et al. (of Little Schemer fame) about a functional teaching language that they've been using in schools and freshman classes to teach kids how to program. I'm

Re: Clojure as a CGI language?

2009-07-23 Thread cody koeninger
there. [$ ps -ef | grep java cody 12139 12138 0 Jul07 pts/101:31:03 java -cp .:lib/*:/usr/ local/src/compojure/src I've had a jetty instance running on slicehost for over 2 weeks now, which was just the last time I happened to start it. I dunno if $20 / month counts as expensive (it's

Re: Why do Enlive template functions return a seq instead of a str?

2009-07-15 Thread cody koeninger
On Jul 11, 12:31 pm, Jarkko Oranen chous...@gmail.com wrote Forcing them into a single string at the end would wasteful in case the user intends to write the output into a stream (which can be done a fragment at a time.) Thus, leaving the choice to the user seems like a good decision. Or

Re: Enlive questions

2009-07-01 Thread cody
On Jun 27, 3:16 am, Christophe Grand christo...@cgrand.net wrote: Indeed. Fixed. user= (html-resource (java.io.StringReader. !-- o noes a comment --htmlheadtitlet/title/headbodyh1h/h1/body/html)) ({:type :comment, :data o noes a comment } {:tag :html, :attrs nil, :content [{:tag :head,

Re: Enlive questions

2009-07-01 Thread cody
On Jul 1, 3:45 pm, cody c...@koeninger.org wrote: The use case for this is inserting sub-templates, e.g. site-wide common sidebars, footer, etc.  Or do you see an alternate way to accomplish that goal? Eh, looks like I need to read earlier in the thread, apologies for the noise, and thanks

Re: Enlive questions

2009-06-27 Thread cody
On May 6, 12:36 am, Christophe Grand christo...@cgrand.net wrote: Hello Ryan, rzeze...@gmail.com a écrit : Either I've missed something, orEnlive*appears* to have problems handling comment tags. Indeed. I pushed a fix, please tell me whether it works for you now. Thanks for the

Re: Convincing others about Clojure

2009-06-25 Thread cody
On Jun 25, 8:39 am, Berlin Brown berlin.br...@gmail.com wrote: This is my main point: One thing that Clojure is NOT.  It is not limited by the limitations of the Java programming language. It may not be limited by the java _language_, but it is limited by the java _platform_. Given the