Many ways to keep notes and write about code. This is how I do it.
create a Workspace/notes directory for daily notes
Workspace/notes
open notes/ folder in vscode
notes/
create a markdown file *.md for todays notes
*.md
need a place to track your learning, links, meeting notes, schedule, todos, etc.
README and technical documentation are often written in markdown
piazza, slack, github, stack overflow and many other websites support markdown
https://www.markdownguide.org/
Any file ending in *.md or *.markdown
*.markdown
automagically supports markdown
command + shift + v to view markdown preview in vscode
command + shift + v
# H1 ## H2 ### H3
* First item * ~~Second item~~ * Third item
[Google](https://google.com)
Google
<!-- 1 liner --> `<h1>Hello World</h1>` <!-- multi line --> ```ruby def my_method puts 'Hello' end
<h1>Hello World</h1>
def my_method puts 'Hello' end
# time * 830-915 worked on treehouse hashes * 915-930 stand up * 930-1030 linkedin profile peer review # links https://www.markdownguide.org/cheat-sheet/ # todo * ~~finish treehouse hashes~~ * update linkedin profile * add linkedin link to my github.io page
https://www.markdownguide.org/cheat-sheet/
Cheatsheet Try out markdown online Markdown Essentials