Reproduction Updated 2025-07-16
WEHI Updated 2025-07-16
Poor renaming choice.
WordPress Updated 2025-07-16
B6 Oxford physics course Updated 2025-07-16
users.ox.ac.uk/~corp0014/B6-lectures.html gives a syllabus:
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.
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.
Or in other words, at every rebase conflict we have something like:
master-commit    feature-commit
|                |
|                |
base-commit------+
|
|
Therefore there are 2 diffs that you have to understand and reconcile:
  • base-commit to master-commit
  • base-commit to feature-commit
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.
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:
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/
2017 an Abus chain and padlock, can't see marking easily. Chain length: 82cm.
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 parallel Updated 2025-07-16
The author Ole Tange answers every question about it on Stack Exchange. What a legend!
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_exampes
To get the input argument explicitly job number use the magic string {}, e.g.:
printf 'a\nb\nc\n' | parallel echo '{}'
sample output:
a
b
c
To get the job number use {#} as in:
printf 'a\nb\nc\n' | parallel echo '{} {#}'
sample output:
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 '{} {#} {%}'
sample output:
a 1 1
b 2 1
c 3 2
d 4 1
The percent must be a reference to "split the inputs module the number of workers", and modulo uses the % symbol in many programming languages such as C.
To pass multiple CLI arguments per command you can use -X e.g.:
printf 'a\nb\nc\nd\n' | parallel -j2 -X echo '{} {#} {%}'
sample output:
a b 1 1
c d 2 2
Bare metal Updated 2025-07-16
Bare metal programming is to run a program without an operating system below it.
Or in other words, it is basically implementing an operating system/firmware yourself ad hoc, together with your actual program.
Baryon vs meson vs lepton Updated 2025-07-16
"Barys" means "heavy" in Greek, because protons and neutrons was what made most of the mass of known ordinary matter, as opposed notably to electrons.
Baryons can be contrasted with:
Bash HOWTO Updated 2025-07-16
Bat Updated 2025-07-16
As of 2020, account for about 20% of the known mammal species!!! www.sciencefocus.com/nature/why-are-there-so-many-species-of-bat/ mentions some reasons:
  • they can fly, so they can move out further
  • their eating habits are highly specialized
gnuplot Updated 2025-07-16
Tends to be Ciro Santilli's first attempt for quick and dirty graphing: github.com/cirosantilli/gnuplot-cheat.
domain-specific language. When it get the jobs done, it is in 3 lines and it feels great.
When it doesn't, you Google for an hours, and then you give up in frustration, and fall back to Matplotlib.

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