“The inferno of the living is not something that will be; if there is one, it is what is already here, the inferno where we live every day, that we form by being together. There are two ways to escape suffering it. The first is easy for many: accept the inferno and become such a part of it that you can no longer see it. The second is risky and demands constant vigilance and apprehension: seek and learn to recognize who and what, in the midst of inferno, are not inferno, then make them endure, give them space.”
― Italo Calvino, Invisible Cities
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
" tse vimrc v2013-10-11 | |
colorscheme pablo | |
filetype indent on | |
filetype on | |
filetype plugin on | |
let &t_Co=256 | |
set nocompatible | |
set encoding=utf-8 | |
set expandtab | |
set hidden |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# tse .bash_profile v2013-10-12 | |
# color escape codes | |
normal="\[\e[0m\]" | |
nobg="m\]" | |
blackbg=";40m\]" | |
redbg=";41m\]" | |
greenbg=";42m\]" | |
brownbg=";43m\]" | |
bluebg=";44m\]" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Forward | |
+ + + | |
By: Tyler Etters | |
You know, I had a typewriter once. I was around 8 or 9. It wasn't a 'real' typewriter, though, not one of those clickity-clackity typewriters. Sure you still put a piece of paper in it, and sure it took ink ribbons (yeah, just like in Resident Evil), but it didn't make the noises. Nor was it mechanical per se. Nor did it break down and require WD-40. | |
It was a hybrid digital one - you would type, and your letters would appear on a little 16 character alphanumeric screen one at a type. Once you got to the typing the 17th character, the first character you typed would be printed on the piece of paper. In this way, you would presumably have time to detect any typos before they made it out of the digital buffer and into the real world. | |
Several years later, my dearest friend had a real typewriter and used it for college essays. Yeah he had a computer. Yeah he had a printer. But he preferred to work with the typewriter. It helped him think. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
screen_dirty = true | |
function init() | |
counter = {} | |
message = "welcome to microstudy" | |
press_length_in_seconds = 1 | |
for k = 1,3 do | |
counter[k] = {} | |
end | |
clock.run(screen_redraw_clock) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
return { | |
-- Table: {1} | |
{ | |
["keeper_cells"]={2}, | |
["version_major"]=1, | |
["bpm"]=131, | |
["arcology_name"]="athens", | |
["counters_music_generation"]=1708, | |
["keeper_signals"]={3}, | |
["scale"]=1, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"rev_eng_input": -9.0 | |
"rev_cut_input": -9.0 | |
"rev_monitor_input": -inf | |
"rev_tape_input": -inf | |
"rev_return_level": -9.6432746655329e-16 | |
"rev_pre_delay": 60.0 | |
"rev_lf_fc": 200.0 | |
"rev_low_time": 6.0 | |
"rev_mid_time": 6.0 | |
"rev_hf_damping": 6000.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- place in /home/we/dust/code/arcologoes/lib/ | |
dev = {} | |
function dev:scene(i) | |
if i == 1 then | |
page:select(1) | |
-- menu:select_item(2) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- place in /home/we/dust/code/arcologies/lib/ | |
config.settings.dev_mode = true | |
config.settings.dev_scene = 2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/Users/tyleretters/Desktop/generateWaveform/myenv/bin/python | |
import os | |
import sys | |
from pydub import AudioSegment | |
import numpy as np | |
import matplotlib.pyplot as plt | |
def generate_waveform(audio_path, image_path, color, dimensions): | |
# Load the audio file |