Allen brain atlas by Ciro Santilli 35 Updated +Created
Connectome scale by Ciro Santilli 35 Updated +Created
A Drosophila melanogaster has about 135k neurons, and we only managed to reconstruct its connectome in 2023.
The human brain has 86 billion neurons, about 1 million times more. Therefore, it is obvious that we are very very far away from a full connectome.
Instead however, we could look at larger scales of connectome, and then try from that to extract modules, and then reverse engineer things module by module.
This is likely how we are going to "understand how the human brain works".
Some notable connectomes:
Microscopy connectome extraction by Ciro Santilli 35 Updated +Created
This is the most plausible way of obtaining a full connectome looking from 2020 forward. Then you'd observe the slices with an electron microscope + appropriate Staining. Superintelligence by Nick Bostrom (2014) really opened Ciro Santilli's eyes to this possibility.
Once this is done for a human, it will be one of the greatest milestone of humanities, coparable perhaps to the Human Genome Project. BUt of course, privacy issues are incrediby pressing in this case, even more than in the human genome project, as we would essentially be able to read the brain of the person after their death.
As of 2022, the Drosophila connectome had been almost fully extracted.
This is also a possible path towards post-mortem brain reading.
Figure 1. Source. Unconfirmed, but looks like the type of frozen brain where a Microtome would be used.
Cultured meat company by Ciro Santilli 35 Updated +Created
Database trigger by Ciro Santilli 35 Updated +Created
Stored procedure by Ciro Santilli 35 Updated +Created
Ciro's call hierarchy notation by Ciro Santilli 35 Updated +Created
This is a simple hierarchical plaintext notation Ciro Santilli created to explain programs to himself.
It is usuall created by doing searches in an IDE, and then manually selecting the information of interest.
It attempts to capture intuitive information not only of the call graph itself, including callbacks, but of when things get called or not, by the addition of some context code.
For example, consider the following pseudocode:
f1() {
}

f2(i) {
  if (i > 5) {
    f1()
  }
}

f3() {
  f1()
  f2_2()
}

f2_2() {
  for (i = 0; i < 10; i++) {

    f2(i)
  }
}

main() {
  f2_2()
  f3()
}
Supose that we are interested in determining what calls f1.
Then a reasonable call hierarchy for f1 would be:
f2(i)
  if (i > 5) {
    f1()

  f2_2()
    for (i = 0; i < 10; i++) {
      f2(i)

    main
    f3
f3()
  main()
Some general principles:
  • start with a regular call tree
  • to include context:
    • remove any blank lines from the snippet of interest
    • add it indented below the function
    • and then follow it up with a blank line
    • and then finally add any callers at the same indentation level
DNA sequencing milestone by Ciro Santilli 35 Updated +Created
Most of these are going to be Whole-genome sequencing of some model organism:
Whole-genome sequencing by Ciro Santilli 35 Updated +Created
Delft University of Technology by Ciro Santilli 35 Updated +Created
Elon Musk's family by Ciro Santilli 35 Updated +Created
Gaussian function by Ciro Santilli 35 Updated +Created
How to view only posts by followed on Facebook feed? by Ciro Santilli 35 Updated +Created
Circa 2023, the feed is an unbearable list of stupid suggestions, never-ending idiotic memes, and you just end up missing posts you actually care about from people you actually follow.
Abstract syntax tree by Ciro Santilli 35 Updated +Created
GPL software by Ciro Santilli 35 Updated +Created
GNU go by Ciro Santilli 35 Updated +Created
KataGo by Ciro Santilli 35 Updated +Created
Leela Zero by Ciro Santilli 35 Updated +Created
Boitatech by Ciro Santilli 35 Updated +Created
Some people from them contacted Ciro Santilli after Ciro's initial publishing of CIA 2010 covert communication websites.
After a quick Discord chat with them, it was apparent that these people were really cool and knowledgeable.
Also many of them seem to think university is broken and just go hack straigh away.
A perfect example of a dojo learning model.
Also they don't seem to need sleep. Go figure!
With pepole like this, there's hope for Brazil: Section "What poor countries have to do to get richer".

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