Skip to content

Instantly share code, notes, and snippets.

@shakquraa
shakquraa / tenantpivot.py
Created February 4, 2026 20:28
Microsoft tenant–based domain discovery for bug bounty recon.
#!/usr/bin/env python3
import argparse
import sys
import time
import random
import os
import requests
UA = (
@karpathy
karpathy / microgpt.py
Last active February 22, 2026 09:28
microgpt
"""
The most atomic way to train and run inference for a GPT in pure, dependency-free Python.
This file is the complete algorithm.
Everything else is just efficiency.
@karpathy
"""
import os # os.path.exists
import math # math.log, math.exp
@mberman84
mberman84 / oc.md
Created February 16, 2026 19:42
OpenClaw Prompts

OpenClaw Prompts - Build Your Own AI Assistant

Prompts to recreate each piece of the OpenClaw system. Use these with any AI coding assistant.


1. Personal CRM "Build a personal CRM that automatically scans my Gmail and Google Calendar to discover contacts from the past year. Store them in a SQLite database with vector embeddings so I can query in natural language ('who do I know at NVIDIA?' or 'who haven't I talked to in a while?'). Auto-filter noise senders like marketing emails and newsletters. Build profiles for each contact with their company, role, how I know them, and our interaction history. Add relationship health scores that flag stale relationships, follow-up reminders I can create, snooze, or mark done, and duplicate contact detection with merge suggestions. Link relevant documents from Box to contacts so when I look up a person, I also see related docs."

2. Meeting Action Items (Fathom)

Shader "Hidden/JumpFloodOutline"
{
Properties
{
_MainTex ("Texture", 2D) = "white" {}
}
SubShader
{
Tags { "PreviewType" = "Plane" }
Cull Off ZWrite Off ZTest Always
@sunmeat
sunmeat / Program.cs
Last active February 22, 2026 09:25
приклад на запуск і зупинку процесів в дот нет
using System.Diagnostics;
using System.Runtime.InteropServices;
using System.Text;
class Program
{
static void Main()
{
Console.OutputEncoding = Encoding.UTF8;
Console.WriteLine("Створення процесу notepad.exe...");
export default {
async email(message, env, ctx) {
// 1. 配置
const FORWARD_TO = "your_real_email@gmail.com";
// 2. 基础信息
const subject = message.headers.get("subject") || "无主题";
const from = message.from;
// 3. 获取并“清洗”数据
@ChristopherA
ChristopherA / README.md
Last active February 22, 2026 09:20
Self-Improving Claude Code: A bootstrap seed prompt that evolves into a sophisticated configuration system

Self-Improving Claude Code: A Bootstrap Seed

The Hypothesis

A single prompt (~1400 tokens), placed in a project's .claude/CLAUDE.md, can bootstrap a Claude Code instance into a self-improving system — one that captures learnings, extracts patterns, evolves its own configuration, and gets meaningfully better at helping its user with each session.

No pre-built infrastructure required. No user-level config. No hooks, skills, templates, or elaborate folder hierarchies. Just a seed and the affordances Claude Code already provides.

Background

@cptmacp
cptmacp / endfield_discord.js
Last active February 22, 2026 09:19
automate for skport endfield daily login claim via js script and send notification to discord channel
/** Config Starts. **/
const profiles = [
{
cred: "xxxxxxxxxxxxxxxxxxxxxx", // Replace with your Endfield cred cookie value ( get from cookie )
skGameRole: "xxxxxxxxxxxx", // Replace with your Endfield skGameRole cookie value ( get from cookie )
platform: "3",
vName: "1.0.0",
accountName: "acc_name" // Replace with a name to identify this account( a simple identifier )
}