Entries from March 2025

How To Prettify Using Vim and Prettier

Author: , March 7th, 2025

If you’re a Vim user and want to integrate Prettier for automatic code formatting, follow these steps to set it up on your system. Install Prettier Globally Before installing the Vim plugin, you need to have Prettier installed globally via npm:

Install vim-prettier Plugin To use Prettier inside Vim, install the vim-prettier plugin. Clone […]

How To Disable Bracketed Paste in BASH and ZSH

Author: , March 5th, 2025

Bracketed paste is a feature in modern shells that helps prevent accidental execution of pasted commands by wrapping them in special escape sequences. However, some users find this behavior annoying, especially when pasting multi-line commands. Fortunately, it’s easy to disable bracketed paste in both BASH and ZSH. Disabling Bracketed Paste in BASH To turn off […]

How To Fix MacOS Safari’s Connectivity Issues: Disabling Private Relay and Hide IP Address

Author: , March 3rd, 2025

If you’ve ever encountered a scenario where Safari on macOS Sonoma cannot reach a local or internal web service (while Firefox and curl work just fine), the issue may be due to Apple’s strict security features. Specifically, iCloud Private Relay and the Hide IP Address from Trackers option can interfere with certain local network connections. […]

How To Combine Directories From Multiple Hosts Into a Single Git Repository

Author: , March 2nd, 2025

If you have multiple ~/bin/ directories across different hosts and want to consolidate them into a single Git repository hosted on your own Git server, follow these steps. 1. Create a New Bare Git Repository on Your Git Server First, log in to your Git server and create a new repository:

This repository will […]