Teach For All by Ciro Santilli 35 Updated +Created
Short-read DNA sequencing by Ciro Santilli 35 Updated +Created
Fog computing by Ciro Santilli 35 Updated +Created
Our definition of fog computing: a system that uses the computational resources of individuals who volunteer their own devices, in which you give each of the volunteers part of a computational problem that you want to solve.
Folding@home and SETI@home are perfect example of that definition.
Antimatter by Ciro Santilli 35 Updated +Created
Predicted by the Dirac equation.
Can be easily seen from the solution of Equation "Expanded Dirac equation in Planck units" when the particle is at rest as shown at Video "Quantum Mechanics 12b - Dirac Equation II by ViaScience (2015)".
Klein-Gordon equation by Ciro Santilli 35 Updated +Created
A relativistic version of the Schrödinger equation.
Correctly describes spin 0 particles.
The most memorable version of the equation can be written as shown at Section "Klein-Gordon equation in Einstein notation" with Einstein notation and Planck units:
Has some issues which are solved by the Dirac equation:
Cryogen-free dilution refrigerator by Ciro Santilli 35 Updated +Created
Developmental genetics by Ciro Santilli 35 Updated +Created
How genes form bodies.
Video 1.
Developmental Genetics 1 by Joseph Ross (2020)
Source. Talks about homeobox genes.
When viewed as matrices, it is the group of all matrices that preserve the dot product, i.e.:
This implies that it also preserves important geometric notions such as norm (intuitively: distance between two points) and angles.
This is perhaps the best "default definition".
Product definition of the exponential function by Ciro Santilli 35 Updated +Created
The basic intuition for this is to start from the origin and make small changes to the function based on its known derivative at the origin.
More precisely, we know that for any base b, exponentiation satisfies:
  • .
  • .
And we also know that for in particular that we satisfy the exponential function differential equation and so:
One interesting fact is that the only thing we use from the exponential function differential equation is the value around , which is quite little information! This idea is basically what is behind the importance of the ralationship between Lie group-Lie algebra correspondence via the exponential map. In the more general settings of groups and manifolds, restricting ourselves to be near the origin is a huge advantage.
Now suppose that we want to calculate . The idea is to start from and then then to use the first order of the Taylor series to extend the known value of to .
E.g., if we split into 2 parts, we know that:
or in three parts:
so we can just use arbitrarily many parts that are arbitrarily close to :
and more generally for any we have:
Let's see what happens with the Taylor series. We have near in little-o notation:
Therefore, for , which is near for any fixed :
and therefore:
which is basically the formula tha we wanted. We just have to convince ourselves that at , the disappears, i.e.:
To do that, let's multiply by itself once:
and multiplying a third time:
TODO conclude.
Debugger by Ciro Santilli 35 Updated +Created
List of data breaches by Ciro Santilli 35 Updated +Created
CC BY-NC-SA by Ciro Santilli 35 Updated +Created
Too restrictive. People should be able to make money from stuff.
The definition of "commercial" could also be taken in extremely broad senses, making serious reuse risky in many applications.
Notably, many university courses use it, notably MIT OpenCourseWare. Ciro wonders if it is because academics are wary of industry, or if they want to make money from it themselves. This reminds Ciro of a documentary he watched about the origins of one an early web browsers in some American university. And then that university wanted to retain copyright to make money from it. But the PhDs made a separate company nonetheless. And someone from the company rightly said something along the lines of:
The goal of universities is to help create companies and to give back to society like that. Not to try and make money from inventions.
TODO source.
The GNU project does not like it either www.gnu.org/licenses/license-list.en.html#CC-BY-NC:
This license does not qualify as free, because there are restrictions on charging money for copies. Thus, we recommend you do not use this license for documentation.
In addition, it has a drawback for any sort of work: when a modified version has many authors, in practice getting permission for commercial use from all of them would become infeasible.
en.wikipedia.org/wiki/Creative_Commons_NonCommercial_license#Defining_%22Noncommercial%22 also talks about the obvious confusion this generates: nobody can agree what counts as commercial or not!
In September 2009 Creative Commons published a report titled, "Defining 'Noncommercial'". The report featured survey data, analysis, and expert opinions on what "noncommercial" means, how it applied to contemporary media, and how people who share media interpret the term. The report found that in some aspects there was public agreement on the meaning of "noncommercial", but for other aspects, there is wide variation in expectation of what the term means.
Dan Kaminsky by Ciro Santilli 35 Updated +Created
A superstar security researcher with some major exploits from in the 2000's.
P (complexity) by Ciro Santilli 35 Updated +Created
Cloud computing market share by Ciro Santilli 35 Updated +Created
Figure 1.
Cloud Computing market share in Q2 2022 by statista.com
. Source.
Inner source by Ciro Santilli 35 Updated +Created
If you are going to do closed source, at least do it like this.
Basically the opposite of need to know for software.
The development cycle time is your God by Ciro Santilli 35 Updated +Created
A slow development test cycle will kill your software.
New developers won't want to learn your project, because they would rather shoot themselves.
This means that build time, and the time to run tests, must be short.
5 seconds to rebuild is the maximum upper limit.
Of course, at some point software gets large enough that things won't fit anymore in 5 seconds. But then you must have either some kind of build caching, or options to do partial builds/tests that will bring things down to that 5 second mark.
You also have to spend some time profiling execution and build from scratch times.
A slow build from scratch will mean that your continuous integration costs a lot, money that could be invested in a new developer!
It also means that people won't bother to reproduce bugs on given commits, or bisect stuff.
One anecdote comes to mind. Ciro Santilli was trying to debug something, and more experience colleague came over.
To reproduce a problem, ciro was running one command, wait 5 seconds, run a second command, wait 5 seconds, run a third command:
cmd1
# wait 5 seconds
cmd2
# wait 5 seconds
cmd3
The first thing the colleague said: join those three commands into one:
cmd1;cmd2;cmd3
And so, Ciro was enlightened.
Figure 1.
xkcd 303: Compiling
. Source. They should be benchmarking and fixing their shitty build system instead.
KISS principle by Ciro Santilli 35 Updated +Created
The software engineer phrasing of simplicity is the ultimate sophistication.
Like all other principles, it is not absolute.
But it is something that you should always have on the back of your mind.
You aren't gonna need it is closely related, as generally the extra unnecessary complications are set in place to accommodate useless features that will never be needed.

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