Re: [Documentation] looking for diagramming tools

2015-06-29 Thread Alex Miller
OmniGraffle is the tool used to make the picture in question. Alex On Monday, June 29, 2015 at 7:40:18 AM UTC-5, solussd wrote: I use Omnigraffle to draw entity relationship diagrams like that. On Jun 29, 2015, at 4:13 AM, dImas Angga Saputra angga.dim...@gmail.com javascript: wrote: Hi

Re: [Documentation] looking for diagramming tools

2015-06-29 Thread Joe R. Smith
I use Omnigraffle to draw entity relationship diagrams like that. On Jun 29, 2015, at 4:13 AM, dImas Angga Saputra angga.dimassapu...@gmail.com wrote: Hi Everyone, I'd like to ask about recommendation about diagramming tools, So i saw this post :

Re: [ANN] Introducing Yo-yo, a protocol-less, function composition-based alternative to Component

2015-06-29 Thread Thomas Heller
Hey, interesting approach but I don't like the nesting and manual wiring of dependencies. I don't quite like that every with-* function remains on the stack as well, but it shouldn't hurt that much. An uncaught exception will also take down your entire system, but I guess you'd have a

[Documentation] looking for diagramming tools

2015-06-29 Thread dImas Angga Saputra
Hi Everyone, I'd like to ask about recommendation about diagramming tools, So i saw this post : http://blog.datomic.com/2013/06/using-datomic-from-groovy-part-1.html And i try to search what tools he/she used to make diagram like the first picture? I attached the diagram. Thank you in

Re: Writing REST api the right way

2015-06-29 Thread Malcolm Sparks
yada exploits aleph's async model of returning futures and leverages manifold's ability to chain together futures and promises. This means you can effectively use a Java synchronous API by wrapping it in a future, or exploit an asynchronous Java API by returning a promise which is delivered

Re: ANN: remote - DSL for clj-http/cljs-http

2015-06-29 Thread blake watson
Wait, how can there have been popular demand before it went public? =P Looks good, though, hoping to try it out soon... On Fri, Jun 26, 2015 at 10:09 AM, Joel Holdbrooks cjholdbro...@gmail.com wrote: Are you tired of writing the same clj-http/cljs-https boilerplate? Looking for an easy way to

[ANN] bidi 1.20.0 - with Schema suppport

2015-06-29 Thread Malcolm Sparks
bidi is a routing library that lets you define the URI routes for your website as data. Until now, there has been no way to validate whether that data conforms to the expected structure. Not doing so can often lead to problems. I've just released a new version that defines a Prismatic Schema

New Functional Programming Job Opportunities

2015-06-29 Thread Functional Jobs
Here are some functional programming job opportunities that were posted recently: Clojure Software Engineer at Place Pixel http://functionaljobs.com/jobs/8838-clojure-software-engineer-at-place-pixel Cheers, Sean Murphy FunctionalJobs.com -- You received this message because you are

Re: Joda Time version conflict? Initializing JollyDayHoliday for SUTime

2015-06-29 Thread Gary Verhaegen
Assuming there is a version that works for both dependencies, you can manually fix it in your own project.clj. Your own direct dependencies will override transitive ones. Otherwise, as far as I can tell, you're stuck. Maybe you can try using an older clj-time? On 29 June 2015 at 21:00,

Joda Time version conflict? Initializing JollyDayHoliday for SUTime

2015-06-29 Thread gingersafflower
I think I have a conflict involving different libraries using different versions of JodaTime. I have no idea how to fix this. I have nearly the same problem as this: http://stackoverflow.com/questions/21487476/maven-build-throws-jodatime-exception-at-runtime However, in my case, I'm

[ANN] Replete 1.0 beta: ClojureScript REPL iOS app

2015-06-29 Thread Mike Fikes
Wondering what all this “bootstrapped ClojureScript” hubbub is all about, and have an iOS device? There's a REPL app for that! Try the beta; experience it firsthand: https://github.com/mfikes/replete/wiki/Beta Special thanks to David Nolen and Joel Martin for making this possible! - Mike

Re: Joda Time version conflict? Initializing JollyDayHoliday for SUTime

2015-06-29 Thread gingersafflower
Otherwise, as far as I can tell, you're stuck. Maybe you can try using an older clj-time? That's an interesting idea. I see that this: [clj-time 0.4.5] rolls back JodaTime to 2.1: https://clojars.org/clj-time/versions/0.4.5 which is the same dependency as in the Java

Re: Joda Time version conflict? Initializing JollyDayHoliday for SUTime

2015-06-29 Thread Sean Corfield
Have you actually tried any of the exclusions that Leiningen suggests? For example: [clj-time 0.6.0] overrides [ring 1.4.0-RC1] - [ring/ring-jetty-adapter 1.4.0-RC1] - [ring/ring-core 1.4.0-RC1] - [clj-time 0.9.0] and [ring 1.4.0-RC1] - [ring/ring-devel 1.4.0-RC1] - [ring/ring-core

Clojars Private/Commercial Repos

2015-06-29 Thread Daniel Compton
Hi folks I wondered if one possible solution for ensuring Clojars long-term viability and maintenance would be to use it to host private repositories for paying users as well? For many people, the thought of setting up and maintaining Nexus or Archiva isn't an appealing one. I'm aware of the S3

Confusion about cljs.build.api/build

2015-06-29 Thread Zack Maril
Hello, I'm trying to use cljs.build.api/build to compile dynamically generated clojurescript into one javascript string. I've been running into many weird errors and I'm quite certain I'm doing something wrong. The simplest test case I've found is the following: (cljs.build.api/build '((ns

Re: Joda Time version conflict? Initializing JollyDayHoliday for SUTime

2015-06-29 Thread gingersafflower
If the worst comes to the worst, you may need to run the NLP module and the Clojure code in separate JVMs using some form of IPC to exchange data. That is what I'm looking at right now, though I've also been told that I absolutely must have this working by tomorrow morning, so I'm a little

Re: Joda Time version conflict? Initializing JollyDayHoliday for SUTime

2015-06-29 Thread gingersafflower
But we had this working, so I don't think the conflict is between the NLP and the web app which uses Compojure. On Monday, June 29, 2015 at 6:38:40 PM UTC-4, Gary Verhaegen wrote: Assuming there is a version that works for both dependencies, you can manually fix it in your own

Re: Joda Time version conflict? Initializing JollyDayHoliday for SUTime

2015-06-29 Thread Fluid Dynamics
On Monday, June 29, 2015 at 6:38:40 PM UTC-4, Gary Verhaegen wrote: Assuming there is a version that works for both dependencies, you can manually fix it in your own project.clj. Your own direct dependencies will override transitive ones. Otherwise, as far as I can tell, you're stuck.

Re: [ANN] bidi 1.20.0 - with Schema suppport

2015-06-29 Thread Dylan Butman
Hey Malcolm, Just confirming my understand, the schema addition is to validate the bidi routes themselves, not path parameters matched within the routes, right? Is this something you're thinking one might do at component start, say