Live data from Hacker News

Viewing profile — sunnyday_002

sunnyday_002

HN member
Joined
Wed, Dec 03, 2025, 10:21 AM UTC
HN karma
6
Public activity
13 items

About sunnyday_002

No profile information was provided.

Recent public activity

  1. comment
    Comment #46497094

    Or just use Git LFS.

  2. comment
    Comment #46374635

    Ah okay! I know Rust has the transitive dependencies did not think/realise all languages might not, good point!

  3. comment
    Comment #46374599

    So the lockfile is a superset, but never a subset? So it basically is an SBOM then but just sometimes has extra dependencies?

  4. comment
    Comment #46310673

    Yes this is what I meant! If you structure it correctly using task runners and an environment manager you can do everything locally using the same versions etc. E.g. ```yaml name: …

  5. comment
    Comment #46300232

    That is because GH Actions is event based, that is more powerful and flexible than just triggering on every push and not letting it be configured. ``` on: push ``` is the event tri…

  6. comment
    Comment #46300161

    Pin the action's version via a digest and use Renovate for updates. You can run all your CI locally if you don't embed your logic into the workflows, just use CI for orchestation. …

  7. comment
    Comment #46142607

    > I mean, … the outages are a big part of it. But those outages also extending to taking out my own hardware (e.g., through bugs like the above consuming resources on my own comput…

  8. comment
    Comment #46138854

    It is fairly common pratice almost engineering best pratice to not put logic in CI. Just have it call out to a task runner, so you can run the same command locally for debugging et…

  9. comment
    Comment #46133814

    > My issue with Github CI is that it doesn't run your code in a container. Is this not what you want? https://docs.github.com/en/actions/how-tos/write-workflows/c... > You just hav…

  10. comment
    Comment #46133071

    In what way? I've never had an issue other than outages.

  11. comment
    Comment #46132782

    One of my favourite GitHub features is the ability to do a code search over the whole of GitHub, not sure GitLab has the same when I use to use it?

  12. comment
    Comment #46132764

    Surely you just need the workflow to not have embedded logic but call out to a task manager so you can do the same locally?

  13. comment
    Comment #46132747

    What is wrong with GitHub Actions other than the outages? I've never hit a issue myself.