Webapp | quick refresh 1 | Content Type : x-www-form-urlencoded, form-data and jsonOct 17, 2022·1 min read
DockerINTRODUCTION Docker is the most leading container platform. It allows developer to package up an application with all its dependencies in a container and ship them to any platform(basically, on any device). It solves deployement issues and makes app...Oct 21, 2022·2 min read
WSL - create a development environmentWSL Documentation(Optional) Documentation link: https://learn.microsoft.com/en-us/windows/wsl/ Wsl Ubuntu Install If wsl is already installed you can skip WSL install in the tutorials mentioned in the next steps and instead run this (open powers...Oct 13, 2022·1 min read
Setting Up Local Environment using Terraform (including docker container)Installing terraform Follow the steps here: https://learn.hashicorp.com/tutorials/terraform/install-cli Verify The installation [Here...] Create new mysql db using docker provider Run a sql script to bootstrap database with some tables and data To be...Oct 13, 2022·1 min read
Python In Depth NotesMy Python Notes Just bolting down the things I would like to remember. General F-string x = 1.2000005 f'{x!r}' f'{x!s}' f'{x:>+20.6f}' f'{x:>+20.6e}' format delegates to str which in turn delegates to repr, so if you don't provide format implementati...Sep 24, 2022·2 min read
SQLAlchemy CookbookQuick Links https://stackoverflow.com/questions/5022066/how-to-serialize-sqlalchemy-result-to-jsonJul 8, 2022·1 min read
Python CookbookNamespace package I am gonna use poetry to package build namespace packages. [place holder]Jul 7, 2022·1 min read
FastAPI CookbookQuick Links Sqlalchemy model to Pydantic Model Conversion [Place Holder]Jul 7, 2022·1 min read