Re: [ANN] editscript: a diffing library for Clojure data

2018-05-03 Thread Huahai Yang
this group and all its topics, send an email to > clojure+unsubscr...@googlegroups.com. > For more options, visit https://groups.google.com/d/optout. > -- __ Huahai Yang, Ph.D. Co-founder and CTO Juji, Inc. -- You received this message because you are subscribed to the Google Grou

[JOB] Full Stack Clojure Engineers at Juji

2016-09-13 Thread Huahai Yang
Juji, Inc. is an early stage startup located in the silicon valley. We work in the area of artificial intelligence, and our platform in alpha release has generated great customer interests, hence we are hiring full stack engineers in both senior and entry level to build out the platform to meet

Re: com.stuartsierra/component & ring/compojure example

2014-10-08 Thread Huahai Yang
This solution (creating the routes in a function and passing components into the function) seems to be the best solution. Other solutions all require defining the routes a prior, which may be the root of the problems, because some handlers may depend on functions generated by components in the

Re: [ANN] Onyx: Distributed data processing in Clojure

2014-09-29 Thread Huahai Yang
HI MIchael, Great work. I enjoyed your strangeloop talk. In the README.md, you stated that Onyx "competes against Storm, Cascading, Map/Reduce, Dryad, Apache Sqoop, Twitter Crane". Could you please shed some light on a comparison with Spark? Apparently Spark is on the road to become a favo

Re: Translating Java code with nested for loops

2011-06-29 Thread Huahai Yang
the end. > > On Jun 29, 8:22 am, Huahai Yang wrote: > > > > > > > > > The multiplication outside the reduce is required because it is part > > of the original logic: "contrib[i] = sum * dailyValues[i];". Using the > > drop function is a very

Re: Translating Java code with nested for loops

2011-06-29 Thread Huahai Yang
The multiplication outside the reduce is required because it is part of the original logic: "contrib[i] = sum * dailyValues[i];". Using the drop function is a very good call though. -huahai On Jun 29, 12:53 am, Alan Malloy wrote: > If you're already doing a bunch of multiplication in the reduce,