For operators running Claude Code alongside Codex, Cursor, Amp, or Aider — and tired of maintaining two instruction files
Independent operator field guide, updated 2026-06-03. MIT-licensed prose. ~3,000 words.
For operators running Claude Code alongside Codex, Cursor, Amp, or Aider — and tired of maintaining two instruction files
Independent operator field guide, updated 2026-06-03. MIT-licensed prose. ~3,000 words.
| {"name":"HAWK-GT1191","settings":"{\"settings\":\"{\\n \\\"workbench.colorTheme\\\": \\\"Night Owl Light\\\",\\n \\\"editor.tabSize\\\": 2,\\n \\\"editor.formatOnSave\\\": true,\\n \\\"editor.defaultFormatter\\\": \\\"esbenp.prettier-vscode\\\",\\n \\\"editor.fontSize\\\": 15,\\n \\\"window.zoomLevel\\\": 0,\\n \\\"editor.stickyScroll.enabled\\\": true,\\n \\\"editor.bracketPairColorization.independentColorPoolPerBracketType\\\": true,\\n \\\"editor.guides.bracketPairs\\\": true,\\n \\\"editor.wordWrapColumn\\\": 90,\\n \\\"editor.lineHeight\\\": 1.5,\\n \\\"emmet.triggerExpansionOnTab\\\": true,\\n \\\"emmet.showSuggestionsAsSnippets\\\": true,\\n \\\"prettier.bracketSameLine\\\": true,\\n \\\"prettier.singleQuote\\\": true,\\n \\\"prettier.printWidth\\\": 90,\\n \\\"terminal.integrated.fontSize\\\": 16,\\n \\\"indentRainbow.colors\\\": [\\n \\\"rgba(255,255,64,0.07)\\\",\\n \\\"rgba(127,255,127,0.07)\\\",\\n \\\"rgba(255,127,255,0.07)\\\",\\n \\\"rgba(79,236,236,0.07)\\\"\\n ] |
The solution is to search and kill the processes named /usr/bin/VBoxClient --draganddrop
pgrep -a VBoxClientkill <pid> (or do both with tools like htop)The solution is to kill the current processes named /usr/bin/VBoxClient --clipboard and start a new one.
pgrep -a VBoxClientkill <pid> (or do both with tools like htop)| //###[ CASH ]########################################################################################################### | |
| // keep this here in case we want to extend $ or $.fn | |
| import $ from '@client/cash'; | |
| _each( | |
| 'blur focus focusin focusout resize scroll click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup contextmenu'.split(' '), | |
| (event) => { | |
| $.fn[event] = function(callback){ | |
| if( callback ){ |
I would like to demonstrate some of the benefits of scoped styles over mobile-first CSS with overrides for wider breakpoints. I'll start by explaining the two approaches, before listing the benefits.
h2 {
color: black;
font-size: 2em;Given a subscribed calendar with a url like
https://example.com/example.ics
To force Google Calendar to refresh and reload the contents right now, unsubscribe from the calendar and subscribe to a new calendar with a URL like
https://example.com/example.ics#1
Adding the anchor tag will force Google Calendar to think of it as a new calendar
| // Escaping Liquid in SCSS. | |
| // | |
| // Expected output: | |
| // a{ | |
| // color: {{ settings.link-color }}; | |
| // } | |
| a{ | |
| color: #{'{{ settings.link-color }}'}; | |
| } |
This script for Google Spreadsheets allows you to generate slugs for your data such as might be used for creating unique urls.
Use it like this!
| # | A | B | C |
|---|---|---|---|
| 1 | a | b | slug |
| 2 | foo | baz bing | =slugify(A2:B4) |
| 3 | bar | BAZ | |
| 4 | FOO | baz-bing |
The command line, in short…
wget -k -K -E -r -l 10 -p -N -F --restrict-file-names=windows -nH http://website.com/
…and the options explained