Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!
Implement Singleton in Python
Tips and Traps¶
- Module is a good alternative to singletons in Python.
Programming in Shell
String¶
Regular Expression Comparison¶
https://stackoverflow.com/questions/229551/how-to-check-if-a-string-contains-a-substring-in-bash
Bash Programming¶
- case ... esac is different from switch(){} in C/C++. You do not have to return/exit manually after each branch.
not condition
if [ ! -d "$1" ]; then
fi
Shell Programing Trick¶
Generate 00, 01, ..., to 25.
for i in {00..25}; do echo $i; done
or
seq -f %02g 0 25
Shell Scripting¶
Enum in Python
Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!
Comments¶
- You must assign a value to each enum member.
Tips on Podman
Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!
https://github.com/containers/buildah A tool that facilitates building OCI images
Tips on Django
Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!
https://hub.docker.com/r/bynd/nginx-django/
https://hub.docker.com/r/abstracttechnology/django/
https://hub.docker.com/r/alang/django/
https://hub.docker.com/r/torz/django/~/dockerfile/
https://hub …