HackerTrans
TopNewTrendsCommentsPastAskShowJobs

euiq

170 karmajoined 6년 전
Go away!

comments

euiq
·9일 전·discuss
Pi already emits good errors messages; I always see Claude Opus 4.8 correct itself in its next attempt when it gets a tool call wrong.
euiq
·2개월 전·discuss
`uv.lock` pins exact versions (and hashes) of your dependencies.
euiq
·11개월 전·discuss
General Topology is valuable, especially for the filter perspective; so are some of the Algebra volumes.
euiq
·작년·discuss
I know that `git rebase` changes the committer date while keeping the author date the same, so I'm assuming something similar happened here. For example, many of the early commits have this committer date with varying author dates:

    $ git show --format=fuller 3dafc8f5de6ffe46fb223a75a46a6bd848b6daf8
    commit 3dafc8f5de6ffe46fb223a75a46a6bd848b6daf8
    Author:     Kenton Varda <[email protected]>
    AuthorDate: Thu Feb 27 17:15:37 2025 -0600
    Commit:     Kenton Varda <[email protected]>
    CommitDate: Tue Mar 4 14:48:59 2025 -0600
    
        Add storage schema by Claude.
GitHub uses the committer date for its history, which is annoying if you rebase frequently; I like to run a non-interactive `git rebase` with `--commmiter-date-is-author-date` in such cases.
euiq
·2년 전·discuss
let me guess: you haven't read the article, have you?
euiq
·2년 전·discuss
He’s built up an impressive amount of clout over a short period of time, mostly by interviewing interesting guests on his podcast while not boring listeners to death (unlike a certain other interviewer with high-caliber guests that shall remain nameless).
euiq
·2년 전·discuss
I agree that “/usr/sbin directory becomes a symlink to bin” can be confusing for new users, but I don’t think it’s wrong: I interpret this statement as saying that /usr/sbin is going to be a relative symlink with target bin, which would indeed make it resolve to /usr/bin.
euiq
·2년 전·discuss
Recent versions of F# can stop on individual function applications in an expression like

    x
    |> f a
    |> g b
    …
(search for "pipeline debugging" on < https://devblogs.microsoft.com/dotnet/whats-new-in-fsharp-6/>).

In my experience, these are more common than strict point-free style anyway.
euiq
·2년 전·discuss
It's a joke.
euiq
·2년 전·discuss
I assume they're talking about code like

    x
    |> f a
    |> g b
    …
… where everything after the first |> is essentially in point-free style.