Live data from Hacker News

Viewing profile — Longwelwind

Longwelwind

HN member
Joined
Sat, Apr 30, 2016, 12:00 PM UTC
HN karma
243
Public activity
88 items

About Longwelwind

Blog: https://longwelwind.net LinkedIn: https://www.linkedin.com/in/fr%C3%A9d%C3%A9ric-kaczynski/

For enquiries:

frederic.kaczynski@gmail.com

Recent public activity

  1. comment
    Comment #49243218

    The name "serverless" doesn't mean that there are no servers. It means that, as a developer, you don't need to manage the server. It's abstracted out for you.

  2. comment
    Comment #48145766

    Agents use find+grep because it's available everywhere and without any configuration, but they would still be more efficient with LSP. Once LSPs will be more easily configurable fo…

  3. comment
    Comment #47476094

    Those kind of tools are futile endeavors to me. If you want to use that for unit testing, then I think it would be better to mock the calls to AWS services. That way you test only …

  4. comment
    Comment #47276795

    It also doesn't care about arbitrary groupings of humans (a.k.a countries). The fairest system would be for each human being to have an equal amount of pollution they are allowed t…

  5. comment
    Comment #47099639

    Trunk-based development fits nicely when you have a single deployment product like a SaaS and you don't need to maintain old versions of your software. You only have one prod envir…

  6. comment
    Comment #47058758

    Using an LLM to generate an image of a diagram is not a good idea, but you can get really good results if you ask it to generate a diagram.io SVG (or a Miro diagram through their M…

  7. comment
    Comment #46904633

    When doing advanced terminal UI, you might at some point have to layout content inside the terminal. At some point, you might need to update the content of those boxes because the …

  8. comment
    Comment #43760889

    > Berulis found that on March 3 one of the DOGE accounts created an opaque, virtual environment known as a “container,” which can be used to build and run programs or scripts witho…

  9. comment
    Comment #42478488

    I don't recommend resolving actions on the server in any situation: For actions that require secret information, you would filter the actions sent to the client of any secret infor…

  10. comment
    Comment #42472730

    I had the same issue in AGoT:BG and I solved it by representing the state of the game as a tree. At any point of the game, the current game state is a leaf of the tree. You'd repre…

  11. comment
    Comment #42472685

    The way I wanted to implement this in my turn-based game engine: If you implement the deterministic update pattern to handle state synchronisation you can add "event" inside the lo…

  12. comment
    Comment #42074914

    I would agree with you, if HCL wasn't a bad language in itself: * You can't make have variables in an import block (for example, to specify a different "id" value for each workspac…

  13. comment
    Comment #41274032

    > It's annoying because, especially with MongoDB, people come into it having been sold on it being a more "flexible" database. Yes, you don't need to give it a schema. Yes, you can…

  14. comment
    Comment #39187751

    You might be interested in the Phase abstraction of my engine. Basically you represent your board game as a tree of phases through which your game progresses in. Each node of your …

  15. comment
    Comment #39187636

    You might be interested by an open-source project I started a few years ago but never really finished: https://github.com/ravens-engine/core I had the idea after developing Swords …

  16. comment
    Comment #38336114

    The second quote was the author's response to the argument that working at the office increases collaboration. My point is that some perceived benefits of WFH can be achieved when …

  17. comment
    Comment #38334532

    > Just when I am deep in some twisted train of thought involving a failing JS callback or missing network packets in Kubernetes someone ambles over to my cubicle to ask me some ran…

  18. comment
    Comment #37810062

    Why would you want to store the state in Git? This means that if you have a CD pipeline (triggered itself by a commit) that does `terraform deploy`, you'd need to have your CD pipe…

  19. comment
    Comment #37297051

    I think what they means is that if you provisioned your system to receive spans for 5% of non-error requests and a few error requests, if for some random act of god, all the reques…

  20. comment
    Comment #36681013

    Whether it's code or not that is being stored in the VCS is not really what matters. The idea is of X-as-Code is that you treat X in the same way that you treat code (VCSed, tested…

  21. comment
    Comment #35827947

    AI trend due to ChatGPT. For NLP use-cases, you can use a vector database to index the embeddings of your texts. For exemple, if you implement a document retrieval (a search engine…

  22. comment
    Comment #35439747

    I don't know what tools you are using but this can be achieved with Airflow on k8s, for example: * Add a GPU resource requirement on one of your step * Add an auto-scaler that adds…

  23. comment
    Comment #35439099

    I've been an MLOps Engineer for around 3 years now and I mostly agree with the article. There is a big overlap between the ML-specific tools that are popping up on the market and t…

  24. comment
    Comment #35272039

    What if someone's else profit is due to economies of scale?

  25. comment
    Comment #33238566

    Maybe it's only for me, but I've never liked this of too-smart solutions. Let people do the mistakes once and learn the correct package name, instead of relying on a hack and poten…