Skip to content

Instantly share code, notes, and snippets.

View sassygrody's full-sized avatar
🌼

Sasha Grodzins sassygrody

🌼
View GitHub Profile
I can't access any gists.... what is going on?
Github says
"WHOOPS! can't find the gist of the gist you were looking for."
@sassygrody
sassygrody / hacker_news.css
Created March 25, 2014 18:05
phase0_week8_judge_html_css.txt
Steps:
Add the HTML and CSS files to your gist. The HTML and CSS files should be reformatted so they are more readable.
Answer the following questions in this file:
(Remember, this should be useful for others in your cohort,
so write for an audience that does not know anything about your website.)
Which website did you evaluate?
1) How does this website follow HTML Best Practices? Are there any places where
@sassygrody
sassygrody / hacker_news.css
Created March 25, 2014 18:04
phase0_week8_judge_html_css.txt
Steps:
Add the HTML and CSS files to your gist. The HTML and CSS files should be reformatted so they are more readable.
Answer the following questions in this file:
(Remember, this should be useful for others in your cohort,
so write for an audience that does not know anything about your website.)
Which website did you evaluate?
1) How does this website follow HTML Best Practices? Are there any places where
@sassygrody
sassygrody / 0.2.1-boggle_class_from_methods.rb
Last active August 29, 2015 13:56 — forked from dbc-challenges/0.2.1-boggle_class_from_methods.rb
phase 0 unit 2 week 1boggle class challenge
class BoggleBoard
def initialize(dice_grid)
@dice_grid = dice_grid
end
def create_word(*coords) #splat
coords.map { |coord| @dice_grid[coord.first][coord.last]}.join("") #dice_grid[row][column]
end