What makes Kubernetes a good platform for developers?
I have been developing on Kubernetes (aka K8, Kube..) for a few years now, and here are some thoughts from my experience on what makes Kube......
5 Years Ago
DHCP server in RHEL 8
As of RHEL 7, the dhcp server package name was "dhcp". In RHEL 8, it has been renamed as "dhcp-server". Use "yum install dhcp-server" to ......
5 Years Ago
Caffe Python 3 docker image
https://hub.docker.com/r/ashokponkumar/caffe-py3/ You can pull it using "docker pull ashokponkumar/caffe-py3" ...
5 Years Ago
Removing .py files from a .whl file
To remove the .py files from a .whl, just treat the .whl file as a zip, and remove the .py files using the following command. zip -d whlf......
6 Years Ago
Replace comma with new line in vi
Once in the vi interface, use the following after pressing escape :g/,/s//\r/g ...
6 Years Ago
Making docker inherit parent terminal's size
When having a script to start a docker container's bash session, it does not inherit the parent terminal's size. The reason this occurs is ......
6 Years Ago