Tiny web app illustrating WebSocket duplex communication.

2021-06-05 Thread Deyan Yotsov
Hello! I've been trying to understand WebSockets, and created a tiny web app in Clojure+ClojureScript that uses them. It was more of a journey of discovery, and I tried to keep the code as minimal as possible and as annotated as possible. People usually write a browser chat, but I felt that

[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/dynamic-joy-with-clo

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

2017-12-12 Thread Deyan Yotsov
Hello, I have one list of potentially up to 2 million strings: big-list. Then I have another list, small-list, the elements of which are a subset of the elements of big-list. I want to sort the elements in small-list so that they become sorted in the same way in which they are sorted in big-

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

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

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

2014-05-04 Thread Deyan Yotsov
Hello! I am working on a small Clojure web application, and while still in the early stages of development, I have been thinking, among other things, about a deployment plan. The production environment for the webapp will be a CentOS server (not virtual), the webapp will be sitting behind an

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

2014-05-05 Thread Deyan Yotsov
checking it out into our favorite editor. Regards, Akos On Sun, May 4, 2014, at 03:47 AM, Deyan Yotsov wrote: > Hello! > > I am working on a small Clojure web application, and while still in the > early stages of development, I have been thinking, among other things, > about a depl