Saad Bash

Handy Code Snippets, Tips, and More!

Validate environment variables with type safety using Zod

Create env.ts file and define schema with necessary ENV variables

Read More

Streaming data in Next.js using API route

Define a simple GET route in /app/api which will stream some sample data.

Read More

JavaScript's Defaults: || vs. ??

When checking out JavaScript codebase, we will see lots of || (Logical OR) but not so many ?? (Nullish Coalescing) operators for setting default values. So what's the real difference between them?

Read More

List of Useful Python Tricks for Solving Coding Questions

Python is great language choice when solving DSA questions because of its english-like syntax, rich set of built-in libraries.

Read More

Python: useful built-in Functions

Commonly used built-in Python Functions

Read More

How to mock express middleware in Jest

Let's say we have hello-world express app, which uses middleware to log time with every request.

Read More

Mocking modules in Jest.js

Mocking modules in Jest is important because it allows us to isolate and test specific parts of code without depending on external modules.

Read More

Microservices and Custom exception filter in NestJS

Nest offers a default exceptions layer to handle unhandled exceptions in an application. Global microservice exception filters aren't enabled by default when using a hybrid application.

Read More

Avoid bugs when using Array fill()

Array.fill in JavaScript is a handy method for filling an array with a single value, but it can lead to bugs if not used with caution. The reason is that the method passes objects by reference, rather than by value.

Read More

How to create Python virtual environment

Creating a virtual environment

Read More

How to write http response to a file

For text response: use response.text

Read More

How to add background image to a container in Flutter?

Use decoration property of container -> BoxDecoration with ImageProvider.

Read More

How to create a private fork of a public repo on GitHub?

Clone the public bare repo locally:

Read More

How to get any day of the week in Dart and Flutter

User DateTime's weekday getter.

Read More

How to use multiple text styles in Flutter

User Flutter's built-in RichText widget to display text with multiple different styles.

Read More

How to remove all routes from the Navigator in Flutter

Helpful for designing functionality of a Logout button

Read More

How to add border to a container in Flutter

decoration: BoxDecoration( border: Border.all(color: Colors.red) ), child: Text('Red Border'), )

Read More

How to undo last commit message in Git

Amend the most recent commit message:

Read More