Live data from Hacker News

Viewing profile — nedbat

nedbat

HN member
Joined
Fri, Feb 01, 2013, 7:45 PM UTC
HN karma
365
Public activity
109 items

About nedbat

No profile information was provided.

Recent public activity

  1. comment
    Comment #46608524

    It does seem small at Anthropic scale. But instead of faulting them for contributing "so little", maybe we can point to the thousands of large companies that are doing nothing .

  2. comment
    Comment #46607307

    You really have no idea what you are talking about.

  3. comment
    Comment #46605122

    Yes, it could use more funding. Glad to see that Anthropic is helping. It's still not an either/or situation. The PSF would not be fulfilling their mission if they only funded pack…

  4. comment
    Comment #46605076

    > Also sponserships like "Pallets group ... Those are "fiscal sponsorships" meaning the PSF holds money for other organizations. The PSF is not funding Pallets (or Boston Python or…

  5. comment
    Comment #46604782

    OK, thanks for making your position clear. You disagree with some of the core mission of the PSF. Luckily you are in the minority and the PSF is carrying on.

  6. comment
    Comment #46604766

    I'm not sure how you got to "before" here. The PSF runs PyPI, organizes the Python Packaging Authority, supports sprints and standardization efforts, funds developers in residence …

  7. comment
    Comment #46604359

    I'm not sure what you are labeling as pet projects of leadership? Is there something the PSF is doing that you consider a pet project rather than part of their core mission?

  8. comment
    Comment #46603690

    Is it so hard to imagine that they do it because the PSF's work is important and they want to support them? All the AI labs depend hugely on the Python ecosystem and infrastructure…

  9. comment
    Comment #46603552

    Just to clarify: the NSF grant was refused because it required the PSF to abandon all DEI efforts, not just that the grant itself couldn't be used for DEI. Accepting the NSF grant …

  10. comment
  11. comment
    Comment #44722903

    Using multi-level Carlson Truchet tiles for half-toning images: https://nedbatchelder.com/blog/202208/truchet_images.html

  12. comment
    Comment #43745836

    I can't tell if you are agreeing with my post or disagreeing...

  13. comment
    Comment #40212124

    Python pickles are bytecode programs, but different bytecode than the Python bytecode compiled from .py files. https://docs.python.org/3/library/pickletools.html#pickletoo...

  14. comment
    Comment #40184356

    It does not surprise me that people shitpost calling an expert "moronic" without any counter arguments.

  15. comment
    Comment #40176438

    Classic: ask what the team does, and before getting an answer, decide that it doesn't make sense.

  16. comment
    Comment #39662903

    I don't know if it looks different, or what it looks different from. To me, it looks like it was designed in 1999 (which it may have been).

  17. comment
    Comment #39118763

    I was reacting to someone literally saying, "Everyone should learn C because it teaches you how computers really work." In my experience it's no an uncommon recommendation. Yes, pe…

  18. comment
    Comment #39118681

    Python itself only has one kind of argument passing (neither by-value or classic C++ by-reference), and nothing is copied. Library functions could make confusing choices, it's true…

  19. comment
    Comment #39118660

    My point wasn't that C wasn't hardware friendly. My point was that it doesn't teach you "how a computer really works". It teaches you a lower-level abstraction than Python does, bu…

  20. comment
    Comment #39118643

    Yes, but why do I need to know that as a Python programmer? What mistakes might I make if I don't know about it?

  21. comment
    Comment #39118554

    Yes, why do you ask?

  22. comment
    Comment #39118378

    Even assembly won't expose you to pipelining, cache misses, and branch prediction.

  23. comment
    Comment #39118367

    You'd think it was obvious, but people keep saying it. And there are commenters here disagreeing.

  24. comment
    Comment #39118283

    More like, you probably don't need to know about spark plugs, unless you want to fix your own car. The point of the post is that abstractions are inevitable and you choose your own…

  25. comment
    Comment #39118172

    Sure, I never said it was irrelevant or a waste of time. It can be useful and interesting. It's just not necessary, and it doesn't tell you how computers really work.