#development
Read more stories on Hashnode
Articles with this tag
When dealing with data you will be restricted by certain limitations regarding the type. For instance, when storing some string in a database as a...
When working with react and typescript you would easily forget that JavaScript has support for classes since typescript prefers to use the more...
React relies on a simple system of props and callbacks to share information. You pass down information to child components with props and you use...
Any web application will encounter the situation where you have to show a little bit too much data to the user. Processing a lot of information will...
In the previous blog posts I have talked about how to add tests to a legacy codebase and we went into some more practical approaches. TDD is al about...
In the previous blog post I discussed the difficulties when faced with legacy code that does not contain any tests. Since we don't really want to...