For a while, it felt like I'm in a minority when I was saying that it can be a useful tool for certain things but it's not the magic that the sales guys are saying it is. Instead, all the hype and the "get rid of your programmers" messaging made it into this provocative issue.
HN was not immune to this phenomenon with certain HN accounts playing an active part in this. LLMs are/were supposed to be an iteration of machine learning/AI tools in general, instead they became a religion.
Can you expand on this? Which ethnicity/culture is in which class?
Just too risky in this economy, and doesn't help every company is "AI for X" which isn't that appealing and asks for office time.
I'll stick with my fully remote job.
You using TikTok earnestly would result in a feed vastly different from your kids anyway.
We're not native English speakers, and often (even now!) streaming sites don't have Spanish subtitles unless it's a blockbuster movie or show. DVDs always had Spanish subtitles, or at least it was easy to check if they did.
As for me, they let me explore all kinds of film before I discovered torrenting (and even after, for convenience). People remember 2010s Netflix for having everything on streaming, but the DVD service actually had everything! Criterion films, foreign films, random compilations of experimental film. A lot of went over my head but shaped who I am now.
And yeah in an age where almost every online delivery took almost a week, watching a Netflix DVD and getting a new one two or three days later was great.
Now the problem is quality and production. Studios don't have to be very selective at all any more so median quality has gone way down. Streaming platforms have a ton of content and terrible discovery which means there are huge volumes of mid content and a few gems that unless they are popular are impossible to find.
Publishing had a huge demographic change and is suffering from a different kind of bias than in decades past which has the same kind of diversity-limiting effect, just substituting different groups being promoted and left behind.
Culturally all over media production there's also a problem with a difficult to make distinction – "trying to be diverse" vs "actual diversity" and the imbalance is pushing people into silos: politically, culturally, and in every other way.
I don't have the amount of time I used to to do that stuff either but the curiosity of it has never died and if I had more time I'd still do it.
If I ever lost that drive I think I'd rather be dead.
I say thus not to dampen your enthusiasm, but rather to encourage you to enjoy it to the maximum while it lasts.
Everything has a season and in that season it can seem terribly important. Perhaps an activity, or a favorite sports team, or a group of friends.
Some of that remains forever, some of it gets deferred as other things happen. It's part of life, we grow, we change, the world around us changes.
It's not that the drive is lost, it's just that it manifests in different ways, different activities, different challenges.
When you see a post like yours in 30 years time, remember this moment, and raise a glass :)
I wonder how many others had this exact same thought, before they lost their "hacker" drive while also preferring to continue living.
This may shock you, but people's interests and desires can evolve over time, even when those people don't expect them to evolve.
This is all good and natural, if it’s organic and not growing it’s probably not alive.
Ever since blogs have had comments sections, the set of people who are too lazy to make their own blogs, have been holding forth (writing, essentially, their own blog posts) in other people's blogs' comment sections.
Heck, I'm sure people were doing it on Usenet and all-subscribers-can-post mailing lists, too — using the "Reply" button on a message to mean "I want to create a new top-level discussion that quotes/references this existing discussion" rather than "I want to post something that the people already participating in this existing discussion will understand as contributing to that discussion."
In all these cases, the person doing this thinks that a comment/reply is better than a new top-level post, because the statement they're making requires context, and that context is only provided by reading the posts the statement is replying to / commenting on.
Of course, this being the internet, there is a thing called a hyperlink that could be used to add context just as well... but what there is not, is any kind of established etiquette that encourages people to do that. (Remember at some point in elementary school, learning the etiquette around writing a letter? Why don't schools teach the equivalent for writing a blog post/comment? It'd be far more relevant these days...)
Also, for some reason, social networks all have "reply" / "quote" actions (intended for engaging with the post/comment, and so showing up as "reactions" to the post/comment, or with your reply nested under the post/comment, etc); but no social network AFAIK has a "go off on a tangent" action (which would give you a message composer for a new top-level post, pre-filled with a cited quote of the post you were just looking at, but without your post being linked to that post on the response-tree level.) Instead, you always have to manually dig out the URL of the thing you want to cite, and manually cite it in your new post. I wonder why...
On Usenet, if you were altering the general SUBJECT of a post, you'd reply to a comment BY PREPENDING the NEW TITLE/SUMMARY of your post to the PREVIOUS TITLE of the post to indicate that you HAD changed the GENERAL SUBJECT of the post to something else AND end your NEW TITLE with "Was..." to prefix the previous title, e.g. "Hackintosh is Almost Dead" => "My Changing Hobby Habits Was: Hackintosh is Almost Dead"
I was merely saying that we shouldn't see this as bad, it is the natural way of things. Everything that has a beginning has an end. Raise a glass to remember hackintosh, but don't mourn it.
They are also, as you noted, expressing a very common opinion.
Now I’m off to spend my Saturday not tinkering, because there’s a bigger world out there and I’ve done my time.
Most often the highest rated posts on HN are from 40+ year olds who don't discuss the post at hand, they'll post a hyper-specific nostalgic story from their youth on something that is tangentially related to the post.
In fact, the older the better. If your childhood anecdote is from the 70s or 80s you're a god.
HN has a lot of "wish I was a tech CEO" types, plus the general dose of contrarianism that runs deep in this place.
https://docs.python.org/3/tutorial/index.html
https://docs.python.org/3/library/index.html
Whenever a new version is released, I read its What's New documentation.
Beyond that, I like to read source code, both for the stdlib and popular third-party packages. This advice generally applies when I'm learning any new language or re-familiarizing myself with one, not just Python.
Python official docs are not completely horrible, but compared to most other popular languages (Kotlin, Scala, Rust, Go at least), the Python official docs are kind of meh.
I suppose Python docs beat C and C++ which do not have official docs besides the spec. (not counting K&R and Bjarne's books).
Also I guess Javascript does not have official docs (ie MDN is not official)
Also just reading Norvig’s annual Advent of Code implementations usually provides some insight on how to write elegant and concise Python code.
* Serious Python (https://nostarch.com/seriouspython) — deployment, scalability, testing, and more
* Practices of the Python Pro (https://www.manning.com/books/practices-of-the-python-pro) — learn to design professional-level, clean, easily maintainable software at scale, includes examples for software development best practices
* Intuitive Python (https://pragprog.com/titles/dmpython/intuitive-python/) — productive development for projects that last
* Advanced Python Mastery (https://github.com/dabeaz-course/python-mastery) — exercise-driven course on Advanced Python Programming that was battle-tested several hundred times on the corporate-training circuit for more than a decade