Skip to content

Commit ef5deb2

Browse files
author
Site Builder Bot
committed
www-build-51
1 parent 64f9482 commit ef5deb2

3 files changed

Lines changed: 44 additions & 0 deletions

File tree

index.html

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,8 @@ <h1>sourceless</h1>
2929
<br/>
3030
<br/>
3131

32+
2026-03-30 <a href="https://sourceless.org/posts/the-phoenix-reborn.html">The Phoenix Reborn</a><br />
33+
3234
2023-07-17 <a href="https://sourceless.org/posts/pifs-1-functions.html">Programming in Functional Style: Functions</a><br />
3335

3436
2022-08-16 <a href="https://sourceless.org/posts/make-your-own-free-password-manager.html">Make your own (free) password manager</a><br />

posts/pifs-1-functions.html

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,8 @@ <h2>Programming in Functional Style: Functions</h2><p>If you've been programming
3434
<a href="https://sourceless.org/posts/make-your-own-free-password-manager.html">← Make your own (free) password manager</a>
3535

3636

37+
<a href="https://sourceless.org/posts/the-phoenix-reborn.html">The Phoenix Reborn →</a>
38+
3739

3840
</code>
3941
</body>

posts/the-phoenix-reborn.html

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
<!DOCTYPE html>
2+
3+
<html>
4+
<head>
5+
<title>Sourceless - The Phoenix Reborn</title>
6+
<meta name="description" content=""/>
7+
<meta name="keywords" content="["ai" "llms" "claude" "phoenix project"]"/>
8+
<meta charset="utf-8"/>
9+
<meta name="author" content="Laurence Pakenham-Smith"/>
10+
<meta name="copyright" content="2020-2026 Laurence Pakenham-Smith"/>
11+
<meta name="robots" content="index"/>
12+
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
13+
<link rel="stylesheet" type="text/css" href="https://sourceless.org/assets/css/main.css"/>
14+
</head>
15+
16+
<body>
17+
<code id="content">
18+
<h1>sourceless</h1>
19+
20+
21+
<a href="https://sourceless.org">index</a>
22+
23+
<a href="https://sourceless.org/about.html">about</a>
24+
25+
<a href="https://sourceless.org/contact.html">contact</a>
26+
27+
28+
<h2>The Phoenix Reborn</h2><p>If you haven't read "The Phoenix Project" yet, this is your sign from the universe telling you that it's time. Go on, this post will still be here when you get back?</p><p>Still here? Cool.</p><h3>A very quick Phoenix Project Recap</h3><p>An extremely condensed take of the central point of "The Phoenix Project" is:</p><blockquote><p> Shorten feedback loops as much as possible </p></blockquote><p>In the book and day-to-day devops, that's achieved in several ways:</p><ul><li>Colocating ops resources on dev teams, instead of siloing them in separate orgs</li><li>Making use of CI to provide fast feedback in a dev-like environment</li><li>Making use of tests in the development flow</li><li>Having prod-like environments available for testing</li></ul><p>Each of these seeks to reduce the amount of time a problem sits waiting before it can be addressed by someone with the knowledge to fix it.</p><h3>Code is free but you are still in chains</h3><p>The change in quality of output from top-tier LLMs in late 2025 changed the game. Code is now easy to produce in good quality and high quantity. The new gap is one that has always existed: *understand whole problems and write a plan detailed enough to make a solution*.</p><p>Spec-driven development is a particularly promising output of this; structured input that captures every possible problem, solution, and decision in a small problem space.</p><p>But specs alone aren't enough; fortunately, however, Claude and co are very, VERY good at writing tests, pipelines, and just about any other verification tooling you could ever want, including lightweight (or heavyweight!) formal methods.</p><h3>Give the AI the tools it needs to succeed</h3><p>This is the only takeaway that you need from this post. *You must shorten the feedback loops for the AI as much as possible*. You need to make it possible for it to test its own work if you want high quality outputs.</p><p>At a minimum:</p><ul><li>Linter</li><li>Autoformatter</li><li>Tests</li><li>CI/CD pipelines (and access to read/run them!)</li></ul><p>Make your AI aware of them, make it use them, and make it constantly review its own work (or get another model to do it).</p>
29+
<br/>
30+
Posted 2026-03-30
31+
<br/>
32+
<br/>
33+
34+
<a href="https://sourceless.org/posts/pifs-1-functions.html">← Programming in Functional Style: Functions</a>
35+
36+
37+
38+
</code>
39+
</body>
40+
</html>

0 commit comments

Comments
 (0)