Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
238 changes: 238 additions & 0 deletions _posts/2026-08-28-coding-agent-pushed-deletion-to-main.md

Large diffs are not rendered by default.

Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
10 changes: 10 additions & 0 deletions assets/main.scss
Original file line number Diff line number Diff line change
Expand Up @@ -389,6 +389,16 @@ article.post {
margin: 0 auto;
display: block;
width: 100%;
// A diagram scales as one piece, so its type tracks the column
// width: unreadable on a phone, oversized on a wide screen. Losing
// the 5em side padding and capping the width holds it at about
// body size wherever the column has room. Photographs are left
// alone, so nothing else on the site moves.
&.diagram {
padding-left: 0;
padding-right: 0;
max-width: 572px;
}
}
}
a {
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
8 changes: 7 additions & 1 deletion styling-and-components.md
Original file line number Diff line number Diff line change
Expand Up @@ -136,4 +136,10 @@ a simple box
| 3,000-9,999 | $1.75 |
| 10,000-19,999 | $1.50 |
| 20,000-49,999 | $1.25 |
| 50,000+ | Oracle must be contacted for details |
| 50,000+ | Oracle must be contacted for details |

## Diagrams

Put `{:.diagram}` after an image to drop its side padding and cap its width, so the labels stay readable on a phone and do not stretch across a wide screen. Use it on drawn diagrams. Photographs keep the full column width.

![Four safeguards against two kinds of push, a direct git push and a push made inside a script, with a tick or a cross in every cell.](/assets/posts/2026-08-28-coding-agent-git-safety/what-each-layer-sees.svg "The lower a safeguard sits, the less it depends on what the agent decides to type."){:.diagram}
Loading