Home
•
Blog
•
Library
•
Linktree
•
LinkedIn
•
GitHub
•
YouTube
•
RSS
•
•
Index
Card Hero

Quick Guide to Make Claude Code File Suggestion Faster

08/01/2026

Learn how to improve Claude Code file suggestion with fzf for proper fuzzy matching, symlink support, and better performance.

#claude-code#cli#fzf#productivity#tutorial
0 Reactions
0 Comments
Card Hero

Micro Frontends with Next.js Multi Zones

01/10/2024

When we're developing a Web application and it ends up scaling, we usually need a team. When that application scales even more, we need more teams working on the same application.

#microfrontends#nextjs#tutorial#react
0 Reactions
0 Comments
Card Hero

Zero Downtime Deployment with Docker Compose in an OCI VPS using GitHub Actions

13/09/2024

First, you must have a Linux VPS (Ill use Ubuntu 22 in this tutorial). Tagged with docker, devops, github actions, linux, tutorial.

#docker#devops#github actions#linux#tutorial
0 Reactions
0 Comments
Card Hero

Exposing Your Localhost with Ngrok (Very Useful for Testing Webhooks)

06/07/2024

I needed to test some webhooks, but only knew one way which would be to deploy the app and only then be able to test the webhooks. This method works and is widely used by devs. But it has a problem... every test you need to deploy your application again and that takes quite some time.

#ngrok#webhooks#tutorial
0 Reactions
0 Comments
Card Hero

TypeScript - How to Extract a String from Your Literal Types

24/07/2023

I won't beat around the bush. Basically just use TypeScript's Extract Utility Type and that's it!

#typescript#utilities#types#tutorial
0 Reactions
0 Comments
Card Hero

TypeScript - Template Literal Types

07/07/2023

Template Literal Types is really cool and expands the possibilities of what was already possible with string literals + unions in TS, check it out! It has the same syntax as JavaScript template literal strings.

#typescript#utilities#types#learning
0 Reactions
0 Comments
Card Hero

How to Open Visual Studio Code (VSCode) Inside GitHub

05/11/2022

Every developer at some point has needed to edit a file inside GitHub and encountered this standard GitHub editing screen

#github#tutorial#vscode
12 Reactions
0 Comments
Card Hero

Difference Between the ?, ?? and || Operators in JavaScript / TypeScript

31/10/2022

? -> Optional Chaining Operator. Allows reading the value of a property located internally in a chain of connected objects without having to explicitly validate each reference in the chain.

#javascript#typescript#learning
0 Reactions
0 Comments
Card Hero

Supercharging Your Git Bash (Windows) by Adding Aliases (Like the zsh git plugin)

23/10/2022

In this simple guide I'll show you how to supercharge your git bash with aliases that will make it much easier and faster when making your commits, pulls, getting logs, switching branches, rebases, merges, etc.

#git#bash#tutorial#windows
0 Reactions
0 Comments
Card Hero

How to Configure Turborepo Deployment on Netlify

21/06/2022

The other day I faced a challenge deploying one of my applications using Turborepo with Next.js and since I believe more people might have this problem, I decided to make a guide on how to do the initial configurations, let's go?

#turborepo#netlify#tutorial#react#next.js
0 Reactions
0 Comments
Card Hero

How to Set the Default Node Version Using nvm

19/06/2022

For those who don't know yet, `nvm` is an excellent utility for when we want to switch Node versions quickly without having to uninstall the current one and install the desired one.

#node#nvm#tutorial
0 Reactions
0 Comments