Infinitesimal Updated 2025-07-16
Limit (mathematics) Updated 2025-07-16
The reason why the epsilon delta definition is so venerated is that it fits directly into well known methods of the formalization of mathematics, making the notion completely precise.
Cold Spring Harbor Laboratory Updated 2025-07-16
A hot hot place.
Git tips Oh, but there are 2 trees: local and remote Updated 2025-07-16
Oh but there are usually 2 trees: local and remote.
So you also have to learn how to observe and modify and sync with the remote tree!
But basically:to update the remote tree. And then you can use it exactly like any other branch, except you prefix them with the remote (usually
git fetchorigin/*), e.g.:origin/masteris the latest fetch of the remote version ofmasterorigin/my-featureis the latest fetch of the remote version ofmy-feature
Good book Updated 2025-07-16
Howard Hughes Medical Institute Updated 2025-07-16
List of board games Updated 2025-07-16
Medical Research Council Updated 2025-07-16
Reproduction Updated 2025-07-16
WordPress Updated 2025-07-16
B6 Oxford physics course Updated 2025-07-16
users.ox.ac.uk/~corp0014/B6-lectures.html gives a syllabus:
- Heat capacity in solids, localised harmonic oscillator models (Dulong-Petit law and Einstein model)
- Heat capacity in solids, a model of sound waves (Debye model)
- A gas of classical charged particles (Drude theory)
- A gas of charged fermions (Sommerfeld theory)
- Bonding
- Microscopic theory of vibrations: the 1D monatomic harmonic chain. Mike Glazer's Chainplot program.
- Microscopic theory of vibrations: the 1D diatomic harmonic chain
- Microscopic theory of electrons in solids: the 1D tight-binding chain
- Geometry of solids: crystal structure in real space. VESTA, 3D visualization program for structural models; an example crystal structure database.
- Geometry of solids: real space and reciprocal space. Reciprocal Space teaching and learning package.
- Reciprocal space and scattering. A fun way to discover the world of crystals and their symmetries through diffraction.
- Scattering experiments II
- Scattering experiments III
- Waves in reciprocal space
- Nearly-free electron model
- Band structure and optical properties
- Dynamics of electrons in bands
- Semiconductor devices. Intel's "A History of Innovation"; Moore's Law; From Sand to Circuits.
- Magnetic properties of atoms
- Collective magnetism. A micromagnetic simulation tool, The Object Oriented MicroMagnetic Framework (OOMMF); OOMMF movies of magnetic domains and domain reversal.
- Mean field theory
Problem set dated 2015: users.ox.ac.uk/~corp0014/B6-materials/B6_Problems.pdf Marked by: A. Ardavan and T. Hesjedal. Some more stuff under: users.ox.ac.uk/~corp0014/B6-materials/
The book is the fully commercial The Oxford Solid State Basics.
Bacterial conjugation Updated 2025-07-16
Pseudo-fuck.
Bad Stack Overflow policies Updated 2025-07-16
Git tips The key to solve conflicts: see the two conflicting diffs Updated 2025-07-16
The key to solve conflicts is:
You have to understand what are the two commits that touched a given line (one from master, one from features), and then combine them somehow.
Glitch Updated 2025-07-16
A glitch is more precisely a software bug that is hard to reproduce. But it has also been used to mean a software bug that is not very serious.
Ciro Santilli's hardware Bicycle locks Updated 2025-07-16
December 2023: found the keys for the Kryptonite Kryptolock and the Abus in the house, so now I've got backup!
2023 lost one of the two keys to Kryptonite Kryptolock and to the Abus padlock:
- rebuying cryptonite, seems exactly the same. If the old key is ever found, it can re-enter usage.
- replacing Abus padlock buying a similarly featured Master lock "commercial" padlock, looks like this one: www.screwfix.com/p/master-lock-excell-laminated-steel-master-keyed-weatherproof-padlock-51mm/153KH
2018 Kryptonite Kryptolock. Looks like: www.kryptonitelock.com/en/products/product-information/current-key/002031.html Includes Transit Flexframe-U Bracket carrier
2017 Abus Sinus Plus 471/150 HB U-lock. Sample seller with image: www.lockshopdirect.co.uk/products/abus-sinus-plus-471-d-lock-230mm-shackle-62620/
Globalization reduces the power of governments Updated 2025-07-16
While Ciro Santilli is a big fan of having "one global country" (and language), which is somewhat approximated by globalization, he has come to believe that there is one serious downside to globalization as it stands in 2020: it allows companies to pressure governments to reduce taxes, and thus reduces the power of government, which in turn increases social inequality. This idea is very well highlighted in Can't get you out of my head by Adam Curtis (2021).
The only solution seems to be for governments to get together, and make deals to have fair taxation across each other. Which might never happen.
GNU Compiler Collection Updated 2025-07-16
GNU parallel Updated 2025-07-16
This program makes you respect GNU make a bit more. Good old make with
-j can not only parallelize, but also take in account a dependency graph.Some examples under:
man parallel_exampesTo get the input argument explicitly job number use the magic string sample output:
{}, e.g.:printf 'a\nb\nc\n' | parallel echo '{}'a
b
cTo get the job number use sample output:
{#} as in:printf 'a\nb\nc\n' | parallel echo '{} {#}'a 1
b 2
c 3
c 3{%} contains which thread the job running in, e.g. if we limit it to 2 threads with -j2:printf 'a\nb\nc\nd\n' | parallel -j2 echo '{} {#} {%}'a 1 1
b 2 1
c 3 2
d 4 1% symbol in many programming languages such as C.To pass multiple CLI arguments per command you can use sample output:
-X e.g.:printf 'a\nb\nc\nd\n' | parallel -j2 -X echo '{} {#} {%}'a b 1 1
c d 2 2 There are unlisted articles, also show them or only show them.