Jabra Elite Active 75t has Active Noise Cancellation
I am an owner of Jabra Elite Active 75t Bluetooth headphones for some time now, but as you can see from other posts there were some bumps in the road. It has not been a whole year yet, and while I managed to solve one earbud low volume problem, the headphones occasionally also stop playing audio. (more...)
Limit number of allowed failing Robot framework tests in your project
We can all agree that sometimes you just remember a valid test, but your implementation is not on level to pass it. Now you face a dilema: do I commit a test and fail the build, or I waste some more time to implement a solution as well? The usual answer is: implement a solution, mainly because most of the test frameworks fail the build, if there is a failing test. (more...)
Get number of failing JUnit tests in your project under control
We can all agree that sometimes you just remember a valid test, but your implementation is not on level to pass it. Now you face a dilema: do I commit a test and fail the build, or I waste some more time to implement a solution? The usual answer is: implement a solution, mainly because most of the test frameworks fail the build, if there is a failing test. (more...)
Helm: generate comma separated list
When you want to deploy your Django application with Helm to Kubernetes cluster, you will need to produce ALLOWED_HOSTS list inside the settings.py. I use Python decouple module and then inject the values through the environment variables. (more...)