uploaded all materials

This commit is contained in:
2025-03-24 00:43:09 -04:00
commit f2fb36f646
78 changed files with 15606 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
function noise = fortune_favors_the_fontaine(Fs, duration)
% make some noise
output = "";
while strlength(output) < Fs*duration
[ret dirty_snippet] = unix('fortune');
% clean
snippet = regexprep(dirty_snippet, '[^A-Za-z]+', '');
output = strcat(output, snippet);
end
noise = normalize(letters2numbers(convertStringsToChars(output)));
end
% <+.03> what the fuck