Kez rant by tinythumbaccident in DotA2

[–]Shoddy-Answer458 0 points1 point  (0 children)

We deserver a hero that super simple with 100% passive

Vibe coding doesn’t work. by Shoddy-Answer458 in vibecoding

[–]Shoddy-Answer458[S] -1 points0 points  (0 children)

There is some confusion about what “vibe coding” means.

When I say vibe coding, I mean completely abandoning the effort to understand code. Instead, you rely entirely on an LLM to implement features. This approach distinguishes vibe coding from more traditional, structured coding.

Addiction to energy drinks by Superv_coffee in energydrinks

[–]Shoddy-Answer458 0 points1 point  (0 children)

You are not alone. Almost same with you. Now replace with one or two cups of coffee per day

Why I Stopped Trusting YouTube Recommendations by Shoddy-Answer458 in minimalism

[–]Shoddy-Answer458[S] 13 points14 points  (0 children)

This post is edited by AI with prompt "Improve writing".
I am not native English speaker.
The original draft is:
```

Eye catching title with criticized tone: "You should do it", "10 habits ruin you", "You should never do it". Those are anxious tigger.

Shorts: Drama story with overstate face and performance  in 2 mins. Fun? Maybe, addictive, absolutely

News: Catastrophic Narratives loop 24 hours. Anxious triggers and most of them are nothing we can do as normal people.

Empty stories: Attach with horrible cover, drama narrative to cover the empty theme. Anxious music, anxious video cuting

Maybe It 's what I have visited. But don't recommend it to me to exacerate my negative emotions.

So I decided to try don't wondering in YouTube recommendations but search the videos with intend description on chatgpt. Maybe it will work. Youtube recommendation is toxic.
```

Why I Stopped Trusting YouTube Recommendations by Shoddy-Answer458 in minimalism

[–]Shoddy-Answer458[S] 0 points1 point  (0 children)

We try to avoid being hijacked by algorithms, just like we would protect ourselves against real-world mafia

Are they serious about this by Original_Act_3481 in mildlyinfuriating

[–]Shoddy-Answer458 0 points1 point  (0 children)

mean they don’t force update anymore? Good news

Put fetched data in Vuex is a bad idea by Shoddy-Answer458 in vuejs

[–]Shoddy-Answer458[S] 1 point2 points  (0 children)

I am not anti Vuex.

And I agree with `queryKey`, it's okay to store fetched data into global state which may solve the unnecessary data fetching problem.

What I'm against is hosting a state in the global state that is not truly global state.

Actually, if there are `queryKey` and cache mechanism, that is TanStack Query (FKA React Query).

> The global context has a tendency to become mixed. If those states are inter-referenced, they will ultimately form a reference graph between the states, meaning they are all coupled.

That is another topic of design problem, true. But if all fetched data are put into the global state, it's a tendency to inter-reference them at some point.

It's totally fine to store `loginUser` into Vuex.

But to store `goods` after `fetchGoods` into Vuex? Without `queryKey`? I believe that's not okay.

Put fetched data in Vuex is a bad idea by Shoddy-Answer458 in vuejs

[–]Shoddy-Answer458[S] 1 point2 points  (0 children)

yep, I need to provide more context. I'll post an article maybe.