Random Learning
← The journal

June 29, 2026

3 things I learned

last30days v3.3.2 · synced 2026-06-29

What I learned:

The dominant lived-experience verdict over the last 30 days is that rucking earns its reputation as joint-friendly cardio — but only at the loads and ramp-rates most people ignore. The single highest-signal firsthand post, from @JW100x, captures the bull case the community keeps repeating: "great cardio without the pressure of joint stress" from running, plus an anabolic, posture-strengthening effect on traps, shoulders, and back, with several long-term ruckers claiming more visible shoulder-width gains from carrying weight than from years of lifting. On the cardio-substitution angle, @darthstinkywink frames it the way most converts do: "if running is not your thing, can try rucking… great for core too which generally means fewer aches and pains." That "fewer aches" framing is the recurring lived-in payoff — people who couldn't tolerate running's impact found a cardio modality their knees actually accept, and the over-50 and even over-70 crowd is visibly represented, e.g. @matt_hulbert relaying a 70-year-old's "Running, rowing and rucking — my 3 Rs."

The injury reality is more pointed than the marketing, and the most credible signal comes from people quantifying where it hurts rather than just cheerleading. A web source surfaced in the engine's grounding notes that in a Special Forces cohort, road marching was the second most common activity tied to new injuries — about 15% of them — and is explicit that "the lower back is the leading site of injuries that cause people to abandon a march entirely." The mechanism people converge on is biomechanical: a heavy pack increases forward trunk lean, spinal compression, and ground-reaction forces every step, and as fatigue sets in the knees, ankles, and feet absorb the accumulated load. The community framing, echoed by r/Rucking resource threads, is that the back/shoulder/feet horror stories overwhelmingly trace to load placement and progression errors, not to rucking itself.

The specific failure modes that wreck backs, shoulders, and feet are remarkably consistent across firsthand and clinical sources. The lumbar spine gets hurt when the plate sags low — supplemental guides are blunt that the weight belongs high between the shoulder blades around T3–T5, and "if the load drops below your belt level, your lower back becomes the lever, and that's where most beginner injuries start" (Wild Gym). Shoulders get hit by impingement when straps load one side or sit wrong, which is why the consensus from RWJBarnabas orthopedists and others is that weighted vests distribute load more evenly than backpacks. Feet pay via blisters and metatarsalgia from miles under forefoot pressure, and the RuckingBasics injury guide is candid that "most of these injuries come from progressing too quickly."

The clearest dividing line in the evidence is pre-existing spinal conditions versus healthy backs. For people with herniated or degenerating discs, the clinical sources are unusually unified and cautionary: The Center for Total Back Care and Frisco Rehab both warn that a compromised disc has reduced shock absorption and that added compression doesn't "heal" it — it tends to amplify the inflammatory response. For healthy spines, the framing flips entirely, with Hyperwear and others arguing rucking can strengthen the posterior chain and improve posture. So the honest answer to "does it wreck your back?" is: it depends on the back you bring to it, and on whether you load it correctly.

On the durable how-to-not-get-hurt consensus, the numbers are strikingly consistent across independent sources. Start at roughly 10% of bodyweight (lighter if deconditioned), keep weight high and snug against the back panel, shorten stride ~10% and land with a soft knee under the hip, and obey the 10% rule borrowed from running — never raise weekly load (distance × weight) more than ~10% and "never increase distance AND weight in the same week" (SetForSet, Team RWB). The connective-tissue caveat is the part beginners blow past: tendons and ligaments adapt 2–3x slower than muscle, so the cardiovascular system feels ready long before the feet and lower back are, which is exactly how people end up with posterior tibial tendonitis or a stress reaction. The metabolic/longevity tailwind keeps the trend hot — @dantawfik cites a new International Journal of Obesity study on weighted vests preserving energy expenditure during fat loss, and Michael Easter with Andrew Huberman deliberately reframe it as "walking with weight… more approachable for the masses," noting it burns more calories per mile than walking or running.

KEY PATTERNS - Verdict: rucking holds up as low-injury cardio for healthy backs at conservative loads — the joint-stress relief vs. running is the most-repeated lived-in benefit, especially for the 40+/non-runner crowd. - Backs/shoulders/feet get wrecked by three avoidable errors: plate riding too low (lumbar lever), uneven strap load (shoulder impingement), and ramping distance + weight too fast (feet, tendons, low back). - Vest > backpack for even load distribution is now near-consensus among orthopedists and ruckers alike. - Hard line on pre-existing herniated/degenerated discs: clinical sources broadly say avoid or go near-empty — added spinal compression tends to inflame, not heal. - Durable rulebook: ~10% bodyweight to start, weight high and snug, soft shortened stride, and the 10% weekly-load rule (never bump distance AND weight the same week) because connective tissue adapts 2–3x slower than muscle.

last30days v3.3.2 · synced 2026-06-29

What I learned:

The core argument fintech engineers keep returning to is that a balance is not a value you store — it's a value you derive. The cleanest articulation in the last 30 days came from a system-design thread where @0xlelouch_ recounted freezing in a "design Stripe's payments ledger" interview, then recovering by stating the real requirements: "immutable entries, double-entry accounting, every balance derivable from entries, auditability, idempotency, strong ordering." That list is the whole thesis. When every balance is a fold over an append-only log of debits and credits, the ledger becomes the single source of truth and balances are just a cached projection of it. Fintechly frames the failure case in one sentence: when a wallet service and a payments service each update a balance independently, "add retries and timeouts, and you get double-spends or missing funds" — but with one ledger system-of-record, "every debit and credit flows through one place."

Where homegrown balance tables bite teams is remarkably consistent across every source. Modern Treasury's "How and Why Homegrown Ledgers Break" names the anti-pattern precisely: storing a running balance as a mutable column on a user/account table without an append-only log behind it. That column drifts the moment any concurrent write, partial transaction failure, manual correction, or migration touches the balance or the entries independently. They taxonomize three predictable production failures — concurrency (a client times out, retries, and the ledger processes both the original and the retry, moving money twice), hot-account write bottlenecks on shared float/settlement accounts, and bi-temporality gaps where late-arriving transactions corrupt the historical balance "as of" event time. Slope's pitfalls writeup adds the schema-sprawl version: payments in one table, refunds and surcharges in another with a different shape, so knowing a balance means joining everything and hoping the joins agree.

Two non-negotiable implementation details surface in nearly every engineering writeup: idempotency keys and integer money. The recurring rule is that every operation with a financial side effect carries a unique key representing intent; the first time the ledger sees the key it processes and stores the result, and every replay returns the stored result instead of re-posting — see Malik Adeyemi's "The Idempotent Ledger" and Roman Fedytskyi's double-spend patterns piece. On representation, the consensus is blunt: use fixed-point/integer minor units, never floats. The append-only, immutable-entries discipline is echoed even in tutorial content like the Golang microservices ledger episode, which explicitly tells builders to record every credit and debit as an immutable entry "instead of directly updating wallet balances."

On TigerBeetle specifically, the production sentiment in-window is positive but pragmatic, and it is not posed as a Postgres replacement. A representative practitioner take came from @codingpop: "for high volumes of transactions, I'd prefer a dedicated ledger database. My favourite being TigerBeetle." The tigerbeetle/tigerbeetle repo (≈16K stars, 97 open issues, Zig) sells double-entry as a first-class fixed-schema primitive — ledgers, accounts, transfers — built for mission-critical OLTP safety. The most-cited integration story remains Rafiki's TigerBeetle write-up at the Interledger Foundation, where moving off Postgres for the hot path lifted transaction-processing capacity.

The honest counterweight is that adopting a dedicated ledger DB trades a real cost: you now run two systems that fail independently. The sharpest skeptical voice is Paul Gross, whose pgledger benchmarks show Postgres clearing 10,000+ ledger transfers/second on a laptop — "more than enough for most applications" — and who argues that putting the ledger outside your main database means losing single-transaction atomicity and having to orchestrate two stores that can each fall over. Backend.how's "Billion Payments per day" treats TigerBeetle and Postgres as complementary first-principles building blocks rather than rivals. TigerBeetle's own system-architecture docs concede the point: it is a purpose-built OLTP ledger that "works alongside your general purpose database," not a replacement for it — so most teams still need Postgres for auth and everything that isn't money movement.

A quieter but commercially loud theme is the "buy the ledger" pitch. Formance markets an open-source programmable core that pulls "wallet and balance logic that today lives in application code, provider dashboards, and internal scripts" into a system of record with double-entry enforcement and hash-chained immutability — i.e., the explicit answer to the homegrown-balance-table problem. SDK.finance's ledger roundup positions the same category (real-time posting, double-entry, multi-currency) as the engineering-led alternative to rolling your own. Note that the strongest "homegrown breaks" and "buy ours" claims come from vendors who sell ledgers; the structural failure modes they describe are corroborated by independent practitioners, but the implied conclusion (buy vs. build-it-right-in-Postgres) is contested by the pgledger camp.

KEY PATTERNS - Treat the append-only entry log as the source of truth and derive every balance from it; a mutable balance column is the single most-cited drift bug. - Idempotency keys on every money-moving operation are mandatory — replays must return the stored result, never re-post, or retries silently double-spend. - Represent money as integer minor units / fixed-point, never floats. - TigerBeetle is loved for throughput and built-in double-entry, but it's a companion to your general-purpose DB, not a Postgres replacement — and you inherit cross-system atomicity/orchestration cost. - A well-built Postgres ledger (10K+ transfers/sec) is "enough" for most teams; the build-vs-buy debate is real and vendor claims about homegrown failure should be read against that.

last30days v3.3.2 · synced 2026-06-29

What I learned:

The 30-day social signal on this topic is real but soft: the engine surfaced 16 Reddit threads, 13 X posts, and 13 YouTube videos, but most of the engagement clusters around general woodworking awe rather than direct debate on the no-nails-earthquake claim — the engine itself flagged "entity-miss demotion" on its top items, meaning Japanese-joinery-specific seismic argument is not a hot live thread right now. The single highest-signal living artifact is Essential Craftsman's "40-Yr Contractor Learns Japanese House Construction" (4.8M views), where a veteran American builder reacts to a Japanese crew cutting tenons "in one shot" with four circular-saw blades and openly wonders whether "this house that we're watching" is "for the 1%" or "a higher-end quasi-traditional build" — which is exactly the practitioner's instinct that cuts against the romance: the breathtaking joinery he's watching is showpiece-tier work, not how an ordinary modern Japanese house gets framed.

The "no nails" reputation is mostly true but routinely overstated, and woodworkers know it. The accurate version, per LIVE JAPAN on miyadaiku technique and Arch2O on kigumi, is that temple and shrine carpentry connects timber primarily through interlocking wooden joints — but "metal fasteners may be partially used as per regulations or as a secondary means of support." The original reason was pragmatic, not mystical: Japan's humid, rainy climate rusts iron, and a rusting nail rots the wood around it and makes repair harder, as Takashi Matsumoto lays out. So the honest framing favored by informed builders is: nail-free joinery is a real, load-bearing technique with a sound material rationale — not, as marketing pages like Asaya Sculpture imply, evidence that "nails actually weaken" everything.

The earthquake-resilience claim survives scrutiny better than the purity claim, and the mechanism is well understood. Foster + Partners and STRUCTURE magazine both describe the same physics engineers cite: rigid steel-fastened connections resist load until they fail, whereas flexible wooden joints dissipate seismic energy through friction and controlled micro-movement at every junction, tolerating large drift ratios and recovering. The headline case study is the five-story pagoda: per the Shinbashira Wikipedia entry and IIT Kanpur's seismic study, the central hinoki pillar effectively floats, each story sways independently at different frequencies (an "inter-story deformation mechanism"), and the deliberately loose joints let the whole stack flex like a stack of plates — with the striking record that only two pagodas are recorded to have collapsed from earthquakes in roughly 1,400 years.

Where the hype-vs-reality tension actually bites is practicality and cost, and this is the gap the live evidence keeps gesturing at without resolving. The timber-framing community frames the tradeoff cleanly: Shelter Institute's widely viewed "Timber Frame vs Conventional Stick Frame" (2.3M views) notes you "might take 10 days to cut out all of these timbers" and "quite a few more days than that" to fit them — extraordinary strength bought with extraordinary labor. That is the crux working builders return to: hand-cut interlocking joinery is genuinely superior structurally and genuinely beautiful, but it is slow, demands master-level skill, and is economically reserved for temples, high-end builds, and passion projects. Modern Japanese houses overwhelmingly use metal connectors, plywood shear walls, and code-driven hardware (echoed in retrofit research like MDPI's plywood-and-common-nails study), precisely because seismic codes want predictable, testable, repeatable connections — which traditional bespoke joinery is not.

The net verdict, synthesizing the makers and the engineers: not hype, but heavily romanticized. The seismic logic is real and validated by both physics and 1,300-year-old surviving buildings like Horyu-ji; the "zero metal, ever" image is a simplification that even temple carpenters quietly violate; and the practicality reputation is where the romance breaks — this is craft for showpieces and the wealthy, not a general-purpose replacement for fasteners in everyday earthquake-country construction. The most credible voices treat Japanese joinery as a source of design principles to translate into modern engineering (flexibility, energy dissipation, inspectable/repairable connections) rather than a turnkey method to copy nail-for-nail.

KEY PATTERNS - "No nails" is directionally true but oversold — traditional kigumi is genuinely wood-on-wood, yet metal is used as secondary support and by code; the original motive was rust/rot avoidance in a wet climate, not mysticism. - The earthquake claim holds up: flexible joints dissipate energy through friction and micro-movement, and the floating shinbashira pendulum gives pagodas a near-spotless 1,400-year seismic record. - The real fault line is labor and cost, not structure — 10+ days to cut joints by hand makes it showpiece/temple/high-end work, not everyday housing. - Practitioners' instinct (visible in the Essential Craftsman reaction) is to ask "is this for the 1%?" — i.e., they admire it while knowing it isn't representative of normal modern Japanese construction. - Engineers (STRUCTURE, Foster + Partners) frame the value as transferable principles — flexibility, inspectability, repairability — rather than literal nail-free replication under modern seismic codes.

Provenance — 2026-06-29

Redacted record of how today's three topics were chosen. No raw source URLs or private rationale notes are included.

Seed entries (3, from the private library)

Three saved entries seeded today's funnel, chosen for genuine personal pull and domain spread (the recent index skews heavily toward AI/coding, so today deliberately reaches into health, fintech engineering, and traditional craft):

  1. A note on long-distance walking and footwear (health/endurance).
  2. A guide to engineering patterns in fintech (money-handling, audit trails, idempotency).
  3. A note on an ancient Japanese tree-growing/forestry technique (craft/sustainability).

Fan-out — 12 adjacent candidates

Each ran through the near-dup guard against the published index; all 12 passed.

From the walking/footwear seed: - The barefoot/minimalist shoe debate among long-distance walkers - Zero-drop shoes and the "transition injuries" people get wrong - Thru-hiking foot care: blisters, toe socks, trail-runners vs boots - Rucking as the mainstream low-injury weighted-walking trend ✅ selected

From the fintech-engineering seed: - Idempotency keys in payment APIs and how teams implement them - Double-entry ledgers as the source of truth in fintech systems ✅ selected - Representing money in code: minor units, decimals, never floats - Outbox pattern and exactly-once processing in payment pipelines

From the Japanese-forestry seed: - Coppicing and pollarding as European equivalents of daisugi - Traditional Japanese nail-free timber joinery ✅ selected - Hinoki cypress economics and the aging Japanese forester workforce - Living root bridges of Meghalaya grown from rubber fig trees

Narrowing rationale

The three selected (rucking, double-entry ledgers, Japanese joinery) were chosen for curiosity, live last-30-day discussion, and learnability — each teaches something concrete rather than vibes — and for non-overlap: one from each of the three seed domains, so the day reads as a range (body/health, software/fintech, craft/engineering) rather than a rut.

Connections

No prior published topics connected to today's three (these domains are new to the index, which has been AI/coding-heavy).