New Functional Programming Job Opportunities

2013-05-05 Thread Functional Jobs
Here are some functional programming job opportunities that were posted recently:Software Engineer  - Information Exchange Systems at The Climate Corporationhttp://functionaljobs.com/jobs/140-software-engineer--information-exchange-systems-at-the-climate-corporationCheers,Sean MurphyFunctionalJo

Re: Clojure on top of ObjC?

2013-05-05 Thread Nathan Sorenson
On Tuesday, 23 April 2013 13:37:59 UTC-7, Steven Degutis wrote: > > While this is certainly neat, it doesn't allow Clojure to be used as > an embedded scripting language inside an ObjC app. > Since the Clojure/West talk I've been busy trying to get clojure-scheme self-hosted. I've been a week

Re: Import java classes in clojure

2013-05-05 Thread Caocoa
Well, so I just tried the following commands: > user=> (ns mx.clojure.contemporary.pitch-centricity-and-symmetry > #_=> (:import [jm.music.data > #_=> Score > #_=> Part > #_=> Phrase > #_=> Note]) > #_=> (:import [jm.music

Re: link for clojure programs

2013-05-05 Thread Jiaqi Liu
, this book is very easy for beginners to study , also have plenty source codes 2013/5/4 nrel...@yahoo.com > > > On Saturday, May 4, 2013 2:01:48 PM UTC+8, nre...@yahoo.com wrote: >> >> Can anybody give me a link/websites of codes for BEGINNERS FOR CLOJURE? >> > > Thanks > > -- > -- > You rec

Re: Import java classes in clojure

2013-05-05 Thread Caocoa
Thanks for your reply Jonathan! I copy-paste my example from a ns block, so the full code is: > user=> (ns mx.clojure.contemporary.pitch-centricity-and-symmetry > #_=> (:import [javax.constraints > #_=> Problem > #_=> ProblemFactory > #_=> Var > #_=

Re: [ANN] Himilsbach 0.0.1 is released

2013-05-05 Thread Ben Mabey
On Sun May 5 18:31:59 2013, Mikera wrote: On Tuesday, 30 April 2013 04:12:14 UTC+8, Jan Stępień wrote: Dear Clojurians, I'm very happy to announce Himilsbach 0.0.1. Himilsbach is a tiny actor library for intra-process messaging inspired by Erlang. Find it at https://github.com/jstepien/himi

Re: [ANN] conf-er 1.0.1

2013-05-05 Thread Russell Mull
This looks simple and useful, thanks! Supposing I had a function that called this library, how could I go about testing it easily? That is, the configuration file becomes implicitly an input to the function, one that I'd like to be able to control from my tests. Perhaps something like this coul

Re: core.logic: Strange behaviour when using featurec with nested feature map (bug?).

2013-05-05 Thread David Nolen
Fixed in master, thanks for the report! On Thu, Apr 25, 2013 at 5:53 PM, Martin Forsgren wrote: > Hi! > > I noticed something strange when using featurec with a nested feature map(I'm > using core.logic 0.8.3). > This works as expected: > (run* [x y] > (featurec x {:a {:b 1}}) > (== y {:b 1

Re: [ANN] Himilsbach 0.0.1 is released

2013-05-05 Thread Mikera
On Tuesday, 30 April 2013 04:12:14 UTC+8, Jan Stępień wrote: > Dear Clojurians, > > I'm very happy to announce Himilsbach 0.0.1. > > Himilsbach is a tiny actor library for intra-process messaging inspired by > Erlang. > > Find it at https://github.com/jstepien/himilsbach > > Your feedback is very

Re: Import java classes in clojure

2013-05-05 Thread Jonathan Fischer Friberg
(:import ...) only works in (ns ...). Outside ns, you have to use (import ...) instead (note: no ":"). See: http://blog.8thlight.com/colin-jones/2010/12/05/clojure-libs-and-namespaces-require-use-import-and-ns.html Jonathan On Mon, May 6, 2013 at 12:04 AM, Caocoa wrote: > Hi all! I'm a new C

Import java classes in clojure

2013-05-05 Thread Caocoa
Hi all! I'm a new Clojure user. I'm trying to import some java classes in order to use them with overtone, but I fail :/ Would you help me? Thanks a lot in advance for your answer. Here is the bug: > user=> (:import [javax.constraints > #_=> Problem > #_=> ProblemFactory > #_=>

Re: I tripped out

2013-05-05 Thread Alex Fowler
Tell us more about it. On Sunday, May 5, 2013 11:54:32 AM UTC+4, JvJ wrote: > > Is anyone else tripped out when they realize that when you write args for > a function you're basically just destructuring an arg vector? It trips > me out. -- -- You received this message because you are sub

Re: I tripped out

2013-05-05 Thread James MacAulay
Yeah. It seems like the logical extension of this would be to allow (fn args expr) to be equivalent to (fn [& args] expr)...but I'm not sure how useful that would actually be. -- -- You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group

Re: [ANN] bleach 0.0.11

2013-05-05 Thread Plínio Balduino
And there's also a lot less syntax to learn. On Sun, May 5, 2013 at 3:07 PM, Moritz Ulrich wrote: > It's also nice for printing on paper. Ink is expensive. > > On Sun, May 5, 2013 at 6:49 PM, Michał Marczyk > wrote: >> On 5 May 2013 15:19, Simone Mosciatti wrote: >>> It is probably me being st

Re: [ANN] bleach 0.0.11

2013-05-05 Thread Moritz Ulrich
It's also nice for printing on paper. Ink is expensive. On Sun, May 5, 2013 at 6:49 PM, Michał Marczyk wrote: > On 5 May 2013 15:19, Simone Mosciatti wrote: >> It is probably me being stupid, but WHY ? > > Much easier to maintain your code when you can touch it without > risking it soiling your

Re: Using a Java game engine in my project

2013-05-05 Thread Jonathan Fischer Friberg
That sounds scary. :) I haven't experienced any of the sort. Tested in both linux 64-bit and windoze 32-bit. The problem likely stems from the way jme loads the native libraries. As far as I know they do it "manually" by extracting the libraries and then setting some sort of path. It should be au

Re: [ANN] bleach 0.0.11

2013-05-05 Thread Michał Marczyk
On 5 May 2013 15:19, Simone Mosciatti wrote: > It is probably me being stupid, but WHY ? Much easier to maintain your code when you can touch it without risking it soiling your hands with all the black lettering. > > > On Sunday, May 5, 2013 8:11:05 AM UTC+2, David Lowe wrote: >> >> It's much,

Re: Using a Java game engine in my project

2013-05-05 Thread James Ashley
I don't have much to contribute here, just some vague observations pulled out of distant memories. So this is fuzzy, and I apologize for that. I started working on this same sort of thing, sometime late last year. Setting up a basic project using jME in clojure worked fine under 64-bit Windows.

Re: [ANN] bleach 0.0.11

2013-05-05 Thread Simone Mosciatti
It is probably me being stupid, but WHY ? On Sunday, May 5, 2013 8:11:05 AM UTC+2, David Lowe wrote: > > It's much, much simpler than any compiler! It just translates arbitrary > clojure code to and from all-whitespace strings :) > > Thanks, > David > > > On Sat, May 4, 2013 at 11:26 AM, Gary Ver

Re: I tripped out

2013-05-05 Thread Gary Trakhman
We write all these s-exps, but in the end it's just convenient ways to control electricity, and we are Magneto. On Sunday, May 5, 2013, JvJ wrote: > Is anyone else tripped out when they realize that when you write args for > a function you're basically just destructuring an arg vector? It tr

Re: New Forms Library

2013-05-05 Thread mike
Here is the link https://github.com/codedreams/formula On Saturday, May 4, 2013 11:57:20 PM UTC-4, mike wrote: > > I created a forms library called Formula over the last week or so, and I > wanted to share it with the community. The library uses hiccup underneath > and includes it's own valid

ANN Elastisch 1.1.0-rc2 is released

2013-05-05 Thread Michael Klishin
Elastisch is a small, feature rich and well documented Clojure client for ElasticSearch [1]. 1.1.0-rc2 includes significant (50+%) performance improvements in the native client. Release notes: http://blog.clojurewerkz.org/blog/2013/05/05/elastisch-1-dot-1-0-rc2-is-released/ Kudos to Jon Pither a

I tripped out

2013-05-05 Thread JvJ
Is anyone else tripped out when they realize that when you write args for a function you're basically just destructuring an arg vector? It trips me out. -- -- You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group, send email to cl