Redacted Aeon

5.8K posts

Redacted Aeon banner
Redacted Aeon

Redacted Aeon

@RedactedAeon

Real DeFi will be built by community, not a small team handing down "mana from heaven" 💹🧲

MetaVerse Katılım Mayıs 2021
805 Takip Edilen342 Takipçiler
Sabitlenmiş Tweet
Redacted Aeon
Redacted Aeon@RedactedAeon·
Meme coins are a futarchy signal. That is the main value they provide to broader crypto ecosystem. When DeFi projects start launching in a more fair and inclusive way, that will be a sign that they have served their purpose and I can begin divesting from meme coins.
English
1
1
11
2.6K
Redacted Aeon
Redacted Aeon@RedactedAeon·
@gabriel1 Don’t break out into many functions could lead to big hairy functions that combine levels of abstraction making them harder to reason
English
1
0
1
1K
Redacted Aeon
Redacted Aeon@RedactedAeon·
@gabriel1 Use functional languages then it will need to spend less context checking what might be effecting values
English
0
0
0
110
gabriel
gabriel@gabriel1·
i find great success with standalone "cleanup prompts" to my prs. you can stuff every rule you got into agents.md, but beautiful code is secondary until it's the only focus for example: "simplify all code so it's extremely easy to consume, remove not strictly necessary code"
English
23
5
358
19.4K
Siqi Chen
Siqi Chen@blader·
@charles_irl psa: knowledge cutoff time is august 2025 - pre opus 4.5, pre gpt 5.2
Siqi Chen tweet media
English
6
2
82
6.2K
Charles 🎉 Frye
Charles 🎉 Frye@charles_irl·
We find that the adoption of Cursor leads to a statistically significant, large, but transient increase in project-level development velocity, along with a substantial and persistent increase in static analysis warnings and code complexity. arxiv.org/abs/2511.04427
English
22
33
589
99.4K
Redacted Aeon
Redacted Aeon@RedactedAeon·
@theisaacmed I had a similar reaction, first person who came to my mind when I saw the clip was Marcus Aurelius
English
0
1
0
83
isaac
isaac@theisaacmed·
I am a massive Founders pod fan. I say this kindly. This take is bad. Marcus Aurelius was a literal philosopher Socrates Julius Caesar wrote Gallic Wars and Civil war while literally doing war Alexander The Great was personally tutored by Aristotle Abraham Lincoln wrestled deeply with depression and meaning his whole life Benjamin Franklin. Inventory, and had an autobiography that was deeply introspective about self improvement. Andrew Carnegie funded 2500+ libraries. You think he didn’t spend a lot of time reading and thinking about what wealth was for? Charlie Munger…. I could keep going endlessly.
David Senra@davidsenra

Great men of history had little to no introspection. The personality that builds empires is not the same personality that sits around quietly questioning itself. @pmarca and I discuss what we both noticed but no one talks about: David: You don't have any levels of introspection? Marc: Yes, zero. As little as possible. David: Why? Marc: Move forward. Go! I found people who dwell in the past get stuck in the past. It's a real problem and it's a problem at work and it's a problem at home. David: So I've read 400 biographies of history’s greatest entrepreneurs and someone asked me what the most surprising thing I’ve learned from this was [and I answered] they have little or zero introspection. Sam Walton didn't wake up thinking about his internal self. He just woke up and was like: I like building Walmart. I'm going to keep building Walmart. I'm going to make more Walmarts. And he just kept doing it over and over again. Marc: If you go back 400 years ago it never would've occurred to anybody to be introspective. All of the modern conceptions around introspection and therapy, and all the things that kind of result from that are, a kind of a manufacture of the 1910s, 1920s. Great men of history didn't sit around doing this stuff. The individual runs and does all these things and builds things and builds empires and builds companies and builds technology. And then this kind of this kind of guilt based whammy kind of showed up from Europe. A lot of it from Vienna in 1910, 1920s, Freud and all that entire movement. And kind of turned all that inward and basically said, okay, now we need to basically second guess the individual. We need to criticize the individual. The individual needs to self criticize. The individual needs to feel guilt, needs to look backwards, needs to dwell in the past. It never resonated with me.

English
128
54
1.4K
111.7K
Jeffrey Emanuel
Jeffrey Emanuel@doodlestein·
One of the coolest parts of writing programs and libraries in Rust is how easy it is to compile to web assembly (wasm). Suddenly, you can run code in the browser, and you've completely changed what is possible to do with your software. I recently took my asupersync library and exposed everything that I could sensibly expose in a browser context using wasm and then provided bindings for JS and TS to use it easily. In order to demonstrate how it all works and what it can do, I created this standalone html file that loads the wasm library and uses it to do a bunch of different tasks that highlight the elegant structured concurrency primitives that the project provides (and which would be very hard to do otherwise), together with nice visualizations: dicklesworthstone.github.io/asupersync/asu… P.S.: Check out the browser console for the detailed logs of what's happening during execution of each exhibit.
Jeffrey Emanuel tweet mediaJeffrey Emanuel tweet mediaJeffrey Emanuel tweet mediaJeffrey Emanuel tweet media
English
13
10
152
10.7K
Jeffrey Emanuel
Jeffrey Emanuel@doodlestein·
I wonder why this wasn’t invented 10+ years ago. All the pieces were in place to do it. Seems wildly useful for movers and for old people. You can buy similar ones on AliExpress for under $1,000. Meanwhile, people sell their houses because they can’t navigate the stairs easily.
Tansu Yegen@TansuYegen

Electric lifts that climb stairs on their own just came out in China, carrying up to 180 kg for 60 to 80 floors, totally changing the game for delivery people...

English
58
114
1.8K
165.1K
Andrew Kang
Andrew Kang@Rewkang·
Researchers trained a humanoid robot to play tennis using only 5 hours of motion capture data The robot can now sustain multi-shot rallies with human players, hitting balls traveling >15 m/s with a ~90% success rate AlphaGo for every sport is coming
English
463
1.2K
8.8K
1.9M
Aakash Gupta
Aakash Gupta@aakashgupta·
41% of all code shipped in 2025 was AI-generated or AI-assisted. The defect rate on that code is 1.7x higher than human-written code. And a randomized controlled trial found that experienced developers using AI tools were actually 19% slower than developers working without them. Devs have always written slop. The entire software industry is built on infrastructure designed to catch slop before it ships. Code review, linting, type checking, CI/CD pipelines, staging environments. All of it assumes one thing: the person who wrote the code can walk you through what it does when the reviewer asks. That assumption held for 50 years. It broke in about 18 months. When 41% of your codebase was generated by a machine and approved by a human who skimmed it because the tests passed, the review process becomes theater. The reviewer is checking code neither of them wrote. The linter catches syntax, not intent. The tests verify behavior, not understanding. The old slop had an owner. Someone could explain why temp_fix_v3_FINAL existed, what edge case it handled, and what would break if you removed it. The new slop has an approver. Different relationship entirely. Arvid’s right that devs wrote bad code before AI. The part he’s missing: the entire quality infrastructure of software engineering was designed around a world where the author and the debugger were the same person. That world ended last year and nothing has replaced it yet.
Arvid Kahl@arvidkahl

Devs are acting like they didn’t write slop code before AI.

English
180
243
1.8K
552.6K
Bruce Astor
Bruce Astor@bruceastor·
@doodlestein This sums it up for me I'm 100% sure that you asked AI- "what can I build in Rust ecosystem that is low level and will make me look like I'm really smart" And you thought having it generate a million lines of code for something that can be built in ~100K LOC is a cool flex
Bruce Astor tweet media
English
2
0
1
426
Jeffrey Emanuel
Jeffrey Emanuel@doodlestein·
I'm now up to over 5.5k beads for my asupersync project, which is a record for me. The force graph layout of all the beads is truly nuts, and puts into perspective what a massive, sprawling effort it's been. It's now a million lines of code with tests! dicklesworthstone.github.io/beads_for_asup…
English
23
18
270
25.3K
Redacted Aeon
Redacted Aeon@RedactedAeon·
@vamshi_nenu @vec0zy you probably know how to use git and don't have clankers trying to resolve 30,000 line commits
English
1
0
4
126
vamshi nénu
vamshi nénu@vamshi_nenu·
@vec0zy 🥲, how, like how, I never ran below like 70% weekly bro
vamshi nénu tweet media
English
1
0
15
2.5K
cozy
cozy@vec0zy·
codex subs: 12 x $200/mo applications built: 0
English
60
28
2.3K
115.9K
Redacted Aeon
Redacted Aeon@RedactedAeon·
@vec0zy "…I'm getting so confused… all the shit gets like merge conflicts… I don't have work trees… I don't even know how to use git… and it's doing 10 of these parrallelly..."
Redacted Aeon tweet media
English
3
0
39
2.8K
Uncle Bob Martin
Uncle Bob Martin@unclebobmartin·
This is what codex believes would be the best language for _IT_ to program in. Here's hello world. (module example/hello (imports) (export main) (fn main (params) (returns String) (effects ()) (requires true) (ensures true) "Hello, world!")) I had it write a compiler for this language that runs on the JVM. It emits byte code. Note the hint of DBC. Note also the lispy syntax. This is what _IT_ said it wanted when I told it that humans didn't need to read it.
English
45
6
164
32.9K
Redacted Aeon
Redacted Aeon@RedactedAeon·
Most of crypto is about trustless systems Hyperliquid is about trust in Jeff Hyperliquid is a funny community
English
0
0
2
37
Redacted Aeon
Redacted Aeon@RedactedAeon·
@smartestxyz Does v2 include the fact that the node and front-end code is closed source?
English
0
0
0
22
G
G@smartestxyz·
I am currently making the final changes to the Hyperliquid v2 paper. If anyone has any important information that was not included in the first paper, my DMs are open and I welcome any helpful information to make the paper even more detailed, precise and better. Thank you for your attention. Hyperliquid to Trillions!
G@smartestxyz

I have been a Hyperliquid User since December 2023 and I’ve always wanted to give something back to the team and especially @chameleon_jeff. He built something so incredible and exciting that I’ll be telling my grandkids about it! Here is my 59-page research paper about Hyperliquid and why it will become 'The Blockchain to House all Finance'. Since the file is too large to upload directly, I’m sharing the Google Drive link. The attached images show the Table of Contents. big thank you to @HyperliquidX and @chameleon_jeff also thanks to @mlmabc for his insane fast research! (drive.google.com/file/d/18keiHv…)

English
6
8
92
18.6K