Live data from Hacker News

Viewing profile — jamamp

jamamp

HN member
Joined
Mon, May 09, 2016, 3:03 PM UTC
HN karma
153
Public activity
51 items

About jamamp

meet.hn/city/us-San-Diego

Recent public activity

  1. comment
    Comment #47448275

    The Github readme doesn't list this: what data trained this? Was it done by the voices of the creators, or was this trained on data scraped from the internet or other archives?

  2. comment
    Comment #47198756

    I hope people can ask themselves why the goal is "winning" and "winning big", and not making a product that you are proud of. It shouldn't be about VC funding and making money, sho…

  3. comment
    Comment #47025401

    I think it's valiant to try to do all of this with semantic HTML elements to achieve the right effects, and try to go for a "classless CSS" paradigm to get a nice looking and funct…

  4. comment
    Comment #45947433

    I would argue that the author has no obligation to engage with more counter-arguments, or provide something "new" (to you) to the conversation. This is a blog. Blog posts are a way…

  5. comment
    Comment #45791952

    Unfortunately that might also be due to how Instagram shows ads, and not necessarily Anthropic's marketing push. As soon as you click on or even linger on a particular ad, Instagra…

  6. comment
    Comment #45397978

    > Another drawback is the difficulty of learning Typst. The official documentation is confusingly organized, with information scattered unpredictably among "Tutorial", "Reference",…

  7. comment
    Comment #44201766

    You're right. Section 10.4 does make that more clear as well for the default schemas.

  8. comment
    Comment #44198041

    Something I wish SCIM did better was break apart group memberships from the user resource. In the realm of SCIM's schema with the ability to have write-only, read/write, and read-o…

  9. comment
    Comment #44197993

    Another point: the SCIM schema can be confusing. The RFCs make it seem like you can define your schema however you like, and it provides a default schema with which it bases exampl…

  10. comment
    Comment #44183985

    In primarily throwable languages, it's more idiomatic to not include much error handling throughout the stack but rather only at the ends with a throw and a try/catch. Catching err…

  11. comment
    Comment #44172898

    I like Go's explicit error handling. In my mind, a function can always succeed (no error), or either succeed or fail. A function that always succeeds is straightforward. If a funct…

  12. comment
    Comment #43141973

    I'll also agree with you. I want to start with the fact that building FlowRipples is a monumental feat of its own. Generic tools that are adaptable to lots of situations is a diffi…

  13. comment
    Comment #42823949

    That makes a lot of sense, thank you! Extending out to other operations and not just event handlers/workflows would be neat.

  14. comment
    Comment #42815318

    I wonder how this compares, conceptually, to Temporal? While Temporal doesn't talk about a single centralized log, I feel the output is the same: your event handlers become durable…

  15. comment
    Comment #42472648

    My experience with `prompt=login` is also mixed. Okta's behavior does not indicate which account you're logging into (no username/email address), and only asks to re-input your pas…

  16. comment
    Comment #42393300

    Dear Okta, please include your OIDC profile claims in your ID tokens. Actually no, that's on the spec for not enforcing they're in the ID token, and only must be available in the u…

  17. comment
    Comment #42392912

    I'd like to add that so many providers do not support either `prompt=select_account` or just natively ask the user which account to login to, mainly for OIDC. Working with IAM syst…

  18. comment
    Comment #42330674

    If you thought random bit flips were bad, wait until you get random tit flips.

  19. comment
    Comment #41769122

    Location: San Diego, United States Remote: Yes Willing to relocate: No Technologies: Senior Software Engineer, backend and cloud, Go, .NET, Swift, AWS, Terraform, Web (HTML + frame…

  20. comment
    Comment #41612818

    I think the article has good sentiments about it. Actually using your application a lot helps polish it down a ton. However, wouldn't putting the input inside of the label (before …

  21. comment
    Comment #41542305

    Location: San Diego, United States Remote: Yes Willing to relocate: No Technologies: Senior Software Engineer, backend and cloud, Go, .NET, Swift, AWS, Terraform, Web (HTML + frame…

  22. comment
    Comment #41505057

    I remember during the screenwriters guild strikes in the Movie and TV industry, many writers were advocating _not_ to boycott movies/TV. Mainly in order to show that the people sti…

  23. comment
    Comment #40548489

    I believe this is because the code `counts[word]++` basically works by: 1. Hash word, retrieve the value from the counts map 2. Increment the value 3. Hash word, store the value in…

  24. comment
    Comment #39717147

    It'll be nice to see increased competition and, hopefully as a result, costs being driven down along with more advanced designs.

  25. comment
    Comment #37274333

    Swift's `Codable`[0] system seems very similar to serde in this regard. Structs that you define can be marked with the Codable protocol, and the Swift compiler automatically genera…