Top
Best
New

Posted by surprisetalk 6 hours ago

The TEMU-Fication of Software, Digital Goods and Services(xn--gckvb8fzb.com)
78 points | 58 commentspage 2
guhcampos 4 hours ago|
I have another weak correlation to TEMU to add.

I have never, ever, bought anything on TEMU, because anytime I open the website it gives me a gambling roulette for some supposed discount thing. I hate gambling, so everytime I see the roulette I just close the webpage and go do something else.

Well, the whole cheap-generated content craze feels basically like gambling to me to this point, too. Folks are just randomly generating content: books, videos, articles, even applications, and gambling that something will pay for itself.

So now we have Enshitification, Eemufication and Gamblification of the Human Society. Damn I might write something on Substack about that.

epiccoleman 4 hours ago||
The gambling roulette is triply annoying because it will inevitably start walking you through some flow where you're supposedly ending up with a big discount or free items or whatever-the-fuck. And if you're encountering it for the first time, you'll think "ah cool, i can get some cheap chinese gewgaws for free with the thing I actually wanted to buy." And then 10 minutes has gone by and 5 roulette spins and there's $400 worth of bullshit in your cart.

And the thing is, Temu - I was going to buy something from you. I saw an ad or whatever and thought "sure, I'll pay $13 for that keyboard." But then you get pulled into the dopamine labyrinth hell-realm and by the time you're out they've wasted 15 minutes of your time and you don't even remember what you came in for.

xp84 2 hours ago||
For sure, the ridiculous promo games are best skipped (when even possible to skip!!) as 99% of the time they're just that you win the right to get a discount on a future order based on this next order. And those discounts are always described as like "a $400 credit" ... when it's really the sum of "50 cents off of $5, $1.50 off of $10... $30 off $250" and so on, so you will have to place like 8 orders of increasingly hilarious value to "use" all of your "$400."

All that said, there have been a decent number of things that I bought from them which I've found incredibly useful. Just like, phone stands, ODBII reader, sticky notepads that look like Windows 95 Notepad windows, teeny tiny wireless earbuds I use while sleeping, etc.

andai 3 hours ago||
They appear to be targeting users with underdeveloped prefrontal cortex. I wonder what the intention behind that might be.
andai 3 hours ago||
> A hypothesis on the not-so-distant future ... in which most of what we consume gets cheaper, more abundant, and noticeably worse

Isn't that just true about most things over the past century or so? They left out "staggeringly uglier" though.

a1o 3 hours ago|
An exception is probably cars, they are better, more expensive but uglier too.
jerlam 2 hours ago||
Cars are slowly becoming subsidized by subscriptions and advertisements. And to some extent, costs of maintenance and gasoline.
opengrass 4 hours ago||
Why does Temu take the heat when Aliexpress has been around for years?
482937632992 51 minutes ago||
AliExpress also sells quality items, Temu exclusively ships trash.
cindyllm 47 minutes ago||
[dead]
eterm 4 hours ago|||
Because Temu pushed advertising hard and fast at the US market and it paid off in a big way.
galleywest200 4 hours ago|||
Temu had a Superbowl ad. Not sure AliExpress did that.
andai 3 hours ago||
Temu is Temu brand AliExpress.
matheusmoreira 4 hours ago||
"Human made" is not automatically better and we need to stop pretending that it is.

Here's an example:

https://news.ycombinator.com/item?id=18442941

NoGravitas 37 minutes ago||
Oracle's codebase got the way it is over several decades of human programmers and customers with changing needs and ambient technological environments. LLM code can get that way in a weekend.
stickfigure 2 hours ago|||
Hah, I love sharing that link too. But contemplate this: Give the Oracle 12 engineering culture an unlimited token budget, do you think the code will get better or worse?

Based on what I've seen in industry, I think the answer could be very likely worse. They'll generate bad code at an even faster rate, and very quickly nobody in the company will have any idea how anything works.

What this proves is that "human made" is not automatically good. Better is a complex question. LLMs have a magnifying affect on the quality of human decisions.

coldbrewed 3 hours ago|||
Show me a fully LLM-generated database with an implement that's clear, documented, and adequately bug free.

Codebases degenerate when the authors do not understand the system in which they operate and make changes that degrade the cohesion of the system as a whole. Humans do this all the time; at my company we had a 10k line lua function (within a 250k loc lua service) that grew through ten thousand point modifications. It's bad and humans caused it. Now, it's 15k lines of code and 10k lines of misleading slop comments.

LLMs do not go through the struggle of understanding and don't experience the distress of "wtf am I reading?" and don't experience the drive to make things less horrible for the next person. That suffering loop is how many codebases halt degradation and in the absence of suffering LLMs will pile bugs and rot endlessly.

matheusmoreira 1 hour ago|||
> we had a 10k line lua function that grew through ten thousand point modifications

> It's bad and humans caused it.

LLMs do the same thing. I review the code and interrogate the model about the bandaid fix it applied until the proper architectural solution becomes clear. Then the model implements the correct solution which usually involves some major refactoring.

> LLMs do not go through the struggle of understanding and don't experience the distress of "wtf am I reading?" and don't experience the drive to make things less horrible for the next person.

Of course not. That's the human's job.

And it's not every human either. Way too many humans are actually quite content to ship whatever works then go the hell home. Just a job after all.

dsign 2 hours ago||||
I was arguing with a colleague today that we will never have a reason to make our AIs autonomous and sentient. But now I can't stop imagining an AI startup meeting where somebody says "LLMs do not go through the struggle of understanding and don't experience the distress of "wtf am I reading?"" and the next second the technical founders jump in joy "...that's our way in! Let's outcompete the competition by inventing pain for AIs!"
htrp 5 minutes ago||
sounds like the torment Nexus, but someone else is being tormented.
alexpotato 1 hour ago|||
I've worked at many firms as a SRE/DevOps and have seen lots of human written code that fell into at least one or generally of the below patterns:

- 30+ committers on <5K LOC

- software is robust/rock solid but the code is essentially unreadable

- changes take a long time b/c there are no tests

Whenever folks mention that LLMs write buggy code I think of the above.

LunaSea 2 hours ago||
What you are describing is not bad software, it's complex, performant and software with a long lifetime.
matheusmoreira 1 hour ago||
> can't change a single line of code in the product without breaking 1000s of existing tests

> all held together with thousands of flags

> ridden with mysterious macros that one cannot decipher

> needs to understand the values and the effects of 20 different flag

> Sometimes 100s

> only reason why this product is still surviving and still works is due to literally millions of tests

> The fact that this product even works is nothing short of a miracle!

Sorry, but I can't think of any adjective for this mess other than just "bad". That's some truly industrial grade slop, and I hope whoever worked on that got paid handsomely for it.

seki285 3 hours ago|
You choose to consume bad media, not my problem.
____tom____ 3 hours ago|
Have you tried YouTube recently?

Simply FINDING good media becomes the problem. I have no interest in AI slop, but it's everywhere.

I don't choose to consume bad media, but finding good media is getting harder and harder.

seki285 3 hours ago|||
Fair, but I don't use YouTube as much anymore. Except for music and old videos it lost its purpose for me. I mostly rely on word of mouth now, a friend recommends me this art channel or that show. If I like it I forward it to another friend etc.

I still feel bad for what is happening though, it's wrong and anyone with our best interests in mind would agree generated content needs to be firewalled from the human internet.

stickfigure 1 hour ago|||
I use YouTube all the time and it's great.

Log in, pay for premium, and use the like and subscribe buttons liberally. Use the downvote button too. It learns.

My feed is really fantastic. Once a month or so I notice some AI slop (usually with a handful of views - clearly the algo testing something out). Thumbs down, problem solved.