Live data from Hacker News

Viewing profile — fathyb

fathyb

HN member
Joined
Thu, Jun 17, 2021, 4:39 AM UTC
HN karma
1,913
Public activity
328 items

About fathyb

hey@fathy.fr - github.com/fathyb

Recent public activity

  1. comment
    Comment #41774872

    > On macOS memory can be paged to/from disk. On iOS it isn’t and applications must free memory when asked or be terminated Not sure what you meant by that, you always could `mmap` …

  2. comment
    Comment #41774769

    Apple advertised the first iPhone to run OS X: https://youtu.be/VQKMoT-6XSg?t=506

  3. comment
    Comment #41695529

    > on the server that is hosting this service I’m not sure if it changed, but last time I heard HN was running on FreeBSD: https://news.ycombinator.com/item?id=16076041 > just imagi…

  4. comment
    Comment #40786716

    If anybody is interesting in learning more about that smearing campaing: https://www.ajiunit.com/investigation/the-labour-files > An investigation based on the largest leak of docu…

  5. comment
    Comment #40690193

    Agreed. For spicier chords also recorded by the Nat King Cole Trio on the same set check out Mona Lisa: https://www.youtube.com/watch?v=NIDX18Xl16s

  6. comment
    Comment #40660745

    Link for Europe: https://archive.ph/IHdjm

  7. comment
  8. comment
  9. comment
    Comment #40459167

    Now imagine how limited computers are with their ability to count to only 1.

  10. comment
    Comment #40458630

    Isn't because in Cars the character itself is the IP, not the actor? For example, if Owen Wilson started cosplaying as the Cars character and making money out of it, he could be su…

  11. comment
    Comment #40458459

    > I don’t know if signatures are verified before or after running but the binary probably won’t even run without being signed by a paying Apple Developer anyways. It's before. You …

  12. comment
    Comment #40447616

    Isn't opioid addiction the root cause? People dying of fentanyl are mostly opioid addicts who started with prescription meds [1] such as Oxycontin. Heroin is close to fent in letha…

  13. comment
    Comment #40444974

    I didn't know browser vendors supported WASI! I said that as some of us do not use WASI at all, just WebAssembly itself, so they can save some time by not reading this if they're n…

  14. comment
    Comment #40444895

    I agree, my personal take: if you don't want to get your hands dirty, WebAssembly is not ready for you yet. It'll take at least 5 more years before the tooling gets into a state wh…

  15. comment
    Comment #40444574

    > If you are using WebAssembly in a web browser then you are good, WASI does not concern you. In case you absolutely do not care for WASI but love WebAssembly for the web.

  16. comment
    Comment #40444566

    Just had it too, refreshing worked.

  17. comment
    Comment #40444502

    > moving between release or debug affects nothing I'd start with that, it's an obvious red flag. Switching between both should create huge differences. Also look into `wasm-opt` fr…

  18. comment
    Comment #40444460

    It really depends on what you're using. If you use Rust with `wasm32-unknown-unknown`, you'll likely get small binaries (<200 kB). If you use C++ and Emscripten with all features e…

  19. comment
    Comment #40439051

    Alacritty uses OpenGL ES 2.0 which is not deprecated. It's shipped OOB in macOS through the ANGLE project by Google, mainly because Safari depends on it to provide WebGL support (i…

  20. comment
    Comment #40318537

    > The iPads have had the hardware in the M-series chips and the software in the form of Apple's hypervisor framework in iPadOS for a couple of generations now, but Apple hasn't ena…

  21. comment
    Comment #40297287

    An allocator is free to only `mmap` addresses that are within a range. I think jemalloc could allow you to do that using custom arenas.

  22. comment
    Comment #40296797

    Makes it easy to migrate from containers to VMs using the same tooling.

  23. comment
    Comment #40274466

    That makes a lot of sense, thank you!

  24. comment
    Comment #40274118

    If this was intentional, shouldn't it also affect `mach_absolute_time` which is used by the standard libraries of most languages and accessible to Swift? Also note you can get prec…

  25. comment
    Comment #40274058

    I believe `CACurrentMediaTime` depends on `QuartzCore.framework` and `Date` is not monotonic. I would also find it confusing if I found code doing something like network retries us…