Live data from Hacker News

I was right about dishwasher pods and now I can prove it [video]

youtube.com

381–390 of 504 posts

Re: I was right about dishwasher pods and now I can prove it [video]

#381

A few things that stood out to me: - One of the key factors in powder over pods in his prior videos was cost. Cheap powder runs about 6.6¢/oz. The brand he’s promoting is $1.11/oz, nearly 17x more expensive than traditional powder. When comparing per-load costs, Cascade pods are about 39.5¢ per load and the promoted powder is 58.5¢ per load, or 48% more costly than pods. The price to performance is terrible and could…

The price was also an immediate turn-off for me, and I really don't like he's advertising it. It feels like a product that is marked up crazy amounts, greenwashed with "profits get donated" (profits AFTER the people involved get their salaries, obviously). It feels like his channel suddenly changed to go into "let's make some money", carefully packaged in a "non-profit / charity" deal. Maybe I'm just overly pessimist…

A 2.8x price increase (compared to what I pay per tablet) for a product made and packaged in the US compared to a mass manufactured product made in a cheaper country by companies with thousands of other products and massive marketing departments seems completely normal.

The thing about Hank Green is that he has been doing this sort of stuff (good things) for long enough time that I don't have trouble believing that this stuff a: pays fair and not over inflated salaries, and b: all the profits really do go to charitable causes.

I also don't think Alec is getting paid per sale, maybe he got some kickback for the consultancy, no idea. He would be obligates to disclose if he was getting a kickback, so I guess well see. If he is lying about such an affiliation, these things have a good chance of bubbling up especially for a channel the size of his.

Re: I was right about dishwasher pods and now I can prove it [video]

#382
I do not own a dishwasher. I watched the full video. If i wanted practical dishwasher tips I wouldn't be watching a technology connections video. I also don't own a a1950s toaster, nor a 70s pinball machine. The point of these videos is entertainment and learning odd bits of knowledge.

Re: I was right about dishwasher pods and now I can prove it [video]

#383

Earlier quoted context omitted.

You mean you don't eat all your food? Disgraceful! Children starving in Africa etc.

I know you said this in jest, but I actually personally do try to not leave little pieces of food on my plate as it saves having to scrape it off later, but I've never even suggested to my wife that she do the same and even if my kids weren't only 3 and 5 years old, I don't think I'd bother asking them.

I’m so glad my wife and I are aligned on the manual rinse thing as I don’t think I could suffer silently. We’ve had enough silly disagreements about other things like how to properly load the dishwasher. After a few decades, she does it her way and I do it my way. The dishes come out clean for both of us so we both deal.

I think we both grew up in households that did full manual washes most of the time even though the dishwasher was there; it was reserved for special occasions like Thanksgiving or Christmas when there really was a lot of dishes.

But are you saying you force yourself to eat all your food, even if you are full or don’t like it, just to avoid scraping it into the trash bin?

Re: I was right about dishwasher pods and now I can prove it [video]

#384
post #371

Earlier quoted context omitted.

Well Citizen Kane is 119 minutes long should I summarize it for you? He dies and then Rosebud.

If I wanted a summary of Citizen Kane, I would expect it to include the ending, yes.

The value in the content is experiencing it.

The moment some long form content comes out we are all TikTok kids who want a five second summary.

Never mind the fact that YouTube provides a compete transcription that you can copy/paste and dump into an LLM, making this entire thread, as I mentioned before, pointless.

The people asking for a summary are lazy people who want to be spoon fed trivia dopamine hits.

Re: I was right about dishwasher pods and now I can prove it [video]

#385

Earlier quoted context omitted.

For long videos, I have a script that fetches the transcript using yt-dlp and pipes it to an LLM for keypoints. If the content sounds interesting, I watch it; if not, I save 45 minutes.

Mind sharing the script? It's becoming a big problem to me: people send me links to "must watch videos" but neither the title nor description nor subchapter titles tell me what it actually is about. In this particular case, it's spending 40 minutes of my life on something that could be explained in 4 sentences.

While attempting to write my own script, I found that there are many websites which offer YouTube summaries, which are probably an easier solution. For example (not affiliated) https://www.easemate.ai/video-summary It even allows you to ask questions about the transcript.

I also found a Python library for fetching YouTube video transcripts, but some issue mentioned that they got banned, so out of caution, I implemented my summary script as a JavaScript bookmarklet instead. It will probably break on the next YouTube update, so I am not sure how useful it is. Also, you have to set your own API key (and maybe URL). I used Groq (not to be confused with Grok), because it is free and very fast.

    javascript:(function(){
    var GROQ_API_KEY = "YOUR_API_KEY_HERE";

    var btn = [...document.querySelectorAll('button')].find(b => b.textContent.trim() === 'Show transcript');
    btn.click();

    function checkTranscriptAvailable(){
        var transcript = document.querySelector('[target-id="engagement-panel-searchable-transcript"]').innerText;
        console.log("transcript:", transcript.slice(0, 50));
        var length = transcript.replace(/\s/g, '').length;
        if (length > 100){
            fetch("https://api.groq.com/openai/v1/chat/completions", {
              method: "POST",
              headers: {
                "Authorization": "Bearer " + GROQ_API_KEY,
                "Content-Type": "application/json"
              },
              body: JSON.stringify({
                "model": "openai/gpt-oss-120b",
                "messages": [
                  {
                    "role": "user",
                    "content": [
                      {
                        "type": "text",
                        "text": "Briefly summarize this transcript:\n\n" + transcript,
                      },
                    ]
                  }
                ]
              })
            })
                .then(res => res.json())
                .then(data => alert(data.choices[0].message.content))
                .catch(err => alert(err));
        }else{
            setTimeout(checkTranscriptAvailable, 1000);
        }
    };

    checkTranscriptAvailable();

    })();

Re: I was right about dishwasher pods and now I can prove it [video]

#386
post #247
post #218

Earlier quoted context omitted.

as someone who's gone down the rabbit hole of dishwasher home repair, I've created more problems than I've solved. I agree that maintenance is important, but when you get into replacing the seals and gaskets that can result in water flooding into your kitchen, i decided recently to draw a line. I'm now the proud owner of some fancy leak detection / moisture detection IOS products as a result. (and yes I'm aware there…

Put a drop of food colour on a paper towel. Let dry. Then leave that where drips might happen. The colour will run. I leave it for a few days after every plumbing repair.

Funny, I use toilet paper and check if it gets wrinkled, but I like your method better.

Re: I was right about dishwasher pods and now I can prove it [video]

#387
post #384

Earlier quoted context omitted.

If I wanted a summary of Citizen Kane, I would expect it to include the ending, yes.

The value in the content is experiencing it. The moment some long form content comes out we are all TikTok kids who want a five second summary. Never mind the fact that YouTube provides a compete transcription that you can copy/paste and dump into an LLM, making this entire thread, as I mentioned before, pointless. The people asking for a summary are lazy people who want to be spoon fed trivia dopamine hits.

To some audiences, sure. Obviously the other guy gets value out of the content of the content, not just 'experiencing it'

That's EXACTLY what he's doing, right? Get the transcript, pipe to an LLM, determine if it's worth his time. You're on HN, we like to use scripts to automate those sorts of things.

Nobody is demanding a summary from the OP. The AUDIENCE MEMBER went out of his way to determine if the content is worth his time. Its no different than checking reviews before you watch a movie

Re: I was right about dishwasher pods and now I can prove it [video]

#388
post #371

Earlier quoted context omitted.

Wanting a summary that includes the results of the research of the 45 minute video doesn't seem pointless...

Well Citizen Kane is 119 minutes long should I summarize it for you? He dies and then Rosebud.

woah there, didn't watch it yet, how about a spoiler warning?

Re: I was right about dishwasher pods and now I can prove it [video]

#389
post #93

Earlier quoted context omitted.

even the cheap costco pods are 3x the cost of powder. And his point is that the pods undermine the dishwasher because they don't let you control when and how much detergent is deployed during the multiple washing cycles. powder deploys during rinse and wash. pods deploy only during wash (or only rinse if people put the pods into the tray, which is common) And the dishwashers are designed with a hardness index in the…

But the multi-pod strategy means you can give the machine soap to use in various cycles. Put some in the little flap, and some just in with the dishes. I'm not sure if my machine even has a hardness marking, but when I used liquid dishwasher soap, I simply filled up the compartment every time. As to the cost, yes it's 3X, but if you're reading this and you have a Costco membership, it's still a rounding error. Pods j…

Anything sounds good if you oversell its advantages and undersell its disadvantages.

I find pods messy (they can stick together and break open) and powder simpler. Powder I store in a glass container and pour directly from that; never have to touch it directly. Occasionally I’ll have to push a bit of lose powder into the sink during transfer from box to container.

Powder is cheaper. Sure I save pennies per load but I don’t know why I would waste pennies.

Pods are overdosed for my washer and water and leave residue. I don’t want to use more of them. Powder lets me dose a load with much more precision anyway.

Re: I was right about dishwasher pods and now I can prove it [video]

#390

I do not own a dishwasher. I watched the full video. If i wanted practical dishwasher tips I wouldn't be watching a technology connections video. I also don't own a a1950s toaster, nor a 70s pinball machine. The point of these videos is entertainment and learning odd bits of knowledge.

[deleted]
Post reply on HN