This author is really prolific in the Julia visualization ecosystem. One of my favorite projects from them is actually quite useful outside Julia: a super minimal but slick Unicode character lookup, glyphy.info.
[citation needed] that some combination of "New Urbanism, traditional neighbourhood design, streetcar suburbs, one-way streets, bike paths, walking paths, mixed-zone walkable villages (light commercial with residential), smaller single-family houses and duplexes, triplexes, houses behind houses." is not in fact optimal! (For certain objective functions)
> Is multi-agent collaboration actually useful or am I just solving my own niche problem?
I often write with Claude, and at work we have Gemini code reviews on GitHub; definitely these two catch different things. I'd be excited to have them working together in parallel in a nice interface.
If our ops team gives this a thumbs-up security wise I'll be excited to try it out when back at work.
I'm sorry for your loss, and I hope that helping others through this project helps you find some solace. IMHO, it's a mark of character that your response to having a problem is "I want to help other people so they suffer this problem less than I did."
This makes sense in the context of trying to maximize log wealth (or I think any concave function of wealth, though the arithmetic is different). But in one of OP's other articles [1], he says the Kelly criterion doesn't require trying to maximize log-wealth, that this is just a common misconception -- all that's required is maximizing something growing geometrically over time.
This I don't understand, maybe someone help me out? Say the real growth rate of capital (or interest rate available to me, whatever) is 2%/year and I have a 10 year time horizon. So $1.00 today is ~$1.22 in 10 years. More generally, if I have wealth X today I will have 1.22X in 10 years. And if X is not a constant but a random variable and I want to maximize future expected wealth (not log wealth), that's just max(E[1.22X]) and by linearity of expectation I should just maximize wealth today to maximize in 10 years time.
So Kelly being appropriate must have some other conditions, right? Wanting to maximize log wealth is surely sufficient (and individually probably ~rational). What else?
OP, you have a comment there about mouse support in the Keyboardio. I've been using a Keyboardio since 2019 and haven't much tried the mouse support -- any advice? How did you set it up?
Not OP, but I have a Model 100 and I just assigned mouse keys in Chrysallis. It used to be the case that you had to build your firmware to change the speed, but now that's possible through Chrysallis too.
I don't use them very often because I don't mind using a trackpad, but it is useful sometimes.
I'm curious what kind of slow IO is a pain point for you -- I was surprised to read this comment because I normally think of Julia IO being pretty fast. I don't doubt there are cases where the Julia experience is slower than in other languages, I'm just curious what you're encountering since my experience is the opposite.
Tiny example (which blends Julia-the-language and Julia-the-ecosystem, for better and worse): I just timed reading the most recent CSV I generated in real life, a relatively small 14k rows x 19 columns. 10ms in Julia+CSV+DataFrames, 37ms in Python+Pandas...ie much faster in Julia but also not a pain point either way.
My use case was a program involving many calls to an external program that generated an XYZ file format to read in (computational chemistry). It's likely I was doing something wrong or inefficient, but I remember the whole process was rate-limited by this step in a way that Python wasn't.
IO is thread-safe by default, but that does slow it down. There's a keyword argument to turn that off (if you know you're running it single threaded) and right now it's a rather large overhead. It needs some GC work IIRC to reduce that overhead.