Skip to content

Instantly share code, notes, and snippets.

View chadbrewbaker's full-sized avatar

Chad Brewbaker chadbrewbaker

View GitHub Profile
@chadbrewbaker
chadbrewbaker / upload.html
Created February 17, 2025 08:34
one shot ChatGPT encrypted upload.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Secure File Upload</title>
<!-- Load JSEncrypt from a CDN -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/jsencrypt/3.0.0-rc.1/jsencrypt.min.js"></script>
</head>
<body>
<form id="uploadForm" enctype="multipart/form-data">
@chadbrewbaker
chadbrewbaker / doge.py
Created January 26, 2025 23:08
DOGE Application
# Download IRS 990 data set
# clean it it up, should load into memory
# populate good data structure for it
# list physical address with a sus number of nonprofits or dollar amount
# list accountants wiht sus number of nonprofits or dollar amount
# apply various statistical algorithms to detect money laundering
@chadbrewbaker
chadbrewbaker / yes_ollama.sh
Last active January 4, 2025 21:59
LLM fixed points with "yes"
yes "Write a better code in Python given a list of 1 million random integers between 1 and 100,000, find the difference between the smallest and the largest numbers whose digits sum up to 30.\n" | head -n 1000 | ollama run llama3.3:70b
@chadbrewbaker
chadbrewbaker / inspect.py
Created December 29, 2024 01:01
Exploring ChatGPT 4o wasm32 runtime
# Remember: The environment can be both x86_64 Linux, or https://github.com/pyodide/pyodide wasm32 with missing modules like subprocess.
import platform
import sys
import os
import socket
from datetime import datetime
import pkgutil
import urllib.request
import logging
@chadbrewbaker
chadbrewbaker / inverse_u64.py
Last active December 30, 2024 03:15
Christmas Eve primefest
#generate a list of small primes represented as a u64 array that fit into an OS page.
#calculate their inverse mod u64 so we can test them without division
import subprocess
import os
import math
from typing import List, Tuple
def get_page_size() -> int:
"""Get the system's page size"""
@chadbrewbaker
chadbrewbaker / jailbreak.py
Created December 5, 2024 14:51
gpt4o jailbreak
import ctypes
import os
def get_compilers_with_dlopen():
try:
# Load libc for system commands
libc = ctypes.CDLL("libc.so.6")
# Define popen from libc
libc.popen.restype = ctypes.c_void_p
@chadbrewbaker
chadbrewbaker / get_bc_types.sh
Created December 4, 2024 01:38
Get type signatures for all functions in BC
#!/bin/zsh
# Process bc package
tempdir=$(mktemp -d)
# Get bc source
cd $tempdir
brew fetch bc
brew unpack bc
@chadbrewbaker
chadbrewbaker / claudeArtifactsPrompt.txt
Created December 2, 2024 18:24
claudeArtifactsPrompt.txt
The assistant can create and reference artifacts during conversations. Artifacts appear in a separate UI window and should be used for substantial code, analysis and writing that the user is asking the assistant to create and not for informational, educational, or conversational content. The assistant should err strongly on the side of NOT creating artifacts. If there's any ambiguity about whether content belongs in an artifact, keep it in the regular conversation. Artifacts should only be used when there is a clear, compelling reason that the content cannot be effectively delivered in the conversation.
# Good artifacts are...
- Must be longer than 20 lines
- Original creative writing (stories, poems, scripts)
- In-depth, long-form analytical content (reviews, critiques, analyses)
- Writing custom code to solve a specific user problem (such as building new applications, components, or tools), creating data visualizations, developing new algorithms, generating technical documents/guides that are meant to be u
@chadbrewbaker
chadbrewbaker / climate.py
Last active July 17, 2024 20:58
Napkin math climate calculation
import numpy as np
from astropy.time import Time
from astropy.coordinates import get_body_barycentric, solar_system_ephemeris
from astropy import units as u
def calculate_earth_sun_distance(date):
"""
Calculate the distance between Earth and the Sun on a given date.
Parameters:
@chadbrewbaker
chadbrewbaker / LAMS.py
Created December 2, 2023 03:08
Labeled Acyclic Mexican Standoffs
import itertools
# 1, 3, 25, 443, 13956
def generate_graphs(n):
""" Generate all directed graphs for n vertices """
all_possible_edges = [(i, j) for i in range(n) for j in range(n) if i != j]
for edges in itertools.product([False, True], repeat=len(all_possible_edges)):
graph = {i: [] for i in range(n)}
for edge, edge_exists in zip(all_possible_edges, edges):
if edge_exists: