Ilya Grigoriev

Results 677 comments of Ilya Grigoriev

Currently, it seems that histograms are hard-coded to bottom out at 1.0 when drawn on a log scale. Perhaps if you just change them to bottom out at 0.8 (and...

@sidkshatriya Thank you, that's very helpful to know, I had no idea! Unfortunately, I quite dislike this behavior. I think it's quite surprising. I hadn't even considered this possibility before...

I had the same question. @Screwtapello's explanation would explain the key to the left of the `z` key. However, I don't think it's exactly the layout he linked to. In...

This is strictly speaking a separate issue, but I'll put it here. In all documentation, I'm quite confused by the description of the `` command as "Remove count selection column"...

I keep being bitten by this since I have `watch jj log` and `watch diff -s` running in the background. In order to reproduce such problems, a fun stress test...

As a workaround, I use [`jj init --git-repo=.`](https://github.com/martinvonz/jj/blob/main/docs/git-compatibility.md#creating-a-repo-backed-by-an-existing-git-repo). I then use `git pull`/ `git push` inside the repository. It works surprisingly well, and also allows seeing diffs highlighted in editors...

Is there a good workaround? After looking at the [namedtuple.jl docstrings](https://github.com/JuliaLang/julia/blob/master/base/namedtuple.jl), the best I found so far is the following: ```julia df |> @map((; Symbol("Cool name")=>_.bat, _.bar)) # One direction...

I think this also affects `@select`. There, the best workaround I could find was `@select(startswith('Cool name'))`. I thought `@select(==('Cool name'))` should work, but it doesn't, reporting `ERROR: MethodError: no method...

For a sufficiently complicated diagram (layered & faceted), the workaround makes things worse. Before the workaround, I was in the same situation as the OP. After the workaround, I get:...

I upgraded this to a pull request (https://github.com/gokcehan/lf/pull/918). I find myself using `:keys` quite a bit.