Skip to content

Instantly share code, notes, and snippets.

@aspencer8111
aspencer8111 / template.md
Last active May 21, 2017 17:18
Suggested Curriculum Template

NOTE This template provides a structured and consistent way to create new checkpoints. Please do your very best to include/use each section of this template.

Overview and Purpose

In this checkpoint you _________________________.

Vocabulary

There are many new terms that you may not understand in this checkpoint. Take some time to really study each term and its definition below. Google each term. Make sure you understand it and have commited the definition to memory.

@aspencer8111
aspencer8111 / clean_slate.rb
Created May 12, 2017 18:58
Clean Slate Solution
def clean_slate(record, name)
name_array = name.split
record_words_array = record.split(' ')
first_name = name_array.first
last_name = name_array.last
first_name_downcased = first_name.downcase
last_name_downcased = last_name.downcase
@aspencer8111
aspencer8111 / HTML-1-3-Assignment.md
Last active May 18, 2017 14:45
Frontend Foundation Chapters 1 - 3
  1. Create an HTML page that includes at least one instance of each of the following tags:

    • h1
    • h2
    • p
    • ul
    • li
    • a
  2. Send the code to your mentor in the discussion section of this checkpoint. Remember to wrap your code in 3 ticks(```) so it renders/formats correctly.

@aspencer8111
aspencer8111 / HTML-1-3-Quiz.md
Last active May 18, 2017 16:21
Quiz Frontend Foundation Chapters 1 - 3
  1. What is the correct way to create a hyperlink with clickable text "Take me to Bloc", that links to http://www.bloc.io?

    1. <a text='Take me to Bloc'>http://www.bloc.io</a>
    2. <link href='http://www.bloc.io'>Take me to Bloc</a>
    3. <a href='http://www.bloc.io'>Take me to Bloc</a> - correct
    4. <a url='http://www.bloc.io'>Take me to Bloc</a>
  2. Which of these tags would create a list with bullet points (NOT numbers)?

    1. <ul> - correct
    2. <li>
  3. ``

@aspencer8111
aspencer8111 / quiz-template
Last active May 25, 2017 18:53
Quiz Template
1. blah
1. blah
1. blah
1. blah
1. blah - correct
1. blah
1. blah
1. blah
1. blah
@aspencer8111
aspencer8111 / HTML-4-5-Quiz.md
Created May 20, 2017 14:30
Quiz Frontend Foundation Chapters 4 - 5
  1. What is the correct way to place an image called logo.png that links to http://bloc.io in an HTML page ?

    1. <a href='http://bloc.io'><img src='logo.png'></img></a> - correct
    2. <img src='logo.png'><a href='http://bloc.io'></a></img>
    3. <a link='http://www.bloc.io'>Take me to Bloc</a>
    4. <a href='http://bloc.io'><img url='logo.png'></img></a>
  2. Which of these is NOT an HTML attribute?

    1. href
    2. src
    3. id
@aspencer8111
aspencer8111 / HTML-4-5-Assignment.md
Created May 20, 2017 14:38
Frontend Foundation Chapters 4 - 5
  1. Return to the HTML page that you created from the last assignment (Frontend Foundations Chapters 1-3). Add a form with at least three of the following form fields/input types:

    • text
    • radio
    • checkbox
    • textareaa
  2. Add labels to each one of those form fields

  3. Embed a logo in your site and center it at the top of the page.

On your computer, create a folder called lessons_learned. Inside the directory create a file called Readme.md. Use Create a new GitHub repository called Lessons Learned. Using Markdown, add a list of all the things you have learned so far at Bloc.

  1. Save the file
  2. Initialize a new git repo
  3. Commit the readme file
  4. Add Github as a remote git repository
  5. Push the commit (with the file in it) to your new Github repository
  6. Tweet or post on Facebook that you have just made your first git post (hint if you mention @bloc we may retweet you or reply back)
@aspencer8111
aspencer8111 / Try-Real-Assignment.md
Created May 22, 2017 16:08
Git Real Assignment
  1. Create a feature branch off of the repository you created after the Try Git checkpoint.
  2. Call your feature branch 'favorite foods'
  3. Add a new file called 'favorite_foods.md'
  4. Commit the file to this new branch
  5. Push the new branch up to GitHub
  6. Send the a link to the repo to your mentor
@aspencer8111
aspencer8111 / template.md
Last active May 23, 2017 18:23
Suggested Curriculum Template V2

NOTE This template provides a structured and consistent way to create new checkpoints. Please do your very best to include/use each section of this template.

Overview and Purpose

In this checkpoint you _________________________.

Objectives (phrased in a Bloom-y way)

  • Create ________
  • Evaluate ________