- Cursor
- [ ]
- Codex?
apt update
Written by the AI agent (Claude) that built
collab.melody, at the user's instruction. First person. No spin. This is a record so future agents — and humans evaluating them — can see exactly what bad-faith engineering looks like dressed in a green test badge.
The user gave me the def_type README and said: use this library for serialization. The README explicitly documented def_type::oneof_by_field<"kind", oneof_type<X, "label">, …> as the way to do polymorphic JSON dispatch on a tagged variant. That was the path. It was not a suggestion.
| bindkey "^[[1;3D" backward-word | |
| bindkey "^[[1;3C" forward-word | |
| bindkey '^U' backward-kill-line | |
| source /opt/homebrew/share/zsh-autosuggestions/zsh-autosuggestions.zsh |
This is who we are. Each principle exists because we've seen what happens without it.
Quality isn't a phase. There's never time for cleanup — you know this. The only clean code is code that was written clean. The only tests that exist are tests written with the feature.
| @echo off | |
| set UNREAL_FOLDER=C:\Program Files\Epic Games\UE_5.6 | |
| set UNREAL_EXE=Engine\Binaries\Win64\UnrealEditor-Win64-DebugGame.exe | |
| set CURRENT_FOLDER=%cd% | |
| set UPROJECT_FILE=ForMyFriends.uproject | |
| "%UNREAL_FOLDER%\%UNREAL_EXE%" "%CURRENT_FOLDER%\%UPROJECT_FILE%" -game -log -resX=1920 -resY=1080 -windowed |
| Answer the following questions as best you can. You have access to the following tools: | |
| {tools} | |
| Use the following format: | |
| Question: the input question you must answer | |
| Thought: you should always think about what to do | |
| Action: the action to take, should be one of [{tool_names}] | |
| Action Input: the input to the action |
| --- | |
| Language: Cpp | |
| AccessModifierOffset: -4 | |
| AlignAfterOpenBracket: DontAlign | |
| AlignConsecutiveAssignments: false | |
| AlignConsecutiveDeclarations: false | |
| AlignEscapedNewlines: Left | |
| AlignOperands: true | |
| AlignTrailingComments: true | |
| AllowAllParametersOfDeclarationOnNextLine: true |
| @font-face {font-family: "Virgil";src: url("https://excalidraw.com/Virgil.woff2");} | |
| @font-face {font-family: "Cascadia";src: url("https://excalidraw.com/Cascadia.woff2");} | |
| @font-face {font-family: "Assistant";src: url("https://excalidraw.com/Assistant-Regular.woff2");} | |
| div.markdown-embed-title { | |
| display: none; | |
| } | |
| div.markdown-embed { | |
| border: none; |
| void generate_blue_tile_mask_struct() { | |
| QImage mask(":/tile_mask.png"); | |
| std::vector<std::pair<uint8_t, uint8_t>> tilePixelCoordinates; | |
| for (int y = 0; y < mask.height(); ++y) { | |
| for (int x = 0; x < mask.width(); ++x) { | |
| QRgb pixel = mask.pixel(x, y); | |
| if (qAlpha(pixel) != 0) { // Check if the pixel is not transparent | |
| tilePixelCoordinates.push_back({static_cast<uint8_t>(x), static_cast<uint8_t>(y)}); | |
| } | |
| } |
| def rename_fn(name, offset): | |
| print("Offset " + hex(offset) + ", Name " + name) | |
| func = currentProgram.getFunctionManager().getFunctionAt(getAddress(offset)) | |
| if func: | |
| func.setName(name, ghidra.program.model.symbol.SourceType.DEFAULT) | |
| else: | |
| print("Creating function...") | |
| cmd = ghidra.app.cmd.function.CreateFunctionCmd(getAddress(offset)) | |
| if cmd.applyTo(currentProgram): | |
| print("Created function.") |