Viewing profile — Longwelwind
Longwelwind
HN member- Joined
- Sat, Apr 30, 2016, 12:00 PM UTC
- HN karma
- 243
- Public activity
- 88 items
- HN profile
- View on Hacker News ↗
About Longwelwind
For enquiries:
frederic.kaczynski@gmail.com
Recent public activity
-
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.
-
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…
-
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 …
-
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…
-
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…
-
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…
-
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 …
-
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…
-
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…
-
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…
-
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…
-
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…
-
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…
-
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 …
-
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 …
-
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 …
-
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…
-
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…
-
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…
-
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…
-
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…
-
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…
-
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…
-
comment
Comment #35272039
What if someone's else profit is due to economies of scale?
-
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…