Chinese regional cuisine Updated +Created
Probable observation of the Josephson superconducting tunneling effect Updated +Created
Paper by Philip W. Anderson and John M. Rowell that first (?) experimentally observed the Josephson effect.
TODO understand the graphs in detail.
They used tin-oxide-lead tunnel at 1.5 K. TODO oxide of what? Why two different metals? They say that both films are 200 nm thick, so maybe it is:
   -----+------+------+-----
...  Sn | SnO2 | PbO2 | Pb  ...
   -----+------+------------
          100nm 100nm
A reconstruction of their circuit in Ciro's ASCII art circuit diagram notation TODO:
DC---R_10---X---G
There are not details of the physical construction of course. Reproducibility lol.
Svengali Updated +Created
The most awesome systems programmers Updated +Created
Notable mentions:
Other notable people that are likely also awesome but Ciro has less familiarity with their contributions:
Chorus effect Updated +Created
HTML canvas Updated +Created
Allows us to draw with JavaScript pixel by pixel! Great way to create computational physics demos!
Here is an animation demo with some useful controls:
HTML snippet:
new class extends OurbigbookCanvasDemo {
  init() {
    super.init('hello');
    this.pixel_size_input = this.addInputAfterEnable(
      'Pixel size',
      {
        'min': 1,
        'type': 'number',
        'value': 1,
      }
    );
  }
  draw() {
    var pixel_size = parseInt(this.pixel_size_input.value);
    for (var x = 0; x < this.width; x += pixel_size) {
      for (var y = 0; y < this.height; y += pixel_size) {
        var b = ((1.0 + Math.sin(this.time * Math.PI / 16)) / 2.0);
        this.ctx.fillStyle =
          'rgba(' +
          (x / this.width) * 255 + ',' +
          (y / this.height) * 255 + ',' +
          b * 255 +
          ',255)'
        ;
        this.ctx.fillRect(x, y, pixel_size, pixel_size);
      }
    }
  }
}
HTML details tag Updated +Created
Human brain connectome Updated +Created
By cranks:
Human brain research project Updated +Created
ImageNet competition Updated +Created
JavaScript language Updated +Created
Pixi.js Updated +Created
100 Greatest Discoveries by the Discovery Channel (2004-2005) Updated +Created
Hosted by Bill Nye.
Physics topics:
biology topics:
Genetics:
Medicine:
Cosmos: A Personal Voyage (1980) Updated +Created
You can feel the marijuana flowing out of this one, it's just great.
Tinker Tailor Soldier Spy Updated +Created
Some key points that are a bit hard to grasp, at least in some versions:
  • How did Bill Haydon know Jim Prideaux was going to Prague if it appears to be organized as a closely guarded secret by Control?
    • the film suggests Prideaux must have told Haydon himself, his close friend, against Control's orders of secrecy, out of loyalty, and in order to protect his friend.
    • The series suggests it was a honeypot
    so which one is it?
  • How does Smiley deduce that the Witchcraft source, Merlin, is Poliakov? A key step is when top people at the Circus question him about Ricki Tarr, and appear to suggest that there is a link between Ricki Tarr and Merlin. And Ricki told Smiley that Poliakov as the link to the Mole. Smiley understands that it was Karla who tipped off London Center about Ricki's coming through Merlin. He also observers that Witchcraft gives ideological infiltration campaign intelligence after Ricki comes back, as a way to discredit Ricki. It is still all a bit indirect.

There are unlisted articles, also show them or only show them.