Skip to content

Instantly share code, notes, and snippets.

@WietseWind
WietseWind / 1-accountset.json
Last active December 18, 2021 15:32
Issue tokens (NFT) on the XRPL as discussed in XLS-14d - https://github.com/XRPLF/XRPL-Standards/discussions/30
{
"TransactionType": "AccountSet",
"Account": "rIssuingAccount...",
"SetFlag": 8
}
@devashishd12
devashishd12 / tcusescases.ipynb
Created August 21, 2016 12:09
Notebook for topic coherence use cases blog
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@Mikescher
Mikescher / Twitch Unicode Hell
Last active August 3, 2020 18:59
Things from Twitch chat ( Spam Toolbox :3 )
༼ ᕤºل͟º ༽ᕤ
¢‿¢
¯\_(ツ)_/¯
ᕙ༼ຈل͜ຈ༽ᕗ
ó‿ó
@miku
miku / csvprocessor.py
Last active July 22, 2019 15:02
CSV processor examples for luigi. Can serialize *args to CSV. Can deserialize CSV rows into namedtuples if requested. -- "works on my machine".
from luigi.format import Format
import csvkit
class CSVOutputProcessor(object):
"""
A simple CSV output processor to be hooked into Format's
`pipe_writer`.
If `cols` are given, the names are used as CSV header, otherwise no
explicit header is written.