Skip to content

BitsPleaseMSI/til

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

19 Commits
 
 
 
 
 
 

Repository files navigation

TIL

Today I Learned

A collection of concise write-ups on small things I learn across a variety of languages and technologies.

0 TILs and counting...

Categories

Usage

Steps to follow:

  1. Create directories for specific topics. For example if you solve a problem on HackerRank create a directory named Competitive Programming or if you learned something new in JavaScript, create a directory for the same.

    Some recommended categories:

    • Data Structures & Algorithms
    • Meet-ups
    • C++/JavaScript/Python
    • HTML/CSS
    • Git/Version Control
    • Machine Learning
  2. Inside those directories create a Markdown file with your title for example Variables-in-JavaScript.md, Create_React_App.md etc. Make sure that the markdown file has a title. Spaces in titles are not recommended since different services render markdown differently.

  3. Every Markdown TIL file should start with a # i.e h1 heading.

  4. Run python createTIL.py to auto-generate the new README file for you

    OR

    If you are using git, you can install this script as a pre-commit git hook so that it is autogenerated on each commit. Use the following command:

    cd .git/hooks/ && ln -s ../../createtil.py pre-commit && cd -

  5. Once satisfied push your changes.

About

Original Idea/Work thoughtbot/til.

Other TIL Collections