Python

sentry-mattermost and notification plugin for sentry
At Biekos we are using Sentry to monitor exceptions in our codebase, both for frontend/mobile and backend. It is a critical tool that allows us to act quickly upon any incident. We are also using an on-premise installation of Mattermost to communicate. Therefore we wanted to have Sentry report issues into it. Unfortunately, the plugin was not functioning correctly with the latest version of Sentry. This is how we fixed it and what we learned from it. [...]

Python

Faking Geolocation with Selenium, Python, Firefox.
Selenium is an excellent tool to automatize tasks through a browser, like end-to-end testing, bot creation, or as assisting in the redundant endeavours. It is sometimes needed to change the location reported by the browser. In this article we are going to see how to do with Firefox, Python and Selenium. [...]

Python

Python set usage benchmark
Python set is an amazing tool that can be handy in a lot of situations, here is some musing about two usages, deduplication and membership testing. [...]