Skip to content

Instantly share code, notes, and snippets.

[
{:bonfire,
[
git: "https://github.com/bonfire-networks/bonfire_spark",
branch: "main",
override: true
]},
{:bonfire_mailer,
[
git: "https://github.com/bonfire-networks/bonfire_mailer",
Sort (cost=6976.13..6976.15 rows=7 width=3472) (actual time=26.083..26.099 rows=39 loops=1)
Output: b0.id, b0.feed_id, b1.id, b1.subject_id, b1.object_id, b1.verb_id, p7.id, p7.table_id, p7.deleted_at, b17.id, b17.username, b17.username_hash, b17.outbox_id, b17.inbox_id, b17.notifications_id, b8.id, b8.creator_id, p9.id, p9.table_id, p9.deleted_at, b10.id, b10.username, b10.username_hash, b10.outbox_id, b10.inbox_id, b10.notifications_id, b11.id, b11.name, b11.summary, b11.website, b11.location, b11.icon_id, b11.image_id, b12.id, b12.user_id, b12.path, b12.size, b12.media_type, b12.metadata, b12.deleted_at, b16.id, b16.peer_id, b16.canonical_uri, b15.id, b15.name, b15.summary, b15.html_body, b18.id, b18.name, b18.summary, b18.website, b18.location, b18.icon_id, b18.image_id, b19.id, b19.user_id, b19.path, b19.size, b19.media_type, b19.metadata, b19.deleted_at, b14.id, b14.reply_to_id, b14.thread_id, b14.direct_replies_count, b14.nested_replies_count, b14.path, p20.id, p20.table_id, p20.deleted_at, b21.id,
@ivanminutillo
ivanminutillo / index.html
Created February 12, 2021 09:22
prova saracinesca
<div>
<h1>hello world</h1>
</div>
@ivanminutillo
ivanminutillo / bitcoin.conf
Last active May 13, 2019 17:07
social-wallet-api.yaml and bitcoin.conf
## bitcoin.conf
### bitcoin.conf configuration file. Lines beginning with # are comments.
### Uncomment and edit options you wish to use.
## JSON-RPC options (for controlling a running bitcoin-qt/bitcoind process)
# server=1 tells Bitcoin to accept JSON-RPC commands.
server=1
daemon=1
SOS
WEB http://www.lascuolaopensource.xyz
LOCATION Bari
WEMAKE
WEB http://wemake.cc/
LOCATION Milan
EX-ASILO
WEB http://www.exasilofilangieri.it
AGENTS
======
Thegriel
Fin
Jaedhel
Borniel
Rinduil
Duilie
Aranria
Inga
import bip32utils from 'bip32-utils'
import bitcoin from 'bitcoinjs-lib'
import {hexEncode} from './utils'
// flow interfaces
import {HDWallet, HDNode, Tx} from '../types/wallet'
let NETWORKS = bitcoin.networks
let NETWORKS_FAIRCOIN = {
@ivanminutillo
ivanminutillo / keybase.md
Last active May 29, 2017 08:22
keybase proof

Keybase proof

I hereby claim:

  • I am ivanminutillo on github.
  • I am iminutillo (https://keybase.io/iminutillo) on keybase.
  • I have a public key ASDlBHOtkB78o2IBSu1Aq8da2ync5SOSZzaJ7mp8p5MvIQo

To claim this, I am signing this object:

@ivanminutillo
ivanminutillo / HDtoBase58
Last active September 29, 2016 10:46
Function that return the xpub or a xprv of a given HDNode, (using the bitcoinjs-lib) heavily based on the method .toBase58()
let HDtoBase58 = function (HDNode, key) {
var network = HDNode.keyPair.network
if(key === 'xpub') {
var buffer = new Buffer(78)
buffer.writeUInt32BE(network.bip32.public, 0)
buffer.writeUInt8(HDNode.depth, 4)
buffer.writeUInt32BE(HDNode.parentFingerprint, 5)
buffer.writeUInt32BE(HDNode.index, 9)
HDNode.chainCode.copy(buffer, 13)
HDNode.keyPair.getPublicKeyBuffer().copy(buffer, 45)