Logic gate Updated +Created
Ohm Updated +Created
Phonetics Updated +Created
Superconductor resistivity experiment video Updated +Created
Video 1.
Superconductor, 4-probe measurement by Frederiksen Scientific A/S (2015)
Source. OK experiment, illustrates the educational kit they sell. No temperature control, just dumps liquid nitrogen into conductor and watches it drop. But not too bad either. The kit sale link is broken (obviously, enterprise stuff), but there are no archives unfortunately. But it must be some High-temperature superconductor
Surely You're Joking, Mr. Feynman Updated +Created
CIA 2010 covert communication websites / 2013 DNS census MX records Updated +Created
Let' see if there's anything in records/mx.xz.
mx.csv is 21GB.
They do have " in the files to escape commas so:
mx.py
import csv
import sys
writer = csv.writer(sys.stdout)
with open('mx.csv', 'r') as f:
    reader = csv.reader(f)
    for row in reader:
        writer.writerow([row[0], row[3]])
Would have been better with csvkit: stackoverflow.com/questions/36287982/bash-parse-csv-with-quotes-commas-and-newlines
then:
# uniq not amazing as there are often two or three slightly different records repeated on multiple timestamps, but down to 11 GB
python3 mx.py | uniq > mx-uniq.csv
sqlite3 mx.sqlite 'create table t(d text, m text)'
# 13 GB
time sqlite3 mx.sqlite ".import --csv --skip 1 'mx-uniq.csv' t"

# 41 GB
time sqlite3 mx.sqlite 'create index td on t(d)'
time sqlite3 mx.sqlite 'create index tm on t(m)'
time sqlite3 mx.sqlite 'create index tdm on t(d, m)'

# Remove dupes.
# Rows: 150m
time sqlite3 mx.sqlite <<EOF
delete from t
where rowid not in (
  select min(rowid)
  from t
  group by d, m
)
EOF

# 15 GB
time sqlite3 mx.sqlite vacuum
Let's see what the hits use:
awk -F, 'NR>1{ print $2 }' ../media/cia-2010-covert-communication-websites/hits.csv | xargs -I{} sqlite3 mx.sqlite "select distinct * from t where d = '{}'"
At around 267 total hits, only 84 have MX records, and from those that do, almost all of them have exactly:
smtp.secureserver.net
mailstore1.secureserver.net
with only three exceptions:
dailynewsandsports.com|dailynewsandsports.com
inews-today.com|mail.inews-today.com
just-kidding-news.com|just-kidding-news.com
We need to count out of the totals!
sqlite3 mx.sqlite "select count(*) from t where m = 'mailstore1.secureserver.net'"
which gives, ~18M, so nope, it is too much by itself...
Let's try to use that to reduce av.sqlite from 2013 DNS Census virtual host cleanup a bit further:
time sqlite3 mx.sqlite '.mode csv' "attach 'aiddcu.sqlite' as 'av'" '.load ./ip' "select ipi2s(av.t.i), av.t.d from av.t inner join t as mx on av.t.d = mx.d and mx.m = 'mailstore1.secureserver.net' order by av.t.i asc" > avm.csv
where avm stands for av with mx pruning. This leaves us with only ~500k entries left. With one more figerprint we could do a Wayback Machine CDX scanning scan.
Let's check that we still have most our hits in there:
grep -f <(awk -F, 'NR>1{print $2}' /home/ciro/bak/git/media/cia-2010-covert-communication-websites/hits.csv) avm.csv
At 267 hits we got 81, so all are still present.
secureserver is a hosting provider, we can see their blank page e.g. at: web.archive.org/web/20110128152204/http://emmano.com/. security.stackexchange.com/questions/12610/why-did-secureserver-net-godaddy-access-my-gmail-account/12616#12616 comments:
secureserver.net is the name GoDaddy use as the reverse DNS for IP addresses used for dedicated/virtual server hosting
Eigenvalue Updated +Created
g4nd.xlarge Updated +Created
TODO meaning of "nd"? "n" presumably means Nvidia, but what is the "d"? Compare it g4ad.xlarge which has AMD GPUs. aws.amazon.com/ec2/instance-types/g4/ mentions:
G4 instances are available with a choice of NVIDIA GPUs (G4dn) or AMD GPUs (G4ad).
Price:
GitHub book repo Updated +Created
Some amazing people have put book source codes on GitHub. This is a list of such repos.
List of AWS AMIs Updated +Created
Suwu herding sheep Updated +Created
www.ibiblio.org/chinese-music/html/traditional.html contains an amazing orchestral version for di flute TODO identify! When attempting to upload to YouTube, it identifies as "Su Wu Tending the Sheep" and give a name "Chen Tao", but no further information. Chen Tao is presumably this dude: www.barduschinamusic.org/chen-tao-dizi | www.melodyofdragon.org/chentao.html 陈涛
baike.baidu.com/item/苏武牧羊/5532#11_2 mentions that it comes from an erhu concerto composed by Peng Xiuwen
The sadness of the erhu perfectly fits the role and mood of the story! Brilliant!
Video 1.
Suwu herding sheep played by Song Fei (2017)
Source.
Take the gloves off Updated +Created
Parity violation Updated +Created
This is quite mind blowing. The laws of physics actually differentiate between particles and antiparticles moving in opposite directions!!!
Only the weak interaction however does it of the fundamental interactions.
Some historical remarks on Surely You're Joking, Mr. Feynman section "The 7 Percent Solution".
It gets worse of course with cP Violation.
Partial derivative symbol Updated +Created
Nope, it is not a Greek letter, notably it is not a lowercase delta. It is just some random made up symbol that looks like a letter D. Which is of course derived from delta, which is why it is all so damn confusing.
I think the symbol is usually just read as "D" as in "d f d x" for .
The Matrix (franchise) Updated +Created
RISC-V MSTATUS.MIE field Updated +Created
Sequelize raw query Updated +Created
Exampes under nodejs/sequelize/raw:

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