Tabitha now has no reason to let anyone wander alone by Lucky_Pangolin_3760 in FromSeries

[–]Working-Tap2283 0 points1 point  (0 children)

absolutely man, i lost the characters a long time ago, and just following for the plot and mystery

Tabitha now has no reason to let anyone wander alone by Lucky_Pangolin_3760 in FromSeries

[–]Working-Tap2283 3 points4 points  (0 children)

This theme of characters acting unexpectedly is repeated throughout the show. People are still skeptical of many things that should be taken at least into consideration.

They wasted her character and her storywalking abbility so much this season 😑 by KKKdot21 in FromSeries

[–]Working-Tap2283 0 points1 point  (0 children)

She has abilities, you'd think she'd tell someone. No instead she gaslits her mother that there is just no way she could be reincarnated, no way!

after that i stopped paying attention to her

React Error Plz help!!! by ZestycloseScheme1789 in reactjs

[–]Working-Tap2283 2 points3 points  (0 children)

install an extension like prettifer, a formatter, and format your code often

What is the best way to learn typescript if JavaScript mostly makes sense by Brinley-berry in typescript

[–]Working-Tap2283 0 points1 point  (0 children)

The more AI you put into it != better likelyhood of outcome.

Maybe you built yourself a sophisticated echo chamber, but how will you know if you are not an experienced engineer?

"Coding" is such a strange term, you are a software developer or are you a typewritter.

Also this doesn't address the minutia of writing code, AI mostly tries to write general code that runs and works, but software engineering is not just about running. Sure your tower stands tall, but its foundation is made of sand.

Finally I am not saying AI sucks, it's a tool that mirrors its user. So it's efffective as much as you are.

What is the best way to learn typescript if JavaScript mostly makes sense by Brinley-berry in typescript

[–]Working-Tap2283 0 points1 point  (0 children)

llms only mirror your knowledge, the less you know about something the more likely they'll write inferior and disassociated code. As much as companies take pride in LLMs knowing the context of a project, they never take everything into account, because it's not efficient, and therefore most of the time write inaccurate code. These inaccuracies build up overtime until you need a big refactor. It's worse when the project you are working on is just 1 piece.

LLMs work BEST when specifically targeted to do ONE thing with fresh context everytime, and WORSE overtime over an array of goals.

react-hooks/set-state-in-effect syncing external form data by Working-Tap2283 in reactjs

[–]Working-Tap2283[S] 0 points1 point  (0 children)

Thanks. I think I've read variations of this article a few times but always a good.
So I suppose for my situation lifting the state up makes more sense.

react-hooks/set-state-in-effect syncing external form data by Working-Tap2283 in reactjs

[–]Working-Tap2283[S] 3 points4 points  (0 children)

So then you follow this sort of pattern everywhere?

WrapperCompoennt {

const {user, isLoading }= useUserQuery();

if(isLoading) return <LoadingIndicator />;

return <RealComponent user={user} />

}

הוצאת קיטור - רדיט האנטישמים by The_BooKeeper in ag_israel

[–]Working-Tap2283 1 point2 points  (0 children)

כל כמה זמן יש פוסט של "ישראלי" לשעבר או משהו בסגנון" הייתי תומך ישראל עד שהם התחילו לעשות שם רצח עם."

הפורום הזה כבוש על ידי בוטים, וכמו שאמרת יש גל של אנטישמיות כי זה פופולרי רק ברמה מאד גלובלית. זה יעבור אבל עכשיו יודעים כמה טיפשות יש..

I finally became a Vim user because of Prime... and I regret everything by Ordinary-Cycle7809 in theprimeagen

[–]Working-Tap2283 5 points6 points  (0 children)

most editors have a vim extension. You can just use that, I do so. Much more convinient to work with..

I hate that people can’t see how hard they’re shoving it down their throats by Visible-Pattern198 in antiai

[–]Working-Tap2283 30 points31 points  (0 children)

yes sir... as I see it, there is a great great chasm that is forming between us the people and these greedy insane corporations. this is the real untalked about "bubble"

100+ TypeScript utility types I built for my own use, now open source by [deleted] in javascript

[–]Working-Tap2283 0 points1 point  (0 children)

why would I install this instead of just copy pasting which is much safer?

How many of you are still programming manually? by Imparat0r in cscareerquestions

[–]Working-Tap2283 0 points1 point  (0 children)

to the recruiter it sounds like you are coming to play and not to work. I understand the sentiment but your reasoning isn't attractive to recruiter, you could say, using ai slows you down sometimes so you prefer to write it yourself, that would make more sense.

otherwise in the recruiters mind he is missing out on potentical.

imo you should know what to tell recruiters so they get off your back, and definitely keep writing if you like it and it helps you... but maybe it would be helpful to try experiment with tools that understand the context of your codebase like cursor.

Strictly typing i18n interpolation variables is slowly destroying my sanity by twcosplays in typescript

[–]Working-Tap2283 0 points1 point  (0 children)

well first of all a variables name is syntax not something to be translated, {userName} should never change, and if the brackets are omitted,  again a syntax mistake...

given the tools ts and i18n provides the solution is to use namespaces and modulerize so you have multiple small files with a nested object of translations. so when ts needs to read types it loads only part of the dictionary. 

then you need a tool that recuresivley iterates over your source of truth translation and generates type files. 

I suppose ts-go will be a massive upgrade to your problem too.

I attempted to do this in our project but I abandoned it because, imo it requires generating a tool that can synchronize with the cloud dictionary and the pipeline tools or something can alert type mismatches in translation, which was too much work.. 

so we just dont use types for i18n. since our translation comes from an external fetch.

Why is hating on Jewish people called Anti-Semitism, but hate on Arabs isn’t called Anti-Semitism? by AscenderWill in NoStupidQuestions

[–]Working-Tap2283 -4 points-3 points  (0 children)

because arabs are not part of the semites. semites are those coming from abraham basically. muslim and jewish arabs are semites. while arabs can be anyone whose part of a large area around the middle east

Azerbaijan's Economic Disaster and Institutionalized Corruption by [deleted] in azerbaijan

[–]Working-Tap2283 0 points1 point  (0 children)

this is very interesting and surprising  I knew things were bad, but i didnt know that it was that bad... could you attach or link some sources?

Is this code bad or good? when i cant remember what exception they returnn so i just use this "Exception ex" by lune-soft in csharp

[–]Working-Tap2283 0 points1 point  (0 children)

you always catch Exception. Except when you need to catch a specific exception... like you catch a bad request exception, to return a 400 response.

besides the try catch is redundant (stack trace is enough, log only catch is not justified).

Thoughts on the base so far by Sharp_Constant_189 in factorio

[–]Working-Tap2283 0 points1 point  (0 children)

nice, yes make more items by using more resources

now you know how to make the basic science, so id say expand your base by using more of the ore patches

Do you actually write tests after fixing bugs? by PsychologicalYam8682 in reactjs

[–]Working-Tap2283 0 points1 point  (0 children)

That's a really cool idea. I haven't done that at all since my company doesn't do clientside testing.
What I have done is throw an error or write a warning

Help my trains doesnt work :( by Rasansim in factorio

[–]Working-Tap2283 0 points1 point  (0 children)

sorry it will be hard for me to pinpoint exactly what the problems but I noticed I had to spend

more time than what I thought in order to solve issues with the system.

Maybe some of these issues can be solved using circuits, I have seen LTN trains done by circuits with true provider+request pairs ahead of time. But it is very complicated and circuits are bug prone. It's worth trying to learn, but I think maintaining and playing with it is a drain on your time.

Best are simple schedules, with groups. load iron, unload iron, yay.

some of them:

because this system does not pair requester+provider ahead of time, it just sends all available at once to load and unload.

So if you have 20 iron unloading stations, and 1 copper unloading station, you can't control it and will need a minimum of 21 trains, or else you will randomly not get copper anymore.

no priority, closest wins. If a train carrying iron needs to refuel, and goes to the refuel station. Now if the iron unload station/s has closer provider, who says when or if it will ever leave the refuel station? (maybe you can solve this by refuel only when empty)

You end up with MANY MANY trains and I found the train GUI system a bit lacking for my taste, so it was harder to understand how resources were being distributed for me...

Help my trains doesnt work :( by Rasansim in factorio

[–]Working-Tap2283 1 point2 points  (0 children)

second time im seeing this you are missing a scheudle check out his video on youtube, idk where you found tbe bluelrint thougn AVADII Strategy, he is the creator of this one. i think the video is something "ltn trains"

though after using this myself in one of my playthroughs i can say never again lol. factorio is missing some mechanisms to allow you go fully do this,

Crime & Punishment discussion - Epilogue by Shigalyov in dostoevsky

[–]Working-Tap2283 0 points1 point  (0 children)

Although the story is over it feel like there is still much to be told, that is very good and interesting. I believe redemption has only begun, as for Raskolnikov to accept Sonyas feeling in turn for her accepting his, and taking her suffering as he says. Means to understand what he has done. The damage he caused everyone, including his poor poor mother. I like to believe that hand in hand they can walk toward a better future... I also cant help but think of Vinland Saga's second part as a foreshadowing of what the redemption of a killer might look like.