A compendium of "Today I Learned" snippets prepared by the team at Atri Labs
It covers a wide range of learning experiences while building an open-source company in the field of web development.
- Record our learnings in an organized manner
- Build a writing habit
- Demonstrate our learning culture
-
Create a fork of this repository.
-
Clone your fork.
# Clone your fork of the repo into the current directory
git clone https://github.com/<your-username>/til.git
- Configure the remotes.
# Navigate to the newly cloned directory
cd til
# Assign the original repo to a remote called "upstream"
git remote add upstream https://github.com/Atri-Labs/til.git
- Add an extension for spelling and grammar checks in your editor.
- In VS Code, we suggest Code Spell Checker.
- In PyCharm, we suggest Grazie.
- Add an extension to preview markdown.
- In VS Code, we suggest Markdown Preview Enhanced.
- Add an extension for better formatting of the markdown files.
- In VS Code, we suggest Prettier. Also make sure that
Format on Save
is enabled in your VS Code.
-
Add a new .md file for your TIL in an existing folder or create a new folder.
-
Open a Pull Request (PR) with clear title and description.