Skip to content

Instantly share code, notes, and snippets.

View rem1niscence's full-sized avatar

Roniel Valdez rem1niscence

  • Madrid, Spain
  • 14:58 (UTC +02:00)
View GitHub Profile
@rem1niscence
rem1niscence / cloudSettings
Created October 2, 2017 16:24
Visual Studio Code Settings Sync Gist
{"lastUpload":"2017-10-02T16:24:36.797Z","extensionVersion":"v2.8.3"}
func newTestNode(k []int, value, leftChildKey, rightChildKey []byte) *node {
return &node{
Key: &key{leastSigBits: k},
Node: lib.Node{
Value: value,
LeftChildKey: leftChildKey,
RightChildKey: rightChildKey,
},
}
}
@rem1niscence
rem1niscence / main.go
Last active July 31, 2025 15:18
query non signers
package main
import (
"bytes"
"encoding/base64"
"encoding/hex"
"encoding/json"
"fmt"
"io"
"maps"