This gist is part of a blog post. Check it out at:
http://jasonrudolph.com/blog/2011/08/09/programming-achievements-how-to-level-up-as-a-developer
var tilesStarted = false; | |
var files = ["shapes/a.svg", | |
"shapes/b.svg", | |
"shapes/c.svg", | |
"shapes/d.svg", | |
"shapes/e.svg", | |
"shapes/f.svg", |
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>Test Google Forms</title> | |
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> | |
</head> | |
<body> |
<!doctype html> | |
<html lang="en"> | |
<head> | |
<style> | |
.crossed-out { | |
text-decoration: line-through; | |
color: red; | |
} |
// | |
// ViewController.swift | |
// DelegateChallenge | |
// | |
// Created by Kelly Egan on 4/7/15. | |
// Copyright (c) 2015 Kelly Egan. All rights reserved. | |
// | |
import Foundation | |
import UIKit |
// | |
// ViewController.swift | |
// SendEmailWithAttachment | |
// | |
// Created by Kelly Egan on 3/17/15. | |
// Copyright (c) 2015 Kelly Egan. All rights reserved. | |
// | |
import UIKit | |
import MessageUI |
bl_info = { | |
"name": "Export animation frames as mesh files", | |
"category": "Export", | |
} | |
import bpy | |
class frameExportMesh( bpy.types.Operator): | |
"""Export animation frames as mesh files.""" | |
bl_idname = "frame.export_mesh" |
// Zoetrope | |
// Copyright 2014 Kelly Egan | |
// | |
// 3D Strobescopic Zoetrope for Makerfaire 2014 | |
#define BUTTON_PIN 12 //Button to turn zoetrope on and off | |
#define POT_PIN 0 //Potentiometer used to set speed of motor | |
#define INDICATOR_PIN 13 //Indicator LED | |
#define HALL_PIN 3 //Hall effect sensor to determine motor speed |
This gist is part of a blog post. Check it out at:
http://jasonrudolph.com/blog/2011/08/09/programming-achievements-how-to-level-up-as-a-developer