Live data from Hacker News

Viewing profile — jumhyn

jumhyn

HN member
Joined
Tue, Sep 09, 2014, 8:33 PM UTC
HN karma
101
Public activity
32 items

About jumhyn

No profile information was provided.

Recent public activity

  1. comment
    Comment #45707291

    But the additional cards may very well have been necessary to understand “there is something wrong with our usage of the cards, this error is not a one-off failure due to corrupted…

  2. comment
    Comment #43014602

    I believe it’s a cheeky reference to humans intentionally cultivating hot peppers specifically because of their capsaicin-producing quality. :)

  3. comment
    Comment #41759999

    > it's in the signup for the downloading accounts That's certainly not the only misrepresentation Smith made throughout this scheme. I'm having trouble understanding why you think …

  4. comment
    Comment #41759125

    > The question is whether their actions were misrepresentations. This is unclear. Accepting the facts in the indictment at face value, I really don't see how this is unclear. The c…

  5. comment
    Comment #41757866

    For those that are arguing that this is simply a legal arbitrage, or financial engineering of some sort, I suggest reading the actual indictment. From page 4: > at relevant times t…

  6. comment
    Comment #41757819

    You're overthinking this. From the indictment (page 4): > at relevant times to this Indictment, a Manhattan-based music distribution company ("Distribution Company-1 ") [...] requi…

  7. comment
    Comment #41335538

    Yeah, I suppose I went in primed for a more opinionated style just because of the fact that I was reading an unknown author’s Substack rather than something that purported to be ne…

  8. comment
    Comment #41331099

    Honestly, I feel better if an author makes their personal biases known rather than try to conceal them beneath a facially impartial analysis. It naturally invites more scrutiny on …

  9. comment
    Comment #40973356

    IIRC the property ‘each single digit has the same density’ is the definition for a ‘simply normal number’ (in a given base), while ‘each finite string of a particular length has th…

  10. comment
    Comment #40941950

    Sure, but it is an option (as well as everywhere along the spectrum up to maximization), and so ‘people want to move there’ is not on its own a justification for ‘prices must go up…

  11. comment
    Comment #40941887

    But this doesn’t offer any justification for why, for locations that people highly value living in, we as a society ought to do anything other than maximize the number of people li…

  12. comment
    Comment #40941819

    There are many homeless people who are not living on the streets: those living in shelters, or cars, or who are frequently moving between temporary living situations with friends o…

  13. comment
    Comment #39845717

    FWIW the concurrency story has been getting substantially more attention over the past couple of years with first-class language support. Swift 6 aims to be data-race-safe by defau…

  14. comment
    Comment #37613673

    There's some elaboration in this forums post on "Embedded Swift": https://forums.swift.org/t/embedded-swift/67057

  15. comment
    Comment #37600555

    Right, the SEC’s guidance[1] on this specifies that merely trading on MNPI alone is not enough: > Illegal insider trading refers generally to buying or selling a security, in breac…

  16. comment
    Comment #35480953

    It’s not quite self-driving cars but Snow Crash has a very similar plot detail.

  17. comment
    Comment #32284336

    No, the SO post is accurate—it’s trivially easy to create strong reference cycles in Swift and @escaping annotation is only of limited use in detecting strong reference cycles. Tho…

  18. comment
    Comment #31636794

    Example of a distribution which would not fit this description: 1. 4096 2. 2048 3. 1024 4. 512 5. 256 6. 128 ... Here, the frequency of a word is inversely proportional to its rank…

  19. comment
    Comment #28752999

    > And Apple's subscriptions expire immediately if you cancel during a free trial, whereas the Google ones will still let you finish the term of your trial. Amusingly, this is only …

  20. comment
    Comment #28341240

    May not make a difference if you don’t take Apple at their word but iCloud Keychain is among the services/data encrypted end-to-end[1] and there’s no exception mentioned for iCloud…

  21. comment
    Comment #28339344

    On iOS each password item in Settings.app has a "Share" button that lets you AirDrop to another device. I don't see another way to export from iOS. Safari on macOS (at least in Mon…

  22. comment
    Comment #28334552

    FWIW, iOS 15 lets you put a TOTP secret right into the saved password entry on your phone, and it will autofill the code just like it autofills your password.

  23. comment
    Comment #24586365

    Great article! Glad to have that misconception cleared up.

  24. comment
    Comment #24586298

    That problem could have been resolved via type erasure (either via `AnyView`, or, if SwiftUI had been designed differently, by having the `body` property be of type `View` rather t…

  25. comment
    Comment #24586191

    From what I understand, SwiftUI uses this so that each "snapshot" of the View tree generated by the app can be intelligently diffed against future snapshots. This helps make render…