▲ 1 r/defi

Reserve Protocol just wrapped the 25 largest US-listed names across those layers into a single token. Thoughts on this new type of basket?

Global semiconductor sales hit roughly $796B in 2025 and WSTS has them climbing toward $1.5T in 2026, memory-led, as AI demand keeps outrunning supply.

Reserve Protocol just wrapped the 25 largest US-listed names across designer, fabrication, memory and equipment maker layers into a single token, backed by the underlying equities through Ondo Global Markets. These are rebalanced quarterly by governance.

If you'd rather isolate one layer instead of the whole stack, they've split it into four narrower baskets too (power, optical, cloud compute, robotics).

Thoughts?

Risks worth flagging directly: these are concentrated, single-theme baskets of experimental tokenized assets. They're volatile, illiquid, not ETFs, not FDIC or SIPC insured, and can lose their entire value. Not available to US persons or sanctioned jurisdictions. Fees are 0.3% mint plus 0.6% TVL.

Audit history is on GitHub: https://github.com/reserve-protocol/protocol/tree/master/audits

reddit.com
u/Quechivoeth — 9 hours ago

Are Reddit citations finally over?

https://preview.redd.it/f8z0ek30z8kh1.png?width=2184&format=png&auto=webp&s=281db360d8ea95d7b0d32293183cee6a9b9dd950

Promptwatch data making the rounds shows Reddit's share of ChatGPT Search citations fell off a cliff after OpenAI's Aug 8 query-fanout change, from a steady ~3.8% down to ~0.5% by Aug 14.

So the actual lesson isn't Reddit is dead for GEO. It's that citation share is the single most volatile, platform-controlled metric in this entire field, and building a visibility strategy on top of a number that OpenAI can swing 80% with one backend change is the real mistake.

The durable play imo should never be "get cited this week." It should be building a brand presence that survives the swings, making it much different and much less measurable.

reddit.com
u/Quechivoeth — 1 day ago

If HBM allocation is now the constraint on rack output, how many more substitutions like Rubin Ultra should we expect?

Reports have been that NVIDIA lowered HBM content in Rubin Ultra and recovered the capacity with greater photonic content. The driver was availability, not cost.

Memory is limited enough that it caps how many racks get built, so bandwidth is being given up for locality.

What I can't figure out is how general the trade is. It would seem it should only account for workloads where the link can take on the extra traffic without the latency penalty eating up the gain. This presumably means large-batch inference does fine and anything latency-sensitive does not.

But I don't know if that's the proper cut, or if the constraint is somewhere else, like power budget on the optical side, or the packaging step.

Source

u/Quechivoeth — 6 days ago

We enforce determinism with a test that fails the build if any sim file calls Math.random

Follow-up to the model-dependency post from a while back. Something that's turned out to matter more than expected on this project.

The same simulation core runs in three places:

- the browser client
- the authoritative server
- a headless Gymnasium env for training agents.

Behaviour has to be identical in all three, otherwise the thing you tested isn't the thing that shipped and an agent trains against a world that doesn't exist.

That's a hard invariant to hold when a lot of the code is model-written and most contributors are strangers. A model will reach for Math.random or Date.now() without hesitation, because in isolation that's correct code. It's only wrong relative to a project constraint it has no way to know about. Same for a new contributor who hasn't read the architecture doc.

So it isn't a convention, it's a test. One walks every file in the sim directory and fails the build on a forbidden import, a DOM global, a wall clock reference, or a platform RNG call. Another pins the seam between the offline and online world implementations so they can't drift apart.

Fixed 20 Hz tick, all randomness through one seeded RNG. Seed a reset and the episode replays exactly.

Any other invariants you've had to make checkable rather than trusting to review?

github.com/levy-street/world-of-claudecraft

u/Quechivoeth — 8 days ago

How do you correct what LLMs say about your project when the wrong info comes from aggregator sites?

Working on an open source game and running into something I haven't seen discussed much. Ask a model about the project and you get a mix of accurate stuff from the repo and docs, and inaccurate stuff scraped from low-quality aggregator and listing sites that got details wrong.

The aggregators outrank us for some queries and they're not going to correct anything. Our own docs are accurate but there's less of that surface area than there is of automatically-generated listing pages.

What I'm trying to figure out:

  • Does structured data on your own site actually influence what models retrieve, or is it mostly about how often a claim appears across sources?
  • Is there any practical way to counter a wrong claim that's been replicated across a dozen scraped sites, or do you just have to out-publish it?
  • Has anyone tracked whether this changes over time as models retrain, or does bad early information persist?
reddit.com
u/Quechivoeth — 8 days ago

World of ClaudeCraft - free browser MMO, new ranked 5v5 capture-the-flag battleground

Free classic-style MMO that runs in the browser, no install. Latest release adds Thornhollow Fields, a ranked 5v5 CTF battleground, two teams, two keeps, first to five captures. There's an honor system with a gear tier attached and a lifetime rank ladder.

Instant offline mode needs no account. Online persistent world does require a login but nothing is paywalled.

Fair warning on performance, it's heavy for a browser game, runs better in Chrome than Firefox, and mobile is rough.

worldofclaudecraft.com
u/Quechivoeth — 9 days ago

Shipped a ranked 5v5 battleground on an AI-assisted codebase. Notes on what that actually looks like now.

https://preview.redd.it/91pr9hxxenih1.png?width=2172&format=png&auto=webp&s=abcb12fa35f54712aea32ae733686bf5aa3e87da

Context: open source browser MMO, originally generated in about two days, since then worked on by roughly 30 contributors across several frontier models.

The PvP release is the first thing we've shipped that needed real coordination rather than just content generation. Capture the flag with two teams, keep objectives, an honor currency, a gear tier gated behind it, and a persistent rank ladder. All of it has to resolve server side and stay consistent across clients.

What's changed since the original build: content generation is still fast, but systems that touch shared state need a lot more human review before they ship. The model is good at producing a plausible implementation and less good at reasoning about what happens when five people hit the same object simultaneously.

Also worth noting a bug we're still tracing, at the highest graphics preset character models stop rendering entirely. Ten invisible players and a flag moving on its own. Reported by a player, not caught internally.

Happy to go into detail on the server side design if anyone's interested.

reddit.com
u/Quechivoeth — 9 days ago

China ships most of the world's AI networking parts, but the profitable bits inside are still American. Does "market share" mislead people here?

Been looking into the optical side of AI, the gear that moves data between chips in a data center, since it's quietly become one of the biggest trades in Chinese stocks. Zhongji Innolight is now the single heaviest stock in China's main index, ahead of even CATL and Moutai, off the back of huge growth selling these parts to the likes of NVIDIA.

But here's what keeps nagging me. Chinese firms build most of the finished units, but the expensive stuff inside them, the chips and lasers, still mostly comes from US companies like Broadcom and Lumentum. So China wins on volume while a big chunk of the actual profit sits upstream with American suppliers.

Makes me wonder how much of the China dominates AI optics story is really a volume story dressed up as a profit story.

Would you rather own the company with the biggest market share, or the quieter one upstream with the fatter margins?

reddit.com
u/Quechivoeth — 9 days ago

Browser MMO getting inconsistent frame rates across machines, looking for profiling approaches

https://preview.redd.it/hkdaw8kbvvhh1.png?width=2048&format=png&auto=webp&s=7643000bd242eb8a7f81bb173a42d19afcfab734

I work on an open source browser MMO, three.js based, authoritative server with the client acting as renderer. It runs fine for a lot of people and badly for others, and the variance is wider than I'd expect.

What we know so far:

Some users report flat 10 FPS. At least one person traced their own stutter to a browser extension and got smooth performance in incognito, which suggests part of it is environmental rather than the game. Mobile runs but is rough. Chrome generally does better than Firefox.

What I'm trying to figure out is how to separate our problems from the user's environment in a browser context, where you can't ship a profiler and can't reproduce their setup. Server side we have visibility, client side we're mostly guessing from reports.

Specific questions for anyone who's shipped a 3D browser game:

Is it worth collecting client side perf telemetry, frame times, draw calls, memory, or does that become noise given how varied browser environments are?

For scene complexity, has anyone found a reliable way to figure out whether the bottleneck is draw calls, shader cost, or garbage collection without a native profiler?

Any approach to graceful degradation that isn't just a settings menu most players never open?

Repo is public if anyone wants to look at how it's structured, though I'm more after approaches than a code review.

reddit.com
u/Quechivoeth — 13 days ago

Are tokenized stocks truly useful or are they still a solution looking for a problem?

It sounds like tokenized US equities make holding stock exposure are currently pretty warm in nonnative countries. On paper, it does sound like they solve something real, especially for those of us who can't open a US brokerage account easily.

However, I'm still not sure whether or not these are being used or it's all currently just hype. Curious if anyone has tried any of these? Also, what's the real spread once you account for everything? What happens when the custodian runs into trouble?

reddit.com
u/Quechivoeth — 14 days ago
▲ 1 r/fican

For the non-registered portion of your portfolio, has anyone looked at tokenized equity access as an option, or is it a non-starter for FIRE?

Most of the FIRE playbook here is built around maxing registered accounts first, RRSP, TFSA, then dealing with whatever spills into taxable. My question is really about that taxable portion, and whether newer access routes are worth considering or just noise.

There are now onchain platforms offering tokenized versions of US equities you can hold and trade without a traditional brokerage, 24/7, no wire transfers. On paper that solves some friction, especially the currency-conversion and cross-border cost drag Canadians deal with on US holdings. But I can see the obvious FIRE objections too: almost certainly no registered-account eligibility, unclear CRA tax treatment, added counterparty and custodian risk, and fees that may not beat a plain low-cost ETF once you account for everything.

So genuinely asking the people who've thought hardest about tax-efficient long-term holding: is there any version of this that fits a FIRE strategy, or does the lack of RRSP/TFSA eligibility alone make it a non-starter regardless of how smooth the access is?

reddit.com
u/Quechivoeth — 15 days ago
▲ 1 r/MetalsOnReddit+1 crossposts

Has anyone actually built a currency backed by real assets that works at scale, or does every attempt eventually just become another fiat system with extra steps?

Every few months the same debate comes up again, fiat's value is entirely reliant on our trust in central banks and they are really good at manipulating their decisions over money supply and then someone proposes an asset-backed alternative in exchange for a piece of steak.

However, as has happened historically these efforts either become inexorably abandoned (gold standard) or slowly meander back into the same trust based model they were attempting to escape.

The question in this intersection however is whether there really is an intrinsic structural barrier operating to keep asset-backed currency from actually holding long-term or if it has just never been attempted with the right technology and governance behind its implementation?

I wonder if anyone here believes that a truly transparent, verifiable backing model makes any difference to the outcome or whether this is just an endless cycle regardless of what underlies the money.

reddit.com
u/Quechivoeth — 21 days ago

Is there actually a way to invest in US stocks without opening a traditional brokerage account?

Newbie here and trying to understand my actual options.. I keep seeing ads for different apps and I'm not sure which ones are legit versus just marketing.

What I'm specifically trying to figure out: do I actually need a traditional brokerage account to buy stocks, or are there other legitimate ways now?

Not looking for stock picks, just trying to understand the options before I commit to one. Thanks!

reddit.com
u/Quechivoeth — 22 days ago

You know that most tokenized stock and RWA volume is on other chains, not Ethereum?

I have been paying attention to this for a period of time, and I am curious about what people think here.

Everyone says Ethereum is the most trustworthy,most decentralized by far, longest track record and deepest liquidity settlement layer.

Yet most of the recent activity related to tokenized equity and RWA appears to take place on chains other than Ethereum (often launched first).

Could it be with gas costs that require too frequent a rebalance or redemption makes these products less efficient? Perhaps this is simply that newer chains are more brazenly wooing these projects earlier. Or perhaps this is actually fine for Ethereum and simply a timing issue, first movers chose elsewhere and it'll normalize. Idk always had these questions when it comes to ETH.

reddit.com
u/Quechivoeth — 23 days ago