Hacker Newsnew | past | comments | ask | show | jobs | submit | epiccoleman's commentslogin

This is super cool, I love the aesthetic. The biggest thing I want out of something like this is curation (and it seems like there's at least some degree of that happening here among the various categories).

Sometimes, it's nice to just sit down and watch something without needing to make repeated decisions about what's on.

I typically share your mindset, but I can see the appeal. There was something nice about the TV that just, ya know, already had something going when you turned it on. I spent many happy evenings in hazy basement rooms enjoying whatever Adult Swim decided was going to be on the TV that night.


I was getting my hair cut the other day and one of the guys at the barbershop was talking about how his wife bought a radio and it's nice to just have NPR going all the time instead of searching for a podcast or playlist. I love radio too but haven't listened much outside of my car since 2019. Back then I had a different work schedule and would regularly tune in to Science Friday and just have the radio going much of the day. Since 2019, I've moved 4 times, had roommates most of that time who wouldn't want the radio playing all day, and just never fully unpacked and haven't set up my stereo system. Mostly I've listened to podcasts on my phone and a Bluetooth speaker or earbuds. Radio is nice, I like it better than TV because it's less distracting to me. Those moving pictures mesmerize me and I find it difficult to look away, which was why I didn't even have a TV for half my adult life.

> it's nice to just have NPR going all the time

I used to do that but the shows repeat and at the top of the hour or sometimes multiple times they repeat the same news over and over. I get someone else might be tuning in and not have heard the latest news

Maybe there's some middle ground where instead of a stream it's on demand but continuous. So I go to videostream.npr.com and since it knows it's a single user it can push the news once and then just be shows.

That said, youtube autoplay is the basic concept, it just sucks at what it recommends.


I like that idea, almost like a prioritized queue of content - show me the stuff I'm sure to want to see first, and then just gimme whatever. In the context of NPR, the "stuff I'm sure to want to see" is probably just "the news." But maybe other platforms / distribution channels would have a more specific notion of what deserves my attention first.

I guess this is basically how TV worked in the pre-streaming days - the new episode of whatever hot series aired during the prime time slot, and lesser slots were filled with reruns / resyndicated stuff.


I miss this too, and sort of get it on airplanes where I almost never use my seat back screen and end up watching someone else's instead (yes there's no sound).

I chalk it up to overwhelming choices. Sometimes I just want to watch something but don't want to go through dozens of options and having decision anxiety.

Bonus is sometimes I discover something I never thought I would have liked.


> I chalk it up to overwhelming choices. Sometimes I just want to watch something but don't want to go through dozens of options and having decision anxiety.

This is by far the biggest annoyance with modern TV for me. If I've already decided on something I want to watch, it's obviously great to just be able to navigate to it and put it on on my schedule, to pause it, have no ads, etc.

But sometimes, for better or worse, I just want to plunk down on the couch and turn my brain off, and if I'm in that mode the last thing I want to do is try to find something worth watching on my own steam.

Like, Youtube is great! Yeah, there's a ton of crap, but there's so much on there that would entertain me and be a guilt-free, even edifying use of me time. But having to choose something new every 10-20 minutes? Actively managing a queue while watching stuff? That's - pardon my French - for the birds.


> Granting kids access to our own minercraft servers: My god, I felt dirty about what the other parents had to go through to enable that.

This is a hobby horse of mine to the point that coworkers probably wish I'd just stfu about Minecraft - but holy shit is it crazy how many different things you need to get right to get kids playing together.

I genuinely have no idea how parents without years of "navigating technical bullshit" experience ever manage to make it happen. Juggling Microsoft accounts, Nintendo accounts, menu-diving through one of 37 different account details pages , Xbox accounts, GamePass subscriptions - it's just fucking crazy!


I always wonder about this. I read most dialogs (as I do) but man, the sanity of most people must require that they just next next next this stuff right? Perhaps they even let their kids do it instead.

If you're using something like a fire tablet and you set them up as a kids account that's not how it works. If you next through everything your kid cannot play minecraft online, not even on your own little private server.

Getting an actual kids account to work online with minecraft involves setting the right permissions across 2-4 websites and 1-3 companies. I think it took me around 4 hours of trial and error to get it working.


I might be wrong about this, but at least in my experience you just can't "next next next." There's too much complexity!

I'm essentially the maintainer of a series of accounts for each kid, these days. Woe unto anyone without a password manager!


on open-source licensed code, no less


The terms of those licenses are still relevant...


My grandma made Platonically Ideal Pies, and I took up the art years ago. Mine, if I say so myself, are quite good, given that with Grandma's example I know what I'm shooting for.

I haven't made one for a few years, though - having a pie in my house is a recipe for me eating 5000 calories of pie and vanilla ice cream over the next few days.

When my grandma died a few years ago, I asked my aunts if I could have one of her pie pans. Apparently none of her other 17 grandkids thought to ask that - so I got all three (philistines!). Those basic metal pans are among my most cherished possessions.


KG: Anybody coulda wrote it, anybody coulda done that, one song, just one note

JB: Yeah but guess who did write it, me!

KG: Yeah but did you write this?

JB: Dude, I did, I told you to do the bendy every once in a while!

https://www.youtube.com/watch?v=TLvOLjHt4S0


I win. 1 to nothing!


I might be tilting at a strawman of your definition of vibe coding - apologies in advance if so.

But LLM-aided development is helping me get my hands dirty.

Last weekend, I encountered a bug in my Minecraft server. I run a small modded server for my kids and I to play on, and a contraption I was designing was doing something odd.

I pulled down the mod's codebase, the fabric-api codebase (one of the big modding APIs), and within an hour or so, I had diagnosed the bug and fixed it. Claude was essential in making this possible. Could I have potentially found the bug myself and fixed it? Almost certainly. Would I have bothered? Of course not. I'd have stuck a hopper between the mod block and the chest and just hacked it, and kept playing.

But, in the process of making this fix, and submitting the PR to fabric, I learned things that might make the next diagnosis or tweak that much easier.

Of course it took human judgment to find the bug, characterize it, test it in-game. And look! My first commit (basically fully written by Claude) took the wrong approach! [1]

Through the review process I learned that calling `toStack` wasn't the right approach, and that we should just add a `getMaxStackSize` to `ItemVariantImpl`. I got to read more of the codebase, I took the feedback on board, made a better commit (again, with Claude), and got the PR approved. [2]

They just merged the commit yesterday. Code that I wrote (or asked to have written, if we want to be picky) will end up on thousands of machines. Users will not encounter this issue. The Fabric team got a free bugfix. I learned things.

Now, again - is this a strawman of your point? Probably a little. It's not "vibe coding going straight to production." Review and discernment intervened to polish the commit, expertise of the Fabric devs was needed. Sending the original commit straight to "production" would have been less than ideal. (arguably better than leaving the bug unfixed, though!)

But having an LLM help doesn't have to mean that less understanding and instinct is built up. For this case, and for many other small things I've done, it just removed friction and schlep work that would otherwise have kept me from doing something useful.

This is, in my opinion, a very good thing!

[1]: https://github.com/FabricMC/fabric-api/pull/5220/changes/3e3...

[2]: https://github.com/FabricMC/fabric-api/pull/5220/changes


The ones that feel the most like they "get me" are probably Weird Studies and Very Bad Wizards. I'm a fan of Sam Harris's Making Sense podcast too.

When I want to dip into political news, I trust the Fifth Column guys to have fairly measured and reasonable takes with a vaguely libertarian bent. I have a handful of other political shows too from various perspectives of the aisle that I'll sometimes tune into when something big seems to be happening, but I generally don't consume much politics.

Also, I'd be remiss not to mention the excellent Knifepoint Horror, whose creator has been delivering exemplary horror short fiction of a very particular style for over a decade now. I always listen to those basically immediately after they come out.


I've got an Orwell book on my shelf whose title, at least, has the same thesis!

https://archive.org/details/AllArtIsPropagandaCriticalEssays...


At least in my experience, there's another mechanism at play: people aren't making it visible if AI is speeding them up. If AI means a bugfix card that would have taken a day takes 15 minutes, well, that's the work day sorted. Why pull another card instead of doing... something that isn't work?


Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: