Stack Overflow link-only answer policy by Ciro Santilli 35 Updated 2024-12-23 +Created 1970-01-01
The link will break, and the answer will lose. Or the person who summarizes inline will get more upvotes because people are lazy to click the link. Also, web archiving exists.
This is especially idiotic when it is a link to another post in Stack Overflow itself.
In simple terms, represents keystrokes of a piano, but it can likely also represent other effects (TODO confirm: bend, vibrato, slides, attack strength)
Can contain multiple parallel tracks as seen from the Wikipedia example: en.wikipedia.org/wiki/File:MIDI_sample.mid
You can see what it contains well with GUI music editor.
MIDI is fun. It is a basic high level representation of most instrumental music, including beats.
To actually listen to MIDI, you need a software synthesizer, which knows what sound to make for each note. One way to specify such instruments is the SoundFont file format.
Convert MIDI to more common standalone formats:
As highlighted e.g. at Human Compatible by Stuart J. Russell (2019), this AI alignment intrinsically linked to the idea of utility in economy.
Of course, this only made sense when Apple was more of an underdog to IBM, and Ciro Santilli greatly admires their defiance of the norm.
As of 2020 however, Apple is kind of on the top of the mobile world, and Think different simply makes no sense anymore, notably because it relies on closed source offline software used by millions.
it's Popular Now It Sucks comes to mind.
This is a trap every company that prides itself on it's "alternative culture" sets for itself. If they succeed, they could become the norm.
Investigations on the theory of the Brownian movement by Einstein (1905) by Ciro Santilli 35 Updated 2024-12-23 +Created 1970-01-01
1926 translation A. D. Cowper: www.maths.usyd.edu.au/u/UG/SM/MATH3075/r/Einstein_1905.pdf
- physics.stackexchange.com/questions/26797/why-does-work-equal-force-times-distance
- www.quora.com/Why-do-we-define-work-as-force-times-distance
- physics.stackexchange.com/questions/428525/why-does-work-depend-on-distance
- physics.stackexchange.com/questions/79523/why-does-the-amount-of-energy-transferred-depend-on-distance-rather-than-time
Uranium vs plutonium Quora answer by Ciro Santilli by Ciro Santilli 35 Updated 2024-12-23 +Created 1970-01-01
Ciro Santilli's general feeling is that university should not own IP, it should belong to the researchers. Instead, university should help researchers make their startups, so they can become big, and then we can tax them and reinvest in the universities.
Of course, this goes through the nonprofit impact measurement difficulty. Maybe we could instead limit the IP to some reasonably small percentage, like 10%?
But still, as of 2020, if feels like universities are way too greedy.
- youtu.be/ji5_MqicxSo?t=1406 Achieving Your Childhood Dreams by Randy Pausch (2007). At this timestamp he tells a story about how university IP issues almost ruined a collaboration he was passionate about.
United States Department of Energy national laboratory by Ciro Santilli 35 Updated 2024-12-23 +Created 1970-01-01
Where nuclear weapons and nuclear power, and a ton of derived research is made.
For a fun and brief random software encounter with that universe, see the VisIt section of stackoverflow.com/questions/5854515/interactive-large-plot-with-20-million-sample-points-and-gigabytes-of-data/55967461#55967461.
The summary from www.geeksforgeeks.org/tree-traversals-inorder-preorder-and-postorder/ is a winner:
1
/ \
2 3
/ \
4 5
- inorder DFS: 4 2 5 1 3
- preorder DFS: 1 2 4 5 3
- postorder DFS: 4 5 2 3 1
- breadth-first search: 1 2 3 4 5
In principle one could talk about tree traversal of unordered trees as a number of possible traversals without a fixed order. But we won't consider that under this section, only deterministic ordered tree traversals.
There are unlisted articles, also show them or only show them.