Building a SaaS based architecture on a budget without vendor lock-in
Opinionated account on a micro SaaS currently processing ~53k api requests daily and ~£3k monthly. Actual code, real lessons learnt
A brief look at OpenAFS
I have a keen interest in opensource history and trying to understand which technologies hyperscalers may be using, or at
It's not about scalability it's about developer experience which makes experimentation fast
In his interview, The untold story of SQLite
[https://corecursive.com/066-sqlite-with-richard-hipp/#], author D. Richard Hipp
explains beautifully the value
How to create your own pip package example python
Example code repo for post
[https://github.com/KarmaComputing/create-your-own-python-pip-package]
Being able to package your python project into a pip
Docker tail -f from the end
The docker way:
docker logs -f --tail 10 container_name
The host way
$(docker inspect --format='{{.LogPath}}'
# Then
Rust create ubuntu / debian package from cargo
Rust how to create a deb package with cargo deb
How to get started with rust
How to I install rust?
See https://www.rust-lang.org/tools/install
Or run:
curl --proto '=https' --tlsv1.
Shrink existing partition mdraid linux ext4 using resize2fs
How do I know what filesystem type it is?
df -T
How do I view the current disk(s) layout?
What is an unhandled exception mean?
Generally an unhandled exception in your code means that your program is in a condition or state that you have
Debug python containers pdb docker breakpoint
Debugging python docker containers with remote-pdb, docker-compose
You want to debug and set breakpoints inside your docker container and/or