Python Notes

Installing python3.8.1 on ubuntu from source wget https://www.python.org/ftp/python/3.8.1/Python-3.8.1.tgz tar zxvf Python-3.8.1.tgz cd Python-3.8.1 ./configure --enable-optimization --prefix /usr/ make sudo make altinstall [Read More]

Helm Lessons

Helm lessons Helm being the defacto package manager for kubernetes, you like it not or you will end up using it. I have nothing against it but sometimes helm deceives you, I keep those issues that i faced for my reference here. [Read More]

ennc0d3, Launches site

Steve Jobs famously said; “Real artists ship”. He was referring to the fact that everyone has ideas, but real artists deliver on them or ship them, as he put it. [Read More]

Bash Initialization Sequence

Bash initialization sequence Recently, while creating a docker image based on theia(cloud-IDE) for golang, i had few hiccups with the setup of user environment. The problems that i faced are due to not having a complete understanding of the bash initialization sequence and the involved startup files. [Read More]