Blog
Create a Pre-commit Git Hook to Check and Fix Your JavaScript/TypeScript Code Automatically
In this post, we will introduce how to create a Git pre-commit hook to check JavaScript/TypeScript code using ESLint, Prettier, lint-staged, and Husky.
K8S: Unable to connect to the server: x509: certificate has expired or is not yet valid
How to install MongoDB in AWS EC2
AWS does support NoSQL databases such as DynamoDB and DocumentDB but not MongoDB. So if you would like to host your MongoDB to the AWS cloud but do not want to migrate to another DB, you may install…
How to Use React.FC Children Prop in React 18 with TypeScript
How to deal with the new React 18 React.FC type and the children prop for TypeScript
Custom Dropdown Element with React & TypeScript
A guide on how to create a simple React dropdown component using TypeScript.
Solve Maze Using Breadth-First Search (BFS) Algorithm in Python
Learn how to use and implement the Breadth-First Search (BFS) algorithm to solve real-world problems.
Significance of Learning Management Systems
Angular: Reload/Refresh a Component or Entire Application & Reuse Logic Across Multiple Components
An Angular tutorial on how to reload/refresh a single component or the entire application and reuse the logic across multiple components.
Amazon Aurora Serverless (v1 vs v2): What's the Difference?
Learn the difference between Amazon Aurora Serverless v1 and v2.
Build a Sudoku Solver App With JavaScript
A JavaScript app to solve sudoku puzzles using backtracking