The original article can be found here
This file contains hidden or 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
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta charset="utf-8"> | |
| <meta name="viewport" content="width=device-width"> | |
| <title>Line Art</title> | |
| </head> | |
| <body> | |
| <canvas id="c"></canvas><br> | |
| <label for="r">Radius</label> |
This file contains hidden or 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
| import numpy as np | |
| from random import uniform | |
| from scipy.signal import square | |
| from scipy.io import wavfile | |
| samplerate = 44100 | |
| startlength = 8 | |
| chirplength = 4 | |
| endlength = 16 |
This file contains hidden or 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
| #!/usr/bin/perl | |
| # i wouldn't recommend using this in its current state. because it uses sndioctl instead | |
| # of using libsndio directly, there's pretty much no way to detect server restarts &c. | |
| # this will be rewritten as a small C program soon. | |
| # this is intended to be run as a per-user service | |
| # https://docs.voidlinux.org/config/services/user-services.html | |
| use strict; |
This file contains hidden or 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
| [package] | |
| name = "beezchurger" | |
| version = "0.1.0" | |
| edition = "2024" | |
| [dependencies] | |
| gif = "0.13" |
OlderNewer