Supercharge Your Bash History With Fuzzy Matching and Shared History

Boost your productivity by expanding your command history and adding the power of fzf fuzzy search to your terminal. Why Improve Your Bash History Enhancing your Bash history gives you: Faster command recall Shared history across all terminal sessions Useful timestamps for every command Step 1: Enhance Your Bash History Open your configuration file: nano ~/.bashrc Add the following: # Remove duplicate history entries export HISTCONTROL=ignoredups:erasedups # Increase history size export HISTSIZE=1000000 export HISTFILESIZE=1000000 # Add timestamps export HISTTIMEFORMAT="%F %T: " # Sync history across sessions export PROMPT_COMMAND="history -a; history -c; history -r; $PROMPT_COMMAND" Apply the changes: ...

October 6, 2025

Building a Fast, Free Personal Website with Hugo, GitHub, and Cloudflare Pages

This blog is built using Hugo, GitHub, and Cloudflare Pages. It’s a setup I’ve refined to be “zero maintenance”—once it’s configured, all I have to do is write a Markdown file, push it to GitHub, and the website updates itself within seconds. – initially, I used fucking netlify, though they have a very annoying paywall, I am not sure what happened, but they charged me extra which I blocked it and then they just show me their fucking and annoying “update your credit card”, and basically I could not do anything in dashboard. So I switched to Cloudflare Pages, and it is just perfect, no paywall, no bullshit, just works. ...

October 2, 2025