A

Ashok Pon Kumar's Let Me Help You Geeks

Solutions to problems faced by Software developers in day to
day work..

  • Rated2.4/ 5
  • Updated 4 Years Ago

Recent blog posts from Let Me Help You Geeks


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......
4 Years Ago
BlogAdda
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 ......
4 Years Ago
BlogAdda
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
BlogAdda
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......
5 Years Ago
BlogAdda
Replace comma with new line in vi
Once in the vi interface, use the following after pressing escape :g/,/s//\r/g ...
5 Years Ago
BlogAdda
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
BlogAdda