Skip to content

Commit

Permalink
Suggested changes
Browse files Browse the repository at this point in the history
  • Loading branch information
Sangarshanan committed Aug 2, 2024
1 parent 36cb737 commit 24bd776
Show file tree
Hide file tree
Showing 6 changed files with 72 additions and 3 deletions.
Binary file removed .DS_Store
Binary file not shown.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,7 @@ Collection of Links, Notes, Books, Music and more random things that make up my

### CS stuff

- https://ocw.mit.edu/courses/6-851-advanced-data-structures-spring-2012/download/ [ Advanced Data Structures ]
- http://aosabook.org/en/index.html [Architecture of Open Source Applications]
- https://rustwasm.github.io/book/what-is-webassembly.html
- https://blog.cryptographyengineering.com/2014/11/27/zero-knowledge-proofs-illustrated-primer/
Expand Down
3 changes: 1 addition & 2 deletions books/Dark Matter.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ Sci Fi novel from Blake Crouch

https://www.goodreads.com/en/book/show/27833670

I liked the storytelling and it did manage to keep me hooked a bit but i gotta say a lot of the times the twists were too predictable and a lot of multiverse aspects are
a bit overcooked at this point with fkton of marvel movies coming out every single week
I liked the storytelling and it did manage to keep me hooked a bit but i gotta say a lot of the times the twists were too predictable and a lot of multiverse aspects are a bit overcooked at this point with fkton of marvel movies coming out every single week

not bad tho fun read. 6/10
29 changes: 29 additions & 0 deletions books/notes-from-underground.md
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.



2 changes: 1 addition & 1 deletion books/the stranger.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

Dec 2021 | Albert Camus

This book kinda made me say Yep, Yep, Yep a bunch of time as I embraced the absurd. The indifference in this book reminded me of a lot of stoic principles but taken a notch up.
This book kinda made me say Yep, Yep, Yep a bunch of time as I embraced the absurd. The indifference in this book reminded me of stoicism taken a notch up to absurdism. Reminded me a lot of Kafka and his work with absurdism

### stuff

Expand Down
40 changes: 40 additions & 0 deletions notes/PureData.md
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


0 comments on commit 24bd776

Please sign in to comment.