Viewing profile — Trung0246
Trung0246
HN member- Joined
- Fri, Mar 03, 2017, 6:21 PM UTC
- HN karma
- 157
- Public activity
- 102 items
- HN profile
- View on Hacker News ↗
About Trung0246
No profile information was provided.
Recent public activity
-
comment
Comment #49187381
Nice got different fingerprint across firefox and chrome on android
-
comment
Comment #49072852
Guess this is the death of non-chrome browser if website start to reject http request that does not have signature and chrome enforcing hardware attestation to generate signature.
-
comment
Comment #49005348
At that point just use whitelist-based approach. I already used gitignore like that. It also easier to avoid committing temp file and secret through whitelist because those file ar…
- story
-
comment
Comment #48501822
Yeah same issue with haskell. Apparently not many languages are supported by mise.
-
comment
Comment #48473867
Curious but can we use lean4 as port target instead of Rust?
-
comment
Comment #48455352
RIP hackintosh
-
comment
Comment #48421674
Here's a funny Z combinator in typescript in pure SKI form for lambda calculus purist: const K = (a: A) => (_b: B) => a; const S = (a: (x: C) => (y: B) => A) => (b: (x: C) => B) =>…
-
comment
Comment #48368773
Also not related to https://fluxkeyboard.com/
-
comment
Comment #48333671
For some funsie here's my fully working delimited continuation in C with effect handler example: https://godbolt.org/z/3ehehvo6E No ASM involved so technically portable (although i…
-
comment
Comment #48332807
RIP yt-dlp with cookies
-
comment
Comment #48311318
Nice got 6/6
-
comment
Comment #48311181
How does this differ from https://github.com/verus-lang/verus
-
comment
Comment #48301455
Interesting, how does this compare to copyparty?
- story
-
comment
Comment #48211871
Everytime it is BreachForums: https://breached.st/threads/internal-github-source-code.8739...
-
comment
Comment #48189728
Hmm how does it differ from this: https://github.com/daijro/camoufox
-
comment
Comment #48158958
Interesting, what I just did recently is basically the same of this as I tried to push the limit of js obfuscator as much as possible by keep forcing gpt/claude deobfuscate final o…
-
comment
Comment #47840334
Maybe Mac Mini M5 this year?
-
comment
Comment #47840323
Maybe Mac Mini M5 this year?
-
comment
Comment #47594474
Does this use pretext?
-
comment
Comment #47593763
Wikipedia have a pretty good Z combinator demo: https://en.wikipedia.org/wiki/Fixed-point_combinator --- const K = (a: A) => (_b: B) => a; const S = (a: (x: C) => (y: B) => A) => (…
-
comment
Comment #47577838
Unfortunately it still unable to handle to context sensitive language which is a deal breaker for me (like C++ raw string as an example). https://github.com/ohmjs/ohm/issues/158
-
comment
Comment #47534932
Hi, can you DM the firmware?
-
comment
Comment #47524904
Actually you don't even need ASM at all. Just need to have smart use of compiler built-in to make it truly portable. See my composable continuation implementation: https://godbolt.…