Joplin: No method in multimethod 'migrate-db' for dispatch value: :sql

2015-03-21 Thread Hildeberto Mendonça
Hello, I'm trying to use Joplin for database migration in the project javaee-utility-belt (despite the name, it's written in Clojure ;-) The way I found to start programming in Clojure at work: https://github.com/htmfilho/javaee-utility-belt), but I'm getting the following exception: # I've adde

Re: [ANN] Dunaj project, an alternative core API for Clojure

2015-03-21 Thread Jozef Wagner
Thank you James! If someone has already tried Dunaj, I'd be interested to know whether you've encountered some stopping bugs, mainly on platforms other than Linux. Best, Jozef On Friday, March 20, 2015 at 8:43:30 AM UTC+1, James Trunk wrote: > > Congratulations on the release! > > Thank you fo

Re: Joplin: No method in multimethod 'migrate-db' for dispatch value: :sql

2015-03-21 Thread Daniel Kersten
Make sure you require the sql migrations in your jub.datasources source file. This is probably it since jub.datasources cannot find the correct defmethod for migrate-db. Also make sure the migrations are on the classpath. On Sat, 21 Mar 2015 at 09:38 Hildeberto Mendonça wrote: > Hello, > > I'm t

Re: [ANN] rmap - define lazy, recursive maps

2015-03-21 Thread Arnout Roemers
Hi all, I would like to announce a new version 0.4.0 of rmap. The library internals have changed to a simpler and more memory efficient model (i.e. the LinkedHashMap is gone). This model also allows adding new lazy entries to a recursive map and merging them. In addition to that, this version

Re: Sum up second elemsts of pairs in a sequence by grouping by the first item in pair

2015-03-21 Thread Fluid Dynamics
Or (reduce (partial merge-with +) (map (partial apply hash-map) in-seq))... -- 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 Note that posts from new members are moderated - please be patien

[GSoC] Typed Overtone proposal

2015-03-21 Thread Christopher Medrela
Hello! As you may remember I wanted to work at "Source meta information model" project during Google Summer of Code this year, but I've decided to switch to "typed Overtone" project because there was already another student (Richard) who wanted to work at the same project. I believe that Clojure

Re: [GSoC] Typed Overtone proposal

2015-03-21 Thread Ambrose Bonnaire-Sergeant
We should work on this proposal, I sent you some suggestions. Thanks, Ambrose On Sat, Mar 21, 2015 at 1:03 PM, Christopher Medrela < chris.medr...@gmail.com> wrote: > Hello! As you may remember I wanted to work at "Source meta information > model" > project during Google Summer of Code this year

Re: [GSoC] Typed Overtone proposal

2015-03-21 Thread Chris Ford
That sounds a cool idea. One interesting challenge will be how specific you can make the types of things like unit generators, which can be used in very different ways e.g. low frequency for vibrato, high frequency for tones themselves. On 21 March 2015 at 17:14, Ambrose Bonnaire-Sergeant < abonn

Re: Who's using Clojure?

2015-03-21 Thread Eric Richmond
We're using Clojure in production @ Indaba Music to power conversesamplelibrary.com -Eric On Tuesday, April 19, 2011 at 10:38:14 AM UTC-4, Damien wrote: > > Hi Everyone, > > I'm on a mission: introducing Clojure in my company, which is a big > consulting company like many others. > > I started

Re: Joplin: No method in multimethod 'migrate-db' for dispatch value: :sql

2015-03-21 Thread Hildeberto Mendonça
Hi Daniel, thanks for your feedback. On Sat, Mar 21, 2015 at 11:40 AM, Daniel Kersten wrote: > Make sure you require the sql migrations in your jub.datasources source > file. This is probably it since jub.datasources cannot find the correct > defmethod for migrate-db. Also make sure the migratio

about binding and dynamic vars

2015-03-21 Thread coco
Hi guys, I'm curious about how work some codes with binding and dynamics vars, for instance, in sqlkorma you define your db settings (defdb prod (postgres {:db "korma" :user "db" :password "dbpass"})) and then you can use other functions like this

about binding and dynamic vars

2015-03-21 Thread coco
Hi guys, I'm curious about how work some codes with binding and dynamics vars, for instance, in sqlkorma you define your db settings (defdb prod (postgres {:db "korma" :user "db" :password "dbpass"})) and then you can use other functions like this (select user (with address) (fields :firstName :

Re: about binding and dynamic vars

2015-03-21 Thread Colin Yates
http://stuartsierra.com/2013/03/29/perils-of-dynamic-scope is a good read around this subject. On 21 March 2015 at 21:47, coco wrote: > Hi guys, I'm curious about how work some codes with binding and dynamics > vars, for instance, in sqlkorma you define your db settings > > (defdb prod (postgres