Skip to content

Instantly share code, notes, and snippets.

View cryptozeny's full-sized avatar

cryptozeny

View GitHub Profile
@visvirial
visvirial / bip-0341.ja.mediawiki
Last active September 17, 2020 15:46
BIP 341「Taproot: SegWit version 1 spending rules」日本語版

翻訳者注:この日本語訳は、2020年2月21日時点で https://github.com/bitcoin/bips/blob/master/bip-0341.mediawiki に公開されているものを底本としています。最新の情報については原文をご参照ください。


  BIP: 341
  Layer: Consensus (soft fork)
  Title: Taproot: SegWit version 1 spending rules
  Author&#58; Pieter Wuille <pieter.wuille@gmail.com>
          Jonas Nick <jonasd.nick@gmail.com>
          Anthony Towns <aj@erisian.com.au>

Hello, today our community server was attacked by severe report attack. Attacked which is going by pseudonym Mink created fake account with same nickname as our server admin cryptozeny and posted allegedly his personal info in public his own public server (check attachemnts 1-3). After this he probably reported them to Discord support team. As result today all of server admins, including user who joined just couple hours before was banned, here is not full list (with actual user id) of banned users:

crypt?zeny: 619739278695727104

Keybase proof

I hereby claim:

  • I am cryptozeny on github.
  • I am cryptozeny (https://keybase.io/cryptozeny) on keybase.
  • I have a public key whose fingerprint is BB27 9FE1 59A0 E40E D02B 3365 B9DD BDE2 AAAD C421

To claim this, I am signing this object:

import re
from datetime import datetime
from datetime import timedelta
logFilePath = "debug.log"
outputFilePath = "output.csv"
with open(logFilePath, "r") as logFile, open(outputFilePath, "w") as csvFile:
lines = logFile.readlines()
csvFile.write("date,elapsed time,height\n")
#!/usr/bin/env python
#
# Electrum - lightweight Bitcoin client
# Copyright (C) 2011 thomasv@gitorious
#
# 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, either version 3 of the License, or
# (at your option) any later version.
#
@cryptozeny
cryptozeny / gitian-BTC-v0.16.3.md
Last active October 8, 2020 23:15
gitian cross compilation for BTC v0.16.3
@cryptozeny
cryptozeny / FULL-Date.md
Last active January 6, 2019 14:33
RPC getBlockInterval +Date

https://youtu.be/E97kpbg1j_o

BLOCK        TIMESTAMP             DIFFICULTY  RATIO  IV  AVERG
0      181101-03:10:00  1.907323166912278e-06  1.216 GENESIS GENESIS 
1      190104-23:20:58  1.907323166912278e-06  1.000 5602258      0 
2      190104-23:24:09  1.907323166912278e-06  1.000 191  95.50 
3      190104-23:24:09  1.907323166912278e-06  1.000   0  63.66 
4      190104-23:24:15  1.907323166912278e-06  1.000   6  49.25 
.
@cryptozeny
cryptozeny / gist:a7c04fe14dd60de8f1806451742bba83
Last active February 21, 2019 12:06
win64/32 crossbuild on ubuntu 16.04
@bellflower2015
bellflower2015 / Dockerfile
Last active August 6, 2018 15:51
bitzenyplus-yespower-0.5:xenial Dockerfile
#
# docker build --tag bitzenyplus-yespower-0.5:xenial --cpuset-cpus="0,1" -f Dockerfile .
#
FROM ubuntu:xenial
RUN apt update -qq \
&& apt upgrade -qq -y \
&& apt install -qq -y \
build-essential \
@cryptozeny
cryptozeny / create_ssh.sh
Last active December 11, 2021 04:16
create github SSH key
ssh-keygen -t rsa -b 4096 -C "cryptozeny@gmail.com" && \
eval "$(ssh-agent -s)" && \
ssh-add ~/.ssh/id_rsa && \
echo "COPY to github ssh" ;\
echo "*******************" ; \
cat ~/.ssh/id_rsa.pub ; \
echo "*******************"