Block a user
How do I clean up my docker environment?
How do I clean up my docker environment?
docker system prune
docker volume prune
docker image prune
docker container prune
That pretty much wipes it all out.
How do I clean up my docker environment?
Is it possible to mount S3 storage as a filesystem/backend?
Is it possible to mount S3 storage as a filesystem/backend?
Yes. Multiple ways. A few include:
This is also handy looking, if you're looking to merge multiple…
Is it possible to mount S3 storage as a filesystem/backend?
What are basic file operations in Python? I can never remember.
What are basic file operations in Python? I can never remember.
extract a filename from a path
print(os.path.basename(your_path))
resources
What are basic file operations in Python? I can never remember.
Where can I find lots of Markdown (.md) tools?
Where can I find lots of Markdown (.md) tools?
https://www.markdownguide.org/tools/
What are basic file operations in Python? I can never remember.
I always forget all the basics. This is because I keep switching languages.
Where can I find lots of Markdown (.md) tools?
How do I sign my git commits?
How do I sign my git commits?
How do I flush my DNS cache?
How do I flush my DNS cache?
On Ubuntu 24+,
resolvectl flush-caches
should do it.
References
- https://askubuntu.com/questions/1538140/how-to-flush-dns-in-ubuntu-24-10
- https://unix.stackexchange.…
How do I flush my DNS cache?
How do I upload PDFs to Paperless NGX with Python?
How do I upload PDFs to Paperless NGX with Python?
I wrote this little script. You need to set
PAPERLESS_API_TOKENPAPERLESS_API_HOST
in the environment. Paperless will let you get an API token from your profile, and the host…