Live data from Hacker News

Viewing profile — your_fin

your_fin

HN member
Joined
Mon, Apr 01, 2024, 11:48 PM UTC
HN karma
19
Public activity
14 items

About your_fin

No profile information was provided.

Recent public activity

  1. comment
    Comment #46570136

    This is the most common complaint I see for switching interactive shells to fish/nushell, but it's not a problem in practice. You don't ever uninstall bash, so if you've got a comm…

  2. comment
    Comment #46406100

    Can confirm; my team spent the past 9 months upgrading an application JDK 8 -> 17, and there were breaking changes even after we got it compiling + running

  3. comment
    Comment #46021671

    I would highly recommend the ts-pattern [1] library if you find yourself wanting exhaustive switch statements! The syntax is a bit noiser than case statements in simple cases, but …

  4. comment
    Comment #45578565

    > It almost always breaks every possibility to programmatically process or analyze the config. You can't just JSON.parse the file and check it. Counterpoint: 95% of config-readers …

  5. comment
    Comment #45295551

    I came across https://kdl.dev recently, and it has become my favored yaml-replacement when normal code doesn't work. The data model is closer to XML than JSON, though, so unfortuna…

  6. comment
    Comment #44981076

    Very roughly, Zig is much closer to Go in terms of philosophy of language design, where as Rust is much closer to Go in terms of the kind of software people write with it. Go and Z…

  7. comment
    Comment #43686859

    The author addresses this nicely in an earlier part of the blog book: https://jerf.org/iri/post/2025/fp_lessons_purity/

  8. comment
    Comment #43669723

    The way zod and arktype generally handle this is by providing treating the schema as the source of truth, rather than a type. They then provide a way to define the type in terms of…

  9. comment
    Comment #42695636

    I must further prothelitize Amazon Ion, which solves for most of the listed complaints and is criminally underused: https://amazon-ion.github.io/ion-docs/ The "object and array nee…

  10. comment
    Comment #42323615

    In this context, I think the prime advantage would be that instead of: - Managing/setting Ubuntu/$distro for the host - Installing Docker compose on host - Writing a docker-compose…

  11. comment
    Comment #42153658

    For the TUI inclined, lazygit [1] and magit (emacs) [2] both have quick and intuitive ways of handling this. They're also both wonderful companions to the git cli for day to day ve…

  12. comment
    Comment #41760293

    If you haven't seen it, I'd recommend checking out Amazon's Ion data format: https://amazon-ion.github.io/ion-docs/ It's schemaless, so the binary format can't be as effecient as p…

  13. comment
    Comment #40182229

    I can't seem to find this Dell monitor on your site: https://www.dell.com/en-us/shop/dell-ultrasharp-43-4k-usb-c-...

  14. comment
    Comment #39900873

    If you control the underlying data, I must reccomend Amazon Ion! Its text format is a strict superset of JSON, but they also maintain binary format that will round-trip data and is…