Skip to content

Instantly share code, notes, and snippets.

View iani's full-sized avatar
💭
sc-hacks, sonarts_compmus_2020, emacs-prelude-personal-arch, sc-hacks-redux, dlb

Iannis Zannos iani

💭
sc-hacks, sonarts_compmus_2020, emacs-prelude-personal-arch, sc-hacks-redux, dlb
View GitHub Profile
@iani
iani / compmus_notes_session7.org
Last active February 12, 2019 08:43
compmus class session 7 notes, links

compmus class sonarts

Lighweight text markup formats

md

Converting between markup and rendering to online+pdf documents:

@iani
iani / clock_prototype.scd
Created February 8, 2019 17:09
compmus class session 7 sc code - clock
\clock.class;
'clock'.class;
Date.localtime - Date.localtime;
//:
\clock.window({ | w |
var routine, beats = 0, textdisplay, minutes, seconds;
@iani
iani / md_sample.md
Last active February 8, 2019 16:16
md sample for submitting compmus coursework

Chapter

Some content

Subchapter

  • Alpha
  • Beta
  • Gamma
@iani
iani / compmus_session_6_code_190201.scd
Created February 1, 2019 17:11
compmus session 6 code
// =====================================================================
// SuperCollider Workspace
// =====================================================================
Server.default.boot;
//:
Registry.at(\buffers);
//:
Registry.at(\buffers).keys;
//:
@iani
iani / compmus_sonarts_semwork.org
Created February 1, 2019 15:19
Instructions for semester work submission

Instructions for submitting coursework for Computer Music class @ Sonarts M.A.

Deadline: 14.3.2019

Practical Prerequisites

Things you must do to pass the class:

  1. Create an account on github.
  2. Create a repository named: compmus_coursework_sonarts_1903
  3. Write your paper and upload it on the above reposiory (see step 2). Use org mode or md format.
@iani
iani / computermusic_190125.org
Created January 25, 2019 17:40
computer music class short notes

Notes taken during discussions in class.

  • ar vs kr vs
  • how to work with recorded sound files Answer:
    • use Buffers. Buffer.read(…). See Buffer class
    • also possible: Use DiskIn. Or to write to disk: DiskOut.
  • what are the sound synthesis and sound analysis capabilities
@iani
iani / compmus_mediaart_research_inst.org
Last active January 21, 2019 12:22
institutions4MA_and_research

mtg Computer Music Class

c/o Stratos Bichakis: Christopher Bauder : White Void Studio

@iani
iani / compmus_roadmapSS19.org
Created January 21, 2019 10:46
roadmap computer music class

Roadmap till March 2019

Make the magneticdance system plug and play

Get started on chordata based motion tracking

Prepare a 3d graphics demo attached to magneticdance

Demo SC audio server on google + docker

@iani
iani / concatenatesensorargs.py
Created December 30, 2018 13:40
concatenate input data arrays from sensor for sending on OSC
while True:
print("sending to osc at address:")
print(clientIP)
# osc.send('/controls/frobnicator', 42, 3.1419, "spamm")
# time.sleep(1.0)
# # print("will send accelerometer next:")
# # time.sleep(1.0)
# USE + TO CONCATENATE DATA!!!!!!!!!!!
# alldata = sensor.accelerometer + sensor.magnetometer + sensor.gyroscope
# SEND ALL DATA LIKE THIS: