Blog
How to Handle Unsuccessful Fetch API Calls in JavaScript
Deploy from Gitlab to AWS EC2
Gitlab CI pipeline for AWS EC2 deployment
How to detect when an input() value changes in Angular
Detect when input value changes in Angular
Converting an Excel file to JSON in Node: Beginner-Friendly Introduction to Node.js + NPM
Getting started with Node.js by parsing an excel file and learning about NPM and XLSX in the process.
How to Dynamically Declare Variables Inside a Loop in Python
OAuth2 in NestJS for Social Login (Google, Facebook, Twitter, etc)
How to Use the CloudFormation Sub Function
Since I started using AWS CloudFormation 4 years ago, I have seen many people using the Fn::Join command to merge information such as static text and variables in their CloudFormation templates. While this works, it can get messy and difficult to understand when things get complicated. Fn::Sub helps simplify our template definitions.
Run Python Code in React with Pyodide
How to Run Python Code in the Browser with Web Assembly, React, and Pyodide
Python and Django: Create a Dependent Chained Dropdown Select List
4 Reasons Why ‘var’ is Considered Obsolete in Modern JavaScript
JavaScript is a powerful language because you can write an entire software without adopting any other programming language at all. var used to be a way to declare variables in JavaScript. However…