Skip to content

Instantly share code, notes, and snippets.

View RobAWilkinson's full-sized avatar

Rob Wilkinson RobAWilkinson

  • @oddballio
  • Austin, TX
View GitHub Profile

The mobbing manual provides guidelines for working in a group oriented context

Values

  • Kindness
  • Consideration
  • Respect

Roles

  • Driver Learning Goal: practice keyboarding, listening, and translation skills.

#Lesson Index Card

###1. HTML Basics

###2. Learning Objective

  • Build a basic page and identify HTML5 semantic elements
  • Understand what HTML stands for
  • Be able to create an HTML page from scratch
  • Understand Nested HTML
@RobAWilkinson
RobAWilkinson / Html basics.md
Created December 2, 2014 18:53
HTML Basics

#Lesson Index Card

###1. HTML Basics

###2. Learning Objective

  • Build a basic page and identify HTML5 semantic elements
  • Understand what HTML stands for
  • Be able to create an HTML page from scratch
  • Understand Nested HTML
@RobAWilkinson
RobAWilkinson / GitConfigSetup.md
Created December 3, 2014 00:23
Git config initial setup

###Step 1 Make some Folders $ mkdir ~/.config $ mkdir ~/.config/git

###Step 2 Create a blank file $ touch ~/.config/git/ignore

###Step 3 Open in Sublime $ subl ~/.config/git/ignore

@RobAWilkinson
RobAWilkinson / CSS Selectors.md
Last active August 29, 2015 14:10
CSS Selectors and Styling

#Lesson Index Card

###1. CSS Selectors and Styling

###2. Learning Objective(s)

  • Say what CSS is and stands for
  • Create a simple CSS sheet
  • Understand how to select elements out of the DOM

###3. Essential Question(s)

@RobAWilkinson
RobAWilkinson / CSS Positioning.md
Last active August 29, 2015 14:10
CSS Positioning

CSS Positioning

Learning Objectives

  • Utilize margin: inherit auto; to center elements
  • Utilize text-align: center; to center elements
  • Understand the difference between static, relative, fixed, & absolute positioning
  • Know what floats do and how to use them

Essential Question(s)

@RobAWilkinson
RobAWilkinson / Sample JS.md
Last active August 29, 2015 14:10
Sample JS

Good code for age check

var today = new Date();
var todayYear = today.getFullYear(), 		
    todayMonth = (today.getMonth() + 1),  	
    todayDate = today.getDate();
    
var birthdayYear = prompt("What year were you born?"),

#Lesson Index Card

###1. Introduction To Javascript

###2. Learning Objective(s)

  • what variables are
  • what strings are
  • when and where javascript resides
  • What is javascript?
@RobAWilkinson
RobAWilkinson / Age Check.js
Last active August 29, 2015 14:10
Age Check JS
var today = new Date();
var todayYear = today.getFullYear(),
todayMonth = (today.getMonth() + 1),
todayDate = today.getDate();
var birthdayYear = prompt("What year were you born?"),
birthdayMonth = prompt("What month"),
birthdayDate = prompt("What Day were you born?");
@RobAWilkinson
RobAWilkinson / JS Events.md
Created December 5, 2014 17:13
JS Events

###1. JavaScript Events

###2. Learning Objective(s)

  • Understand the role of events
  • Recognize and respond to common types of events
    • load
    • click
    • mouseover
    • mouseout