Skip to content

Instantly share code, notes, and snippets.

View jeffbalagosa's full-sized avatar
🎯
Focusing

jeffbalagosa

🎯
Focusing
View GitHub Profile
@jeffbalagosa
jeffbalagosa / openclaw-memory.excalidraw
Created February 21, 2026 06:35
OpenClaw Memory (working format)
{
"type": "excalidraw",
"version": 2,
"source": "https://excalidraw.com",
"elements": [
{
"type": "text",
"id": "title",
"x": 250,
"y": 20,
@jeffbalagosa
jeffbalagosa / openclaw-memory.excalidraw
Created February 21, 2026 06:34
OpenClaw Memory v4
{
"type": "excalidraw",
"version": 2,
"source": "https://excalidraw.com",
"elements": [
{
"type": "text",
"x": 350,
"y": 20,
"width": 400,
@jeffbalagosa
jeffbalagosa / openclaw-memory.excalidraw
Created February 21, 2026 06:24
OpenClaw Memory v3
{
"type": "excalidraw",
"version": 2,
"source": "https://excalidraw.com",
"elements": [
{
"type": "text",
"x": 400,
"y": 40,
"text": "OpenClaw Memory System",
{
"type": "excalidraw",
"version": 2,
"source": "https://excalidraw.com",
"elements": [
{
"type": "rectangle",
"x": 100,
"y": 100,
"width": 200,
@jeffbalagosa
jeffbalagosa / design.excalidraw
Created February 21, 2026 06:13
Working example
{
"type": "excalidraw",
"version": 2,
"source": "https://excalidraw.com",
"elements": [
{
"type": "rectangle",
"id": "zone_sync",
"x": 20,
"y": 60,
@jeffbalagosa
jeffbalagosa / openclaw-memory.excalidraw
Last active February 21, 2026 06:12
OpenClaw Memory System Diagram v2
{
"type": "excalidraw",
"version": 2,
"source": "https://excalidraw.com",
"elements": [
{
"type": "rectangle",
"id": "header_bg",
"x": 280,
"y": 20,
@jeffbalagosa
jeffbalagosa / openclaw-memory.excalidraw
Created February 21, 2026 05:32
OpenClaw Memory System Diagram
{
"type": "excalidraw",
"version": 2,
"source": "https://excalidraw.com",
"elements": [
{
"type": "rectangle",
"id": "header_bg",
"x": 280,
"y": 20,
@jeffbalagosa
jeffbalagosa / chatgpt_parser_md.py
Created January 3, 2023 00:30 — forked from thomasantony/chatgpt_parser_md.py
Convert saved HTML transcripts from ChatGPT to Markdown
# Save the transcripts using the "Save Page WE" Chrome Extension
# This script was generated by ChatGPT
import sys
from bs4 import BeautifulSoup
# Check if a file was provided as a command line argument
if len(sys.argv) < 2:
print("Please provide an HTML file as a command line argument.")
sys.exit(1)