Skip to content

Instantly share code, notes, and snippets.

@DMontgomery40
DMontgomery40 / CODEX.md
Last active February 27, 2026 01:22
Ralph audit loop: Codex CLI read-only code audit runner

Ralph Audit Agent Instructions (OpenAI Codex)


Safety Notice (Customize)

If this codebase is production, handles money, or touches sensitive data: treat this audit loop as a high-risk operation. Run with least privilege, avoid exporting long-lived credentials in your shell, and keep the agent in read-only mode.


@yashodhank
yashodhank / 1.How-to-Use-Grabovoi-Numbers-Codes.md
Last active February 27, 2026 01:19
Instructions on How to Use Grabovoi Numbers / Codes

Instructions on How to Use Grabovoi Numbers

Grabovoi (ग्राबोवोई) numbers, also known as "Grabovoi codes," are sequences of numbers developed by the Russian mathematician and psychic Grigori Grabovoi. They are intended to be used for healing and manifesting specific outcomes based on numerology and the belief in the mystical power of numbers.

English Instructions:

Grabovoi numbers are sequences that are used with the intention to manifest specific outcomes in various areas of life, such as health, finance, and relationships. Here's a simple guide on how to use them:

  1. Identify Your Goal: Decide what you want to improve or heal. This could be anything from better health, financial prosperity, to finding love.

  2. Choose the Right Number: Each number sequence corresponds to a specific goal. Refer to the table of Grabovoi numbers to find the one that suits your need.

@karpathy
karpathy / microgpt.py
Last active February 27, 2026 01:20
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
@radiofun
radiofun / simplewavenoise.metal
Last active February 27, 2026 01:14
Simple Wave with Noise
#include <metal_stdlib>
#include <SwiftUI/SwiftUI.h>
using namespace metal;
float hash21(float2 p) {
float3 p3 = fract(float3(p.xyx) * 0.1031);
p3 += dot(p3, p3.yzx + 33.33);
return fract((p3.x + p3.y) * p3.z);
}
# OpenClaw Implementation Prompts
Each prompt below is a self-contained brief you can hand to an AI coding assistant (or use as a project spec) to build that use case from scratch. Adapt the specific services to whatever you already use — the patterns are what matter.
---
## 1) Personal CRM Intelligence
```
Build me a personal CRM system that automatically tracks everyone I interact with, with smart filtering so it only adds real people — not newsletters, bots, or cold outreach.
@JulioBorges
JulioBorges / n8n-affiliate-links.md
Last active February 27, 2026 01:11
n8n workflow de criação de links de afiliados
/*
* Copyright 2026 Georgiopoulos Kyriakos
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
@Tapanhaz
Tapanhaz / JetBrainsTrial.bat
Created November 21, 2024 03:19 — forked from MrPaXe/JetBrainsTrial.bat
Infinite Jetbrains Resharper trial
:: This bat file can be used to renew Resharper C# and Resharper C++ every time it runs out
:: It most likely works for all Jetbrains tools, however, I did not test this.
:: I was not able to find the original author for the reg key and the folders that needs to be deleted so if that is you feel free to reach out for credit
@echo off
setlocal enableDelayedExpansion
:confirm
echo Did you stop all Jetbrains services?
echo Jetbrains toolbox AND any other tool using it such as Rider, Visual Studio, ...