Skip to content

Instantly share code, notes, and snippets.

@jednano
jednano / gitcom.md
Last active June 23, 2025 01:06
Common git commands in a day-to-day workflow

Git Cheat Sheet

Initial Setup

Create an empty git repo or reinitialize an existing one

git init
@yoavniran
yoavniran / ultimate-ut-cheat-sheet.md
Last active July 16, 2025 06:32
The Ultimate Unit Testing Cheat-sheet For Mocha, Chai, Sinon, and Jest
@timomitchel
timomitchel / bash_profile_tab_completion.md
Last active September 9, 2019 03:17
For Students in Mod-0 to Add tab completion

Enabling Tab Completion in Terminal

Run: cd ~ to go home quickly from any directory. Make sure you are in your home directory.

Run atom .bash_profile to begin editing the .bash_profile file.

Copy and Paste this: [ -f /usr/local/etc/bash_completion ] && . /usr/local/etc/bash_completion into the top of the file.