Damus
Matt profile picture
Matt
@CodingInLondon

C++ engineer writing about things 🔋🔑

Relays (12)
  • wss://nostr-relay.wlvs.space – read & write
  • wss://relay.snort.social – read & write
  • wss://nostr.bitcoiner.social – read & write
  • wss://relay.damus.io – read & write
  • wss://relay.nostr.info – read & write
  • wss://nostr-01.bolt.observer – read & write
  • wss://relayer.fiatjaf.com – read & write
  • wss://nostr1.tunnelsats.com – read & write
  • wss://atlas.nostr.land – read & write
  • wss://eden.nostr.land – read & write
  • wss://nostr-pub.wellorder.net – read & write
  • ws://100.69.75.120:4848 – read & write

Recent Notes

Matt profile picture
I remember watching ‘The Fifth Estate’ in 2014. It painted Assange in a rather bad light (not so nice considering the real Assange was still trying to avoid extradition to Sweden and potentially the US at the time).

I’ve always wondered whether the position the movie took made it easier to fund and distribute. 🤨

Matt profile picture
Richard got really good at spelling out nuanced concepts clearly.

"Bitcoin n'est pas un investissement par nature. Il se comporte comme un investissement par phase historique.

Sa performance n'est pas son objectif, c'est le symptôme de son adoption progressive comme standard monétaire.

Autrement dit, ce n'est pas un investissement qui pourrait devenir une monnaie.

C'est une monnaie en devenir qui temporairement se comporte comme un investissement.”

https://youtu.be/FV4ZYKcWvk0?&t=991
Matt profile picture
C++ nugget:

HFT firms do not use virtual machines, they prefer the predictability of actual hardware.

Here is a problem seen on actual hardware and not so much on VMs: a machine may have more than one CPU socket. Each CPU socket has its own DRAM. How to tell whether the hot-path thread is talking to the local memory unit and not to the remote one?

Answer: Linux allows you to pin a thread to a specific core and restrict heap allocation to the local node. naddr1qvzq...
Matt · 4w
Looks like it does not.