90521ff1747878edc45c492d383a0df9
b0b655494fbc3478572df1282f7b9512...
DIY – Stock trader
The COVID pandemic is still not over… and my social life is crumbling like a cookie soaked in hot tea. So what to do about it? Well… sitting in my coding dungeon and starting a new project called “Stonks”! “Stonks” will fetch the current stock value every x seconds for a...
DIY – Device lab
What to do during the COVID-19 pandemic… well I cleaned up my house and found some old phones that I wasn’t using anymore. I thought… what a waste! This machine power could be useful in some way. So hereby I introduce to you my device lab. It consists of...
Android Adaptive icons
This video will explain how to recognize and create your own adaptive icons in Android Studio....
How to share Git Hooks
Some time ago I wrote how to create Git Hooks for your project. What I didn’t wrote about is how to share these Git hooks with your team. If you don’t know how to create Git hooks yet, then I recommend reading the blog post below first. Step 1...
Backpressure explained
Backpressure is something every software engineer will have to deal with at some point. You might read it and have no clue what it really means. For those people, continue reading 😉 In software you generally speak of having input and turn it into desired output. Backpressure is when...
How to read Rx marble diagrams
When trying Rx for the first time and you heard it’s a steep learning curve but you went for it anyway and you are searching the internet to get you started and you open up the first result on Google and you see this.. and you be like… But...
Cold vs Hot data source
Maybe you heard of it, maybe you don’t. Hot or cold data sources. Let me explain briefly what it is and how you should use it. The general idea is that hot data sources are active even outside when it is called and cold data sources is not doing...
Sync vs Async
In programming, synchronous operations block instructions until the task is completed, while asynchronous operations can execute without blocking other operations. Examples of asynchronous operations are push notifications, click events, keyboard input or fetching data. Because they happen any particular time outside the main execution of your app. Example of...
Flutter #TIL series
As an experiment for myself to see if I would like to create and montage video’s I started my own YouTube playlist. Coding is my conformed-zone so I decided to pick record random things I learned while developing for Flutter....