-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
36cb737
commit 24bd776
Showing
6 changed files
with
72 additions
and
3 deletions.
There are no files selected for viewing
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
# Notes from the Underground | ||
|
||
Fyodor Dostoevsky | July 2024 | ||
|
||
The book is a diary of a guy has reached boss level in overthinking but weirdly as much as you can ridicule the guy which he openly welcomes you to in the book, you sometimes find yourself relating to him in matters, i find that a very interesting study on how paradoxical the human mind is. | ||
|
||
Some notes from it.. | ||
|
||
Nature does not ask your permission, she has nothing to do with your wishes, and whether you like her laws or dislike them, you are bound to accept her as she is, and consequently all her conclusions. A wall, you see, is a wall ... and so on, and so on.’ | ||
|
||
My jests, gentlemen, are of course in bad taste, jerky, involved, lacking self-confidence. But of course that is because I do not respect myself. Can a man of perception respect himself at all? | ||
|
||
|
||
I invented adventures for myself and made up a life, so as at least to live in some way. | ||
|
||
In consequence again of those accursed laws of consciousness, anger in me is subject to chemical disintegration. You look into it, the object flies off into air, your reasons evaporate, the criminal is not to be found, the wrong becomes not a wrong but a phantom, | ||
|
||
do you know, perhaps I consider myself an intelligent man, only because all my life I have been able neither to begin nor to finish anything. Granted I am a babbler, a harmless vexatious babbler, like all of us. But what is to be done if the direct and sole vocation of every intelligent man is babble, that is, the intentional pouring of water through a sieve? | ||
|
||
Shower upon man every earthly blessing, drown him in a sea of happiness, so that nothing but bubbles of bliss can be seen on the surface; give him economic prosperity, such that he should have nothing else to do but sleep, eat cakes and busy himself with the continuation of his species, and even then out of sheer ingratitude, sheer spite, man would play you some nasty trick. | ||
|
||
|
||
A True autobiography is almost an impossibility, and that man is bound to lie about himself. | ||
|
||
|
||
With me loving meant tyrannising and showing my moral superiority. | ||
|
||
|
||
|
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
### What is it | ||
|
||
https://github.com/pure-data/pure-data | ||
|
||
|
||
This intro starts from building a simple metronome in Pd goes upto Sound Synthesis applications | ||
|
||
https://sites.google.com/site/introtopd | ||
|
||
Pure Data is a visual dataflow programming language. Dataflow languages model a program as a directed graph of the data flowing between operations | ||
|
||
This works like a modular synth by creating a graphical environment that models the flow of the control and audio. Along with basic mathematical, logical, and bitwise operators PD also support Digital Signal Processing functions like wavetable oscillators, Fast Fourier transforms (fft~) and a bunch of filters while also accepting standard audio input from mic, MIDI via OSC or generated on the fly, and stored in tables, which can then be read back and used as audio signals or control data. | ||
|
||
### 4 Basic Entities | ||
|
||
Pd supports four basic types of entities: | ||
|
||
- **objects** | ||
|
||
Different functionalities of PD like print & oscillator. There are more than 100 different objects in Pd. Each object functions differently | ||
|
||
There are two types of objects | ||
|
||
- Tilde (~) objects deal with audio signal | ||
- Control objects deal the rest (e.g. MIDI data) | ||
|
||
- **atoms** | ||
|
||
Atoms are the most basic unit of data in Pd, and they consist of either a float, a symbol, or a pointer to a data structure (in Pd, all numbers are stored as 32-bit floats) | ||
|
||
- **messages** | ||
|
||
Messages are composed of one or more atoms and provide instructions to objects, there is a special type of message with null content called a bang is used to initiate events and push data into flow, much like pushing a button. | ||
|
||
|
||
- **comments** | ||
|
||
A bit of text that can be used to add context to a PD program | ||
|
||
|