Skip to content

Instantly share code, notes, and snippets.

View 0xNineteen's full-sized avatar
🦭
chillin

x19 0xNineteen

🦭
chillin
View GitHub Profile
@ripatel-fd
ripatel-fd / snapshots.md
Last active July 9, 2024 19:00
Informal Guide to Solana Snapshots

Consider this an informal guide to reading the Solana snapshot format. This guide is written for Solana Labs versions v1.14 through v1.17.

You are probably reading this because you want to read the accounts in a snapshot without going through the pain of interfacing with the Solana Labs codebase.

Terminology

We assume general familiarity with the Solana ledger.

@dcoles
dcoles / inline.py
Created November 14, 2012 09:13
Inline assembly in Python
import ctypes
import sys
import os
import errno
FUNC = ctypes.CFUNCTYPE(None)
PROT_NONE = 0
PROT_READ = 1
PROT_WRITE = 2