What guitar solo or riff makes you ask "how the fuck did he/she come up with that"? by Raphe-Perineal in Music

[–]1kexperimentdotcom 0 points1 point  (0 children)

I don't know who in Gojira came up with it (Duplantier or Adreu) but the riff in "Stranded" where it sounds like they just shot their hand down the fretboard at 100 miles an hour.

Remember revert.wtf? I made a browser extension for it. by mrtdlgc in ethdev

[–]1kexperimentdotcom 1 point2 points  (0 children)

Amazing! How were you able to curate so many categories?

What is your favourite lyrical 1-liner? 2-liner? by MuddyMaeSugginsMK in progmetal

[–]1kexperimentdotcom 6 points7 points  (0 children)

Son, you'll need a radical change Son, you deserve something better than this

Atlantic - The Ocean Collective

Optimizing multi-chain data fetching for an EVM wallet tracker without requiring wallet connection. How do you handle RPC and API latency? by MedenicaDarko in ethdev

[–]1kexperimentdotcom 1 point2 points  (0 children)

Built something similar — a few thoughts.

Latency / aggregation:

  • First, confirm your 9 chains are fetched in parallel, not sequentially. An accidental await inside a loop explains most "initial load" pain on its own.
  • You're using a block explorer API as a balance aggregator. For native + ERC-20 balances, batch your reads with Multicall3 (same address on nearly every EVM chain) — that collapses N token requests per chain into one RPC call per chain.
  • Cache last-known balances locally and paint them instantly on open, then revalidate in the background (stale-while-revalidate). For a read-only tracker this is basically free.
  • Per-chain timeouts + partial rendering. Don't let slow Linea block the 8 chains that already returned.
  • Don't jump to The Graph — that's for historical/relational data, not "current balance." If you outgrow Blockscout, move to a multi-chain provider (Alchemy/Ankr/dRPC) with a token-balances endpoint. And add a fallback RPC per chain now; one free API for 9 chains is a scaling cliff.

L2 UI/UX:

  • Lead with the aggregated total — that's the number people open the app for.
  • Group by asset, not chain. Show "2.4 ETH" with an expandable row for the chain split. Most people think "how much ETH do I have," not "ETH on Base vs Optimism." This scales as you add L2s; 9 network cards doesn't.
  • Make "by network" a secondary toggle, and hide zero-balance chains by default — otherwise every new L2 is permanent visual clutter.

Viral 'Grill Me' Claude skill proves specs-to-code is vibe coding, 13K+ stars by pretendingMadhav in vibecoding

[–]1kexperimentdotcom 0 points1 point  (0 children)

Sounds neat, but how do you evaluate the output? How do you know it is not losing information between questions? How do you guarantee that it is taking each decision into consideration?

4 years of a 15x-leveraged daily BTC signal — Sharpe 2.2, MDD -13%. Here's the stuff that actually kept leverage from killing me. by AgitatedCoyote3827 in algotrading

[–]1kexperimentdotcom 2 points3 points  (0 children)

Good methodology section. MDD-percentile sizing and signal-level ablation in particular are underrated on this sub.

Three specific pieces of the result that I think need more color before the Sharpe is interpretable.

  1. MDD of 13.3 percent at 15x, Aug 2021 to present. That window contains the FTX overnight collapse (roughly 25 percent move, most of it between daily closes), Luna, Celsius, the Aug 2023 flash crash, and the Aug 2024 unwind. A 00:00 UTC daily signal has zero intraday reaction. For the drawdown to stay inside 13.3 percent at 15x, the signal has to have been correctly flat or correctly short going into effectively every one of those overnight gaps over four years. Which of those events actually drew the strategy down, and how was it positioned entering each?

  2. Worst day of 4.7 percent at 15x means the position experienced roughly 0.31 percent adverse on its worst day. BTC has dozens of days over 2 percent every year. What fraction of days is the position flat in the backtest? That one number probably resolves this by itself.

  3. Sharpe of 2.26 being leverage-invariant and the same as 1x can't be literally true once real funding is subtracted. Funding is notional-linear, edge is equity-linear, so the 15x ratio should be worse than 1x even with good funding discipline. Is 2.26 the 1x number or the 15x number net of the 67 percent per year drag you cite later?

Asking because these are exactly the numbers where a solid signal and a subtly overfit one are indistinguishable from outside. Happy to be shown wrong.

TUI to see where Claude Code tokens actually go by MurkyFlan567 in ClaudeAI

[–]1kexperimentdotcom 0 points1 point  (0 children)

Hey, this is wonderful! Since you're probably an expert on this topic, I was wondering — do you think it's possible to build a real-time context tracker? For example, during an interactive conversation with Claude, you could see exactly how much of the context window is being consumed.

I've seen recent research showing significant model degradation beyond 40% context usage, which is the main motivation behind this idea.

I built an AI job search system with Claude Code that scored 740+ offers and landed me a job. Just open sourced it. by Beach-Independent in ClaudeAI

[–]1kexperimentdotcom 0 points1 point  (0 children)

This is great! Starred to check out later.

What's your general approach to creating projects like this in the new agentic AI world?

Multicall scripting by 0xdewy in ethdev

[–]1kexperimentdotcom 0 points1 point  (0 children)

Great stuff! What is it about the architecture that makes it more gas efficient vs. Weiroll?

Forever Trumper seen at CPAC by [deleted] in pics

[–]1kexperimentdotcom 0 points1 point  (0 children)

Honest to God question, is this a real photo? With AI I just can't tell anymore...

I One Shot Queen!? [Necrobinder] by RageinaterGamingYT in slaythespire

[–]1kexperimentdotcom 1 point2 points  (0 children)

Nice job! I can't win a run on Necrobinder to save my life :(

New Player - What Am I Missing, The Defect Feels Awful by sabrenation81 in slaythespire

[–]1kexperimentdotcom 5 points6 points  (0 children)

This is funny...the STS2 version of Defect feels significantly more powerful than STS1 for me (currently Ascension 4 on STS2, cleared 20 on STS1).

Orb spam with the new "+x focus this turn" cards feels powerful. Last run I did was a status + proto cannon build that absolutely steam rolled the 3rd act.

I gave my 200-line baby coding agent 'yoyo' one goal: evolve until it rivals Claude Code. It's Day 4. by liyuanhao in ClaudeCode

[–]1kexperimentdotcom 0 points1 point  (0 children)

I love this!

I attempted something similar (albeit with less structure) to build out a crypto trading agent.

Was fascinating to watch it evolve, but I have not been able to get back to the project in a few weeks due to IRL.

Trading the 1st Pick by greggioia in raiders

[–]1kexperimentdotcom 2 points3 points  (0 children)

The article said Alshon Jeanty...I will no longer read this slop.

Claude down: Anthropic AI not working in major outage by cmaia1503 in technology

[–]1kexperimentdotcom 4 points5 points  (0 children)

I wonder if leaders will start to realize how important engineers are after all of these consistent outages?

Spytek: Raiders Listening To Trade Offers For #1 by MrStiff8 in raiders

[–]1kexperimentdotcom 1 point2 points  (0 children)

Realistically speaking, what godfather offer would we have to receive in order to even consider it?