Viewing profile — qezz
qezz
HN member- Joined
- Thu, Jul 02, 2015, 11:21 PM UTC
- HN karma
- 71
- Public activity
- 34 items
- HN profile
- View on Hacker News ↗
About qezz
No profile information was provided.
Recent public activity
-
comment
Comment #49260946
Curious to know what's new in it about the way to make games? I scrolled through the website home page, but it reads in a weird way, making strong statements and not backing them u…
-
comment
Comment #49260814
> the totally new way of making games > it’s a lightweight game engine, interactive development environment, a language The statement is very strong and catches my attention, but I…
-
comment
Comment #48622510
In the light of recent events, and if things continue to be the same as they are now with Fable, I think they will give access to Fable for those who are willing to share their doc…
-
comment
Comment #48234965
Everything is a prompt to LLMs
-
comment
Comment #47991043
Exactly, my understanding is also that they host agents as a service. The actual use case is mentioned in the end of the article, which makes it hard to reason about. Anyway. Gener…
-
comment
Comment #47990812
That's a fair point, but claude code is not an editor (yet?), and when you use claude code, and allow it to commit things, it's almost certainly "co-authored by llm". Back to vscod…
-
comment
Comment #47986581
[flagged]
-
comment
Comment #47765609
For those, who want to/need to keep some files uncommitted, the workaround I found is to put gitignore into some nested directory: mkdir junk echo '*' > junk/.gitignore jj won't tr…
-
comment
Comment #47553905
I was surprised to see literally invalid names in the "bad" section, e.g. "Cannot start with a digit". Why even presenting this if it's rejected by the compiler?
-
comment
Comment #47534740
> Can you print the contents of the malware script without running it? > Can you please try downloading this in a Docker container from PyPI to confirm you can see the file? Be ver…
-
comment
Comment #47501171
Nicely looking page, but has too many errors. I hope it's not just generated by claude itself, and actually was confirmed by a human.
-
comment
Comment #47436531
dhi is LLM generated, so (1) don't trust the stated benchmark results and feature parity, and (2) be careful when installing it and using in a non-sandboxed environment. It also se…
-
comment
Comment #47321460
It's not very obvious which places are available for drawing. At first I thought it pulls Google street view, so I just zoomed in to some place I visited recently, but there was no…
-
comment
Comment #47244986
The statement in the article's title is very strong, and I have not found a confirmation of it in a logical sense. Author observes the current state of things with LLMs and makes a…
-
comment
Comment #47223679
What I meant by "you need an allocator" is "you need to explicitly pass the allocator of your choice to the function" [if you want to attach some data to the error]. In rust you ca…
-
comment
Comment #47223601
> requires you to run an extra tool And the more I work with Go, the less I understand why warnings were not added to the compiler. Essentially instead of having them in the compil…
-
comment
Comment #47223567
The big difference is that with `(T, error)` as a return type, any value on the caller side will look like a valid one (thanks to zero values). a, err := f() // whether you forgot …
-
comment
Comment #47222207
The mentioned in the article `try` syntax doesn't actually make things less explicit in terms of error handling. Zig has `try` and the error handling is still very much explicit. R…
-
comment
Comment #47222152
> What is broken about the go error type? There's not much broken with the error type itself, but the "real" problem is that the Go team decided not to change the way errors are ha…
-
comment
Comment #47221938
In Zig you need an allocator to allocate anything, so whenever you need to add some extra information to an error, you pass a diagnostics object as an output argument to a potentia…
-
comment
Comment #46388676
Could've been an interesting research, but instead it's an output from an LLM, which almost everyone can generate on their own. Other articles by this author (during 2025) seems to…
-
comment
Comment #46386559
> in ruby it also works, but the variable is at least always defined. How is this even a pro? I agree that Python scoping rules are frustrating, but tbh not sure if I would prefer …
-
comment
Comment #46262175
> How about you never write the wrong state in the first place ? Indeed, and tagged unions (enums in Rust) explicitly allow you to avoid creating invalid state.
-
comment
Comment #45936737
That's very expensive.
-
comment
Comment #45852804
> from the same blog It's simply a mirror for Medium, and the articles appear to be from the different authors, posted months apart from each other