software-development-lessons

Taking Notes (like a developer)

This lesson goes over taking notes with markdown

Slides

Topics

Taking Notes And Writing Like A Developer

Why?

Markdown

Heading

# H1
## H2
### H3

List

* First item
* ~~Second item~~
* Third item

[Google](https://google.com)

Code

<!-- 1 liner -->
`<h1>Hello World</h1>`

<!-- multi line -->
```ruby
def my_method
  puts 'Hello'
end

Example Notes

# 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

Resources

Cheatsheet Try out markdown online Markdown Essentials

Next Up

Data Modeling - Very Best