Live data from Hacker News

Viewing profile — notmywalrus

notmywalrus

HN member
Joined
Wed, Feb 12, 2025, 2:21 AM UTC
HN karma
29
Public activity
8 items

About notmywalrus

No profile information was provided.

Recent public activity

  1. comment
    Comment #47842786

    > git tags There are commands for manipulating tags (jj tag set, jj tag delete), and recently [1] support for fetching / pushing [1]: https://github.com/jj-vcs/jj/pull/9279

  2. comment
    Comment #45238034

    Rust is an example of "compiler magic" in this case. You're right about Zig, and reading the source [1] I'm still kind of impressed how unified they made comptime / runtime. [1]: h…

  3. comment
    Comment #44646032

    I would call `jj absorb` a new feature (new if coming from git, I believe the idea was taken from hg). It moves diffs into the closest ancestor that touched those files/lines. Very…

  4. comment
    Comment #44642624

    ...no? On all counts. `jj ignore` is not a command. [1] There is no such thing as `.jjignore` files [2], [3]. `--no-snapshot` is not a flag, neither on `jj edit` nor in general. Ad…

  5. comment
    Comment #43022130

    I find it encourages linear history more by making rebasing easier. Definitely possible, the jj project itself uses a linear history.

  6. comment
    Comment #43022100

    The blockers for many are: - No support for LFS - No support for hooks (precommit, etc) - No? Bad? support for submodules - No? Bad? support for line ending styles If you don't car…

  7. comment
    Comment #43021384

    > > if I'm understanding it right, turns r --[edit3]--> q --[edit2]--> p into r --[edit3]--> p. > You are right with the outcome but wrong about why. `jj abandon -r q` would turn `…

  8. comment
    Comment #43021096

    You may be interested in the semi-standard `jj tug` alias [1], that moves "the most recent" bookmark up to `@-` [1]: https://github.com/jj-vcs/jj/discussions/5568