chris muscarella

8.7K posts

chris muscarella banner
chris muscarella

chris muscarella

@cm

“Courage is not simply one of the virtues, but the form of every virtue at the testing point." -CS Lewis Double Sharp, founder/ceo; Field Co, ironman / founder

astral projection Katılım Aralık 2006
5.4K Takip Edilen7.6K Takipçiler
chris muscarella
chris muscarella@cm·
@pitdesi Sheel, that’s the real world. Brian’s on record saying to dollarize countries / future vision is everyone has a non-custodial wallet and it’s extremely high utility everywhere.
English
0
0
0
89
Sheel Mohnot
Sheel Mohnot@pitdesi·
How can stablecoins reduce remittance fees to zero? makes no sense to me whatsoever. The bulk of remittances $ is migrant workers sending money to family, from US->Mexico, US->India, Gulf->India Stablecoins can make the money-movement leg much cheaper/near-zero but that isn't the bulk of the cost! You still need cash-out, FX, compliance/KYC, fraud controls, customer support, and distribution. When I send money to my cousin in a village in India, there is nothing he can do with USDC. He needs to get the money out into INR and that last mile is where most of the cost lies. Stablecoins can make remittances much cheaper but nowhere near zero.
Brian Armstrong@brian_armstrong

An estimated $60 billion was spent on remittance fees in 2025. This could be almost zero with stablecoins.

English
147
28
664
212.9K
Richard Chen
Richard Chen@richardchen39·
What's the best explanation why there's tens of billions of dollars in DeFi earning 4-5% APY when the risks are way higher than treasuries?
English
100
5
227
42.1K
chris muscarella retweetledi
Brent Beshore
Brent Beshore@BrentBeshore·
"The interviewer, @DouthatNYT, broke down crying during the conversation. And when he did, Sasse laughed. Not unkindly, but the way a man laughs when the heaviness and the lightness of something are both true at the same time and he’s decided not to pretend otherwise."
Brent Beshore@BrentBeshore

x.com/i/article/2047…

English
7
26
287
38.9K
chris muscarella
chris muscarella@cm·
Has anyone played around with (or is aware of) building meta social layers on top of other software with Claude? More specifically: music has always been better with friends (rip Turntable and many others) and want to play around with some things (Spotify / Soundcloud)
English
2
0
1
364
Karthik Senthil
Karthik Senthil@karsenthil·
@cm would u be down to review the concept we have so far?
English
1
0
0
24
chris muscarella retweetledi
Philip Rosedale
Philip Rosedale@philiprosedale·
This is so beautiful. And so important to study. This phenomena (emergent coherence) is central to much of life, and most people don't even imagine it could happen.
Interesting STEM@InterestingSTEM

They capture the exact moment when a developing heart shifts from silence to its first beat. There is no “switch”: many cells gradually become active and, upon crossing a critical threshold, the entire tissue suddenly synchronizes.

English
59
1.7K
18.4K
541.4K
chris muscarella
chris muscarella@cm·
@Hadley Same with things like chat. As a small team we're dumping WhatsApp logs into CRM / ML loops and kind of waiting for agent native things like Ando before just jumping into Slack
English
0
0
0
16
chris muscarella
chris muscarella@cm·
@Hadley One of the funny things about evaluating tools for teams these days... sometimes helpful to vibe code something over a couple of weeks just to get a better sense of what you actually want before choosing a 3rd party system... we're doing that with our CRM
English
1
0
0
20
chris muscarella
chris muscarella@cm·
@Hadley @mszepien @Benioff Also interesting that CRM as system of record (when good) is less about screen interfaces than most other SaaS applications I can think of—and you see people like @markitecht pushing that hard at Day AI
English
0
0
2
22
chris muscarella
chris muscarella@cm·
@Hadley @mszepien @Benioff The slightly less salty version of this is something like: would be willing to bet most usage / most revenue at Salesforce is tied to highly customized versions with their own UI / almost no one uses the default
English
2
0
3
218
chris muscarella
@thegothamgal As an example: are a bunch of debt covenants tied to rent levels or something similar that if triggered would cause a cascade across a real estate portfolio? Or the simple frame of: what are the top rational reasons for owners of NYC real estate to behave this way?
English
0
0
0
22
chris muscarella
@thegothamgal Joanne, actually curious to go a click or two deeper in a “follow the money” way… is there a structural reason why buildings stay empty / other than a cartel-like action to keep rents at a certain level?
English
1
0
0
39
chris muscarella
@justinmassa What surprised you most? And did you spend time trying to make a recursive loop on new things to add etc? Haven’t taken a crack yet at making my own index / crawler for links out of things like bookmarks but excited about it
English
0
0
1
37
justin massa
justin massa@justinmassa·
@cm I did this about 2 weeks ago. was able to go back 29 years. it is pretty amazing.
English
1
0
1
62
chris muscarella
Dream come true: have built libraries of papers and semi well catalogued digital exhaust for 20+ years waiting for this
Andrej Karpathy@karpathy

LLM Knowledge Bases Something I'm finding very useful recently: using LLMs to build personal knowledge bases for various topics of research interest. In this way, a large fraction of my recent token throughput is going less into manipulating code, and more into manipulating knowledge (stored as markdown and images). The latest LLMs are quite good at it. So: Data ingest: I index source documents (articles, papers, repos, datasets, images, etc.) into a raw/ directory, then I use an LLM to incrementally "compile" a wiki, which is just a collection of .md files in a directory structure. The wiki includes summaries of all the data in raw/, backlinks, and then it categorizes data into concepts, writes articles for them, and links them all. To convert web articles into .md files I like to use the Obsidian Web Clipper extension, and then I also use a hotkey to download all the related images to local so that my LLM can easily reference them. IDE: I use Obsidian as the IDE "frontend" where I can view the raw data, the the compiled wiki, and the derived visualizations. Important to note that the LLM writes and maintains all of the data of the wiki, I rarely touch it directly. I've played with a few Obsidian plugins to render and view data in other ways (e.g. Marp for slides). Q&A: Where things get interesting is that once your wiki is big enough (e.g. mine on some recent research is ~100 articles and ~400K words), you can ask your LLM agent all kinds of complex questions against the wiki, and it will go off, research the answers, etc. I thought I had to reach for fancy RAG, but the LLM has been pretty good about auto-maintaining index files and brief summaries of all the documents and it reads all the important related data fairly easily at this ~small scale. Output: Instead of getting answers in text/terminal, I like to have it render markdown files for me, or slide shows (Marp format), or matplotlib images, all of which I then view again in Obsidian. You can imagine many other visual output formats depending on the query. Often, I end up "filing" the outputs back into the wiki to enhance it for further queries. So my own explorations and queries always "add up" in the knowledge base. Linting: I've run some LLM "health checks" over the wiki to e.g. find inconsistent data, impute missing data (with web searchers), find interesting connections for new article candidates, etc., to incrementally clean up the wiki and enhance its overall data integrity. The LLMs are quite good at suggesting further questions to ask and look into. Extra tools: I find myself developing additional tools to process the data, e.g. I vibe coded a small and naive search engine over the wiki, which I both use directly (in a web ui), but more often I want to hand it off to an LLM via CLI as a tool for larger queries. Further explorations: As the repo grows, the natural desire is to also think about synthetic data generation + finetuning to have your LLM "know" the data in its weights instead of just context windows. TLDR: raw data from a given number of sources is collected, then compiled by an LLM into a .md wiki, then operated on by various CLIs by the LLM to do Q&A and to incrementally enhance the wiki, and all of it viewable in Obsidian. You rarely ever write or edit the wiki manually, it's the domain of the LLM. I think there is room here for an incredible new product instead of a hacky collection of scripts.

English
1
0
3
866
chris muscarella
@fromedome and how we managed to conflate rented distribution and some lipstick with “brand” which you’d actually be able to measure over time as margin structure, organic customers, and borrowing the Buffett quote of not needing a prayer session to raise prices
English
1
0
0
46
Dan Frommer
Dan Frommer@fromedome·
Would love to flip through the Series A / B / Seed decks for Warby, Allbirds, Glossier, Away, Casper, etc. Anyone have on a Zip drive somewhere?
English
3
0
40
13.7K
chris muscarella
chris muscarella@cm·
@bigbrutha_ Folks hitting harvest time on older funds and looking at the carnage of recaps of things that once looked promising / not knowing where to pray to get some DPI…
English
0
0
0
123
Retired Polysaccharide Patriarch
Lowkey seeing VCs and older founders talk about selling earlier when you have leverage the past couple weeks Whats going on in the grapevine
English
4
0
7
1.6K