Skip to content

Instantly share code, notes, and snippets.

View thinkjones's full-sized avatar
🦖
Focusing

Gene Conroy-Jones thinkjones

🦖
Focusing
View GitHub Profile
@thinkjones
thinkjones / gascity-multi-city-guide.md
Last active July 20, 2026 13:39
Running Gas City across multiple cities and providers

Running Gas City across multiple cities and providers

Now available as a repo: https://github.com/thinkjones/gascity-cookbook

A worked example of a multi-city, multi-provider Gas City setup: one config monorepo that runs several "cities" (agent deployments), each on a different model provider, sharing one reusable pack of config.

The trick that makes it maintainable is a tier abstraction: your agents and workflows only ever refer to abstract tiers — fast, solid, deep — and each city binds those

@thinkjones
thinkjones / home.html
Created March 27, 2016 02:52
home.html
<div>
Hello
</div>
@thinkjones
thinkjones / kendo-multi-select.js
Created June 11, 2014 20:03
Kendo Angular MultiSelect With Ability to Add New Items
'use strict';
angular.module('mainUI')
.directive('multiSelectDropdown', function () {
function validateAddingOfItem(value, scope) {
scope.errorMessage = "";
return true;
}