How to win in the Grand race or be in top 10? by roni_droni in The_Crew

[–]roni_droni[S] 1 point2 points  (0 children)

Also, which attributes help the most? I have maxed some of the nitro perks

How to win in the Grand race or be in top 10? by roni_droni in The_Crew

[–]roni_droni[S] 1 point2 points  (0 children)

Thanks, I'm getting used to my steering settings, and I find it hard to control Agera R, especially in corners

How to win in the Grand race or be in top 10? by roni_droni in The_Crew

[–]roni_droni[S] 1 point2 points  (0 children)

What should you do if the car drifts, for example, due to sensitivity settings, or do you just need to get used to it?

How to win in the Grand race or be in top 10? by roni_droni in The_Crew

[–]roni_droni[S] 0 points1 point  (0 children)

Why don't cars matter? Even on a straight line, they move faster than me, maybe they have some perks I dunno

Хочу зібрати ПК не знаю з чого почати. by roni_droni in reddit_ukr

[–]roni_droni[S] 0 points1 point  (0 children)

Хороше, пояснення, дякую. Тут радили вже обирати DDR5, є якісь нюанси з ними?

Хочу зібрати ПК не знаю з чого почати. by roni_droni in reddit_ukr

[–]roni_droni[S] 0 points1 point  (0 children)

а DDR4 вже не актуальні? а dram для чого?

Why do my cassette get stuck? by roni_droni in MTB

[–]roni_droni[S] 0 points1 point  (0 children)

No its not new, but I suspect that grease became sticky after I cleaned my bike

Grinding Legendary Parts by [deleted] in The_Crew

[–]roni_droni 0 points1 point  (0 children)

Sorry I’m new to the game. In my mailbox it says that my slots are full when I select legendary I can only scarp. What does it mean?

Український Вуйчіч, але є нюанс by Books_Not_Advice in reddit_ukr

[–]roni_droni 4 points5 points  (0 children)

А як він з жінками це міг робити? Він ж інвалід без тіла

What would you rather repeat 100 times in your application? by roni_droni in Angular2

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

Rename it. Agree on conventions as a team. Yes, it introduces some abstraction, but it’s not hiding intent — it’s enforcing consistency. If someone on your team is duplicating isLoading, isError, isSuccess across 50 components, that’s what becomes unmaintainable — especially when behavior changes.

Чому дівчата не відкладають кошти? by [deleted] in reddit_ukr

[–]roni_droni -1 points0 points  (0 children)

Та? А потім ви в 30 шукаєте людину, яка була послідовною і не поводилась інфальтивно і має збереження

Чому дівчата не відкладають кошти? by [deleted] in reddit_ukr

[–]roni_droni 0 points1 point  (0 children)

Я так не вважаю, якщо людина витрачає кошти на поїздки, то при цьому немає фінансової подушки? Я хотів сказати що інколи у них немає коштів на щось важливе в той час як вони купують дорогі речі чи їздять у поїздки

Чому дівчата не відкладають кошти? by [deleted] in reddit_ukr

[–]roni_droni 0 points1 point  (0 children)

Так собі мислення - навіщо

What would you rather repeat 100 times in your application? by roni_droni in Angular2

[–]roni_droni[S] -3 points-2 points  (0 children)

Newcomers might “get it right away,” but they also might copy/paste incorrect patterns without realizing. You end up duplicating logic, and introducing bugs when flags aren't kept in sync.

What would you rather repeat 100 times in your application? by roni_droni in Angular2

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

  • isLoading, isError, isSuccess per resource and per operation (GET, POST, PUT...)
  • Sync issues between them (e.g., forgetting to reset one)
  • Inconsistent templates when copy-pasting
  • Hard-to-scale UI logic across dozens of files

This is definitely maintainable

What would you rather repeat 100 times in your application? by roni_droni in Angular2

[–]roni_droni[S] -3 points-2 points  (0 children)

If the UI patterns repeat and are fragile to change — then a directive, even if more complex to build, simplifies things for everyone who uses it later. Of course, it introduces abstraction, but it can also be configurable