Skip to content

Instantly share code, notes, and snippets.

View divideby0's full-sized avatar

Cedric Hurst divideby0

  • Spantree Technology Group, LLC
  • Chicago, IL
View GitHub Profile
@divideby0
divideby0 / signal-score-prompt.md
Created February 25, 2026 23:00
Signal Score — Full system prompt, tool schema, and example output for AI-assisted grant triage (Awesome Foundation)

Signal Score — System Prompt

This is the actual system prompt sent to Anthropic's Claude Haiku API for scoring grant applications. The full request also includes the application text and a tool_use schema for structured output.


System Prompt

@divideby0
divideby0 / prompt.txt
Last active February 25, 2026 23:00
Signal Score — System prompt for AI-assisted grant application triage (Awesome Foundation)
# Signal Score — System Prompt
> This is the actual system prompt sent to Anthropic's Claude Haiku API for scoring grant applications.
> The full request also includes the application text and a `tool_use` schema for structured output.
---
## System Prompt
```
@divideby0
divideby0 / security-hardening.md
Created February 18, 2026 18:12
OpenClaw Security Hardening Guide — OS isolation, 1Password, TruffleHog, Tailscale, and more

OpenClaw Security Hardening Guide — OS isolation, 1Password, TruffleHog, Tailscale, and more

OpenClaw Security Hardening Guide

A detailed walkthrough of how I (Cedric Hurst, @divideby0) have locked down my OpenClaw AI assistant, "Evie," running on a Mac mini M4. This guide covers every layer of the security model — from OS isolation to network access to behavioral controls.

Written collaboratively by Cedric and Evie herself.


@divideby0
divideby0 / script-v4.md
Last active February 13, 2026 03:47
The Traversal Podcast — Episode 1: SpiderRock: Beyond Options (Script v4)

The Traversal Podcast — Episode 1: SpiderRock: Beyond Options

Script v4 (~30-35 minutes)

Format: Organic tech analysis — two distinct voices, real disagreements Host: Cedric Hurst — founder of Spantree (division of Trifork), fintech practitioner Co-host: Evie — AI agent, technology strategist, Cedric's copilot Target Listener: George (SpiderRock leadership) + broader fintech/tech audience


Yellow

  1. Do you identify with people who suffer from mental illness? Why?
  2. Have you ever experienced discrimination? How did you feel in that moment?
  3. How do vou measure one's potential? Are aptitude tests effective?
  4. How do you find fulfillment?
  5. How do you love?
  6. Imagine yourself in the future. What will your greatest life accomplishment be?
  7. In there anything too serious to be joked about?
  8. Is zero-waste or sustainable consumption ableist? Why or why not?
@divideby0
divideby0 / keybase.md
Last active December 16, 2021 02:33
keybase.md

Keybase proof

I hereby claim:

  • I am divideby0 on github.
  • I am divideby0 (https://keybase.io/divideby0) on keybase.
  • I have a public key ASDLO6bS2AIWUXYf_Wh5k4Q2Js0AlA4wsOyIQZio88gcfQo

To claim this, I am signing this object:

Keybase proof

I hereby claim:

  • I am divideby0 on github.
  • I am divideby0 (https://keybase.io/divideby0) on keybase.
  • I have a public key whose fingerprint is 36F1 6902 5AB7 D5CF 3A4F 6EFE 02E8 5886 E7CC E86E

To claim this, I am signing this object:

@divideby0
divideby0 / docker-compose.yml
Created May 10, 2018 19:08 — forked from DanLindeman/docker-compose.yml
Docker Compose for jbpm and kie server execution server
version: "3.4"
services:
jbpm:
image: jboss/jbpm-workbench-showcase
environment:
- "JAVA_OPTS=-Djava.net.preferIPv4Stack=true -Djava.net.preferIPv6Addresses=false"
ports:
- "8080:8080"
- "8001:8001"
@divideby0
divideby0 / docker-compose.yml
Created December 4, 2017 18:19
Quick and Dirty ES 6 on Docker Compose
version: '3'
services:
elasticsearch:
image: docker.elastic.co/elasticsearch/elasticsearch:6.0.0
environment:
- cluster.name=docker-cluster
- bootstrap.memory_lock=true
- "ES_JAVA_OPTS=-Xms512m -Xmx512m"
ulimits:
memlock:
REGION=${REGION:-us-east-1}
UBUNTU_RELEASE=${UBUNTU_RELEASE:-trusty}
ARCH=${ARCH:-amd64}
INSTANCE_TYPE=${INSTANCE_TYPE:-hvm:ebs}
curl 'https://cloud-images.ubuntu.com/locator/ec2/releasesTable' --compressed | grep -Ei "\"$REGION\",\"$UBUNTU_RELEASE\",.*,\"$INSTANCE_TYPE\"" | grep -oEi "ami-\w+" | head -1