Skip to content

Latest commit

 

History

History
83 lines (54 loc) · 2.16 KB

jarengarman_mod0plan.md

File metadata and controls

83 lines (54 loc) · 2.16 KB

My Mod 0 Plan

Sessions

  1. Tuesday 11/12/24 20:00 - 22:00 EST
  2. Wednesday 11/13/24 20:00 - 22:00 EST
  3. Thursday 11/14/24 20:00 - 22:00 EST

Who to ask for help

  • Other cohort students
  • Instructors
  • Alumni

How will you take care of yourself?

I will take regular breaks when I get stuck or feel like I need to take a breath. I will lean on my support systems in my parents and my fiancee if things get really tough.

Code Block

name = "Jaren"
affirmation = "You are smart and capable!"
puts "Dear #{name} -- #{affirmation}"

Conclusion

In order to create this gist, I made heavy use of this Markdown Cheat Sheet

Profile Picture

CFU Questions

What is markdown?

Markdown is a relatively simple language used to make formatting for HTML faster and easier

What is your favorite markdown resource? (link or screenshot)

Definitely this Markdown Cheat Sheet

What is the file extension for a markdown file?

.md

What are the different header options?

There are three header options based on size. The largest being H1, medium is H2, and smallest is H3. Example:

# H1
## H2
### H3

How do you create a bulleted list?

To create a bulleted, or unordered list, you place each list item on it's own line starting with a hyphen and a space. Example:

- List Item
- Another List Item
- Even More List Items??

How do you insert a hyperlink?

To insert a hyperlink, you place the title of the link in brackets followed by the link itself in parantheses. Example: [Markdown Cheat Sheet](https://www.markdownguide.org/cheat-sheet/)

How do you insert code into a markdown file?

Inserting code can be done in one of two ways: inline code, or as a code block. For inline code, you use a single backtic before and after the code you want to insert. For a code block, you use three backtics on both ends of the code block. Example:

Inline: `A single line of code goes here`
Code Block:
```
Multiple lines
of code
go here
```