Skip to content

Instantly share code, notes, and snippets.

View zivkovicmilos's full-sized avatar

Miloš Živković zivkovicmilos

View GitHub Profile
@zivkovicmilos
zivkovicmilos / config.toml
Last active January 17, 2023 15:19
Minor example of ff/cli and ff/toml usage
arr = ["gno", "land", "👍"]
@zivkovicmilos
zivkovicmilos / tm2_rpc.postman_collection.json
Created April 10, 2023 09:08
Tendermint 2 JSON-RPC Postman Collection
{
"info": {
"_postman_id": "08bf3304-544f-47a3-b365-90e63bcd1fe4",
"name": "Tendermint2 JSON-RPC",
"schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json"
},
"item": [
{
"name": "common",
"item": [
@zivkovicmilos
zivkovicmilos / insertion_queue_perf.go
Last active April 15, 2023 20:52
Snippet detailing the performance differences between Go stdlibs and the `insertion-queue` package
package main
import (
"fmt"
"math/rand"
"os"
"sort"
"text/tabwriter"
"time"