Readit News logoReadit News
crm9125 commented on Vibe coding the MIT course catalog   stackdiver.com/posts/vibe... · Posted by u/low_tech_punk
mmmlinux · a month ago
My understanding is you're allowed to automate the discovery of classes as much as you want. but as soon as you try to automate signing up for them you're gonna get in trouble.
crm9125 · a month ago
I guess they don't want my money...
crm9125 commented on The Bluesky Dictionary   avibagla.com/blueskydicti... · Posted by u/gaws
tough · a month ago
Words We Haven't Seen

- Search unseen words

made me chuckle

crm9125 · a month ago
I've found content for all of my future skeets.
crm9125 commented on If nothing is curated, how do we find things   tadaima.bearblog.dev/if-n... · Posted by u/nivethan
jedberg · 4 months ago
I've been saying this forever!! When I was a teen in the 90s, I got new music from the radio. The music director picked 40ish songs a week and that's what we listened to. I still like to listen to the radio for the curation.

I even wrote a program to scrape the websites of my favorite radio stations (well the stations of my favorite music directors) and add the songs to a Spotify playlist.

Whenever I meet a teenager today, one of the first things I ask them is "what apps do you use most", but the next thing I ask is "how do you find new music".

The answer is usually something like "I don't know, I just sort of find stuff I guess?". Some have said they follow influencer's playlists on YouTube or Spotify, which I guess is the new version of the music director? Or they just get it from Spotify playlists.

But what's missing is a shared cultural experience. In the 90s, everyone at my school knew those 40 songs that the local stations played. They might know other stuff too, but you couldn't avoid those top songs. It's not the same today. And it's the same problem for visual media. We all knew the top movies at the theater, because it was the only place to see new movies. And we all knew the top TV shows because they were only on four major networks.

Kids don't have a shared cultural experience like I did.

crm9125 · 4 months ago
I think kids nowadays likely still have a shared cultural experience like we did when we were young. We're just, separated from that experience. Just like our parents were when we were young.

Maybe they can't (or don't want to, out of fear of being embarrassed or feeling uncool/uncertain perhaps) explain to you how they find things, but when they are hanging out with their friends and are talking about similar interests, discovering they know about similar things, and sharing things they know about that their friends don't yet/learning similar things from their friends, that's where the magic happens.

crm9125 commented on Someone at YouTube needs glasses   jayd.ml/2025/04/30/someon... · Posted by u/jaydenmilne
behringer · 4 months ago
Careful there are programmers here watching. Pretend to like the bird.
crm9125 · 4 months ago
Good thing they're fucking blind I guess.
crm9125 commented on Senior Developer Skills in the AI Age   manuel.kiessling.net/2025... · Posted by u/briankelly
carpo · 5 months ago
I'm the complete opposite. After being burnt out and feeling an almost physical repulsion to starting anything new, using AI has renewed my passion. I've almost finished a side project I started 4 weeks ago and it's been awesome. Used AI from the beginning for a Desktop app with a framework I'd never heard of before and the learning curve is almost non-existent. To be able to get the boring things done in minutes is amazing.
crm9125 · 5 months ago
Similar sentiment here. I taught myself python a decade ago after college, and used it in side projects, during my masters degree, in a few work projects. So it's been handy, but also required quite a bit of time and effort to learn.

But I've been using Claude to help with all kinds of side projects. One recently was to help create and refine some python code to take the latest Wikipedia zipped XML file and transform/load it locally into a PostgreSQL DB. The initial iteration of the code took ~16 hours to unzip, process, and load into the database. I wanted it to be faster.

I don't know how to use multiple processes/multi-threading, but after some prompting, iterating, and persistent negotiations with Claude to refine the code (and an SSD upgrade) I can go from the 24gb zip file to all cleaned/transformed data in the DB in about 2.5 hours. Feels good man.

Do I need to know exactly what's happening in the code (or at lowers levels, abstracted from me) to make it faster? not really. Could someone who was more skilled, that knew more about multi-threading, or other faster programming languages, etc..., make it even faster? probably. Is the code dog shit? it may not be production ready, but it works for me, and is clean enough. Someone who better knew what they were doing could work with it to make it even better.

I feel like LLMs are great for brainstorming, idea generation, initial iterations. And in general can get you 80%+ the way to your goal, almost no matter what it is, much faster than any other method.

crm9125 commented on Project Aardvark: reimagining AI weather prediction   turing.ac.uk/blog/project... · Posted by u/bentobean
abdullahkhalids · 5 months ago
How robust will ML models be in the world of rapid climate change, where the past no longer predicts the future?
crm9125 · 5 months ago
"Tomorrow will be partly cloudy, with a chance of hurricane."
crm9125 commented on Claude 3.7 Sonnet and Claude Code   anthropic.com/news/claude... · Posted by u/bakugo
j_maffe · 6 months ago
It redid half of my BSc thesis in less than 30s :|

https://claude.ai/share/ed8a0e55-633f-4056-ba70-772ab5f5a08b

edit: Here's the output figure https://i.imgur.com/0c65Xfk.png

edit 2: Gemini Flash 2 failed miserably https://g.co/gemini/share/10437164edd0

crm9125 · 6 months ago
Yes usually most of the topics covered in undergraduate studies are well documented and understood and therefore will likely be part of the training data of the AI.

Once you get to graduate studies that's where the material coverage is a little more sparse/niche (though usually still not groundbreaking), and for a PhD. coverage is mostly non-existent since the point is to expand upon current knowledge within the field and many topics are being explored for the first time.

crm9125 commented on Did Elon Musk Appear to Sieg Heil at Trump Inauguration?   jpost.com/international/a... · Posted by u/sundaeofshock
verdverm · 7 months ago
Mostly like because of the comments likely to (and already) ensue

Also people just don't want to hear about it on HN when it is all over the media already

crm9125 · 7 months ago
Regardless, this should be EVERYWHERE.

We used to hang these guys.

crm9125 commented on How types make hard problems easy   mayhul.com/posts/type-dri... · Posted by u/tlf
digging · 8 months ago
Honestly, yes, I'm curious to hear that perspective. The negative responses to "TypeScript makes JS programming fun and easy" are always pretty ill-formed, and I really want to know if there's a genuine argument against it in any complex application. (My suspicion is that no, there is not, but I'm trying to be generous and curious.)
crm9125 · 8 months ago
I'm not trained as a programmer/software engineer, but this was ChatGPT's response:

1. Added Boilerplate and Ceremony: Simple tasks may require extra type declarations and structures, adding “ceremony” that feels unnecessary for quick one-off solutions.

2. Rigid Type Constraints: Combining different data types or working with unclear data shapes can force complex type solutions, even for simple logic, due to strict compilation rules.

3. Complex Type Definitions for Simple Data: Handling semi-structured data (like JSON) requires elaborate type definitions and parsing, where dynamically typed languages let you manipulate data directly.

4. Refactoring Overhead: Small changes in data types can cause widespread refactoring, turning minor edits into larger efforts compared to flexible, dynamically typed environments.

5. Complexity of Advanced Type Systems: Powerful type features can overwhelm trivial tasks, making a few lines of code in a dynamic language balloon into complex type arguments and compiler hints.

u/crm9125

KarmaCake day58July 31, 2017View Original