Fork me on GitHub
#clojure-berlin
<
2015-07-17
>
defsprite08:07:03

hi everyone!

defsprite08:07:54

Anybody here using/making music with overtone?

jellea09:07:14

@defsprite: already signed up simple_smile

defsprite09:07:23

of course you have!

martinklepsch09:07:19

Love the Website of this ableton thing!

nicsnet15:07:16

i have a question, i want to write a simple RESTful API that just deals in one resource (GET with filtering and POST)

nicsnet15:07:35

i once played around with liberator, but i don’t want to go down that route again

pesterhazy15:07:54

I'd just use pure ring I guess

nicsnet15:07:30

with compojure?

pesterhazy15:07:51

unless you have a lot of routes, the cognitive overhead of learning liberator (etc.) should be more than you gain from it, compared to simple ring+compojure+clojure/data.json

pesterhazy15:07:17

but I haven't used liberator et al, so maybe I'm wrong simple_smile

nicsnet15:07:49

i don’t like that liberator relies so heavily on macros

nicsnet16:07:44

and the whole decision tree thing is scary

pesterhazy16:07:10

bidi is like compojure, except without macros (or so I heard)

pesterhazy16:07:20

maybe an option as well: routes are just data structures

pesterhazy16:07:30

in bidi, I mean

nicsnet16:07:36

i’ll look into it

pesterhazy16:07:51

let us know if it works out simple_smile

akiel16:07:37

bidi is a good choice - I also don't like liberator much but I use it because you need something like this for proper error handling

akiel16:07:59

But that might be a bit over top for your use case.