tech.

Aug 31, 2022

Installing Jellyfin Media System

Jellyfish what? No, “Jellyfin”. It is a free, open source media system that allows to collect, manage and stream your media to all of you devices. It’s like having your personal Netflix! 1. Install Docker Update apt just in case sudo apt update Install latest version of docker sudo apt install docker.io Set Docker to run on start up sudo systemctl enable --now docker Grant your user permissions to docker

read more
Mar 25, 2021

Command line variables on Flutter using --dart-define

 Article hero image

This post explains how to send command line variables and use them with flutter. Why send variables via command line? Being able to set a variable through command line comes in very handy whenever you want to change the variable depending on the environment/client it’s being built for. Without having to change code manually every time. A few common use cases would be to configure your app’s base URL during build time.

read more