Viewing profile — mpartel
mpartel
HN member- Joined
- Sat, Dec 28, 2013, 9:26 PM UTC
- HN karma
- 471
- Public activity
- 169 items
- HN profile
- View on Hacker News ↗
About mpartel
No profile information was provided.
Recent public activity
- story
- story
- story
-
comment
Comment #45129459
Huge spikes over a short period of time are hard to deal with for anyone, and payment processors have their own infra whose scalability Steam can't necessarily control.
-
comment
Comment #45128042
Some LLM APIs let you give a schema or regex for the answer. I think it works because LLMs give a probability for every possible next token, and you can filter that list by what th…
- story
- story
-
comment
Comment #42287707
The design of generics in this one seems rather well balanced in simplicity vs power. The part about interface-typed values [1] is interesting. They do dynamic dispatch as a fallba…
-
comment
Comment #40241410
I agree in the sense that answering "what really are qualia" may be as impossible as answering "what really are quantum fields". At some point we may be forced to accept "it just i…
-
comment
Comment #40238856
> Even after mapping the entire visual cortex to all visual features, it just doesn't get us any closer to understanding that raw experience of "sight" that happens when you look a…
-
comment
Comment #40233844
I agree. It's just quite a lot of verbose-looking XML. "I have to write that much XML" is probably not the first impression you want to give. I did scroll down and see that you don…
-
comment
Comment #40233020
The rather prominent XML on the front page might scare folks off.
- comment
-
comment
Comment #38228911
To clarify, dependencies significantly affect incremental builds too. Seems loading information about compiled dependencies into the compiler and/or resolving stuff about them can …
-
comment
Comment #38217767
Compilation times depend very heavily on the amount/size/complexity of dependencies.
-
comment
Comment #37889644
The linked github page has a link to a paper.
-
comment
Comment #36407000
Excellent work, again! Your intros somehow elicit the best out of HN too: the comments are always full of interesting angles and variations. Wanna do quaternions next? :) Many have…
-
comment
Comment #36237623
Does it / will it support retractions?
-
comment
Comment #35285467
A fanless case would be real nice, and seems theoretically doable.
- story
-
comment
Comment #33160408
Several languages have or have had this behaviour. C# made a similar change to its 'foreach' loops a long time ago (but not 'for' loops for some reason). I suppose it's the natural…
-
comment
Comment #31537734
https://neon.tech/docs/cloud/compatibility/ says "During technical preview Neon has restrictions on user ability to install PostgreSQL extensions. Following PostgreSQL extensions c…
-
comment
Comment #31165339
This is a dynamically typed language. Null makes sense there. It also makes sense in a statically typed language with union types, think `string | undefined` in TypeScript. The ext…
-
comment
Comment #31093574
System76 has done good work on Linux support for (seemingly) similar hardware: https://tech-docs.system76.com/models/lemp10/README.html - some of that might be reusable.
-
comment
Comment #30113571
Some examples of high-level decisions: - which web framework? - which database? which ORM? which transaction isolation level by default? - will this game/UI be multiplayer? - what'…