serhii.net

In the middle of the desert you can say anything you want

07 Jun 2021

Day 888

Python env variables

theskumar/python-dotenv: Get and set values in your .env file in local and production servers.

duc for visualizing disk space

Duc: Dude, where are my bytes! - both GUI and cli interface. Love it!

bash - running multiple processes in parallel

#!/bin/bash
run_command(){
	echo "The thing that will be run in parallel"
}

for i in {1..20}
do
	run_command $i &
done
 
Nel mezzo del deserto posso dire tutto quello che voglio.