Skip to content

Instantly share code, notes, and snippets.

@aaronvanston
aaronvanston / theos-fablemaxing-with-codex-routing.md
Last active August 21, 2026 20:25
Theos Fablemaxing with Codex Routing

Source: Theo - t3.gg on X Add to CLAUDE.md

Picking the right models for workflows and subagents

Rankings, higher = better. Cost reflects what I actually pay (OpenAI has really generous limits), not list price. Intelligence is how hard a problem you can hand the model unsupervised. Taste covers UI/UX, code quality, API design, and copy.

model cost intelligence taste
gpt-5.5 9 8 5
@aaronvanston
aaronvanston / agentation-localhost-support-INSTRUCTIONS.md
Last active March 2, 2026 20:58
agentation: add .localhost support to local-dev hostname detection

Agentation .localhost Support Patch — Install Instructions

What this fixes

agentation@2.2.1 only treats these as local by default:

  • localhost
  • 127.0.0.1
  • 0.0.0.0
  • *.local

It does not include *.localhost (for example: app.localhost, docs.localhost).

[data-tip] {
position: relative;
}
@aaronvanston
aaronvanston / form.html
Created May 7, 2016 11:01
Bootstrap 4 + Parsley JS
$("#parsleyForm").parsley({
errorClass: 'has-danger',
successClass: 'has-success',
classHandler: function(ParsleyField) {
return ParsleyField.$element.parents('.form-group');
},
errorsContainer: function(ParsleyField) {
return ParsleyField.$element.parents('.form-group');
},
errorsWrapper: '<span class="text-help">',
<meta name="theme-color" content="#db5945">
@aaronvanston
aaronvanston / browser-stats-1.css
Last active February 13, 2016 10:19
Browser statistics using only CSS
/* ORIENTATION */
@media (orientation: landscape) {
.stat__orientation:after {
content: "Landscape"
}
}
@media (orientation: portrait) {
.stat__orientation:after {
content: "Portrait";
}

Spread the Rainbow

View this on Chrome 39+ on Android with at least Lollipop

A Pen by Aaron on CodePen.

License.