SQL READ UNCOMMITTED isolation level Updated +Created
Transliteration of Chinese Updated +Created
Willis Lamb Updated +Created
David Tong Updated +Created
A charismatic, perfect-English-accent (Received Pronunciation) physicist from University of Cambridge, specializing in quantum field theory.
He has done several "vulgarization" lectures, some of which could be better called undergrad appetizers rather, a notable example being Video "Quantum Fields: The Real Building Blocks of the Universe by David Tong (2017)" for the prestigious Royal Institution, but remains a hardcore researcher: scholar.google.com/citations?hl=en&user=felFiY4AAAAJ&view_op=list_works&sortby=pubdate. Lots of open access publications BTW, so kudos.
The amount of lecture notes on his website looks really impressive: www.damtp.cam.ac.uk/user/tong/teaching.html, he looks like a good educator.
David has also shown some interest in applications of high energy mathematical ideas to condensed matter, e.g. links between the renormalization group and phase transition phenomena. TODO there was a YouTube video about that, find it and link here.
Ciro Santilli wonders if his family is of East Asian, origin and if he can still speak any east asian languages. "Tong" is of course a transcription of several major Chinese surnames and from looks he could be mixed blood, but as mentioned at www.ancestry.co.uk/name-origin?surname=tong it can also be an English "metonymic occupational name for a maker or user of tongs". After staring at his picture for a while Ciro is going with the maker of tongs theory initially.
Human body Updated +Created
Pascual Jordan Updated +Created
One of the leading figures of the early development of quantum electrodynamics.
Philip W. Anderson Updated +Created
Brain-computer interfaces could be the next big thing Updated +Created
This is one of the deep tech bets that Ciro Santilli would put his money in as of 2020.
How hard could it be? You just have to learn the encoding of the neural spine/eyes/ear, add an invasive device that multiplexes it, and then the benefits could be mind blowing.
Interestingly and obviously, the initial advances in the area are happening for people that have hearing or vision difficulties. Since they already have a deficient sense, you don't lose that much by a failed attempt.
Hearing is likely to be the first since it feels the simplest. Ciro heard there are even already clinical applications there. TODO source.
Transhumanism Updated +Created
Identity theorem Updated +Created
Essentially, defining an holomorphic function on any open subset, no matter how small, also uniquely defines it everywhere.
This is basically why it makes sense to talk about analytic continuation at all.
One way to think about this is because the Taylor series matches the exact value of an holomorphic function no matter how large the difference from the starting point.
Therefore a holomorphic function basically only contains as much information as a countable sequence of numbers.
How to blackout your window without drilling / Removal wall damage review Updated +Created
After removing it:
  • the black tape used pulled out the paint in parts of the wall, and even worse small bits of plaster on some corners
  • the sticky from the blinds bits also pulled out a bit of plaster
Of course, we already knew that minimal plaster work would be needed from the start, since we have to hammer two small nails into the wall. But that level of damage might have been easily dealt with by a non-professional tenant himself. But the level I had was a bit more than I felt I should handle myself.
Figure 1.
Total Blackout Cassette Roller Blind wall damage.
Source.
Indian classical music trope type Updated +Created
Instruction set architecture Updated +Created
The main interface between the central processing unit and software.
Primitive recursive function Updated +Created
In intuitive terms it consists of all integer functions, possibly with multiple input arguments, that can be written only with a sequence of:
for (i = 0; i < n; i++)
and such that n does not change inside the loop body, i.e. no while loops with arbitrary conditions.
n does not have to be a constant, it may come from previous calculations. But it must not change inside the loop body.
Primitive recursive functions basically include every integer function that comes up in practice. Primitive recursive functions can have huge complexity, and it strictly contains EXPTIME. As such, they mostly only come up in foundation of mathematics contexts.
The cool thing about primitive recursive functions is that the number of iterations is always bound, so we are certain that they terminate and are therefore computable.
This also means that there are necessarily functions which are not primitive recursive, as we know that there must exist uncomputable functions, e.g. the busy beaver function.
Adding unbounded while loops of course enables us to simulate arbitrary Turing machines, and therefore increases the complexity class.
More finely, there are non-primitive total recursive functions, e.g. most famously the Ackermann function.
Bill Nye Updated +Created
Maybe we need these people, maybe we do.
The problem as with many well known science communicators is that he falls too much on the basic side of the the missing link between basic and advanced.
Video 1.
Bill Nye isn't really a Scientist (& why that shouldn't matter) by BobbyBroccoli (2017)
Source. Bobby's personal overview of Bill's carrier.
E91 Updated +Created
Requires entangled particles, unlike BB84 which does not.
Excessive encapsulation is the root of much evil Updated +Created
Some anecdotes.
Ciro Santilli never splits up functions unless there is more than one calling point. If you split early, the chances that the interface will be wrong are huge, and a much larger refactoring follows.
If you just want to separate variables, just use a scope e.g.:
int cross_block_var;

// First step.
{
    int myvar;
}

// Second step.
{
    int myvar;
}
Ciro has seen and had to deal with in his lifetime with two projects that had like 3 to 10 git separate Git repositories, all created and maintained by the same small group of developers of the same organization, even though one could not build without the other. Keeping everything in sync was Hell! Why not just have three directories inside a single repository with a single source of truth?
Another important case: Linux should have at least a C standard library, init system, and shell in-tree, like BSD Operating Systems, as mentioned at: Section "Linux".

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