Re: clojure don't support .clj source code file by utf-8.

2015-07-12 Thread Avi Avicenna
I followed steps described by Denis Fuenzalida in my Windows 7 machine and I can completely reproduce the results. So, in Windows 7, the solution is the .clj files must be saved with UTF-8 without BOM encoding. On Sunday, 12 July 2015 08:57:59 UTC+7, Denis Fuenzalida wrote: > > I was able to re

Re: [ANN] CIDER 0.9

2015-06-16 Thread Avi Avicenna
Wow!! Many thanks to all CIDER contributors. I didn't get it to work at first, but deleting all previous *.elc files and restarting emacs solves the problem. Congratulations! Yours, Avicenna On Tuesday, 16 June 2015 21:33:48 UTC+7, Bozhidar Batsov wrote: > > Hey everyone, > > CIDER 0.9 is fina

Re: Dynamic/Convention-based routing libraries? (was: Clojure needs a web framework with more momentum

2015-05-06 Thread Avi Avicenna
There is one, Wakeful (https://github.com/ninjudd/wakeful) routing library fits your criteria. Here I copy the sample from its README (use 'flatland.wakeful.core) (def handler (wakeful "awesome.api")) Now http calls dispatch to methods calls in namespaces under awesome.api: GET /photo-123/

Re: Debugging in CIDER

2015-04-02 Thread Avi Avicenna
Kudos to Bozhidar and all CIDER contributors! I am hyped for CIDER 0.9 On Sunday, 29 March 2015 00:46:33 UTC+7, Bozhidar Batsov wrote: > > Hey everyone, > > Just wanted to let you know that the most requested feature for CIDER (a > debugger, in case you're wondering) has just landed in the mast

Re: [ANN] clj-uuid: thread-safe, performant unique identifiers

2015-02-19 Thread Avi Avicenna
Thank you for providing sequential UUID. Looking forward to uuid library that provides squuid. Yours, Avicenna On Tuesday, 17 February 2015 08:25:17 UTC+7, danl...@gmail.com wrote: > > Hello Clojurians, > > I've just been polishing my modest library, clj-uuid < > http://danlentz.github.io/clj-uu

Re: Deploy best practices

2014-09-18 Thread Avi Avicenna
How do you deploy and run your application? is it just git push to server and do lein run or creating uberjar then copy the uberjar to server then java -jar ... leiningen contributors recommend using uberjar if possible. you can read it in "Server Side Projects" part lein help tutoria