[JOB] Looking to hire a Senior Clojure Backend Developer

2022-07-25 Thread Deyan Yotsov
Hello! My name is Deyan, and I'm the teamlead of the Collections team at Shareablee: a startup that was recently acquired by Comscore. We would like to hire a Senior Clojure Backend Developer. Here's a small post I wrote for our tech blog: https://shareablee.github.io/blog/dynami

Tiny web app illustrating WebSocket duplex communication.

2021-06-05 Thread Deyan Yotsov
people who are, like me, trying to learn the basics, so I thought I'd share it: https://github.com/yotsov/squares Have a nice weekend! Deyan -- You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group, send email to cloj

Re: sorting a list based on the order of its items in another list

2017-12-12 Thread Deyan Yotsov
Thank you very much, Ray Miller and Gary Trakhman! On 12/12/2017 02:32 PM, Ray Miller wrote: Very similar to your solution: (filter (set small-list) big-list) On 12 December 2017 at 13:24, Deyan Yotsov <mailto:de...@yotsov.org>> wrote: Hello, I have one list of potentiall

Re: sorting a list based on the order of its items in another list

2017-12-12 Thread Deyan Yotsov
PS: I just realized that the code, as I wrote it, will not work, as nesting of # is forbidden. My actual code is: (defn is-element-in-list [e l]   (some #{e} l)) (filter #(is-element-in-list % small-list) big-list) Sorry about that. Deyan On 12/12/2017 02:24 PM, Deyan Yotsov wrote: Hello

sorting a list based on the order of its items in another list

2017-12-12 Thread Deyan Yotsov
, especially if small-list is say 1M elements, and big-list is 2M elements. Suggestions? Thank you, Deyan -- You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group, send email to clojure@googlegroups.com Note that posts from new m

Clojure and Fortran

2014-05-11 Thread deyan
eC so that it can interop with both Fortran and C, in a way similar to what Julia can do, which might increase ClojureC's popularity? Do these sound like reasonable ideas to you? Thanks! Deyan -- You received this message because you are subscribed to the Google Groups "Clojure" gro

Re: devops-ish questions regarding Clojure webapp server-side REPL usage

2014-05-05 Thread Deyan Yotsov
Many thanks to both of you, your answers were very helpful! Regards, Deyan On 05/04/2014 11:28 PM, Akos Gyimesi wrote: Hi Deyan, I also think that it's usually better to have a standalone Clojure app with a built-in HTTP server, and possibly with a reverse proxy as a frontend. You will

devops-ish questions regarding Clojure webapp server-side REPL usage

2014-05-04 Thread Deyan Yotsov
ifferent from how it is typically done in the Java world, I find it beneficial, as one would typically want to do a bit of a. immediately after startup, and have a more transparent startup overall. Or are there any indications that this way of starting up is not appropriate for prod? Than