Re: Optimizaton for finding the next key in a sorted-map

2020-05-25 Thread Matthew Downey
Don't forget about subseq and rsubseq, the technology behind [the world's smallest time series database]( https://www.dotkam.com/2015/12/02/time-series-database-in-one-line-of-clojure/) ;) On Monday, May 25, 2020 at 4:47:58 PM UTC-5, Harmon Nine wrote: > > Is there an optimization for sorted-ma

Re: first time without state - and I'm lost

2020-05-13 Thread Matthew Downey
I totally understand that, I felt the same way first coming to Clojure. For this situation, there are a couple approaches that you could take depending on how hardcore you want to be about keeping things functional & immutable. The most similar thing you could do to your Java code would be keepin

Re: [ANN] Clojure wrapper for the Interactive Brokers API

2020-04-28 Thread Matthew Downey
Very cool, thanks for sharing! I'm curious, whats your workflow when connecting running IB's client? Is there an easy way to run this on a headless server? On Tuesday, April 28, 2020 at 4:00:46 PM UTC-5, Alexandre Almosni wrote: > > Hi, > > just released https://github.com/alex314159/ib-re-acto

Re: Component question/advice

2019-09-24 Thread Matthew Downey
One thing you could consider is constructing the individual pieces of your system as system-maps that you can merge together. (A pattern from " Tips and Tricks for Component"