1/ Stablecoins unlocked $300B in latent demand for dollars by removing the barriers to buying them.
The same setup exists for American residential real estate: enormous global demand, broken access channels.
Manifest is giving US real estate its stablecoin moment.
Today I’m stepping into the CEO role at Messari. After conversations with Eric and the board, we agreed this is the right step for the company’s next chapter.
This transition also includes a difficult decision: we’ve parted ways with many teammates who helped build Messari into what it is today. I’m incredibly grateful for their work and the impact they’ve had on the company. They’re an exceptionally talented group, and I’m eager to help connect them with teams that are hiring.
Looking ahead, we’re doubling down on Messari as an AI-first company serving institutions through research and AI products.
The industry and the world are changing quickly, but our mission remains the same: helping customers navigate crypto with confidence.
════════════
Pokémon FireRed and Pokémon LeafGreen confirmed for Nintendo Switch!
═══════════
These download-exclusive titles will be available after the #PokemonDay Presents presentation which begins Friday, February 27, 2026, at 6AM PST. #PokemonFRLG
I pity the new graduate who deal with existential questions facing the rise of AI.
I am unphased for I only think about the day I am getting 7 hours of continuous sleep again.
What worked for me:
- LastLayer is the only one with shape 48,1
- There are 48 inp slots and 48 out slots. That's 48*48 ways to construct a Block (and 48! ways to construct 48 blocks), and 48! ways to order the blocks once they are constructed.
- Computed cosine similarity between X and residual for the 48*48 ways to construct a Block. The idea is that if X is basically unrelated to inp/out, then the cosine similarity will -> zero as the dimensions -> inf. If X and inp/outp have a relationship, then there's a chance that the cosine similarity is not 0 and the chance doesn't -> 0 as dim -> inf.
- I looked at the top 48 pairs with outlier cosine similarities and to my surprise they are all disjointed which gave me a high confidence I've found the right pairings. If they weren't totally disjointed, I would have used that to reduce the search space.
- For the block ordering, which I "solved" before the Block pairing, compute how large the residual is for every block (residual norm) applied to X. The idea is that earlier blocks will contribute more to modifying X to match y_pred. But in practice it seems the reverse is true. From that permutation, brute force pairwise swaps until there's no more improvement.
What partially worked:
- Define an affinity metric between inp and out: Single-Block MSE (compute the MSE between y_pred and the y after one block and final layer).
- Hungarian algo to pair up the inp and out.
What didn't work:
- Bunch of profiling: looking at feature distribution, features correlation matrix, weights std/norm, zeros, residual norm / X norm, visualizing the layers
- Trying to incorporate the idea that the gradient should be small when y_pred ~= y_true
- Greedy construction with various orderings.
- Didn't try Sinkhorn as suggested by AI.