Skip to content

Instantly share code, notes, and snippets.

@nimitmaru
Created June 10, 2015 21:49
Show Gist options
  • Save nimitmaru/27d4a54c124714e68a2b to your computer and use it in GitHub Desktop.
Save nimitmaru/27d4a54c124714e68a2b to your computer and use it in GitHub Desktop.
categories:
- name: HTML
questions:
- question: A tag that was popular in the early internet but now considered by it's creator to be the worst thing he's ever done for the Internet, it alternates text from being visible to invisible.
answer: What is the blink tag?
- question: Invented by this person in 1995, the web immediately captured the imaginations of developers worldwide.
answer: Tim Berners Lee
- question: This property of HTML elements allows to have other elements next to them, otherwise it's only above or below.
answer: What is display (block vs inline)
- question: EVERDAY DOUBLE! (No. 1) # A weird looking type of tag, it's long form is bang, dash, dash
answer: What are HTML comments?
- question: The tag sounds like someone advanced in years, but it's real purpose is to create a list in your document.
answer: What is the ol (ol') tag?
- name: CSS
questions:
- question: Defines the space between the element border and element content.
answer: What is CSS padding?
- question: Defines the space around elements?
answer: What is CSS margin?
- question: Released by Twitter, this is the most popular HTML/CSS/JS framework for developing responsive websites.
answer: What is Bootstrap?
- question: The current version of CSS with many additional features for animation and grid layout.
answer: What is 3?
- question: The way to have an HTML file include a CSS stylesheet, similar to the script tag.
answer: What is "link"
- name: JavaScript
questions:
- question: This command pops up a window in your browser with whatever message you pass to it.
answer: What is "alert"?
- question: The most helpful word to help JavaScript-learners, this stops all execution of JavaScript and lets you inspect the current state.
answer: What is "debugger"
- question: EVERYDAY DOUBLE! No. 2 # The name of a function given to another function, so that the second function knows what to do when it's done with it's current work
answer: What is a callback function, continuations, futures
- question: The five basic primitive types in JavaScript.
answer: What are null, undefined, Number, String, Boolean?
- question: Considered a design flaw in the JS language, this problem manifests itself when you compare objects of two different types in JavaScript.
answer: What is double equal versus triple equal? (Type conversion.)
- name: JavaScript History
questions:
- question: This man wrote JavaScript over 10 days at Netscape and was recently ousted as the CEO of Mozilla.
answer: Who is Brandon Eich?
- question: The current and future versions of JavaScript.
answer: What is ES5 and ES6?
- question: The underlying technology beneath both Node and the Chrome browser, considered the fastest JavaScript engine.
answer: Chrome's V8 Engine
- question: This technology was considered by many to launch JavaScript from browser decoration to a real application language.
answer: What is AJAX? (Gmail)
- question: JavaScript is based on this language, not to be confused with a skin disorder.
answer: What is ECMAScript?
- name: Fullstack Academy
questions:
- question: The Instructor who runs Foundations and sends you your daily Foundations reminders.
answer: Who is Scott D'alessandro
- question: The Fullstack Logo represents both upward ascenscion, and one other less metaphorical symbol.
answer: What is an F?
- question: The startup accelerator that Fullstack Academy went through - it's name means a company to create new companies.
answer: What is Y Combinator?
- question: The number of hackathons won by previous Fullstack Academy students.
answer: What is 15.
- question: The three major sections of the entire 21-week Fullstack Course.
answer: What are Foundations, Academy, and Flight?
- name: Test First
questions:
- question: Two ways to set properties of an object in JavaScript.
answer: What is dot and array notation?
- question: Both iterating over an entire collection with a function, one returns the original collection, one returns a new collection based on the results of the function.
answer: What is the difference between map and forEach?
- question: That feeling in relationships when even after leaving, you can still remember all the things you defined together.
answer: Closure
- question: When a function calls itself, it's often just trying to solve the same problem, but smaller.
answer: What is recursion?
- question: EVERYDAY DOUBLE! No. 3 # When in Poland 7 28 + 5 / 1 +
answer: What is 8?
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment