Posts
All the articles I've posted.
linting for typescript
Posted on:November 22, 2023 at 12:00 AMESLint, Prettier, and TypeScript compiler help enforce code quality, consistency, and compilation for TypeScript projects. ESLint provides linting, Prettier handles code formatting, and TypeScript compiler converts TypeScript to JavaScript. Integrating them involves installing required packages, configuring ESLint and Prettier rules, extending the recommended configs, and running ESLint on JS/TS files.
Nodejs Testing Tips
Posted on:November 22, 2023 at 12:00 AMKey techniques for setting up unit, integration, CLI tests in Nodejs projects. Covers file structure, helpers, transpiling, exec cmds.
Science of Love and Betrayal
Posted on:November 22, 2023 at 12:00 AMthe science of human relationships
Simplifying Redux App Development with Redux Toolkit
Posted on:November 22, 2023 at 12:00 AMRedux Toolkit improves the developer experience by reducing boilerplate for store setup, immutable updates, async logic, and more.
The Power of Understanding Bottlenecks
Posted on:November 22, 2023 at 12:00 AMBottlenecks are the weak points that constrain overall system performance. Though small, they have an outsized impact - fixing bottlenecks unlocks dramatic improvement. To find bottlenecks, stress test where a system breaks under increased input. The magic of bottlenecks is they reveal the leverage points for optimization. This mental model helps me understand the hidden constraints limiting any complex system.
The progressive 80-20 Rule
Posted on:November 22, 2023 at 12:00 AMa brief description on 80/20 rule
things I learn about aws cloudtrail
Posted on:November 22, 2023 at 12:00 AMCloudTrail tracks API activity in AWS, logs events to S3, and enables auditing, compliance and security monitoring.
Things I Learned About React Reusable Components
Posted on:November 22, 2023 at 12:00 AMhow to make react componenent as resuable as possible
Ubiquity- Why catastrophes happen
Posted on:November 22, 2023 at 12:00 AMThe critical state is ubiquitous in complex systems. Small disturbances propagate as chain reactions. History's rhythm arises from buildup and release of tensions.
Understanding Django Database Migrations
Posted on:November 22, 2023 at 12:00 AMThis summarizes how Django migrations work to manage database schema changes, including the migration workflow and why migrations run for tests.