FSWATCH
FSWATCH Cross-platform OSS file change monitoring tool Example Usecase fswatch -o filePath // watch change and print o/p fswatch -r --exclude '.git' folderPath fswatch -o filePath | xargs ... /...
FSWATCH Cross-platform OSS file change monitoring tool Example Usecase fswatch -o filePath // watch change and print o/p fswatch -r --exclude '.git' folderPath fswatch -o filePath | xargs ... /...
RSYNC Can transfer files inside local machine, between local & remote & remote to remote Uses OpenSSH to trasnfer files Preferred for source to destination kind of sync (one directi...
SFTP A protocol that allows file transfer over ssh. More secure than FTP Can use apps such as Termius where both host & the client should have an established ssh connection Usecase: T...
Ways to use AI for Coding 1. IDE Using tailor made IDEs is the most easy: Cursor: VSCode Fork that’s closed source Has free tier usage limit Windsurf ...
AI Chat Agent URLs Agent Desc Limit GPT5 General Perplexity With Sources Gemini G...
How to Blog Using Markdown Only Consider: a documentation subdomain docs.aaryanpoudel.com.np , a personal finance blog finance.aaryanpoudel.com.np and a today i learned subdomain til.aaryanpoudel....
CLI Essentials fzf: fuzzy finding tmux: use multiple terminal instances nvim: text editor for the keyboard geeks tree: graphical ls CLI Play-arounds bat: a better cat speedtest-cli...
ZSH Init # Install brew install zsh #mac sudo apt install zsh #linux # Check Current Shell echo $SHELL # If still bash/ fish chsh -s $(which zsh) #or, usermod -s $(which zsh) [username] # Other...
Imp Site List Learn Coding Roadmap.sh Get a roadmap of the techstack you want freecodecamp Full free courses for any tech stack Laracast La...
Ollama Download from Site & GitHub Ollama Usage ollama list ollama ps ollama run gemma3:1b ollama pull gemma3:1b #download model ollama stop gemma3:1b ollama rm gemma3:1b ollama run gemma...
Android Revanced Manager: Open Source Github Website Tried on Android 13 (needs Andoird 8+) Setup Guide with Reference to Official Docs & User Guide Setup: Download the APK from Gi...
Command List Command Description visudo Run CMD as sudo without PW realpath Provides Absolute Path Usage 1. visu...
Music Generation 1. Ace-step Open Source. Github Tried on M1 Air 8GB. During generation, ran into out of memory error as the swap usage exceeded 9GB Setup: git clone https://github.com/ac...
1. Twenty OSS Github, Site , Self-hostable Alternative to Salesforce (need to check usecases of salesforce and compare ) #todo Installs fine but usability to be accessed as all it seems to ...
Basic Commands #basic tmux tmux ls #sessions tmux new -s sessionName tmux a #attach tmux kill-session -t sessionName #window management Ctrl-b c #create Ctrl-b n #next Ctrl-b p #previous Ctrl-b...