Davi's Tech & Trends

Install and Config Mountpoint for Amazon S3 to access to your S3 bucket via SFTP

Using AWS Transfer Family for SFTP can cost over $200/month. Instead, you can set up a more cost-effective SFTP solution by hosting an SFTP server on an EC2 instance and mounting an S3 bucket using Mountpoint for S3. Below are the steps to achieve this: A. Mounting an S3

How to Add an External Package to n8n for PostgreSQL Connections in a Code Node workflow

By adding the external pg package to a custom n8n Docker image, you can easily use a Code node to interact with PostgreSQL. Here’s a step-by-step guide to achieve this. Dockerfile The Dockerfile adds the PostgreSQL package (pg) globally to the n8n image. # Use the latest official n8n image

Understanding Rebase and Its Impact on Commit History

When collaborating in Git, managing your commit history effectively is crucial for maintaining a clean, readable repository. Rebase is a powerful tool that helps achieve this by avoiding unnecessary merge commits. The Problem with Unnecessary Merge Commits When using git pull (without --rebase), Git merges the latest changes from the

Managing Git Workflow: Merging and Pushing Code Safely

Scenario 1: Merge Code from develop to main and Keep develop for Ongoing Work To merge your finished work from the develop branch into the main branch while keeping the develop branch intact for future development, follow these steps: # Switch to the main branch: git checkout main # If you have

Setup NFS shared folder on Synology for VMware Esxi

Network File System (NFS) is a powerful way to create shared storage for VMware ESXi hosts. If you're looking to set up an NFS datastore on your Synology NAS and integrate it with VMware ESXi, this guide walks you through the process step by step. Let’s get

Davi's Tech & Trends © 2026