[JOB] Senior backend software engineer -- Tokyo or Beijing

2018-10-08 Thread Isaac Tsang
# Who we are? A new cryptocurrency derivative trading platform # Techs - Kafka - PostgreSQL - Clojure, Java, Go mixed code # Requirements 1. At least good at one of them Clojure, Java, Go 2. Know CSP

[JOB] Senior backend software engineer -- Tokyo or Beijing

2018-10-08 Thread Isaac Tsang
# Who we are? A new cryptocurrency derivative trading platform # Techs - Kafka - PostgreSQL - Clojure, Java, Go mixed code # Requirements 1. At least good at one of them Clojure, Java, Go 2. Know CSP

Re: Why does the `def-` not exist?

2018-02-28 Thread Isaac Tsang
That' because you don't know the zen of Clojure core team? the zen it would be more convenient if has 'foo' function in core lib, ok, let's add it. If you and I (not the member of core team) want to give some advice, we will be ignored. On Monday, February 26, 2018 at 4:58:43 PM UTC+8, Pro

Re: [ANN] Git Deps for Clojure!

2018-01-18 Thread Isaac Tsang
can `clj` AOT automatically, and then cache it (save to some directory). some dependencies need very long time for `require` On Saturday, January 6, 2018 at 2:49:15 AM UTC+8, Alex Miller wrote: > > Pleased to announce some new functionality for clj and tools.deps! > > https://clojure.org/news/2018

Re: [ANN] Clojure 1.9.0 is now available!

2017-12-25 Thread Isaac Tsang
I think is better to add AOT cache to speed up startup time. eg. https://gist.github.com/gfZeng/c4e54ec0381892f78c60f03e7d957a34#file-run-clj-L50 On Saturday, December 9, 2017 at 3:35:39 AM UTC+8, Alex Miller wrote: > > Clojure 1.9 is now available! > > > Clojure 1.9 introduces two major new fea

Re: [ANN] Clojure 1.9.0 is now available!

2017-12-10 Thread Isaac Tsang
I think is better to add AOT cache to speed up startup time. eg. https://gist.github.com/sound2gd/dc4dd1e2345949182e258182689c2b2e#file-run-clj-L50 On Saturday, December 9, 2017 at 3:35:39 AM UTC+8, Alex Miller wrote: > > Clojure 1.9 is now available! > > > Clojure 1.9 introduces two major new f

Re: (resolve (symbol f)) works at the REPL but not in an uberjar

2017-10-13 Thread Isaac Tsang
That because you REPL had set `*ns*`, when Clojure bootstrap from clojure.main, the *ns* bound to clojure.core On Friday, October 13, 2017 at 9:27:06 AM UTC+8, lawrence...@gmail.com wrote: > > At the REPL, this works perfectly: > > > (defn get-users [] [:susan :kwan]) > > > > (defn what-is-t