Skip to content

Instantly share code, notes, and snippets.

@kahunamoore
kahunamoore / script.js
Created August 18, 2017 06:23 — forked from anonymous/script.js
StudentLookup
// Note: We would normally get this data from
// a database via an HTTP server. This is just
// example data "hard coded" here for clarity.
var alanStudent = {
id: 1234,
firstName: "Alan",
lastName: "Moore",
age: 42,
birthdate: new Date(10, 24, 1964)
@kahunamoore
kahunamoore / index.html
Created August 18, 2017 06:27 — forked from anonymous/index.html
ToDoList
<!-- Note: depends on jQuery being included via Pen Settings -->
<input id="new-todo" type="text" onkeypress="checkForEnter(event);" />
<button onclick="addToDo()" >Add</button>
<button onclick="deleteAll()">Delete All</button>
<ul id="todos"></ul>
@kahunamoore
kahunamoore / index.html
Created August 18, 2017 06:28 — forked from anonymous/index.html
Kqrxae
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.js"></script>
<input onkeydown="doit(event)" />
<div id="second-div">Second DIV</div>
<div data="x">Third div</div>
@kahunamoore
kahunamoore / Week #1
Created September 19, 2017 07:39
Week #1
Welcome to Connected Communities Academy!
In the course we will cover the following subject areas:
# Week 1
## Introduction & HTML/CSS
## Monday:
@kahunamoore
kahunamoore / week1.md
Created September 19, 2017 07:41
Week #1

Welcome to Connected Communities Academy!

In the course we will cover the following subject areas:

Week 1

Introduction & HTML/CSS

Monday:

@kahunamoore
kahunamoore / week2.md
Created September 19, 2017 07:42
Week #2

Week 2

JavaScript Basics

Monday

Lecture

  • Tables
  • CSS Table Styling