Kate Brownkateeliza29.hashnode.dev·Mar 23, 2024Optimise your Code! Multithreading in C#What is it? Multithreading is using separate threads to complete separate tasks. If you go too far down the ‘what is a thread’ rabbit hole, it all gets a bit philosophical, so as a basic definition, a thread is part of your program that can be execut...multithreading
Kelvin Mwinukakelvinmwinuka.hashnode.dev·Oct 7, 2020Optimise React with useMemo and React.memoThere comes a time when we have to worry about more than just making sure our applications work, but that they work optimally. When using react, we have certain tools at our disposal to make sure our applications are optimised. In this article, I wil...105 readsTutorial
Rivu Chakrabortyrivuchk.hashnode.dev·Jul 5, 2020Why Emitting State from Repository is an Anti-PatternIn this post, as the title suggests, I'll discuss why one shouldn't emit View States (or as some people prefer to call it Resource nowadays) from Repository, and why is it Anti-Pattern IMO. While discussing that, this post will also address why retur...Android