Category: Interview / Career
-
NestJS + PostgreSQL: Create Your First REST API
CRUD example with TypeORM Building a REST API with NestJS, PostgreSQL, and TypeORM is a powerful, scalable choice for production apps. In this guide, you’ll create a complete CRUD API (Create, Read, Update, Delete) using a simple Todo resource. We’ll cover project setup, database configuration, an entity + DTOs, a service, a controller, and how…
-
Quick Tip: Center a Widget in Flutter the Right Way
Centering widgets is one of the most common tasks in Flutter development. While it seems simple, there are actually several ways to do it — and choosing the right one depends on your layout needs. In this quick guide, we’ll look at three effective ways to center a widget in Flutter: using Center, Align, and…