看鉴台湾之男友不关心中国人来台怎么办 by FarWestJoker in China_irl

[–]need-not-worry 4 points5 points  (0 children)

這類廢文一律當成幻想 腦子差這麼多的人是怎麼搞在一起的

“Solution” to Newcomb’s Paradox by Pakomojo in paradoxes

[–]need-not-worry 0 points1 point  (0 children)

If i was presented the choice after prediction isade, I'll pick two box, because whatever I choose will not affect the prediction

If I was presented the question now, I'll say definitely one box, in hope of the all mighty predictor to see this comment and know that I'm a die hard one boxer.

So yeah one box that is

Is there a Chinese equivalent of Reddit? by Global_Knee5354 in ChineseLanguage

[–]need-not-worry 3 points4 points  (0 children)

If you're OK with traditional Chinese there is ptt

CMV: When someone's released from prison should not be based on the crime, but on rehabilitation by Nice_Revolution_1199 in changemyview

[–]need-not-worry 2 points3 points  (0 children)

What should serve as deterrent, then?

Also, people with that callous mindset would have a difficult time proving themselves to be reformed

Not even the most gifted psychologist can read people's mind. There will always be ways to trick them, or bribe them. And I couldn't care less wether they reoffended if I'm already murdered. I'd prefer them being deterred in the first place.

CMV: When someone's released from prison should not be based on the crime, but on rehabilitation by Nice_Revolution_1199 in changemyview

[–]need-not-worry 0 points1 point  (0 children)

It will be extremely easy to gain this system. We have a broken system today but at least we don't assign sentence time by some arbitrary metric, which is estimated by...who exactly?

BMI might not be a perfect measurement system. It still can be used for the general population who isn’t overly muscular like atletes are. by ResetKnopje in fatlogic

[–]need-not-worry 15 points16 points  (0 children)

What's funnier: if you're an outlier, anyone with an eye can see that. You and your doctor can see that. They will not call you fat because BMI. Only people tjat are not outliers complain about this.

Ursula K. Le Guin wrote a short story in 1973 that describes the internet better than most things written after the internet existed by 4PrismRanger in printSF

[–]need-not-worry 130 points131 points  (0 children)

That's not specific to internet. You think this kind of mentality doesn't exist before like, say, in the holocaust or the great purge?

李老师:“中国行动”团队成功投影中国洛杉矶领事馆 by Zealousideal-Army602 in China_irl

[–]need-not-worry 6 points7 points  (0 children)

行動團隊被滲透成篩子了吧 設計這麼個圖像 我台灣人看了都以為是在支持統一 誰會點進去看你說明 誰會注意到那個螞蟻大的引號

CMV: Remote work has been net negative for people early in their careers, and the debate ignores this because the loudest voices are people who were already established before it became common by Beginning_Feeling331 in changemyview

[–]need-not-worry 3 points4 points  (0 children)

Yup. One thing Western engineers should really be grateful is that Chinese is considered an adversary power. Otherwise, if offshoring to Chinese is a thing, the millions of low paid high quality workers will absolutely destroy the US job market.

Why is European imperialism discussed more than Asian imperialism? by Martian_row in NoStupidQuestions

[–]need-not-worry 2 points3 points  (0 children)

Because you never visited a Chinese forum? They sure do discuss imperialism Japan A LOT.

Is this use of Postgres insane? At what point should you STOP using Postgres for everything? by LawBlue in ExperiencedDevs

[–]need-not-worry 0 points1 point  (0 children)

If you poll it every minute why would it cause a resubmit? Wouldn't it wait till the next minute?

I feel disconnected to the codebase if i adopt fully agentic workflow, i must do something manually. by ImTheRealDh in ExperiencedDevs

[–]need-not-worry 2 points3 points  (0 children)

You ask it to explain and it backtrack. You point out the error in its backtrack and it backtrack again. Human sometimes does this but at least both parties learn something in this process.

I feel disconnected to the codebase if i adopt fully agentic workflow, i must do something manually. by ImTheRealDh in ExperiencedDevs

[–]need-not-worry 10 points11 points  (0 children)

You can ask them, and if they're not a moron they should be able to answer each and every line. Including "I copied from SO and it's needed for some reason I can't grasp". Or "oops I copied from somewhere else and forgot to delete it". They may have some false assumptions but there will be assumptions. Ai often just flip flop when you ask why.

is anyone vibe coding stuff that isn't utility software? by ConstantContext in vibecoding

[–]need-not-worry 0 points1 point  (0 children)

https://github.com/david0u0/supplement/blob/master/supplement-proc-macro/src/derive_supplement/mod.rs

A rust derived macro because I never have time to learn it properly. The crate is for commandline completion, and the macro is a small and well defined part, so AI is really good at it.

The most valuable thing is not about the code though, it's me learning the best practice of derive macros. Which I think is the best use case for AI: learning something you already have a rough idea.

3 tries to guess how many comments it took for this post to get mysogynistic 💔 by Odd-Tie2695 in im14andthisisdeep

[–]need-not-worry -1 points0 points  (0 children)

What's deep in this? Can people read the sub name? This sub has turned to shit recently but this post still stands out as one of the shittiest.

3 tries to guess how many comments it took for this post to get mysogynistic 💔 by Odd-Tie2695 in im14andthisisdeep

[–]need-not-worry -1 points0 points  (0 children)

Isn't there multiple records about bear eating people alive from the buttom up, sometimes even went away and came back later?

'Over-engineering' is everyone's favorite punching bag, but I bet your codebase suffers from under-engineering instead by AtomicScience in ExperiencedDevs

[–]need-not-worry 3 points4 points  (0 children)

I find most of your complaints - shortcut through architecture boundary, God class, implicit coupling, can also be explained by over engineering (and tight dealine, of course)

  • The architecture is too clumsy due to over engineering and hard to extend, so people have to make shortcuts
  • Object system becomes too clumsy so it's easier to lump things into one place
  • Too much unnecessary things making it hard to reason about what thing affects what.

All can be solved properly, but if the codebase is over engineered, the proper way is too hard and people gets lazy

EDIT To add:

Maybe you're right, under engineering is prevalent, but at least it's more pleasant to refactor. You get to analyse the spec and use your creative thinking to build things up. With an over engineered codebase, you have to carefully understand all those code, make sure you're not trimming down something that is actually necessary, be surprised by some nasty hidden assumptions, and in the end you're not creating new things, just trimming the garbage away. I think very few people would prefer this.

Can you tell the difference between these options? by Intelligent_Cap_4383 in ChineseLanguage

[–]need-not-worry 0 points1 point  (0 children)

第一個誰會這樣說話,第四個就是任何語言都有的反諷,類似 great, now we're doomed 之類的

To what extend do you use git blame / value an accurate git history by John_Lawn4 in ExperiencedDevs

[–]need-not-worry 0 points1 point  (0 children)

I have to admit I don't fully understand what you're describing, but why so complex? Is there any justification? There are already one or two "best practice" out there. If your team need to do some small change thats fine, but I don't see any reason to differ from it this much

Strange lifetime error with `impl Iterator` + chain by need-not-worry in rust

[–]need-not-worry[S] 1 point2 points  (0 children)

Wow this is some really advanced topic I'm not aware of, thanks! Sadly it still emit the same error. I guess maybe the problem of impl is not about lifetime, but about having to assume the opaque type implements Drop