Skip to content

Instantly share code, notes, and snippets.

View Co0olCat's full-sized avatar

TY Co0olCat

View GitHub Profile
@Co0olCat
Co0olCat / SABRE.md
Created May 5, 2026 04:30
SABRE: a lightweight human-led protocol for coding agents, where one agent builds, another red-teams the Git delta, and the human owns scope, risk, and handoff.

SABRE: Slice-Based Adversarial Build/Review Engineering

Version: v0.7 Draft
Status: Proposed human-led operating protocol for coding agents
Author: Timur Yusupov, PhD

SABRE is a compact way to use coding agents without letting one agent write, explain, and bless its own change.

Core rule:

@Co0olCat
Co0olCat / TRACE.md
Last active June 30, 2026 04:38
TRACE: a proposed trust layer for retrieval systems that need provenance, contradiction handling, and auditability.

TRACE: Trust-Ranked Adjudicated Corpus Engine

Version: v0.11 Draft

Status: Proposed protocol and reference architecture

Author: Timur Yusupov, PhD

Future project home, if implemented later: Agent Cognitive Enterprise / ACE-labs (Agent-Cognitive-Enterprise/trace)

@kiichi
kiichi / AlaSQLInVue.vue
Last active December 14, 2021 02:07
Use alasql in Vue.js
<script>
export default {
mounted(){
this.alasql("CREATE TABLE cities (city string, population number)");
this.alasql("INSERT INTO cities VALUES ('Rome',2863223),('Paris',2249975),('Berlin',3517424),('Madrid',3041579)");
var res = this.alasql("SELECT * FROM cities WHERE population < 3500000 ORDER BY population DESC");
console.log(res);
}
}
</script>
@Co0olCat
Co0olCat / ddns.sh
Last active March 7, 2018 18:40 — forked from lyoshenka/ddns.sh
Quick and dirty DDNS using Bash and Cloudflare (API v4 compatible)
#!/usr/bin/env bash
# Step 1: Fill in EMAIL, TOKEN, DOMAIN and SUBDOMAIN. Your API token is here: https://www.cloudflare.com/a/account/my-account
# Make sure the token is the Global token, or has these permissions: #zone:read, #dns_record:read, #dns_records:edit
# Step 2: Create an A record on Cloudflare with the subdomain you chose
# Step 3: Run "./ddns.sh -l" to get the zone_id and rec_id of the record you created.
# Fill in ZONE_ID and REC_ID below
# This step is optional, but will save you 2 requests every time you this script
# Step 4: Run "./ddns.sh". It should tell you that record was updated or that it didn't need updating.
# Step 5: Run it every hour with cron. Use the '-s' flag to silence normal output
@lyoshenka
lyoshenka / ddns.sh
Last active October 9, 2025 13:50 — forked from kevinoconnor7/c-ddns.sh
Quick and dirty DDNS using Bash and Cloudflare (API v4 compatible)
#!/usr/bin/env bash
# Step 1: Fill in EMAIL, TOKEN, DOMAIN and SUBDOMAIN. Your API token is here: https://dash.cloudflare.com/profile/api-tokens
# Make sure the token is the Global token, or has these permissions: #zone:read, #dns_record:read, #dns_records:edit
# If you want to set the root domain instead of a subdomain, set SUBDOMAIN to "@"
# Step 2: Create an A record on Cloudflare with the subdomain you chose
# Step 3: Run "./ddns.sh -l" to get the zone_id and rec_id of the record you created.
# Fill in ZONE_ID and REC_ID below
# This step is optional, but will save you 2 requests every time you run this script
# Step 4: Run "./ddns.sh". It should tell you that record was updated or that it didn't need updating.