Skip to content

Instantly share code, notes, and snippets.

@mlassoff
mlassoff / gist:389ea54f921c530aaa84
Created April 23, 2015 19:33
Weather App from LearnToProgram Webinar 4/2015
//
// ViewController.swift
// WeatherWebinar
//
// Created by Mark Lassoff on 4/23/15.
// Copyright (c) 2015 Mark Lassoff. All rights reserved.
//
import UIKit
@mlassoff
mlassoff / fingerpaint.html
Created April 14, 2017 02:04
Created during LearnToProgram.tv's hack night on 4/13/2017
<!DOCTYPE html>
<html>
<head>
<title>Fingerpaint</title>
<style>
h1
{
font-family: Arial;
}
canvas
var vocab = [
"IDE",
"Version Control",
"Stanards and Conventions",
"Libraries",
"Frameworks",
"Tools",
"Languages",
"Sprites",
"JSON" ];
<!DOCTYPE html>
<html>
<head>
<title>Page Metaphor</title>
<meta name="viewport" content="user-scalable=no, width=device-width, initial-scale=1, maximum-scale=1">
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.css" />
<script src="http://code.jquery.com/jquery-1.11.1.min.js"></script>
<script src="http://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/hammer.js/2.0.8/hammer.min.js"></script>
<script src="terminology.js"></script>
<!DOCTYPE html>
<html>
<head>
<title>Page Metaphor</title>
<meta name="viewport" content="user-scalable=no, width=device-width, initial-scale=1, maximum-scale=1">
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.css" />
<script src="http://code.jquery.com/jquery-1.11.1.min.js"></script>
<script src="http://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/hammer.js/2.0.8/hammer.min.js"></script>
<script src="terminology.js"></script>
<!Doctype HTML>
<html>
<head>
<title>Lists</title>
</head>
<body>
<h1>Mark's favorite Bands</h1>
<ul type="disc">
<li>Journey</li>
<li>Scandal</li>
<!DOCTYPE html>
<html>
<head>
<title>Text Formatting</title>
<style>
h1{
font-family: Georgia;
color: #0000FF;
background-color: beige;
font-size: 3em;
https://gist.github.com/mlassoff/5088a833ca3062a625ec5f79d14bf95c
<!DOCTYPE html>
<html>
<head>
<title>Music</title>
<style>
table
{
border: 1px dotted #128fc2;
background-color: #eeeeee;
border-collapse: collapse;
<script>
let numbers = new Set()
.add("B1")
.add("B2")
.add("B3")
.add("B4")
.add("B5")
.add("B6")
.add("B7")
.add("B8")