Skip to content

Instantly share code, notes, and snippets.

@mbburch
mbburch / sonic-pi.md
Last active December 11, 2015 13:50
Sonic Pi Student Led Session

Purpose/ Intro

  • Wanted to look at a fun tool that can be used in education. I stopped playing music a long time ago, and want to find ways to start playing around with it again. Know there are lots of musicians here.

Background: What is it?

  • Developed in 2012 by Sam Aaron at U. of Cambridge
  • A free live coding synth based on Ruby for everyone originally designed to support computing and music lessons within schools.
  • An open source programming environment originally designed to explore and teach programming concepts within schools through the process of creating new sounds.
  • Three core domains:
    • Art: express yourself and ask new questions of music and notation
  • Technology: explore questions related to liveness, time and concurrency in programming languages
@mbburch
mbburch / countdown.js
Last active December 15, 2015 18:10
Remote Work 12/15
function countdown(n) {
if (n < 0) { return n };
console.log(n);
countdown(n-1);
}
countdown(4);
@mbburch
mbburch / react-notes.md
Last active December 16, 2015 18:50 — forked from biglovisa/react-notes.md
React in theory

Use this gist to write down notes and questions as you read through the lesson plan. https://github.com/turingschool/lesson_plans/blob/master/ruby_04-apis_and_scalability/react_in_theory.markdown

What does React do?

It's used to create user interfaces. Small components that present data. Tells HTML what to render and how to respond to events. (?Well structured component tree?) Clarify how different from regular JS and JQuery? Unclear.

How does React interact with the DOM?

Each component has a render function. It executes the code and renders the JS and HTML in the return statement. ?Virtual DOM? React listens for state changes (data that can change) and re-renders it (in contrast to polling the data). When setState is called in a component, React knows to re-render it. (?Clarify mounted on the DOM?)

@mbburch
mbburch / resources-to-bookmark.md
Last active February 12, 2016 18:44
Resources, shortcuts, and cheat sheets for Atom, the terminal, and general workflow
@mbburch
mbburch / prework-week.md
Last active August 22, 2016 23:46
If you have about a week to prepare for Turing, here are your pre-work requirements and a schedule to follow.

Prework: If you Have a Week

Daily Tasks:

Time Frame
Task Accountability Check
@mbburch
mbburch / prework-month.md
Last active October 22, 2016 21:43
If you have about a month to prepare for Turing, here are your pre-work requirements and a schedule to follow.

Prework: If you Have a Month

Priorities:

First Week's Suggested Schedule

Daily Tasks:

@mbburch
mbburch / prework.md
Last active November 13, 2023 09:57
An example template for your Turing pre-work Gist

Turing School Prework

Task A- Practice Typing:

  • screenshots of scores will be posted in comments

Task B- Algorithmic Thinking & Logic:

  • screenshots of completed sections will be posted in comments

Task C- Create your Gist: