Skip to content

Instantly share code, notes, and snippets.

View wofockham's full-sized avatar
💭
raging at Microsoft

wofockham

💭
raging at Microsoft
View GitHub Profile

GROUP Groucho

  • Explain what a single page app is and how to make one SEO-friendly.
  • Explain the differences on the usage of foo between function foo() {} and var foo = function() {}
  • What are some advantages/disadvantages to testing your code?
  • What is the purpose of a code style linting tool?

GROUP Harpo

  • What is the value of foo: var foo = 10 + '20';
  • What does this return: "i'm a lasagna hog".split("").reverse().join("");
  • What is inheritance?

GROUP Groucho

  • What excites or interests you about coding?
  • Can you describe the difference between progressive enhancement and graceful degradation?
  • Explain the importance of standards and standards bodies.
  • Explain some of the pros and cons for CSS animations versus JavaScript animations.

GROUP Harpo

  • What does CORS stand for and what issue does it address?
  • What does a doctype do?
  • What are data- attributes good for?
@wofockham
wofockham / ffs
Last active July 12, 2016 01:40 — forked from tobyturnbullknokal/ffs
// Increase/decrease progress bar on button click
$(document).ready(function() {
$('.appbutton').on('click', function(){
var currentVal = $('#signup-progress').val();
currentVal += 10;
$('#signup-progress').val(currentVal); // Actually update the input?
console.log(currentVal)
});
});
var x = 10; // This is a comment
if (x > 5) {
  console.log('hello world');
}

var x = 10; // This is a comment if (x > 5) { console.log('hello world');

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>United Document</title>
<link rel="stylesheet" href="plasma.css">
</head>
<body>
<canvas id="plasma" width="255" height="160"></canvas>
<script src="plasma.js"></script>
require 'minitest/autorun'
require 'minitest/pride'
require 'pry'
require_relative './nucleotide'
class DNATest < MiniTest::Test
def test_empty_dna_string_has_no_adenosine
# skip
assert_equal 0, DNA.new('').count('A')
end

Some caption

Groucho

Harpo

Chico

Some paragraph of text.

Wordy Addition

Write a program that takes a word problem in the format:

What is 5 plus 13?

and returns the answer as an integer.

The program should handle large numbers and negative numbers.

Article Title

Subheading level 1

Hello you stupid little world.

I find that offensive.

Here is emphasis and different emphasis.