Recent Entries
May 15, 2026
Setting up PostgreSQL in Docker
Quick reminder on how to spin up a local database for testing. Use the following command to bind the port and set the default password:
docker run --name pg-dev -e POSTGRES_PASSWORD=secret -d -p 5432:5432 postgres
May 2, 2026
Useful Linux Commands
Check active listening ports: sudo ss -tulpn
Find large files: find / -type f -size +100M
April 18, 2026
API Documentation Status
The internal API documentation has been moved to the private Git repository. Please access it via the intranet portal. Public endpoints will be deprecated soon.