Blog
Blog
Synthesizer hardware notes, creative technology, and more.

Tools
Markdown Cheat Sheet
<p>A quick reference to the Markdown syntax. Overview This Markdown cheat sheet offers a concise overview of all Markdown syntax elements. While it may not encompass every edge case, for more detailed information on any of these elements, please consult the reference guides for basic syntax and extended syntax. Basic Syntax: These elements are outlined […]</p>
Effects Design
Effects Design – Jon Dattorro – Notes
<p>Jon Dattorro’s Effect Design Part 1: Reverberator and Other Filters is located here: https://ccrma.stanford.edu/~dattorro/EffectDesignPart1.pdf</p>
Audio Hardware Design
Electrosmith Daisy Patch SM Example Code Descriptions
<p>This is the descriptions of the control functions from the Electrosmith Daisy Patch SM sample code. Envelope Example This example demonstrates using the daisy for an ADSR envelope. This example shows off the ability to output audio rate control voltage signals from the CV output pins of the DAC.</p>

One More Thing
Kelly Johnson’s 14 Rules of Management
<p>KISS – Keep It Simple Stupid Clarence “Kelly” Johnson Clarence “Kelly” Johnson, founder of Lockheed’s famed Skunk Works is sometimes cited as the originator of the KISS principle, and his famed “down-to-brass-tacks” management style was summed up by his motto, “Be quick, be quiet, and be on time.” He ran the Skunk Works by “Kelly’s 14 Rules”: Johnson had […]</p>

One More Thing
Steve Jobs on Design
<p>Design is the fundamental soul of a man made creation. Steve Jobs</p>
Apple Development
Swift Intermediate – FinalExam1.1
https://github.com/KennethJacksonTech/FinalExam1.1 0 forks. 0 stars. 0 open issues. Recent commits: Initial Commit, Kenneth Jackson Initial Commit, Kenneth Jackson
Apple Development
Intermediate Swift – BMI
BMI Calculator Exercise https://github.com/KennethJacksonTech/BMI 0 forks. 0 stars. 0 open issues. Recent commits: BMI Calculator Exercise, Kenneth Jackson Initial Commit, Kenneth Jackson
Apple Development
Intermediate Swift – Chapter 2.3 Structures
import UIKit import Foundation //Structures struct Person { var name: String func sayHello() { print("Hello, there! My name is \(name)") } } let firstPerson = Person(name: "Kenneth") print(firstPerson.name) firstPerson.sayHello() let person = Person(name: "Zane") print(person.name) person.sayHello()
Apple Development
Intermediate Swift – Chapter 2.2 Functions
import UIKit func displayPi() { print("3.1415926535") } displayPi() //Parameters func triple(value: Int) { let result = value * 3 print("If you multiply \(value) by 3, you''ll get \(result).") } triple(value: 10) func multiply(firstNumber: Int, secondNumber: Int) { let result = firstNumber * secondN
