Live data from Hacker News

Viewing profile — less_less

less_less

HN member
Joined
Fri, Jun 11, 2021, 3:03 PM UTC
HN karma
471
Public activity
182 items

About less_less

No profile information was provided.

Recent public activity

  1. comment
    Comment #49068706

    I agree to some extent with your thesis. But also you don't have to encode all the properties of the program in dependent types everywhere. You can have the implementation contain …

  2. comment
    Comment #48971849

    It isn't balanced quinary, but rather redundant balanced quaternary (base 4). In balanced quinary (base 5), each digit has 5x the significance of the previous one, but in Booth's e…

  3. comment
    Comment #48966493

    It's still a modified base 4, because the significance of the i'th digit is 4^i, not 5^i. Edited to add: I'm also not sure whether real-life implementations have -0 as an option. O…

  4. comment
    Comment #48966485

    The model usually measures in terms of fixed-size operations, e.g. 2-input binary gates. There's some variation in how to count memory lookups, but even in models where accessing a…

  5. comment
    Comment #48966445

    Yeah, that shift-and-add algorithm is sometimes used on microcontrollers, either in software if there's no hardware multiplier, or in hardware if you want the bare minimum in accel…

  6. comment
    Comment #48966349

    Residue number systems are really neat! They're sometimes used in crypto implementations, but there you're doing modular multiplication and in most cases the modular reduction then…

  7. comment
    Comment #48966280

    Hardware multipliers often use a sort of base-4-ish lookup table trick as well, using the Booth-Wallace algorithm. Booth's idea is to rewrite one of the inputs in base (usually) "4…

  8. comment
    Comment #48170488

    Ah, thanks for the correction. Do I have the soundness bit right? I guess it might apply even if the proof system is only computationally sound, since the simulator has to be effic…

  9. comment
    Comment #48167036

    Cryptographer here, but this is not my area and I've only skimmed the paper. As far as I can tell, it's a purely theoretical result but a really cool one. Wall of text that might b…

  10. comment
    Comment #47909233

    I've hung out with a lot of pharma folks, and the business is really complicated. Most of the companies aim to both help people and to make a lot of money, and will choose projects…

  11. comment
    Comment #47835733

    I'm pretty the spec sheet claimed 1000 cycles when I bought my iPhone 17. They do claim it at least for iPhone 15 "under ideal conditions": https://support.apple.com/en-us/101575

  12. comment
    Comment #47721780

    If I understand correctly, Baillie-PSW has been shown to be correct for all integers Edited to add: Sieving has got to be much faster than M-R if you want all primes of a certain s…

  13. comment
    Comment #47170768

    I picked Hunter's Point because I used to live near it. The problems from decommissioning radioactive ships are bad, but they're far from the only pollution that was there. Lots of…

  14. comment
    Comment #47165218

    Yeah. It's especially relevant for the author's focus on shipbuilding. The old shipyard at Hunter's Point in San Francisco is horribly polluted, and they've been working to deconta…

  15. comment
    Comment #47153847

    The laptop keyborad is good enough, but I'd enjoyed using the Kineses before. I moved long distance and the Kinesis was bulky and didn't make the cut for things to haul. Once I was…

  16. comment
    Comment #47153307

    In addition to what others have pointed out, many of these aren't actually missing from traditional dictionaries: they're just inflected differently. So your example lists phrases …

  17. comment
    Comment #47086021

    Glove80 is super nice, though rather expensive. I got one with low-force switches. It's very comfortable to type on, but between the low-force switches and slightly different layou…

  18. comment
    Comment #46720939

    This thread is pretty weird. My phrase "how economists expect you to set it" is probably wrong here, since I'm not an economist, I've just read the most basic theory about how to u…

  19. comment
    Comment #46718675

    I'm not defending "you shouldn't ever need to snipe, just bid your max price" as a hard principle, just trying to explain where the idea comes from. Sniping can be strategic for lo…

  20. comment
    Comment #46717564

    It's not supposed to be some red line absolute max price, but rather "how much is this item worth to you?" You set that as your max bid price. If you get it at auction for less tha…

  21. comment
    Comment #46717323

    See also the paper Ribbon filter: practically smaller than Bloom and Xor : https://arxiv.org/abs/2103.02515 , which is a similar idea though not by the same authors. IIRC, binary f…

  22. comment
    Comment #46311838

    Another answer to this: https://en.wikipedia.org/wiki/Cayley–Bacharach_theorem A second special case of this theorem is Pascal's theorem, which says (roughly) that a variant of the…

  23. comment
    Comment #45552920

    Annoyingly, while that d = e^-1 usually isn't used in practice (except in cases where you care about side-channel / fault resistance more than the 4x speedup), the Carmichael totie…

  24. comment
    Comment #45552809

    Do the standards require strong primes for RSA? I think FIPS doesn't ... it gives you that option, either for the legacy reasons or to get a proof with Pocklington's theorem that (…

  25. comment
    Comment #44526776

    The intro textbook descriptions of cryptographic systems omit a lot of very important details. When using RSA to sign a message m, in practice you don't send m^d mod N. That would …