Live data from Hacker News

Viewing profile — Trung0246

Trung0246

HN member
Joined
Fri, Mar 03, 2017, 6:21 PM UTC
HN karma
157
Public activity
102 items

About Trung0246

No profile information was provided.

Recent public activity

  1. comment
    Comment #49187381

    Nice got different fingerprint across firefox and chrome on android

  2. 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.

  3. 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…

  4. story
  5. comment
    Comment #48501822

    Yeah same issue with haskell. Apparently not many languages are supported by mise.

  6. comment
    Comment #48473867

    Curious but can we use lean4 as port target instead of Rust?

  7. comment
    Comment #48455352

    RIP hackintosh

  8. 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) =>…

  9. comment
    Comment #48368773

    Also not related to https://fluxkeyboard.com/

  10. 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…

  11. comment
    Comment #48332807

    RIP yt-dlp with cookies

  12. comment
    Comment #48311318

    Nice got 6/6

  13. comment
    Comment #48311181

    How does this differ from https://github.com/verus-lang/verus

  14. comment
    Comment #48301455

    Interesting, how does this compare to copyparty?

  15. story
  16. comment
    Comment #48211871

    Everytime it is BreachForums: https://breached.st/threads/internal-github-source-code.8739...

  17. comment
    Comment #48189728

    Hmm how does it differ from this: https://github.com/daijro/camoufox

  18. 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…

  19. comment
    Comment #47840334

    Maybe Mac Mini M5 this year?

  20. comment
    Comment #47840323

    Maybe Mac Mini M5 this year?

  21. comment
    Comment #47594474

    Does this use pretext?

  22. 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) => (…

  23. 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

  24. comment
    Comment #47534932

    Hi, can you DM the firmware?

  25. 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.…