Skip to content

Instantly share code, notes, and snippets.

View riptl's full-sized avatar
✝️
Gott mit uns

Richard Patel riptl

✝️
Gott mit uns
View GitHub Profile
@riptl
riptl / parseNimiqExtraData.js
Created March 17, 2019 12:05
Parse Nimiq Extra Data
function parseExtraData(extraData) {
try {
const nullSep = extraData.indexOf(0);
if (nullSep == -1)
return null;
const nameBin = extraData.slice(0, nullSep);
const name = Nimiq.BufferUtils.toAscii(nameBin);
const addrBin = extraData.slice(nullSep + 1, nullSep + 21);
const addr = new Nimiq.Address(addrBin);
return {
@riptl
riptl / coins.json
Last active April 11, 2019 22:53
SLIP-44 to JSON
[
{
"index": 0,
"hex": "0x80000000",
"symbol": "BTC",
"name": "Bitcoin",
"link": "https://bitcoin.org/"
},
{
"index": 2,
@riptl
riptl / remove_last_line.go
Created October 3, 2019 14:46
Go script to efficiently truncate the last line of a file. Use it when that 750GB NDJSON dump aborts in the middle of a write.
// remove_last_line efficiently truncates the last line of a file, preserving the final newline.
package main
import (
"bytes"
"flag"
"fmt"
"os"
)
@riptl
riptl / _RMCP01_SYMBOLS.md
Last active January 7, 2021 03:25
Mario Kart Wii RMCP01 symbols [2020-10-15]

My crude attempt at mapping out the symbols in Mario Kart Wii PAL (RMCP01). These symbols are not cleaned up yet and contain dupes.

  • Minimum function size: 24 bytes
  • Search space: 0x80000000..0x8088F400
  • Matches: 1343 (RVL) + 773 (NW4R) + 738 (RevoEX) + 651 (RVLDWC)
  • Unique addresses: 1178 (RVL) + 447 (NW4R) + 651 (RevoEX) + 624 (RVLDWC)
@riptl
riptl / k8s_decode_secret.py
Created October 21, 2020 13:59
Python script to convert a Kubernetes secret file containing base64-encoded "data" entries to plain text "stringData" entries.
#!/usr/bin/env python3
from base64 import b64decode
import os
import sys
import yaml
if os.isatty(sys.stdin.fileno()):
print("Usage: ./decode_secret.py < secret.yaml", file=sys.stderr)
sys.exit(1)
@riptl
riptl / ceph-cluster.yaml
Created November 9, 2020 12:41
Rook v1.4 Ceph v14.2.13 OSD Resize Bug report
apiVersion: ceph.rook.io/v1
kind: CephCluster
metadata:
name: rook-ceph
namespace: rook-ceph
spec:
cephVersion:
# For the latest ceph images, see https://hub.docker.com/r/ceph/ceph/tags
image: ceph/ceph:v14.2
dataDirHostPath: /var/lib/rook
@riptl
riptl / !ppc750cl_bit_patterns.md
Last active August 14, 2021 04:10
PowerPC 750CL instruction bit patterns

PowerPC 750CL instruction bit patterns

The following listing describes the static bit pattern of each opcode.

patterns.txt

Syntax:

line: opcode <pattern>...
pattern: start,stop,value
@riptl
riptl / bls12-381-tss.md
Created November 17, 2021 00:30
BLS12-381 threshold signature aggregation

BLS12-381 threshold signature scheme in Go using "trusted" key generation.

Based on cryptography libraries from https://github.com/drand

Output:

Private key:            19ff5b84b3e983e022d9f189a8832ddeb638fb7242c2d1e6c01bfe6afc6f9354
Public key:             87182d07e893944771b9eb443bb43548b060606143587f2e104a9de56a4831848b83deb4ad553cabcbec90ed0adbca91
Message:                Hello Obol
------------------------
@riptl
riptl / writes.csv
Created February 26, 2022 23:28
Kafka write size breakdown for 10k Solana txns
program txs data_size data_pct
9xQeWvG816bUx9EPjHmaT23yvVM2ZWbrrpZb9PusVFin 738 82565664 0.823
Vote111111111111111111111111111111111111111 2241 8361171 0.083
mv3ekLzLbnVPNxjSKvqBpU3ZeZXPQdEC3bp5MDEBG68 155 3316696 0.033
cndy3Z4yapfJBmL3ShUp5exZKqR3z33thTzeNMm2gRZ 4 3205916 0.032
FsJ3A3u2vn5cTVofAjvy6y5kwABJAqYWpe4975bi2epH 380 1258560 0.013
SW1TCH7qEPTdLsDHRgPuMQjbQxKdH2aBStViMFnt64f 554 659660 0.007
ZETAxsqBRek56DhiGXrn75yj2NHU3aYUnxvHXpkf3aD 34 276886 0.003
TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA 1017 164319 0.002
Sysvar1111111111111111111111111111111111111 24 144192 0.001
function_0:
exit
function_1:
mov64 r6, r1
call function_16705
mov64 r1, r6
call function_16258
exit