Viewing profile — panstromek
panstromek
HN member- Joined
- Sat, May 07, 2022, 7:24 PM UTC
- HN karma
- 1,003
- Public activity
- 299 items
- HN profile
- View on Hacker News ↗
About panstromek
No profile information was provided.
Recent public activity
-
comment
Comment #49179866
Asking on zulip is the good first step, yes. But RFC or MCP is only needed for bigger changes. Majority of changes will not need that, especially the ones contributed by newcomers.…
-
comment
Comment #49161025
It's relevant for C++ interop at least, but that's about it.
-
comment
Comment #49155570
By default yes. Part of the work is figuring out how to get around that.
-
comment
Comment #49153716
For everybody who doesn't have the context, just note that this is not an accepted langauge change. It's a just project goal, which means it's accepted as something people will wor…
-
comment
Comment #49146685
Rust moderators are not anonymous.
-
comment
Comment #49122737
This is difficult to answer, because these systems exhibit somewhat chaotic behaviour, and it gets even more complicated cross-crate. I was mostly talking about single crate scenar…
-
comment
Comment #49093960
> GHC currently needs to parse+typecheck+codegen a file before it can process other files that import it. Codegen is slow. Thus, there's currently demand split compilation into "st…
-
comment
Comment #49091799
Yes, and there is some compiler flag to do this, even though it's not 100% intended for this use (I think it's something like mir-inline-trheshold=0). There's also -Zhint-mostly-un…
-
comment
Comment #49091750
> To me compilers should be content-addressed databases. There's a language called Unison that does that - and the "content" is the AST, so all functions that have the same shape a…
-
comment
Comment #48409210
Casey also got less aggressive when talking about Stroupstrup lately, especially after his last talk at Better software conference, where he mentioned him multiple times with a lot…
-
comment
Comment #48167080
This is good diagnosis of the problem. I found that often the right solution is to ditch the hierarchy and use flat structure. I wrote about this some time ago: https://yoyo-code.c…
-
comment
Comment #47748636
Yea, when there's a match, our app stops playing videos in Spain and we get some bad reviews. It's pretty annoying.
-
comment
Comment #47744094
I will join the others and say you should just leave twitter: https://yoyo-code.com/you-should-delete-twitter/
-
comment
Comment #47729060
That makes sense, because JWT is base64 encoded, and those base64 tokens are bigger and more expensive. JWT has 3 parts, so it's 3x more expensive, obviously.
-
comment
Comment #47728747
Also, the game is much faster on desktop, looks like it's maybe not framerate independent?
-
comment
Comment #47728715
The game is pretty fun. Page height is a bit wrong on mobile, you probably need some dvh height?
-
comment
Comment #47722989
Depends on how many JSON tokens you need to format. I recommend getting JSON ForMAX+ with 200k tokens and 100k sign in bonus.
-
comment
Comment #47636667
Actually, from the OP, the timeline is: > March 31, 00:21 UTC: axios@1.14.1 published with plain-crypto-js@4.2.1 injected > March 31, around 01:00 UTC: axios@0.30.4 published with …
-
comment
Comment #47636628
Well, the hack didn't survive more than 2-3 hours if I'm not mistaken. I don't think that counts as "nobody acted on it."
-
comment
Comment #47627688
As far as I understood it, it only talks about electricity, so that doesn't seem like a contradiction to me. I think some electrification of heating is expected in 2030, but not th…
-
comment
Comment #47613995
The parent comments references real world data from Google: https://security.googleblog.com/2024/09/eliminating-memory-s...
-
comment
Comment #47598915
The talk "Black-Hat LLMs" just came out a few days ago: https://www.youtube.com/watch?v=1sd26pWhfmg Looks like LLMs are getting good at finding and exploiting these.
-
comment
Comment #47515209
Yea, passing `-movflags +faststart` to ffmpeg when processing the file should be enough.
-
comment
Comment #47514864
If you don't need to switch versions at runtime (ABR), you don't even need to chunk it manully. Your server has to support range requests and then the browser does the reasonable t…
-
comment
Comment #47477246
That's good and arguably the right default for most websites.