a dev working with immutable code

Teh Internets // Berlin
Pinned Tweet
888 days ago, @amuletrix and I hid poetry on-chain, in Ethereum. Each poem satisfies: 𝒫 = { s ∈ {U+0000 … U+10FFFF}* | |UTF8(s)| ≤ 64 ∧ "8888" ∈ SHA256(s) } Even the moon is 88% illuminated today... I think the universe is telling me to release Verselets once and for all.
6
12
70
14,903
albi.eth retweeted
The worst part of every project is if you need some Google API key.
186
213
4,113
196,687
albi.eth retweeted
Five years ago, I found a Lost Robbie in a drawer. One of 300 frames of Robbie Barrat’s AI art, given away at Christie’s in 2018. Today I’m launching a tracker for the finds, the sales and the story. How many other drawers hold one? @videodrome
8
14
75
10,452
albi.eth retweeted
I like when electricity is a little bit "slow". Like when you remove power from an appliance and it takes a couple seconds for all lights to go dark.
130
7,129
82,305
1,381,405
mfw the blast radius is small
2
54
My timeline
27
80
1,237
39,325
albi.eth retweeted
A few months later - a Quantum Safe Bitcoin tx on mainnet: mempool.space/tx/305a24ffea9… Thanks to StarkWare's @giladi_tom85141 taking this to the finish line and @MARAFoundation_ Slipstream mining this non-standard tx Also @robin_linus & @Ethan_Heilman on previous work led to QSB
Quantum-Safe Bitcoin Transactions Without Softforks github.com/avihu28/Quantum-S…
108
155
681
253,990
In 1998, Tim Berners Lee said "Cool URIs don't change". I love the World Wide Web and I want to respect it as much as possible. And keeping links alive is one side of it. Yesterday I stumbled upon this tweet by @XCOPYART about the artwork "Disaster Suit", pointing to the legacy URL of the original (now-defunct) website. As of this morning, that old link redirects to the new home of XCOPY's artwork. Try it yourself: open XCOPY's tweet and click the bitly link. It ain't much, but it's honest work. The 8y/o tweet lives again :) NB: since I don't have all the data to map every legacy URL, I'm just pointing `dapp.rareart[.]io` to `rareart[.]io`
‘Disaster Suit’ #cryptoart Edition of 10 Out now! Only @rareartlabs bit.ly/2OxJzJO #digitalart #rare #ETH
2
1
10
1,181
More info about R.A.R.E. Art wrapper
Today we’re launching R.A.R.E. Art Wrapper, a tool designed to preserve the legacy of artworks published through the R.A.R.E. Art Labs marketplace. Supported by artists & visionaries @XCOPYART & @Coldie, @JohnZettler (founder of @rareartlabs), @flohagenbuch, and audit by @0xleastwood. Here’s how it works 🧵
2
2
99
and thank you @Mdiac_ The redirect it your fault. I found the old tweet from your thread :P
Excited to have an honorary in the CXRDS release on Thursday Here is my interpretation of Disaster Suit, the iconic 2018 @XCOPYART edition from R.A.R.E Art Labs Check out the thread below for more on the piece:
1
1
79
albi.eth retweeted
qr-transfer is live! Send files between devices as a stream of QR codes. Everything runs on your own device (even offline). No external dependencies, no network calls, no tracking, ... Hosted on @ethswarm and accessible with gwei.domains
1
7
26
1,530
someone built an aphex twin logo generator—we sure live in glorious times.
21
282
3,296
158,314
This is huge
1
3
390
from the docs "The Age Verification Solution will provide as an experimental feature the ZKP [...]" ah cmon no zk in 2026? Argentina did it in 2024 with QuarkID.
It is for parents to raise their children. Not platforms. The European Age Verification App is ready ↓ nitter.net/i/broadcasts/1lJQRvjoX…
Community note
Russia started internet regulation for exactly the same reason in 2011. Then, gradually, blocklists, VPN bans, Sovereign Internet law, and eventually whitelists in 2026. loc.gov/item/global-le…
1
5
290
that was quick, thanks to claude
2
71
Trying to open a markdown file on MacOS
61
302
8,348
184,065
è tutto oggi che penso a quanto bene ci sta la salis nella canzone degli offlaga disco pax e ora ve lo beccate pure voi sorry not sorry
1
6
474
albi.eth retweeted
Not sure I have ever been as productive in my life as in the last ~10 weeks: An extremely challenging yet worthwhile goal. The crazy progress of AI coding and heavy use of it. A very small team, world-class skills, and now the ability to multiply output thanks to AI. The result is @etheconomiczone — with a live devnet already: eez.dev. What is this? It will be: a) A new rollup that is fully composable with Ethereum. This means you can do either cheap transactions on this chain that only interact with contracts on this rollup, or more expensive transactions (similar to L1 costs) that can interact in a fully composable way between L1 and L2. So, for example, if you trade on this rollup, the routing can dynamically decide to use only L2 liquidity for a small trade, or for a larger trade — where the extra gas costs are worth it — to use both L2 and L1 liquidity. b) A whole framework that will allow new rollups, as well as existing L2s and sidechains (yes @gnosischain!!) to integrate into this “(Ethereum) economic zone.” Imagine: one could make a trade today simultaneously using Ethereum liquidity, but also Arbitrum, Base, or all the other L2s. This is what EEZ will allow. Now, let’s talk about the tech: Essentially, there are two core concepts that make all of this possible: 1) Proxy contracts 2) Real-time proving 1) Proxy contracts are basically a way to overcome the challenge that ~99% of all contracts are written in a way that only deals with addresses from a single chain. For example, a token or an NFT can be sent to an address, but not to an address on a specific other chain. Proxy contracts fix this. An address “A” on chain “n” will get a deterministic proxy representation, “A*”, on all other chains. So now, if, for example, A is a DAO on Ethereum and it should control, say, a fee switch in contract D (a DEX) on another chain, this can easily be done by setting A* as the owner of D. A (the DAO), on the other hand, can now call D* (the proxy representation of the DEX contract D) on Ethereum. All the cross-chain message passing in between is abstracted away — the contracts just call another contract and do not realize it is actually on another chain. 2) Real-time proving The proxy design already addresses the problem that there is no widely supported cross-chain message-passing standard in EVM land. So it alone would already be helpful for asynchronous calls, or better, calls that do not expect or require a return value. However, this would still not quite bring us to “synchronous composability.” Imagine a DEX trade: you do the first part of the trade on L1 and the second part on L2. You want to know the result of the second part — and if it did not get you the expected amount, you want to be able to revert the first part. This requires the call that triggers the DEX trade on L2 to have a return value. This was long assumed to be impossible - but with real-time proving, it no longer is. Basically, because Ethereum blocks are only produced every 12 seconds (and this would still work with, say, 6 seconds), that is now long enough to build and prove the L2 block that contains, for example, this L1→L2 DEX trade. If you want to learn more, don’t miss the talk by @tw_tter and @jbaylina on Tuesday at @EthCC! Let’s make Ethereum ONE again!
51
70
644
54,450
albi.eth retweeted
having too much fun with this
My dear front-end developers (and anyone who’s interested in the future of interfaces): I have crawled through depths of hell to bring you, for the foreseeable years, one of the more important foundational pieces of UI engineering (if not in implementation then certainly at least in concept): Fast, accurate and comprehensive userland text measurement algorithm in pure TypeScript, usable for laying out entire web pages without CSS, bypassing DOM measurements and reflow
9
26
714
63,904