Live data from Hacker News

Viewing profile — maggit

maggit

HN member
Joined
Tue, Oct 14, 2008, 12:58 PM UTC
HN karma
1,755
Public activity
340 items

About maggit

https://magnushoff.com

Recent public activity

  1. comment
    Comment #48988725

    It's worth noting that Swiftfin finally had a new release for tvOS this summer which is worth checking out if you're interested in Jellyfin on Apple TV

  2. comment
    Comment #46365144

    It is indeed badly aliased. The technique demonstrated does not take into account antialiasing in the initial render, which causes this issue. There are ways to improve it, but I w…

  3. comment
    Comment #45796887

    x86-64 introduced a `syscall` instruction to allow syscalls with a lower overhead than going through interrupts. I don't know any reason to prefer `int 80h` over `syscall` when the…

  4. comment
    Comment #45124368

    There was a Minesweeper on here that used a SAT solver, but I cannot find it at the moment. As I recall, it never had any issue with resolving the board quickly. I think it dynamic…

  5. comment
    Comment #43459008

    It's more a matter of your personal preference and previous exposure to different languages. The way Rust reads is one of its super strengths in my book. I also really enjoyed Stan…

  6. comment
    Comment #43409440

    Adding some detail to this: With three buffers, you have one front-buffer (what's currently visible on screen) and two back-buffers. Let's call them A, B and C, respectively. This …

  7. comment
    Comment #43182618

    Exact integers doesn't seem to be its strong suite. Can it even represent 3 exactly? Running code from the linked notebook ( https://github.com/AdamScherlis/notebooks-python/blob/m…

  8. comment
    Comment #43182081

    That's true for normal binary encoding of integers, but I think we should understand the question in context of the post: What's the number of bits required in iterated log coding?…

  9. comment
    Comment #43181809

    Cute! I wonder if it would be amenable for use as a variable-width encoding for, say, DCT coefficients in a JPEG-like codec..?

  10. comment
    Comment #40129577

    I have realized that there is a big design space here, as I recently did a write-up of my take, Id30. 30 bits of information encoded base 32 into six chars, eg bpv3uq, zvaec2 or rf…

  11. story
  12. story
  13. comment
    Comment #37911727

    There's 12 parts to this in total: 1. https://pharr.org/matt/blog/2018/04/18/ispc-origins 2. https://pharr.org/matt/blog/2018/04/19/ispc-volta-is-born 3. https://pharr.org/matt/blo…

  14. comment
    Comment #37656057

    "System Integrity Protection (SIP)" seems to be the correct name here, for anyone as confused as me :) (More details here: https://support.apple.com/en-us/102149 )

  15. comment
    Comment #37055072

    Ah! That's what got me. Private mode is my default. I can confirm that I get it working in Firefox outside of private mode. Thanks :)

  16. comment
    Comment #37048702

    Same experience with Firefox, seems to require Chrome. There is a security-related error in the console.

  17. comment
    Comment #28528104

    It looks like it implements hardware acceleration of the VP9 codec for some specific hardware (Rockchip VDEC and Hantro G2). This opens up playing, for example, lots of YouTube vid…

  18. comment
    Comment #24473424

    I, too, would have appreciated slightly more documentation. Here are two questions I had, and what I figured out. Many RSS readers are stand-alone GUI applications. I would have ap…

  19. comment
    Comment #23003649

    I haven't had a look at the source code for this, but I expect that it syncs with the screen refresh rate.

  20. comment
    Comment #22761814

    I recently did a write-up of my experience with writing maintainable code with vanilla JS: https://magnushoff.com/blog/dependency-free-javascript/ I am a huge fan of React for the …

  21. comment
    Comment #22504180

    >Also encoding ampersands into a URI (URL) using HTML encoding schemes is also common, but that is incorrect. To encode any string (for example a URL) containing & in HTML, you mus…

  22. comment
    Comment #22235375

    I have recently experimented with writing dependency-free JS. I ended up using Webpack and Babel, but no frameworks or libraries, and I find it quite nice to work with. These are m…

  23. comment
    Comment #21906485

    Right, so, in my book, reasoning based on facts such as "these squares are clear" are _considering_ those squares. This is in contrast to the local rules I first describe that cons…

  24. comment
    Comment #21893393

    It's been some years, but I think it boils down to the definition of when you are _considering_ some part of the game state. Right off the bat, I cannot agree that abc must contain…

  25. comment
    Comment #21886110

    In complex situations it is easy to come to the conclusion that you have to guess, but sometimes there is an elaborate connection you might have missed. This game is sure to call y…