Skip to content

Instantly share code, notes, and snippets.

@evb-gh
Last active February 8, 2017 08:19
Show Gist options
  • Save evb-gh/04bcb51b7e5cd49e4878b45840d256d4 to your computer and use it in GitHub Desktop.
Save evb-gh/04bcb51b7e5cd49e4878b45840d256d4 to your computer and use it in GitHub Desktop.
Atom editor snippet to log your #100DaysOfCode progress
# There is a text file in your ~/.atom directory called snippets.cson that contains all your custom snippets that are loaded when you launch Atom.
# You can also easily open up that file by selecting the Atom > Snippets menu.
# Copy-paste the text below in your snippets.cson file.
# Feel free to edit or create your own snippet. More info here:http://flight-manual.atom.io/using-atom/sections/snippets/
'.source.gfm':
'Code Log':
'prefix': 'codelog'
'body': """
### Day ${1:"number"} ${2:"Month"} ${3:"Day"}, 2017
**Today's Progress:** $4
**Thoughts:** $5
**Link(s) to work:** $6
"""
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment