Auto remove container with docker-compose.yml

Learnlog
What are "orthogonal" environment variables? [12-factor app]
Another aspect of config management is grouping. Sometimes apps batch config into named groups (often called “environments”) named after specific deploys, such as the development, test, and production environments
An illustrated guide to 12 Factor Apps | Enable Architect
The principle of Port Binding asserts that a service or application is identifiable to the network by port number, not a domain name. The reasoning is that domain names and associated IP addresses can be assigned on-the-fly by manual manipulation and automated service discovery mechanisms. Thus, using them as a point of reference is unreliable. However, exposing a service or application to the network according to port number is more reliable and easier to manage
12 factor app configuration vs leaking environment variables
they are are easy to change between deploys without changing any code
because the key and value both have to be plain text, it discourages
adding more complicated things as config settings when they really ought
not to need to be.
can be easily and reliably read using any of a variety of languages
(including shell scripts and the like) without complicated parsing code
or library dependencies
artu-hnrq starred dbrgn/drf-dynamic-fields on Github!
Dynamically extend serializer field list in Django REST fw
Advanced serializer usage — Dynamically modifying fields
The TSConfig Cheat Sheet
Saving objects and their related objects at the same time in Django
artu-hnrq starred beda-software/drf-writable-nested on Github!
Nested Serializers in Django Rest Framework
Intercept and replace serializer fields on initialization in Django
Nested annotate fields in Django REST Framework serializers
How to define two fields "unique" as couple
Using the constraints features UniqueConstraint is preferred over unique_together.
instant.dev - Build APIs with JavaScript and Postgres, fast
The Better Way to do Loading States in React
How to create a generic React component with a typed context provider?
How to solve "window is not defined" errors in React and Next.js
How can I stash only staged changes in Git?
useEffect – React
setup: The function with your Effect’s logic. Your setup function may also optionally return a cleanup function. When your component is added to the DOM, React will run your setup function. After every re-render with changed dependencies, React will first run the cleanup function (if you provided it) with the old values, and then run your setup function with the new values. After your component is removed from the DOM, React will run your cleanup function.
useContext – React
Using React Context for State Management with Next.js
Context is a feature of React, a popular JavaScript library for building user interfaces, that enables components to share data without passing props down manually at every level of the component tree.
You can use all the context APIs, such as createContext, useContext, and Provider, in your Client Components.
createContext – React
createContext lets you create a context that components can provide or read.
Interceptors | Axios Docs
Select all occurrences of selected word in VSCode
reactjs - Is it a good idea to return component from custom hook in React? - Stack Overflow
Get viewport/window height in ReactJS
How can I use JavaScript to limit a number between a min/max value?
How to find if an array contains a specific string in JavaScript/jQuery?
javascript - Accepting multiple unknown props for more than one child in React? - Stack Overflow