Chinese culture Updated +Created
Bibliography:
Chinese (language) Updated +Created
Concurrent Versions System Updated +Created
It is said, that once upon a time, programmers used CSV and collaborated on SourceForge, and that everyone was happy.
These days, are however, long gone in the mists of time as of 2020, and beyond Ciro Santilli's programming birth.
Except for hardware developers of course. The are still happily using Perforce and Tcl, and shall never lose their innocence. Blessed be their souls. Amen.
C# Updated +Created
Mitchell and Webb Updated +Created
They do have some really good ones.
It is interesting that in different episodes they often switch the dominant/passive roles, so it's not fixed as in Laurel and Hardy.
Video 1.
Are we the Baddies? by Mitchell and Webb
. Source. See also: cirosantilli.com/china-dictatorship/nazi.
Video 2.
Discoverer by Mitchell and Webb
. Source. Makes fun of the many terrible naming choices British navigators have made while discovering/rediscovering new lands.
Video 3.
Homeopathic A&E by Mitchell and Webb
. Source.
Perforce Updated +Created
Rust (programming language) Updated +Created
X-ray crystallography Updated +Created
One of its main applications is to determine the 3D structure of proteins.
Sometimes you are not able to crystallize the proteins however, and the method cannot be used.
Crystallizing is not simple because:
  • you need a considerable amount of the protein
  • sometimes it only crystallizes if you add some extra small chemical that stabilizes it
Cryogenic electron microscopy can sometimes determine the structures of proteins that failed crystallization.
Aharonov-Bohm effect Updated +Created
This shows that viewing electromagnetism as gauge theory does have experimentally observable consequences. TODO understand what that means.
In more understandable terms, it shows that the magnetic vector potential matters where the magnetic field is 0.
Video 1.
The Quantum Experiment that ALMOST broke Locality by The Science Asylum (2019)
Source.
CIA 2010 covert communication websites / 2013 DNS census SOA records Updated +Created
Same as 2013 DNS census NS records basically, nothing came out.
CIA 2010 covert communication websites / 2013 DNS Census virtual host cleanup Updated +Created
We've noticed that often when there is a hit range:
  • there is only one IP for each domain
  • there is a range of about 20-30 of those
and that this does not seem to be that common. Let's see if that is a reasonable fingerprint or not.
Note that although this is the most common case, we have found multiple hits that viewdns.info maps to the same IP.
First we create a table u (unique) that only have domains which are the only domain for an IP, let's see by how much that lowers the 191 M total unique domains:
time sqlite3 u.sqlite 'create table t (d text, i text)'
time sqlite3 av.sqlite -cmd "attach 'u.sqlite' as u" "insert into u.t select min(d) as d, min(i) as i from t where d not like '%.%.%' group by i having count(distinct d) = 1"
The not like '%.%.%' removes subdomains from the counts so that CGI comms are still included, and distinct in count(distinct is because we have multiple entries at different timestamps for some of the hits.
Let's start with the 208 subset to see how it goes:
time sqlite3 av.sqlite -cmd "attach 'u.sqlite' as u" "insert into u.t select min(d) as d, min(i) as i from t where i glob '208.*' and d not like '%.%.%' and (d like '%.com' or d like '%.net') group by i having count(distinct d) = 1"
OK, after we fixed bugs with the above we are down to 4 million lines with unique domain/IP pairs and which contains all of the original hits! Almost certainly more are to be found!
This data is so valuable that we've decided to upload it to: archive.org/details/2013-dns-census-a-novirt.csv Format:
8,chrisjmcgregor.com
11,80end.com
28,fine5.net
38,bestarabictv.com
49,xy005.com
50,cmsasoccer.com
80,museemontpellier.net
100,newtiger.com
108,lps-promptservice.com
111,bridesmaiddressesshow.com
The numbers of the first column are the IPs as a 32-bit integer representation, which is more useful to search for ranges in.
To make a histogram with the distribution of the single hostname IPs:
#!/usr/bin/env bash
bin=$((2**24))
sqlite3 2013-dns-census-a-novirt.sqlite -cmd '.mode csv' >2013-dns-census-a-novirt-hist.csv <<EOF
select i, sum(cnt) from (
  select floor(i/${bin}) as i,
         count(*) as cnt
    from t
    group by 1
  union
  select *, 0 as cnt from generate_series(0, 255)
)
group by i
EOF
gnuplot \
  -e 'set terminal svg size 1200, 800' \
  -e 'set output "2013-dns-census-a-novirt-hist.svg"' \
  -e 'set datafile separator ","' \
  -e 'set tics scale 0' \
  -e 'unset key' \
  -e 'set xrange[0:255]' \
  -e 'set title "Counts of IPs with a single hostname"' \
  -e 'set xlabel "IPv4 first byte"' \
  -e 'set ylabel "count"' \
  -e 'plot "2013-dns-census-a-novirt-hist.csv" using 1:2:1 with labels' \
;
Which gives the following useless noise, there is basically no pattern:
https://raw.githubusercontent.com/cirosantilli/media/master/cia-2010-covert-communication-websites/2013-dns-census-a-novirt-hist.svg
Cool data embedded in the Bitcoin blockchain / Eternity Wall Updated +Created
This website used to allow embedding text messages with OP_RETURN, here's an archive from 2015: web.archive.org/web/20150718052659/http://eternitywall.it/
As of January 2024, it seems to read-only mode, where it simply indexes matching transactions that were made via other means: web.archive.org/web/20230929075331/https://eternitywall.it/
There were 3191 hits for the search term:
git grep '\bEW '
in our data starting with tx a3b3af21514bd79a4cbcac9916a8514636a72d813539192214542fd85247082e (2015-06-24):
EW Eternity wall is live
up to the last entry on tx 28820bc14cf2cfda58ecbc9ac6df3f41a1cb90f4246543f01ba42a5e9dac3cf8 (2023-06-15)
EW May our friendship endure, signed by hg, kty, wjj, and xyz.
no doubt initials of 4 Chinesepeople. A blood brother oath comes to mind, akin to the Oath of the Peach Garden. Will these four be the ones to take down the evil dictator Xi Jinping?
The very first message gives away the name of what we assume is a web-based upload system, "EW" being its advertisement signature added to every message.
Running bitcoin-cli:
bitcoin-core.cli getrawtransaction a3b3af21514bd79a4cbcac9916a8514636a72d813539192214542fd85247082e true
shows that the messages are encoded with OP_RETURN:
  "vout": [
    {
      "value": 0.00000000,
      "n": 0,
      "scriptPubKey": {
        "asm": "OP_RETURN 455720457465726e6974792077616c6c206973206c697665
Pendon Museum Updated +Created
Video 1.
Model Village at Pendon Museum by the BBC (1975)
Source.
Video 2.
The History of Pendon Museum by World of Railways (2012)
Source. The founder was Australian. His family was wealthy, and he liked cycled around the Vale.
Ciro's Edict #5 Updated +Created
Theria Updated +Created
Every mammal except the weird monotremes, i.e. marsupials and the placentalia.
The name is completely random, "wild beast". Are platypuses not "wild beasts"? They have a freaking poison!!
VX (nerve agent) Updated +Created
AI alignment Updated +Created
As highlighted e.g. at Human Compatible by Stuart J. Russell (2019), this AI alignment intrinsically linked to the idea of utility in economy.
Algebraic geometry Updated +Created

Unlisted articles are being shown, click here to show only listed articles.