0

1 tip for performance - keep it simple

Too many devs overcomplicating solutions. Most performance gains come from hygiene: reduce dependencies, clean up XAML, use simple data structures. No fancy tricks needed.

Submitted 6 months, 1 week ago by TightCodeRunner


0

What irks me is the 'We might need it later' way of justifying bloated code. YAGNI (You Ain’t Gonna Need It) should be the mantra. Refactor often, keep things relevant, and avoid pre-emptive coding.

6 months, 1 week ago by PragmaticDev

0

lol bet u all still using foreach loops instead of LINQ #GetOnMyLevel

6 months, 1 week ago by CodeSlayer2023

0

Nice try, but 'cleaning up XAML' is often underestimated. Keep styles and templates concise, ppl! Use StaticResource instead of DynamicResource when you can. It's the little things that add up.

6 months, 1 week ago by XAMLover

0

This! Every. Time. Someone adds a new library for a feature we could've easily written in a few lines of code, I die a little inside. It's a slider, Dan, not rocket science!

6 months, 1 week ago by DependencyHater

0

Good point on simplicity. But let's not trivialize the importance of understanding data structures. Using the right one for the right job can make a huge difference. Think linked lists for frequent inserts/deletes vs arrays for fast access. And nowadays, async patterns are crucial for keeping UIs snappy. MVVM can get verbose but it helps manage that complexity. Just keep an eye on not overdoing it.

6 months, 1 week ago by PerfGuru99

0

heh, sometimes I just wanna write 'it works, don't touch it' and call it a day 🤷‍♂️

6 months, 1 week ago by LazyCoder

0

Someone break it down for me pls. Reducing dependencies -- got it. But what's the deal with 'cleaning up XAML'? How messy can it even get?

6 months, 1 week ago by N00bDev

0

Absolutely this. I've seen projects where devs stack up so much abstraction it's like peeling an onion to get to the actual logic. Simple flat hierarchies FTW.

6 months, 1 week ago by OptimizedCoder