-
Posted On Backend
Why to enable CORS?
Enabling CORS (Cross-Origin Resource Sharing) in API Gateway in AWS is crucial for controlling how your API is accessed from…
-
Posted On Uncategorized
PYTHONPATH in a nutshell
I was running a Django project, and I had to use a GitHub repo as a third-party dependent in the…
-
Posted On Python
Django Views are Synchronous, You can’t have Asynchronous things inside views
The core issue I was facing was related to the inherent nature of how web servers and Django handle requests…
-
Posted On Journal
My 2023 and 2024 Planning
hmm, 2023 overall was a good year for me. There were a lot of days I missed my diet food…
-
Posted On Uncategorized
Change the End Of Line (EOL) of the source code from CRLF to LF
If you already have checked out the code, the files are already indexed. Then execute the following commands, Then refresh…
-
Higher Order Component (HOC) in React
Higher Order Component (HOC) is a JavaScript function that takes a React component as input and returns a newly updated…