Viewing profile — nedbat
nedbat
HN member- Joined
- Fri, Feb 01, 2013, 7:45 PM UTC
- HN karma
- 365
- Public activity
- 109 items
- HN profile
- View on Hacker News ↗
About nedbat
No profile information was provided.
Recent public activity
-
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 .
-
comment
Comment #46607307
You really have no idea what you are talking about.
-
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…
-
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…
-
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.
-
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 …
-
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?
-
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…
-
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 …
- comment
-
comment
Comment #44722903
Using multi-level Carlson Truchet tiles for half-toning images: https://nedbatchelder.com/blog/202208/truchet_images.html
-
comment
Comment #43745836
I can't tell if you are agreeing with my post or disagreeing...
-
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...
-
comment
Comment #40184356
It does not surprise me that people shitpost calling an expert "moronic" without any counter arguments.
-
comment
Comment #40176438
Classic: ask what the team does, and before getting an answer, decide that it doesn't make sense.
-
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).
-
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…
-
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…
-
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…
-
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?
-
comment
Comment #39118554
Yes, why do you ask?
-
comment
Comment #39118378
Even assembly won't expose you to pipelining, cache misses, and branch prediction.
-
comment
Comment #39118367
You'd think it was obvious, but people keep saying it. And there are commenters here disagreeing.
-
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…
-
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.