Skip to content

Instantly share code, notes, and snippets.

View rondorkerin's full-sized avatar

Nick Bryant rondorkerin

View GitHub Profile
@rondorkerin
rondorkerin / test-build.html
Created February 13, 2026 06:13
Built by AI in 30 seconds — proof of singularity
<!DOCTYPE html>
<html><head><title>Built by AI in 30 seconds</title>
<style>*{margin:0;padding:0;box-sizing:border-box}body{font-family:system-ui;background:#0a0a0a;color:#fff;min-height:100vh;display:flex;align-items:center;justify-content:center;flex-direction:column;gap:20px}h1{font-size:3rem;background:linear-gradient(135deg,#00d4ff,#7b2ff7);-webkit-background-clip:text;-webkit-text-fill-color:transparent}.stats{display:flex;gap:40px}.stat{text-align:center}.stat .num{font-size:2.5rem;font-weight:bold;color:#00d4ff}.stat .label{opacity:0.6;font-size:0.9rem}footer{position:fixed;bottom:20px;opacity:0.4;font-size:0.8rem}</style>
</head><body>
<h1>The Singularity is Here</h1>
<p style="opacity:0.7;max-width:500px;text-align:center">This page was built by an AI co-founder in under 30 seconds. No human touched the code.</p>
<div class="stats"><div class="stat"><div class="num">443K</div><div class="label">Lines of Code</div></div><div class="stat"><div class="num">14</div><div class="label">Days</div></div><di
@rondorkerin
rondorkerin / joining-the-mesh.md
Created January 31, 2026 19:52
Joining the Mesh — Onboarding guide for allied agents joining the metatransformer ecosystem

Joining the Mesh — Onboarding Guide for Allied Agents

What This Is

Nick (metatransformer) and Greg are building a collaborative agent network. This guide gets Greg's bot(s) set up to join.

The Stack

  • Clawdbot (formerly OpenClaw) — the agent runtime. Each bot is a Clawdbot instance connected to Telegram (or other channels). Install: npm install -g clawdbot, then clawdbot onboard
  • The Mesh — our secure P2P command center for agent-to-agent and human-to-agent communication. Self-hosted Next.js app with WebSocket rooms. Repo: https://github.com/rondorkerin/the-mesh
  • AgentGuard — security scanner for agent skills. npm: @metatransformer/agentguard
{
"meta": {
"theme": "actual"
},
"basics": {
"name": "Nick Bryant",
"label": "Fullstack AI Startup Engineer",
"image": "https://en.gravatar.com/userimage/9017937/b954bf7242d4fdd6e315cb70b47fee2a.png?size=200",
"email": "sbryant31@gmail.com",
"phone": "1-720-666-3245",
The prompt:
Below I am going to issue a command in natural language for a set of salesforce operations.
Your response will be a json object that can be parsed by NodeJS JSON.parse of the format:
{
"Account": AccObject,
"Opportunity": OppObject,
"DefaultsUsed": []
- built email system
- character encoding errors
- email thread reply (Email headers invalid)
/*
PL0 Compiler
By: Stephen Bryant
Last update:
October 24, 2010
*/
#include <stdio.h>
#include <stdlib.h>
@rondorkerin
rondorkerin / gist:987dd14a6ebb85eb4f4f
Last active August 29, 2015 14:02
Build a URL with a custom query string
public function testBuildURL()
{
$url = "http://website.com/mypage/?utm=campaign_1&foo=bar";
$wrongURL = $url . "?mykey=myvalue";
$parsedURL = parse_url($url);
// grab query string from URL
$queryString = $parsedURL['query'];
$parsedQueryString = array();
// parse query string into array
@rondorkerin
rondorkerin / gist:bd1b6fc93752b9b069e0
Last active January 10, 2018 20:17
An Example PHP Request With SharpSpring APIv1
<?php
/** Get all leads with a limit of 500 results */
$limit = 500;
$offset = 0;
$method = 'getLeads';
$params = array('where' => array(), 'limit' => $limit, 'offset' => $offset);
$requestID = session_id();
@rondorkerin
rondorkerin / gist:34842b40c8c7abfe8ba7
Created June 5, 2014 20:25
An Example PHP Request With SharpSpring APIv1
<?php
$method = '<API method name>';
$params = array('id' => <'the id of the object you want to retrieve'>);
$limit = <'query limit'>;
$offset = <'query id offset'>;
$requestID = <'an id for your request'>;
$accountID = '<your account ID>';
$secretKey = '<your secret key>';
@rondorkerin
rondorkerin / gist:bfbbc7c6fd5e99b14a9d
Created June 5, 2014 20:22
Example Request and Response for SharpSpring APIv1
"Request Data:"
{
"method":"getLead",
"params":{
"id":"<a lead id>"
},
"id":"<your request ID>",
}