I have found that now that I have stopped going to school and have earned all the institutional degrees I will probably ever get (high school, bachelor of science, master of science), my mind tends to get bored if I don't keep learning. Sometimes it is just thinking deep thoughts and other times it is re-learning the deep thoughts that I used to have.
I recently wrote a short script in python (using the scipy libraries) that generates a WAV file of white noise. It starts off by generating a buffer of random noise. Then it passes the data through a lowpass Butterworth filter (which you can set the order and cutoff frequency). After filtering, it writes the data out to a wave file. To reduce transitional blips between frames, I just use the same frame back to back with the samples reversed. If the frame is long enough (more than a couple of seconds), it is difficult to notice any repeating cycles, and if they are that far apart, it is soothing, like ocean waves. I knew that I could do this sort of thing because Dr. Oliphant, my ECEn 380 professor, drilled this stuff into my head so deeply that I will forever have signals and systems running through my head.