Category: ProgrammingPage 1 of 2
Building a solution from the start to be able to switch database can be a very smart move. In some cases it could be argued that too much software is built for re-usability and with layers of abstraction that are never actually used for anything. But in some cases it makes a lot of sense to make sure that you build your solution in a way that would afford you a good number of options going forward.
You can clone use and play around with the code from here: Bitbucket.org/jmreiche/requestmanager Feel free to reach out to me with questions or suggestions for improvements.
In the following I will show how it is possible to have two app’s from one React Native Expo repository with a little help from Python and a bit of Powershell.
Every once in a while you into these strange annoying issues when working with React Native. For a lot of things it is really good and you really … Read more
Ignoring the fact that the word “event” has a special meaning in software development I will proceed to use it in its broader definition as “something that happens”. … Read more
As the name suggests Chain of responsibility design pattern creates/describes a chain of responsibility. This chain can be static/hardcoded or it can be dynamic and loaded or changed … Read more
In software development and perhaps more broadly, in creative endeavors in general, rarely does one solve a problem that has only one possible solution. Mostly there are “more … Read more
As a species we have always been attracted to novelty. This has probably served us well for things with short feedback loops as we quickly learnt whether the … Read more
As a freelance developer you are hired to deliver results. These results will, of course, in part be measured in the code that you write. But more so … Read more
If you have ever worked with calculations in the financial sector you know that decimals and roundings are both incredibly important and incredibly annoying. When you round, and … Read more