Skip to content

Instantly share code, notes, and snippets.

View RobAWilkinson's full-sized avatar

Rob Wilkinson RobAWilkinson

  • @oddballio
  • Austin, TX
View GitHub Profile

#Intro to Golang

###What is go

  • statically typed
  • functional language
  • with concurrency built right in

###set up

#Intro to Golang

###What is go

  • statically typed
  • functional language
  • with concurrency built right in

###set up

package drum
import (
"bytes"
"encoding/binary"
// "math"
// "encoding/hex"
"fmt"
"io/ioutil"
// "reflect"
package drum
import (
"bytes"
"encoding/binary"
// "math"
// "encoding/hex"
"fmt"
"io/ioutil"
// "reflect"

#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?

Testing Gist

#WDI Installfest (Mac)

Please check your OS X version before beginning. (Click the Apple menu and choose About this Mac.) This set of steps should work for Mavericks or Yosemite; if you're on another version, let an instructor know.

##XCode

Open up your App store and install XCode

#Lesson Index Card

###1. CSS Selectors and Styling

###2. Learning Objective(s)

  • Say what CSS is and stands for
  • Create a simple CSS sheet
  • use element selectors
  • use class selectors
  • use id selectors

#Lesson Index Card

###1. CSS Selectors and Styling

###2. Learning Objective(s)

  • Say what CSS is and stands for
  • Create a simple CSS sheet
  • use element selectors
  • use class selectors
  • use id selectors

#Javascript Arrays, Loops, Iterating

##Learning Objectives

  • Describe why arrays are useful and how to use them effectively in JavaScript
  • Describe the difference between “for” Loops, “for..in” Loops, and “forEach”
  • create while loops and for loops
  • iterate through arrays