Their only undergraduate courses that matter:
- www.brookes.ac.uk/courses/undergraduate/biological-sciences-mbiol/ (archive)
- www.brookes.ac.uk/courses/undergraduate/mathematics/ should be called applied mathematics (archive)
Ciro Santilli has a tutorial at Linux Kernel Module Cheat.
What you would see the moving rod look like on a photo of a length contraction experiment, as opposed as using two locally measured separate spacetime events to measure its length.
The type of feeling of confusion and distrut for your sense that some Koans attempt to instill.
Ciro Santilli's preferred version of it is physics and the illusion of life.
Some notable references:
- kotobank.jp/word/大疑-556655 quotes passing referenes by
- Nichiren (1272)
What should I do?
- Sasamegoto (1463-64)
The square is without Daigo because there is no doubt
- Nichiren (1272)
- en.wikipedia.org/wiki/Hakuin_Ekaku#Taigi_%E2%80%93_great_doubt mentions Hakuin Ekaku's take
Node.js does have Node.js
worker_threads
however.Since JavaScript devs are incapable of defining an unified import standard, this design pattern emerged where you just check every magic global one by one. Here's a demo where a Js library works on both the browser and from Node.js:
- web-cheat/umd_my_lib.js: the library
- web-cheat/umd.js: Node.js user
- web-cheat/umd.html: browser user
Rotate object around a point in Inkscape by Ciro Santilli 35 Updated 2025-01-04 +Created 1970-01-01
There's a tiny little crosshair that you can drag around to set the center of rotation.
And there's a button to make that crosshair snap: inkscape.org/forums/questions/can-a-pivotingtransfrom-crosshair-be-moved-and-made-to-snap-to-a-node-or-a-grid-point/#c14432
Definition of the indefinite orthogonal group by Ciro Santilli 35 Updated 2025-01-04 +Created 1970-01-01
Given a matrix with metric signature containing positive and negative entries, the indefinite orthogonal group is the set of all matrices that preserve the associated bilinear form, i.e.:Note that if , we just have the standard dot product, and that subcase corresponds to the following definition of the orthogonal group: Section "The orthogonal group is the group of all matrices that preserve the dot product".
As shown at all indefinite orthogonal groups of matrices of equal metric signature are isomorphic, due to the Sylvester's law of inertia, only the metric signature of matters. E.g., if we take two different matrices with the same metric signature such as:and:both produce isomorphic spaces. So it is customary to just always pick the matrix with only +1 and -1 as entries.
bitcoinstrings.com has all
strings -n20
strings, we can obtain the whole thing and clean it up a bit with:wget -O all.html https://bitcoinstrings.com/all
cp all.html all-recode.html
recode html..ascii all-recode.html
awk '!seen[$0]++' all-recode.html > all-uniq.html
awk
to skip the gazillion "mined by message" repeats.A lot of in that website stuff appears to be cut up at the 20 mark. As shown in Force of Will, this is possibly because they didn't use
-w
in strings -n20
, and the text after the newlines was less than 20 characters.That website can be replicated by downloading the Bitcoin blockchain locally, then:
cd .bitcoin/blocks
for f in blk*.dat; do strings -n20 -w $f | awk '!seen[$0]++' > ${f%.dat}.txt; done
tail +n1 *.txt
Remove most of the binary crap:
head -n-1 *.txt | grep -e '[. ]' | grep -iv 'mined by' | less
Unlisted articles are being shown, click here to show only listed articles.