diff Updated 2025-07-16
Minkowski inner product Updated 2025-07-16
This form is not really an inner product in the common modern definition, because it is not positive definite, only a symmetric bilinear form.
Mitochondrial endosymbiosis Updated 2025-07-16
Likely happened between an archaea and a bacteria.
Mobile app Updated 2025-07-16
Nucleoid Updated 2025-07-16
All pages below are from the second edition from 2018. It seems that there weren't any changes in the text, the updated preface mentions
As it happens, nearly 15 years have passed since the 1st edition of Power, Sex, Suicide was published, and I am resisting the temptation to make any lame revisions. Some say that even Darwin lessened the power of his arguments in the Origin of Species through his multiple revisions, in which he dealt with criticisms and sometimes shifted his views in the wrong direction. I prefer my original to speak for itself, even if it turns out to be wrong.
This is partly addressed in the preface of the second edition from 2018.
Central thesis:
Smaller points:
Nitpicks:
  • the book calls ATP synthase "ATPase" in several points, which is confusing because -ase means "something that breaks", and in 2020 parlance, there are ATPases which actually break ATP: en.wikipedia.org/wiki/ATPase. The book itself acknowledges that on page 135:
    The ATPase is freely reversible. Under some circumstances it can go into reverse, whereupon it splits ATP, and uses the energy released to pump protons up the drive shaft, back across the membrane against the pressure of the reservoir. In fact the very name ATPase (rather than ATP synthase) signifies this action, which was discovered first. This bizarre trait hides a deep secret of life, and we’ll return to it in a moment.
Some criticisms:
  • some of the later chapters are a bit more boring, like the stuff about warm-blooded animals. Perhaps is it that Ciro Santilli is more interested in the molecular aspects than macro
  • the author talks about some very recent research at the time. While this does highlight his expertise, some of the points mentioned might still be in a state of flow. This is acknowledged by the author himself on the 2018 updated preface however.
SoundFont Updated 2025-07-16
Contains instructions on how to synthesize MIDI.
Extension: sf2.
Can be imported for example by:
Basically, the antenna has to be very, very large, more comparable to wavelength. E.g. even for the higher pitches, we fall in very low frequency, so have a look at the size of some of the submarine VLF antennas! They are like football pitch sized.
Electronic voting Updated 2025-07-16
This is a must if the people want to regain control of their society from apathetic politicians.
I would also increase voter percentage due to convenience, and reduce the weight of voting fraud cases, as everyone would be able to check that their own vote was counted correctly.
And then, we would be able to have referendums for basically any important decision being made. No need to go out on the streets and waste your time in a mass protest! Just vote!
It is possible to implement anonymous electronic voting with ring signatures, an algorithm also used by Monero, an anonymity focused cryptocurrency, as mentioned e.g. on this 2004 paper eprint.iacr.org/2004/281.pdf. The system can be set in a way such that you can only deanonymize someone if everyone else, or a very large number of people, conspire against that person.
The same system could also be used to setup forums where only citizens of the country could comment and propose changes and vote on them.
With electronic voting, we could have a system where you can let someone you trust vote for you automatically, or vote automatically for certain subjects alone, a bit like we do by electing senators. But then you would also be able to override specific votes if you wanted to.
In this system therefore, anyone who can proxy vote has to have their vote public, and placed in a decent website that shows clearly who voted for what.
Related:
Chart type Updated 2025-07-16
.data is section 1:
00000080  01 00 00 00 01 00 00 00  03 00 00 00 00 00 00 00  |................|
00000090  00 00 00 00 00 00 00 00  00 02 00 00 00 00 00 00  |................|
000000a0  0d 00 00 00 00 00 00 00  00 00 00 00 00 00 00 00  |................|
000000b0  04 00 00 00 00 00 00 00  00 00 00 00 00 00 00 00  |................|
  • 80 4: sh_type = 01 00 00 00: SHT_PROGBITS: the section content is not specified by ELF, only by how the program interprets it. Normal since a .data section.
  • 80 8: sh_flags = 03 7x 00: SHF_WRITE and SHF_ALLOC: www.sco.com/developers/gabi/2003-12-17/ch4.sheader.html#sh_flags, as required from a .data section
  • 90 0: sh_addr = 8x 00: TODO: standard says:
    If the section will appear in the memory image of a process, this member gives the address at which the section's first byte should reside. Otherwise, the member contains 0.
    but I don't understand it very well yet.
  • 90 8: sh_offset = 00 02 00 00 00 00 00 00 = 0x200: number of bytes from the start of the program to the first byte in this section
  • a0 0: sh_size = 0d 00 00 00 00 00 00 00
    If we take 0xD bytes starting at sh_offset 200, we see:
    00000200  48 65 6c 6c 6f 20 77 6f  72 6c 64 21 0a 00        |Hello world!..  |
    AHA! So our "Hello world!" string is in the data section like we told it to be on the NASM.
    Once we graduate from hd, we will look this up like:
    readelf -x .data hello_world.o
    which outputs:
    Hex dump of section '.data':
      0x00000000 48656c6c 6f20776f 726c6421 0a       Hello world!.
    NASM sets decent properties for that section because it treats .data magically: www.nasm.us/doc/nasmdoc7.html#section-7.9.2
    Also note that this was a bad section choice: a good C compiler would put the string in .rodata instead, because it is read-only and it would allow for further OS optimizations.
    • a0 8: sh_link and sh_info = 8x 0: do not apply to this section type. www.sco.com/developers/gabi/2003-12-17/ch4.sheader.html#special_sections
    • b0 0: sh_addralign = 04 = TODO: why is this alignment necessary? Is it only for sh_addr, or also for symbols inside sh_addr?
    • b0 8: sh_entsize = 00 = the section does not contain a table. If != 0, it means that the section contains a table of fixed size entries. In this file, we see from the readelf output that this is the case for the .symtab and .rela.text sections.
QuTech Updated 2025-07-16

Unlisted articles are being shown, click here to show only listed articles.