This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Dark Cryptofolio.info Theme | |
* Written by Someguy123 ( https://github.com/Someguy123 ) | |
* License: X11 / MIT | |
*/ | |
body { | |
background-color: #3c3c3c; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
# | |
# Electrum - lightweight Bitcoin client | |
# Copyright (C) 2012 [email protected] | |
# | |
# Permission is hereby granted, free of charge, to any person | |
# obtaining a copy of this software and associated documentation files | |
# (the "Software"), to deal in the Software without restriction, | |
# including without limitation the rights to use, copy, modify, merge, | |
# publish, distribute, sublicense, and/or sell copies of the Software, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
####################### | |
# | |
# Hive RPC Nginx Config with health endpoint's for Hivemind, Full / Fat Node + Acc Hist | |
# | |
# (C) 2020 Privex Inc. + Someguy123 | |
# https://www.privex.io https://peakd.com/@someguy123 | |
# | |
####################### | |
# Dirty Hack. Causes nginx to retry jussi |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
########################################## | |
# | |
# Hivemind + Jussi Restarter Script | |
# | |
# (C) 2020 Someguy123 ( www.privex.io ) | |
# License: MIT/X11 | |
# | |
########################################## |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"listen_endpoint": "0.0.0.0:2001", | |
"accept_incoming_connections": true, | |
"wait_if_endpoint_is_busy": true, | |
"private_key": "0000000000000000000000000000000000000000000000000000000000000000", | |
"desired_number_of_connections": 100, | |
"maximum_number_of_connections": 200, | |
"peer_connection_retry_timeout": 30, | |
"peer_inactivity_timeout": 5, | |
"peer_advertising_disabled": false, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- | |
-- Name: configv4.chrony.privex.cc | |
-- Type: LUA | |
-- Value: LUA "include('g_a'); SEv4={g_a('se1', 1), g_a('se2', 1)} DEv4={g_a('de1', 1), g_a('de2', 1)} FIv4={g_a('fi1', 1)}" | |
-- | |
include('g_a'); | |
SEv4={g_a('se1', 1), g_a('se2', 1)} | |
DEv4={g_a('de1', 1), g_a('de2', 1)} | |
FIv4={g_a('fi1', 1)} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# Copyright (C) 2011 Canonical Ltd. | |
# Copyright (C) 2013 Hewlett-Packard Development Company, L.P. | |
# | |
# Authors: Scott Moser <[email protected]> | |
# Juerg Haefliger <[email protected]> | |
# | |
# This program is free software: you can redistribute it and/or modify | |
# it under the terms of the GNU General Public License as published by | |
# the Free Software Foundation, version 3 of the License. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/perl | |
use strict; | |
use Fcntl qw(SEEK_SET); | |
sub deswappify { | |
my $pid = shift; | |
my $fh = undef; | |
my $start_addr; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# get timestamps on your steem docker logs | |
# by @someguy123 | |
: ${DOCKER_NAME=seed} | |
LOG_PATH=$(docker inspect $DOCKER_NAME | jq -r .[0].LogPath) | |
pipe=/tmp/dkpipe.fifo | |
trap "rm -f $pipe" EXIT | |
if [[ ! -p $pipe ]]; then | |
mkfifo $pipe |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This means to build an array () based on line breaks in the file | |
# allowing us to use it with a for loop | |
LFS=' | |
' | |
# btcaddrs contains addresses that are actually used | |
addresses=($(cat btcaddrs.txt)) | |
# filter the bitaddress file btc.txt to only contain used addresses | |
# then spit out the un-quoted private keys | |
(for a in $addresses; do grep $a btc.txt; done) | awk '{ split($0,a,","); print a[3] }' | tr -d '"' |