Skip to content

Instantly share code, notes, and snippets.

View numinato's full-sized avatar

Sebastian numinato

View GitHub Profile
@numinato
numinato / incognito_claude.sh
Created April 30, 2026 22:16 — forked from superjax/incognito_claude.sh
Run a claude code command without it showing up in claude history
#!/bin/bash
# Run claude and capture both the message and session ID
all_args="$@"
OUTPUT=$(claude -p "$all_args" --output-format json)
# Extract the commit message and session ID
# Claude outputs different schemas depending on whether "vebose" output is on.
# Try basic format (simple dict) first, fall back to "verbose" format (array of dicts with type=="result")
RESULT=$(echo "$OUTPUT" | jq -r '.result // empty' 2>/dev/null)
@numinato
numinato / index.html
Last active August 29, 2015 14:22
Test2
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN">
<html lang="en">
<head>
<meta charset="utf-8">
<title>Force based label placement</title>
<script type="text/javascript" src="http://mbostock.github.com/d3/d3.js?2.6.0"></script>
<script type="text/javascript" src="http://mbostock.github.com/d3/d3.layout.js?2.6.0"></script>
<script type="text/javascript" src="http://mbostock.github.com/d3/d3.geom.js?2.6.0"></script>
</head>
<body>
@numinato
numinato / index.html
Last active August 29, 2015 14:22
Test
<!DOCTYPE html>
<meta charset="utf-8">
<style>
.node {
stroke: #fff;
stroke-width: 1.5px;
}
.link {