Skip to content

Instantly share code, notes, and snippets.

View daytona1's full-sized avatar

Andy Dayton daytona1

View GitHub Profile
@daytona1
daytona1 / CCFA15_week15.md
Last active December 18, 2015 14:09
Last class!

Last Class!

BABKA

We've got babka!

Email me your project!

  • Send me a link if you can
  • Otherwise create a zip file!
@daytona1
daytona1 / CCFA15_week14.md
Last active December 11, 2015 13:01
Week 14

How we feelin?

Tured

Today

  • Work day! All day.
@daytona1
daytona1 / vicki_help_1.js
Last active December 2, 2015 22:01
Help for Vicki's "Timepiece" project
// need to declare the `circleScale` var up top
var circleScale;
var maxScale = 100;
/**
* Setup the sketch
*/
function setup() {
createCanvas(windowWidth, windowHeight);
@daytona1
daytona1 / github_publishing.md
Last active December 2, 2015 21:35
Updating your class site & publishing

Updating Class Site & Publishing

Publish!

This explainer will give you step-by-step instructions for how to update and publish your class site to GitHub. It breaks this process down into four steps:

  1. What's going on here?
  2. Updating your class site
  3. Tracking changes to your class site using Git
  4. Pushing your changes to GitHub
@daytona1
daytona1 / CCFA15_week13.md
Last active January 31, 2017 18:24
Week 13

Week 13: Working with Data!

How we feelin?

Reset

Image by A. M. Stanford

Today

@daytona1
daytona1 / CCFA15_week12.md
Last active January 31, 2017 18:24
Week 12

Week 12: Time to get busy

How we feelin?

Zombie Mode

Today

  1. Discussion
  2. "Timepiece" projects
@daytona1
daytona1 / CCFA15_week_11.md
Last active January 31, 2017 18:24
Creative computing week 11

Week 11: Work Day!

How we feelin?

Today

Today

  1. Pushing to the web server
  2. Basic project setup review
@daytona1
daytona1 / html_questions.md
Last active October 30, 2015 13:37
HTML Questions!

Questions

1: What's the relationship between the terminal & HTML?

2: How do I change the typeface?

3: What does the a tag and href do? Where can you go with it?

4: How can I make a typeface into a webfont and then use it?

@daytona1
daytona1 / local_server.md
Last active January 31, 2017 18:24
Running a local server

Running a Local Server

This document includes instructions on how to run a local server on your computer using Python.

Python setup

You may need to run a local server for all of the features of p5 to work. On a Mac, you should already have Python installed which has an easy built-in way to start up a server from your project. Open up your terminal and try this:

 $ python --version