# gained — RSS Amplifier

Recent posts from the 4 feeds in the RSS Amplifier directory that cover gained.

Page: <https://rssamplifier.com/topics/gained>  
Feed: <https://rssamplifier.com/topics/gained.md>

---

## [A Boolean PII Flag Is Not Enough](https://kore-nordmann.de/blog/a-boolean-pii-flag-is-not-enough.html?utm_source=rss)

_2026-08-19 · Kore Nordmann · Kore Nordmann&#39;s Blog_

Every data catalog lets you tag a column as PII, true or false. For a platform processing student data under GDPR this single bit drops the questions a data protection officer actually asks: Does the column identify on its own or in combination? Is it raw, pseudonymised, or anonymised? Did a human assert the classification, or did a tool infer it? We classify on two axes plus provenance and…

## [Chapter 40 — Shell Job References with %1](https://www.coderancher.us/2026/08/14/chapter-40-shell-job-references-with-1/)

_2026-08-14 · R. Morgan · www.CodeRancher.Us_

Before reading the shell examples in this chapter, be explicit about the prompt transition: toyix is the kernel monitor. ush is the user shell. So when this chapter shows commands like: those commands must be typed inside the user shell after toyix run shell. Chapter 39 made /programs/ name usable as a launch target. That fixed Continue Reading "Chapter 40 — Shell Job References with %1"

## [Chapter 39 — Path-Based Program Launching with /programs](https://www.coderancher.us/2026/08/13/chapter-39-path-based-program-launching-with-programs/)

_2026-08-13 · R. Morgan · www.CodeRancher.Us_

Before reading the shell examples in this chapter, be explicit about the prompt transition: toyix is the kernel monitor. ush is the user shell. So when this chapter shows commands like: those commands must be typed inside the user shell after toyix run shell. Two other constraints still apply in this chapter: So cat README Continue Reading "Chapter 39 — Path-Based Program Launching with /programs"

## [Chapter 38 — Turning /programs into a Real Directory](https://www.coderancher.us/2026/08/12/chapter-38-turning-programs-into-a-real-directory/)

_2026-08-12 · R. Morgan · www.CodeRancher.Us_

Before reading the shell examples in this chapter, be explicit about the prompt transition: toyix is the kernel monitor. ush is the user shell. So when this chapter shows commands like: those commands must be typed inside the user shell after toyix run shell. In Chapter 37, Toyix gained its first real directory support at Continue Reading "Chapter 38 — Turning /programs into a Real Directory"

## [Innovation Tokens](https://kore-nordmann.de/blog/innovation_tokens.html?utm_source=rss)

_2026-08-12 · Kore Nordmann · Kore Nordmann&#39;s Blog_

Dan McKinley's "Choose Boring Technology" gives you a budget of innovation tokens to spend on novel choices. I agree with all of it, and I want to refine one thing: a token is not denominated in how novel the technology looks from the outside. It is denominated in what your team already knows.

## [Chapter 37 — Directories, SYS\_READDIR, and ls](https://www.coderancher.us/2026/08/11/chapter-37-directories-sys_readdir-and-ls/)

_2026-08-11 · R. Morgan · www.CodeRancher.Us_

In Chapter 36, Toyix gained file metadata: The shell could now do: Now we are ready for the next filesystem milestone: This chapter adds: After this chapter: For compatibility with the previous chapters, /programs will remain a regular text file for now: The root directory / becomes the first actual directory. 1. What this chapter Continue Reading "Chapter 37 — Directories, SYS\_READDIR, and ls"

## [Chapter 36.5 &#8211; A Testing Detour and a Real Smoke Harness](https://www.coderancher.us/2026/08/10/chapter-36-5-a-testing-detour-and-a-real-smoke-harness/)

_2026-08-10 · R. Morgan · www.CodeRancher.Us_

Chapter 36 added SYS\_STAT, which was the right filesystem step. But it also exposed a testing problem that has been growing for a while. Right now, Toyix testing is split across three awkward places: That worked while the system was small. It does not scale well now that Toyix has: The biggest smell is that Continue Reading "Chapter 36.5 A Testing Detour and a Real Smoke Harness"

## [Chapter 35 — SYS\_SEEK and Rewindable File Descriptors](https://www.coderancher.us/2026/08/07/chapter-35-sys_seek-and-rewindable-file-descriptors/)

_2026-08-07 · R. Morgan · www.CodeRancher.Us_

In Chapter 34, Toyix gained its first tiny file layer: The shell could now do: But file descriptors were strictly forward-only. Once a file was read, its offset moved forward. There was no way to rewind, skip, or query position. This chapter adds: After this chapter, userland can do: And the shell gains a small Continue Reading "Chapter 35 — SYS\_SEEK and Rewindable File Descriptors"

## [Chapter 34 — First RAMFS and Core File APIs](https://www.coderancher.us/2026/08/06/chapter-34-first-ramfs-and-core-file-apis/)

_2026-08-06 · R. Morgan · www.CodeRancher.Us_

By the end of Chapter 33, Toyix could launch child processes, inspect child state from the shell, and request cooperative termination: At this point, Toyix can: The next major subsystem is files. This chapter adds the first tiny filesystem path: After this chapter, the user shell can do: This is not a disk filesystem yet. Continue Reading "Chapter 34 — First RAMFS and Core File APIs"

## [Chapter 33 — Process Termination and Kill Checks](https://www.coderancher.us/2026/08/05/chapter-33-process-termination-and-kill-checks/)

_2026-08-05 · R. Morgan · www.CodeRancher.Us_

By the end of Chapter 32, Toyix could launch child processes, wait for them, and keep exited children around as zombies until the parent collected them. For this chapter, we also extend the shell and syscall ABI just enough to inspect child state from user mode: That gives the shell basic process ownership and job-state Continue Reading "Chapter 33 — Process Termination and Kill Checks"

## [Crypto Payments, No Custody (Sponsored)](https://crawlproof.com/a/uepURTNKpVTA)

_2026-08-05 · **Sponsored**_

Send crypto to merchant wallets via API with real-time updates and automatic fees.

## [Hexagonal Architecture vs. Microservices](https://kore-nordmann.de/blog/hexagonal_architecture_vs_microservices.html?utm_source=rss)

_2026-08-05 · Kore Nordmann · Kore Nordmann&#39;s Blog_

Bounded contexts deserve boundaries. But a boundary is a code concern, and putting a network between two contexts because you want them separate is a mistake. In-process interfaces are far easier to debug and to keep consistent than network ones, for a concrete reason: one compiler spans both sides and will not let them drift. Nothing spans the network.

## [Chapter 32 — Process Ownership, Waiting, and Job State](https://www.coderancher.us/2026/08/04/chapter-32-process-ownership-waiting-and-job-state/)

_2026-08-04 · R. Morgan · www.CodeRancher.Us_

In Chapter 32, the user shell gained: That let a user process launch another user process: The flow worked: But the process model was too loose. Any process could wait for any PID. This chapter tightens that up. We will add: After this chapter, a child process belongs to the process that launched it: Then: Continue Reading "Chapter 32 — Process Ownership, Waiting, and Job State"

## [Chapter 31 — SYS\_EXEC, SYS\_WAITPID, and Shell-Launched Programs](https://www.coderancher.us/2026/08/03/chapter-31-sys_exec-sys_waitpid-and-shell-launched-programs/)

_2026-08-03 · R. Morgan · www.CodeRancher.Us_

In Chapter 30, Toyix gained its first user-mode shell: But the shell could not launch programs yet. The kernel monitor could run programs: but the user shell could not. This chapter adds the first user-facing process-control syscalls: At first, SYS\_EXEC still launches programs from the embedded program registry. We are not loading from a filesystem Continue Reading "Chapter 31 — SYS\_EXEC,…

## [The Fed Just Blinked. The Market Didn’t.](https://acceinvestments.substack.com/p/the-fed-just-blinked-the-market-didnt)

_2026-07-31 · ACCE Investments · ACCE Investments_

Three Fed presidents voted for a rate hike on July 29, the first three-way hawkish dissent since September 2016.

## [Why 3D Software Visualisation Keeps Failing](https://kore-nordmann.de/blog/why-3d-software-visualisation-keeps-failing.html?utm_source=rss)

_2026-07-29 · Kore Nordmann · Kore Nordmann&#39;s Blog_

A zoomable 3D scene of your architecture, with domains as planes, services as boxes, and data flows as glowing particles, demos beautifully, and WebGL makes it a weekend project. But 3D software visualisation never failed for technical reasons. It fails for perceptual ones, and those have not changed: occlusion, an arbitrary Z axis, label degradation, and depth being one of the weakest visual…

## [Quality Is the Factor. Momentum Is the Problem.](https://acceinvestments.substack.com/p/quality-is-the-factor-momentum-is)

_2026-07-27 · ACCE Investments · ACCE Investments_

The factor working hardest in this market right now is quality, and the surprise is that it is not translating into positive returns.

## [Semiconductors Erased $3 Trillion. Here’s What the Bounce Tells You.](https://acceinvestments.substack.com/p/semiconductors-erased-3-trillion)

_2026-07-22 · ACCE Investments · ACCE Investments_

The VanEck Semiconductor ETF gained more than 4% on July 21, one session after the sector had shed more than $3 trillion in market value since late June.

## [Feature Flags Over Branches](https://kore-nordmann.de/blog/feature_flags_over_branches.html?utm_source=rss)

_2026-07-22 · Kore Nordmann · Kore Nordmann&#39;s Blog_

A while ago I promised to write more about feature flags. Here it is, as one flat rule: develop on main, and use feature flags. Long-lived feature branches are a problem you create for yourself, and most of the structural contortions teams adopt to cope with merge hell are there to solve a process problem with architecture.

## [ACCE Weekly Recap: July 14-18, 2026](https://acceinvestments.substack.com/p/acce-weekly-recap-july-14-18-2026)

_2026-07-20 · ACCE Investments · ACCE Investments_

Quality Compounders gained 1.59% last week while AI Infrastructure lost 2.33% and semiconductors entered bear-market territory.

## [When the Market Punishes Good News: Understanding Guidance-Driven Repricing](https://acceinvestments.substack.com/p/when-the-market-punishes-good-news)

_2026-07-17 · ACCE Investments · ACCE Investments_

Netflix beat earnings estimates on Wednesday.

## [Privacy-first AI-native browser (Sponsored)](https://crawlproof.com/a/UDliv2xP93Kt)

_2026-07-17 · **Sponsored**_

No telemetry or ads — built on Ungoogled Chromium with a built-in AI sidebar and CLI.

## [The Semiconductor Supply Chain Is Repricing in Real Time](https://acceinvestments.substack.com/p/the-semiconductor-supply-chain-is)

_2026-07-16 · ACCE Investments · ACCE Investments_

TSMC’s June monthly revenue surged 68% year-over-year, the fastest monthly growth of 2026.

## [Always Go With a Monorepo](https://kore-nordmann.de/blog/always_go_with_a_monorepo.html?utm_source=rss)

_2026-07-15 · Kore Nordmann · Kore Nordmann&#39;s Blog_

I made this argument to my team again last week, while a neighbouring team was busy splitting their monorepo into around eighty repositories. People reach for a second repository when what they actually want is a boundary, and a repository is a ruinously expensive way to draw a line you can draw for free in the filesystem.

## [The Most Consequential Eight Hours in Macro This Year](https://acceinvestments.substack.com/p/the-most-consequential-eight-hours)

_2026-07-14 · ACCE Investments · ACCE Investments_

The 2-year Treasury yield hit 4.25% on Monday, its highest level since February 2025, per Bloomberg.

## [Value Is Working. The Catch Is That It's Working in the Worst Places.](https://acceinvestments.substack.com/p/value-is-working-the-catch-is-that)

_2026-07-09 · ACCE Investments · ACCE Investments_

The factor that has been most reliably rewarded over the past several weeks is value, and the sectors where value scores are highest right now are energy and basic materials.

## [There Is No Audience-Independent Architecture View](https://kore-nordmann.de/blog/there-is-no-audience-independent-architecture-view.html?utm_source=rss)

_2026-07-08 · Kore Nordmann · Kore Nordmann&#39;s Blog_

Every team eventually asks for "the architecture diagram", singular, the one picture which explains the system to everyone. That diagram cannot exist, because usefulness and audience-independence trade off by construction. The standards knew this in 1995. The answer is one model, many audience-specific views, and a clear separation between structural views and cross-cutting perspectives.

## [Healthcare Is the Quiet Winner of 2026. The Market Hasn't Noticed Yet.](https://acceinvestments.substack.com/p/healthcare-is-the-quiet-winner-of)

_2026-07-07 · ACCE Investments · ACCE Investments_

The ACCE Biotech Catalysts index gained 3.72% last week while the AI Infrastructure index slipped 0.61%.

## [The Forced Buyer Problem: What SpaceX's Nasdaq-100 Entry Reveals About Passive Investing's Hidden Costs](https://acceinvestments.substack.com/p/the-forced-buyer-problem-what-spacexs)

_2026-07-06 · ACCE Investments · ACCE Investments_

Fifteen trading days after its IPO, SpaceX joins the Nasdaq-100 tonight, triggering an estimated $4.3 billion in forced passive buying.

## [Sector Rotation Is Not a Vibe. It's a Mechanism.](https://acceinvestments.substack.com/p/sector-rotation-is-not-a-vibe-its)

_2026-07-03 · ACCE Investments · ACCE Investments_

The Dow hit a record 52,900.07 on Thursday while the Nasdaq dropped 0.8% the same session, per CNBC.

## [The Jobs Number That Could Break the Rate Narrative](https://acceinvestments.substack.com/p/the-jobs-number-that-could-break)

_2026-07-02 · ACCE Investments · ACCE Investments_

The Dow briefly touched an intraday record of 52,742.66 on July 1 before retreating to close near flat, per CNBC.

## [Quality Is Winning the Week. The Surprise Is That It’s Losing the Year.](https://acceinvestments.substack.com/p/quality-is-winning-the-week-the-surprise)

_2026-07-01 · ACCE Investments · ACCE Investments_

The factor that should be working in a high-rate, high-inflation environment is quality.

## [One platform, from silicon to agent (Sponsored)](https://crawlproof.com/a/buyc0WvXDIG4)

_2026-07-01 · **Sponsored**_

Serverless inference plus Inference Router to optimize cost and latency at scale.

## [Don&#39;t Do Code Reviews](https://kore-nordmann.de/blog/dont_do_code_reviews.html?utm_source=rss)

_2026-07-01 · Kore Nordmann · Kore Nordmann&#39;s Blog_

In the last post I argued against quality assurance as a separate activity. The same argument applies, almost word for word, to code reviews, and I am even less comfortable making it: at Qafoo we built a code review tool. On an internal product team the asynchronous pull-request review has become the default, and it is the wrong tool for almost everything we use it for.

## [Semiconductors Just Had Their Best Day in Months. The Question Is Whether It Sticks.](https://acceinvestments.substack.com/p/semiconductors-just-had-their-best)

_2026-06-30 · ACCE Investments · ACCE Investments_

The VanEck Semiconductor ETF gained more than 3% on Sunday, per CNBC, with Astera Labs up roughly 16%, KLA up roughly 12%, and Applied Materials up roughly 11%.

## [ACCE Weekly Recap: June 23-27, 2026](https://acceinvestments.substack.com/p/acce-weekly-recap-june-23-27-2026)

_2026-06-29 · ACCE Investments · ACCE Investments_

Clean Energy fell 7.34% last week while Defense & Aerospace gained 2.55%.

## [The Inflation Regime Has Changed. Most Equity Portfolios Haven’t.](https://acceinvestments.substack.com/p/the-inflation-regime-has-changed)

_2026-06-28 · ACCE Investments · ACCE Investments_

May PCE came in at 4.1% annually, a three-year high, per CNBC.

## [When the Story Changes: How to Recognize a Broken Thesis Before It Breaks Your Portfolio](https://acceinvestments.substack.com/p/when-the-story-changes-how-to-recognize)

_2026-06-27 · ACCE Investments · ACCE Investments_

The hardest sell in investing is not a losing position.

## [The Rotation Has a Name Now](https://acceinvestments.substack.com/p/the-rotation-has-a-name-now)

_2026-06-26 · ACCE Investments · ACCE Investments_

The Nasdaq is on pace for a 4.4% weekly decline heading into Friday’s close, per CNBC, its worst week since February.

## [Momentum Is Lying to You Right Now](https://acceinvestments.substack.com/p/momentum-is-lying-to-you-right-now)

_2026-06-25 · ACCE Investments · ACCE Investments_

The factor that has worked best over the past 12 months is momentum, and the stocks with the highest momentum scores are among the least defensible businesses on the planet.

## [Semiconductors Are Getting Repriced. Healthcare Is Getting Rewarded.](https://acceinvestments.substack.com/p/semiconductors-are-getting-repriced)

_2026-06-24 · ACCE Investments · ACCE Investments_

The Nasdaq shed 2.21% on Tuesday, per CNBC, and the names doing the most damage were chip and AI infrastructure stocks.

## [Don&#39;t Do Quality Assurance](https://kore-nordmann.de/blog/dont_do_quality_assurance.html?utm_source=rss)

_2026-06-24 · Kore Nordmann · Kore Nordmann&#39;s Blog_

I co-founded a consultancy that sold software quality for roughly a decade. The advice I am most certain about after those years sounds like a contradiction coming from me: do not do quality assurance as a separate activity. The moment a dedicated QA role appears, the developers quietly stop owning the quality of their own work, and that is the wrong direction.

## [HTMX and Web Components Instead of React](https://kore-nordmann.de/blog/htmx-and-web-components-instead-of-react.html?utm_source=rss)

_2026-06-17 · Kore Nordmann · Kore Nordmann&#39;s Blog_

Our data platform's frontends are catalogs, dashboards, and detail pages: request/response-shaped applications. We build them with server-side rendering, HTMX, and vanilla web components. The question is not "why not React", but which of our actual problems a client-side framework would solve. Walking through the inventory the answer was: none, at a price we would pay for a decade. As a bonus,…

## [Style the Document, Not a Component Tree](https://kore-nordmann.de/blog/style-the-document-not-a-component-tree.html?utm_source=rss)

_2026-06-10 · Kore Nordmann · Kore Nordmann&#39;s Blog_

BEM and CSS Modules solve scoping at the cost of making every element a one-off, and a pile of isolated components is not a design language. We style semantic HTML elements directly, constrain every color and distance to CSS variables, and use a small web-component base class instead of a framework. These old-fashioned rules matter more than ever now that LLMs generate frontend code faster than…

## [Nothing Shared, Everything Gained: What It Cost to Finish](https://kore-nordmann.de/blog/nothing-shared-everything-gained-what-it-cost-to-finish.html?utm_source=rss)

_2026-05-20 · Kore Nordmann · Kore Nordmann&#39;s Blog_

I left the start-up world not because I failed, but because I'd optimized for the wrong metric — I was building systems that scaled while being the system that wasn't. This is the post I wasn't sure I'd write, about why "Nothing Shared, Everything Gained" needed me to stop before it could be finished.

## [Nothing Shared, Everything Gained: Boring Scales](https://kore-nordmann.de/blog/nothing-shared-everything-gained-boring-scales.html?utm_source=rss)

_2026-05-13 · Kore Nordmann · Kore Nordmann&#39;s Blog_

Every few years our industry discovers a new way to make software development complicated, but most web applications are not technically interesting — the interesting part is the domain. My book is deliberately boring: four layers, strict dependency direction, stateless services, and it worked the same way for five engineers and for seventy.

## [Nothing Shared, Everything Gained: The Architecture](https://kore-nordmann.de/blog/nothing-shared-everything-gained-the-architecture.html?utm_source=rss)

_2026-05-06 · Kore Nordmann · Kore Nordmann&#39;s Blog_

The entire architecture in the book fits into one sentence: Controller → Service → Gateway → Storage, with strict dependency direction and one job per layer. A distillation of practical experience, not a new methodology: four concepts that, put into perspective, prevent most structural problems from ever appearing.

## [Nothing Shared, Everything Gained: The Thesis](https://kore-nordmann.de/blog/nothing-shared-everything-gained-the-thesis.html?utm_source=rss)

_2026-04-29 · Kore Nordmann · Kore Nordmann&#39;s Blog_

Writing testable code is essential, but writing tests is not — at least not immediately, because comprehensive suites for code that might get cut next sprint are waste, not discipline. The actual non-negotiable is pushing side effects to the edges so that the code between them stays stateless, local, and changeable without fear.

## [Nothing Shared, Everything Gained: The Problem](https://kore-nordmann.de/blog/nothing-shared-everything-gained-the-problem.html?utm_source=rss)

_2026-04-22 · Kore Nordmann · Kore Nordmann&#39;s Blog_

A team that hadn't shipped anything in six months, controllers with NPath complexity causing integer overflows, 2000-line methods, and session arrays nobody understood — and twenty-five days later they were shipping again. The same pattern repeated across more than a hundred teams over seven years, and the common thread was always side effects.

## [Nothing Shared, Everything Gained: The Origin Story](https://kore-nordmann.de/blog/nothing-shared-everything-gained-the-origin-story.html?utm_source=rss)

_2026-04-15 · Kore Nordmann · Kore Nordmann&#39;s Blog_

Ten years ago I started writing a book about software architecture and then life happened: I co-founded a company, scaled it to seventy engineers, got acquired, and burned out. I expected the manuscript to be obsolete by now. Instead, the decade in between proved the ideas worked. The finished book is available at codethatships.com.

## [Fast Fashion for Code: How the Power Grab Masks a Quality Crisis](https://kore-nordmann.de/blog/fast-fashion-for-code-how-the-power-grab-masks-a-quality-crisis.html?utm_source=rss)

_2026-03-31 · Kore Nordmann · Kore Nordmann&#39;s Blog_

Vendors promise the industrialization of software development. What AI code generation delivers is fast fashion: cheap, disposable, and hiding a massive structural shift in power from the people who build software to the companies that control the means of generating it.

## [From Commerce to Campus: A New Stack, A New Purpose](https://kore-nordmann.de/blog/university-software-architect-why-i-am-building-a-data-platform-for-students.html?utm_source=rss)

_2026-03-19 · Kore Nordmann · Kore Nordmann&#39;s Blog_

After fifteen years of founding companies and scaling commerce platforms, I'm now a software architect at FernUni Hagen, building a Learning Analytics data platform that helps students succeed, with a Modern Data Stack and consent-first design for highly sensitive data. I made the switch for meaning and work-life balance, and found both, plus an amazing team to work with.

## [Women in IT: The Structural Problem Nobody Wants to Fix](https://kore-nordmann.de/blog/women-in-it-the-structural-problem-nobody-wants-to-fix.html?utm_source=rss)

_2026-03-09 · Kore Nordmann · Kore Nordmann&#39;s Blog_

I've conducted over 1,000 interviews and hired around 70 developers. My experience is clear: women with comparable qualifications consistently deliver better work, not because they're inherently better, but because the system forced them to be. Meanwhile, most companies' DEI efforts are pinkwashing, hiring still runs through bro networks…

