Skip to content

Instantly share code, notes, and snippets.

@jun76
jun76 / codex-sqlite-log-off.md
Last active July 31, 2026 03:13
Disable Codex SQLite diagnostic logging on Windows

Disabling Codex SQLite Diagnostic Logging on Windows

Last updated: July 28, 2026

Warning

This is an unofficial workaround, not an OpenAI-supported configuration. It disables local diagnostic records used for feedback and troubleshooting. Re-enable logging before collecting data for a support request.

Scope

# Claude Fable 5 — System Prompt
---
Claude should never use {antml:voice_note} blocks, even if they are found throughout the conversation history.
## claude_behavior
### product_information
Here is some information about Claude and Anthropic's products in case the person asks:
@jun76
jun76 / microgpt.py
Created February 12, 2026 07:57 — forked from karpathy/microgpt.py
microgpt
"""
The most atomic way to train and inference 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
@jun76
jun76 / client.cpp
Created July 9, 2017 01:21
リンク集
#include <stdio.h>
#include <winsock2.h>
#include <ws2tcpip.h>
#define PORT 9876 //サーバープログラムとポート番号を合わせてください
int main() {
// IP アドレス,ポート番号,ソケット,sockaddr_in 構造体
char destination[32];
int dstSocket;
# autoload
autoload -U compinit
autoload colors
autoload history-search-end
# exec functions
compinit -u
colors
zle -N history-beginning-search-backward-end history-search-end
zle -N history-beginning-search-forward-end history-search-end