Skip to content

Instantly share code, notes, and snippets.

@jlweave
jlweave / gist:880cf373ec74f363b6a5df5fcef9622b
Last active November 26, 2022 20:49
Mod 2 Intermission Work
# B2 Intermission Work
Answer these Check for Understanding questions as you work through the assignments.
## HTML
1. What is HTML?
a standard markup language for web pages
1. What is an HTML element?
@jlweave
jlweave / Flashcards
Created August 11, 2022 00:49 — forked from kmandreza/Flashcards
Ruby Flashcards 1: Single Deck Let's build a simple flashcard game in Ruby with a command-line interface. Here is an example of one possible implementation: $ ruby flashcards.rb Welcome to Ruby Flash Cards. To play, just enter the correct term for each definition. Ready? Go! Definition A file format in which values are delimited by commas. Guess…
class Flashcard #data structure
attr_accessor :term, :definition
def initialize(term,definition)
@term=term
@definition=definition
end
end