├── 100LinesOfCode ├── -00LinesOfCode-Info.plist ├── 100LinesOfCode.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ ├── xcshareddata │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ └── swiftpm │ │ │ │ └── Package.resolved │ │ └── xcuserdata │ │ │ └── nickculbertson.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata │ │ └── nickculbertson.xcuserdatad │ │ ├── xcdebugger │ │ └── Breakpoints_v2.xcbkptlist │ │ └── xcschemes │ │ └── xcschememanagement.plist ├── 100LinesOfCode │ ├── 100LinesOfCodeApp.swift │ ├── AVAudioUnitSamplerExample.swift │ ├── AppleSamplerExample.swift │ ├── Assets.xcassets │ │ ├── .DS_Store │ │ ├── AccentColor.colorset │ │ │ └── Contents.json │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── ComingSoon.swift │ ├── ContentView.swift │ ├── DrumPads.swift │ ├── DunneSamplerExample.swift │ ├── Preview Content │ │ └── Preview Assets.xcassets │ │ │ └── Contents.json │ ├── Sequencer.swift │ ├── SwiftUIKeyboard.swift │ ├── Synth.swift │ └── SynthPunkConsole.swift ├── 100LinesOfCodeTests │ └── 100LinesOfCodeTests.swift ├── 100LinesOfCodeUITests │ ├── 100LinesOfCodeUITests.swift │ └── 100LinesOfCodeUITestsLaunchTests.swift └── Sounds │ ├── .DS_Store │ ├── GuitarSamples.wav │ ├── GuitarTaps.exs │ ├── saw220.wav │ ├── sqr.SFZ │ ├── uke.exs │ └── uke.m4a ├── LICENSE └── README.md /100LinesOfCode/-00LinesOfCode-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickCulbertson/100-Lines-of-Code-AudioKit-Examples/HEAD/100LinesOfCode/-00LinesOfCode-Info.plist -------------------------------------------------------------------------------- /100LinesOfCode/100LinesOfCode.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickCulbertson/100-Lines-of-Code-AudioKit-Examples/HEAD/100LinesOfCode/100LinesOfCode.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /100LinesOfCode/100LinesOfCode.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickCulbertson/100-Lines-of-Code-AudioKit-Examples/HEAD/100LinesOfCode/100LinesOfCode.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /100LinesOfCode/100LinesOfCode.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickCulbertson/100-Lines-of-Code-AudioKit-Examples/HEAD/100LinesOfCode/100LinesOfCode.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /100LinesOfCode/100LinesOfCode.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickCulbertson/100-Lines-of-Code-AudioKit-Examples/HEAD/100LinesOfCode/100LinesOfCode.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved -------------------------------------------------------------------------------- /100LinesOfCode/100LinesOfCode.xcodeproj/project.xcworkspace/xcuserdata/nickculbertson.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickCulbertson/100-Lines-of-Code-AudioKit-Examples/HEAD/100LinesOfCode/100LinesOfCode.xcodeproj/project.xcworkspace/xcuserdata/nickculbertson.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /100LinesOfCode/100LinesOfCode.xcodeproj/xcuserdata/nickculbertson.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickCulbertson/100-Lines-of-Code-AudioKit-Examples/HEAD/100LinesOfCode/100LinesOfCode.xcodeproj/xcuserdata/nickculbertson.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /100LinesOfCode/100LinesOfCode.xcodeproj/xcuserdata/nickculbertson.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickCulbertson/100-Lines-of-Code-AudioKit-Examples/HEAD/100LinesOfCode/100LinesOfCode.xcodeproj/xcuserdata/nickculbertson.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /100LinesOfCode/100LinesOfCode/100LinesOfCodeApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickCulbertson/100-Lines-of-Code-AudioKit-Examples/HEAD/100LinesOfCode/100LinesOfCode/100LinesOfCodeApp.swift -------------------------------------------------------------------------------- /100LinesOfCode/100LinesOfCode/AVAudioUnitSamplerExample.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickCulbertson/100-Lines-of-Code-AudioKit-Examples/HEAD/100LinesOfCode/100LinesOfCode/AVAudioUnitSamplerExample.swift -------------------------------------------------------------------------------- /100LinesOfCode/100LinesOfCode/AppleSamplerExample.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickCulbertson/100-Lines-of-Code-AudioKit-Examples/HEAD/100LinesOfCode/100LinesOfCode/AppleSamplerExample.swift -------------------------------------------------------------------------------- /100LinesOfCode/100LinesOfCode/Assets.xcassets/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickCulbertson/100-Lines-of-Code-AudioKit-Examples/HEAD/100LinesOfCode/100LinesOfCode/Assets.xcassets/.DS_Store -------------------------------------------------------------------------------- /100LinesOfCode/100LinesOfCode/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickCulbertson/100-Lines-of-Code-AudioKit-Examples/HEAD/100LinesOfCode/100LinesOfCode/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /100LinesOfCode/100LinesOfCode/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickCulbertson/100-Lines-of-Code-AudioKit-Examples/HEAD/100LinesOfCode/100LinesOfCode/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /100LinesOfCode/100LinesOfCode/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickCulbertson/100-Lines-of-Code-AudioKit-Examples/HEAD/100LinesOfCode/100LinesOfCode/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /100LinesOfCode/100LinesOfCode/ComingSoon.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickCulbertson/100-Lines-of-Code-AudioKit-Examples/HEAD/100LinesOfCode/100LinesOfCode/ComingSoon.swift -------------------------------------------------------------------------------- /100LinesOfCode/100LinesOfCode/ContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickCulbertson/100-Lines-of-Code-AudioKit-Examples/HEAD/100LinesOfCode/100LinesOfCode/ContentView.swift -------------------------------------------------------------------------------- /100LinesOfCode/100LinesOfCode/DrumPads.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickCulbertson/100-Lines-of-Code-AudioKit-Examples/HEAD/100LinesOfCode/100LinesOfCode/DrumPads.swift -------------------------------------------------------------------------------- /100LinesOfCode/100LinesOfCode/DunneSamplerExample.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickCulbertson/100-Lines-of-Code-AudioKit-Examples/HEAD/100LinesOfCode/100LinesOfCode/DunneSamplerExample.swift -------------------------------------------------------------------------------- /100LinesOfCode/100LinesOfCode/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickCulbertson/100-Lines-of-Code-AudioKit-Examples/HEAD/100LinesOfCode/100LinesOfCode/Preview Content/Preview Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /100LinesOfCode/100LinesOfCode/Sequencer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickCulbertson/100-Lines-of-Code-AudioKit-Examples/HEAD/100LinesOfCode/100LinesOfCode/Sequencer.swift -------------------------------------------------------------------------------- /100LinesOfCode/100LinesOfCode/SwiftUIKeyboard.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickCulbertson/100-Lines-of-Code-AudioKit-Examples/HEAD/100LinesOfCode/100LinesOfCode/SwiftUIKeyboard.swift -------------------------------------------------------------------------------- /100LinesOfCode/100LinesOfCode/Synth.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickCulbertson/100-Lines-of-Code-AudioKit-Examples/HEAD/100LinesOfCode/100LinesOfCode/Synth.swift -------------------------------------------------------------------------------- /100LinesOfCode/100LinesOfCode/SynthPunkConsole.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickCulbertson/100-Lines-of-Code-AudioKit-Examples/HEAD/100LinesOfCode/100LinesOfCode/SynthPunkConsole.swift -------------------------------------------------------------------------------- /100LinesOfCode/100LinesOfCodeTests/100LinesOfCodeTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickCulbertson/100-Lines-of-Code-AudioKit-Examples/HEAD/100LinesOfCode/100LinesOfCodeTests/100LinesOfCodeTests.swift -------------------------------------------------------------------------------- /100LinesOfCode/100LinesOfCodeUITests/100LinesOfCodeUITests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickCulbertson/100-Lines-of-Code-AudioKit-Examples/HEAD/100LinesOfCode/100LinesOfCodeUITests/100LinesOfCodeUITests.swift -------------------------------------------------------------------------------- /100LinesOfCode/100LinesOfCodeUITests/100LinesOfCodeUITestsLaunchTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickCulbertson/100-Lines-of-Code-AudioKit-Examples/HEAD/100LinesOfCode/100LinesOfCodeUITests/100LinesOfCodeUITestsLaunchTests.swift -------------------------------------------------------------------------------- /100LinesOfCode/Sounds/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickCulbertson/100-Lines-of-Code-AudioKit-Examples/HEAD/100LinesOfCode/Sounds/.DS_Store -------------------------------------------------------------------------------- /100LinesOfCode/Sounds/GuitarSamples.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickCulbertson/100-Lines-of-Code-AudioKit-Examples/HEAD/100LinesOfCode/Sounds/GuitarSamples.wav -------------------------------------------------------------------------------- /100LinesOfCode/Sounds/GuitarTaps.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickCulbertson/100-Lines-of-Code-AudioKit-Examples/HEAD/100LinesOfCode/Sounds/GuitarTaps.exs -------------------------------------------------------------------------------- /100LinesOfCode/Sounds/saw220.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickCulbertson/100-Lines-of-Code-AudioKit-Examples/HEAD/100LinesOfCode/Sounds/saw220.wav -------------------------------------------------------------------------------- /100LinesOfCode/Sounds/sqr.SFZ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickCulbertson/100-Lines-of-Code-AudioKit-Examples/HEAD/100LinesOfCode/Sounds/sqr.SFZ -------------------------------------------------------------------------------- /100LinesOfCode/Sounds/uke.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickCulbertson/100-Lines-of-Code-AudioKit-Examples/HEAD/100LinesOfCode/Sounds/uke.exs -------------------------------------------------------------------------------- /100LinesOfCode/Sounds/uke.m4a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickCulbertson/100-Lines-of-Code-AudioKit-Examples/HEAD/100LinesOfCode/Sounds/uke.m4a -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickCulbertson/100-Lines-of-Code-AudioKit-Examples/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickCulbertson/100-Lines-of-Code-AudioKit-Examples/HEAD/README.md --------------------------------------------------------------------------------