On the 20th of June 2025, Barclays sent another request for information repeating a few of the items from last time without clear justification of what was wrong with the previous information.
At least this time they sent a clear notification in time rather than freezing the account.
Ciro quickly printed out the documents, but didn't know where to send them to, and had to wait until the 2nd of July for the return envelope to arrive, which he sent back on the 4th of July.
Figure 1.
Screenshot of the header of the Barclays 2025 KYC letter
.
On the 28th of July 2025, Barclays finally replied with a hopefully final (who knows, everything is such a mess with this process):
Following a review of the above account, we have identified large value crypto assets with unknown sources. If such activity
continues, keeping this account open poses a risk that we might breach laws or regulations. We therefore request that such
payments are halted and, if the transactions repeat, we will take action to close this account with immediate notice. In the
event of any closure, you will be required to repay any overdraft or other borrowing on the account.
So Ciro Santilli gets to keep his account and the anonymous ~80k cashed out to it, but he cannot receive further anonymous donations on it.
As an outcome of this, I've also had to update my donation guidelines to not count anonymous donations towards my goals.
Barclays regulation felt so sloppy that I'm sure that with some effort to essentially launder the money, e.g. cashing out smaller amounts across various accounts, which I explicitly did not do in part to test the system, I would have gotten away with it, or large part of it. But I'm not going to be the one put this theory to the test.
HybridMedical Created 2025-07-01 Updated 2025-07-16
Must be closely related to XVIVO et al.
It is the norm induced by the complex dot product over :
CPU functional unit Created 2025-06-17 Updated 2025-07-16
Cavendish Professor of Physics Created 2025-06-17 Updated 2025-07-16
As beautifully put in The Eighth Day of Creation:
For more than a hundred years, the Cavendish Professorship has been the chair of experimental physics in the University of Cambridge. The man in that chair rules the university's research in physics. Indeed, for most of that hundred years the Cavendish Professor was preeminent in British science, with an authority that made him, as it were, the archbishop of physics
Superscalar processor Created 2025-06-17 Updated 2025-07-16
University of Cambridge alumnus Created 2025-06-17 Updated 2025-07-16
Intel CPU Created 2025-06-17 Updated 2025-07-16
C-peptide Created 2025-06-17 Updated 2025-07-16
B chain of insulin Created 2025-06-17 Updated 2025-07-16
A chain of insulin Created 2025-06-17 Updated 2025-07-16
Proinsulin Created 2025-06-17 Updated 2025-07-16
c/inc_loop_asm_n.sh Created 2025-06-17 Updated 2025-07-16
This is a quick Microarchitectural benchmark to try and determine how many functional units our CPU has that can do an inc instruction at the same time due to superscalar architecture.
The generated programs do loops like:
loop:
  inc %[i0];
  inc %[i1];
  inc %[i2];
  ...
  inc %[i_n];
  cmp %[max], %[i0];
  jb loop;
with different numbers of inc instructions.
Figure 1.
c/inc_loop_asm_n.sh results for a few CPUs
.
Quite clearly:
and both have low instruction count effects that destroy performance, AMD at 3 and Intel at 3 and 5. TODO it would be cool to understand those better.
Data from multiple CPUs manually collated and plotted manually with ../c/inc_loop_asm_n_manual.sh.
c/inc_loop_asm.c Created 2025-06-17 Updated 2025-07-16
This is the only way that we've managed to reliably get a single inc instruction loop, by using inline assembly, e.g. on we do x86:
loop:
  inc %[i];
  cmp %[max], %[i];
  jb loop;
For 1s on P14s Ubuntu 25.04 GCC 14.2 -O0 x86_64 we need about 5 billion:
time ./inc_loop_asm.out 5000000000

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