Skip to content

Instantly share code, notes, and snippets.

View cryptozeny's full-sized avatar

cryptozeny

View GitHub Profile
@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 "*******************"
@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 / SHA256SUM.asc
Last active April 5, 2020 08:04
no_relation_with_civil_labs
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA256
9f642663eab004723152c21f1fa3d5484e4a67110a2762f1c3d4b3a857fc3ad7 no_relation_with_civil_labs.md
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1
iQIcBAEBCAAGBQJeiZBvAAoJELndveKqrcQhyT8QAMxr+GfBHqcQ8Rx61TMEUWA4
93OXz+7HV5gBvJLy3HR9b0zOjTqGi8HFHbXQucC7AzcmpMmyraQMQ9ZS4xH8PJxi
sNs4oSCJa0GjiXwgKrZuy0K9av/AAmIRicHP0z1C5Hv+6NJNjlUk1m66W6if/Unv

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:

@cryptozeny
cryptozeny / wjcloud.md
Last active August 23, 2019 02:05
Clarification

https://bitcointalk.org/index.php?topic=5177722.msg52235070#msg52235070

Hello, this is cryptozeny.

There is one thing to explain. I posted a Sugarchain mainnet launch announcement on bitcointalk.org. A person named cpuminerdev started to claim that (cryptozeny) was the same as wjcloud, the culprit of the Bitcoin Platinum case.

In conclusion, this is not true at all.

  1. wjcloud A few years ago I only had a phone call with the wjcloud. The call was asked to help the wjcloud develop coin including Ethereum ProgPow hard fork. I refused because I already knew the trueth of wjcloud. Since then, He subsequently came to the community and asked again, but declined each time. I've (cryptozeny) never met wjcloud offline, but according to the testimonies of my friends, the wjcloud is an ordinary Korean high school student. I heard that he
@cryptozeny
cryptozeny / ssh_without_password
Created June 22, 2019 23:26
ssh without password
targetUSER="root" && \
targetIP="149.28.43.9" && \
ssh ${targetUSER}@${targetIP} mkdir -p .ssh && \
cat ~/.ssh/id_rsa.pub | ssh ${targetUSER}@${targetIP} 'cat >> .ssh/authorized_keys'
enter password twice
@cryptozeny
cryptozeny / gist:a7c04fe14dd60de8f1806451742bba83
Last active February 21, 2019 12:06
win64/32 crossbuild on ubuntu 16.04
@cryptozeny
cryptozeny / rsync-homedir-excludes
Created February 6, 2019 18:04
rsync-homedir-excludes
# rsync-homedir-excludes
#
# A list of files to exclude when backing up *nix home directories using rsync.
#
# Author: Ruben Barkow <https://github.com/rubo77/rsync-homedir-excludes>
# Version: 2015-08-30
#
# #Usage:
# USER=<homedir username here>
# rsync -aP --exclude-from=rsync-homedir-excludes.txt /home/$USER/ /media/$USER/linuxbackup/home/$USER/
@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 / pow_tests.cpp
Created January 1, 2019 17:32
negativeTimeAttack_test
// Copyright (c) 2015-2017 The Bitcoin Core developers
// Distributed under the MIT/X11 software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#include <chain.h>
#include <chainparams.h>
#include <pow.h>
#include <random.h>
#include <util.h>
#include <test/test_bitcoin.h>