Re: Can I use Clojure to build a mobile chat application?

2015-12-30 Thread Geraldo Lopes de Souza
https://github.com/tonsky/datascript-chat On Tuesday, December 29, 2015 at 10:14:50 AM UTC-2, симон wrote: > > My project is to use build a simple chat client and I thinking of using > clojure since it is the language am currently learning. And am liking it. > > > I don't know weather this is p

Re: Project structure when using reader conditionals

2015-12-30 Thread James Reeves
My directory structure looks like: src/foo/client/bar.cljs src/foo/common/bar.cljc src/foo/server/bar.clj So I divide code by purpose, but they're all in the same source directory. - James On 30 December 2015 at 00:56, Alan Moore wrote: > Yes it would be handy for small projects b

Re: Possible bug in AOT-compiled Clojure when ns-unmap is used

2015-12-30 Thread Nicola Mometto
While it's true that AOT has many issues, it's getting better release after release and this is definitely a bug. I don't understand why you wouldn't expect this to work, you *should*. OP: can you open a ticket for this bug? I'd love to have a look at this and try to fix it. > On 29 Dec 2015,

Re: Project structure when using reader conditionals

2015-12-30 Thread Dru Sellers
I was also playing around with a few different models. I was looking at something like client and server but probably over thinking it from my static type days: These would just have needed bootstrapping code src/apps/app1 - client app src/apps/app2 - client app src/apps/app3 - server app src/f