Reading List
- How to create a 1M record table with a single query
Anton Zhiyanov
•
21 Mar 2021
Let’s say you want to check how a query behaves on a large table - but there is no such table at hand. This is not a problem if your DBMS supports SQL recursion: lots of data can be generated with a single query. The WITH RECURSIVE clause comes to the rescue.
- Debounce and Throttle Callbacks with React Hooks
Kyle Shevlin
Learn how to debounce or throttle a callback function with React hooks while avoiding an exhaustive deps ESLint error
- Really Simple Syndication
Alvaro Duran
RSS is the not-so-innovative solution to the social media lunacy
- You merely adopted dark mode
The best product too few people have ever used
- Add auth support to a Next.js app with a custom backend
Arunoda
•
7 Aug 2020
Here’s how to add an auth system to a Next.js app that uses a separate API server.