Skip to content

Latest commit

 

History

History
43 lines (29 loc) · 1.35 KB

Details.md

File metadata and controls

43 lines (29 loc) · 1.35 KB

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
    • Meetups
    • 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. Run python createreadme.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 ../../createreadme.py pre-commit && chmod +x pre-commit && cd -

  4. Once satisfied push your changes.

About

Original Idea/Work thoughtbot/til.

Other TIL Collections