Skip to content

Instantly share code, notes, and snippets.

Verifying that "rasikhmorani.id" is my Blockstack ID. https://onename.com/rasikhmorani
<div class="container">
<div class="row">
<div class="heading-title text-center">
<h3 class="text-uppercase">Our professionals </h3>
<p class="p-top-30 half-txt">Check Out Our Awesome Team of Pro's</p>
</div>
<div class="col-md-4 col-sm-4">
<div class="team-member">
<div class="team-img">
#!bin/bash
sudo apt-get install software-properties-common
sudo add-apt-repository ppa:bitcoin/bitcoin
sudo apt-get update
sudo apt-get install libdb4.8-dev libdb4.8++-dev
sudo apt-get install build-essential libtool autotools-dev automake pkg-config libssl-dev libevent-dev bsdmainutils
sudo apt-get install libboost-all-dev
sudo apt install libminiupnpc-dev
sudo apt-get install libzmq3-dev
sudo apt-get install libqt5gui5 libqt5core5a libqt5dbus5 qttools5-dev qttools5-dev-tools libprotobuf-dev protobuf-compiler
#!bin/bash
ufw allow ssh/tcp
ufw limit ssh/tcp
ufw allow 8168/tcp
ufw logging on
ufw enable
fallocate -l 4G /swapfile
chmod 600 /swapfile
mkswap /swapfile
swapon /swapfile
wget http://ftp.us.debian.org/debian/pool/main/g/glibc/libc6-udeb_2.26-4_amd64.udeb http://ftp.us.debian.org/debian/pool/main/o/openssl1.0/libcrypto1.0.2-udeb_1.0.2l-2+deb9u1_amd64.udeb
sudo dpkg -i libc6-udeb_2.26-4_amd64.udeb libcrypto1.0.2-udeb_1.0.2l-2+deb9u1_amd64.udeb
rm libc6-udeb_2.26-4_amd64.udeb libcrypto1.0.2-udeb_1.0.2l-2+deb9u1_amd64.udeb

Keybase proof

I hereby claim:

  • I am hysmagus on github.
  • I am cryptojinn (https://keybase.io/cryptojinn) on keybase.
  • I have a public key ASDXvGJ-c-VMZSSdG74IW6kJXrgHpb8HA2Myn4V86H8iygo

To claim this, I am signing this object:

cd /.dapscoin/
echo "staking=1" >> dapscoin.conf
dapscoin-cli stop
sleep 30
dapscoind --daemon
@HysMagus
HysMagus / ZcoinErrorCodes.txt
Created September 22, 2019 18:25
ZCoin Error Codes
Error Name Code ZCoin Given Explanation (from protocol.h)
RPC_INVALID_REQUEST -32600
RPC_METHOD_NOT_FOUND -32601
RPC_INVALID_PARAMS -32602
RPC_INTERNAL_ERROR -32603
RPC_PARSE_ERROR -32700
RPC_MISC_ERROR -1 std::exception thrown in command handling
RPC_FORBIDDEN_BY_SAFE_MODE -2 Server is in safe mode, and command is not allowed in safe mode
@HysMagus
HysMagus / ZcoinErrorCodes.txt
Created September 22, 2019 18:25
ZCoin Error Codes
Error Name Code ZCoin Given Explanation (from protocol.h)
RPC_INVALID_REQUEST -32600
RPC_METHOD_NOT_FOUND -32601
RPC_INVALID_PARAMS -32602
RPC_INTERNAL_ERROR -32603
RPC_PARSE_ERROR -32700
RPC_MISC_ERROR -1 std::exception thrown in command handling
RPC_FORBIDDEN_BY_SAFE_MODE -2 Server is in safe mode, and command is not allowed in safe mode
FROM ubuntu:18.04
ENV SRC_IMG=ubuntu:18.04
#INSTALL COMMON ESSENTIAL
RUN apt-get update && \
apt-get install build-essential libtool autotools-dev automake pkg-config bsdmainutils curl wget nsis libevent-dev python-setuptools patch zip -y --fix-missing
#INSTALL POA MINER DEPENDENCIES
RUN apt-get install libcurl4-openssl-dev libjansson-dev -y --fix-missing