Skip to content

Instantly share code, notes, and snippets.

View BlackPeter13's full-sized avatar
💭
I may be slow to respond.

BlackPeter13

💭
I may be slow to respond.
View GitHub Profile
Node / Iquidus Explorer Setup for Dummies
Pulse Crypto is used in this example.
This Tutorial is going to create a Daemon (node) and install Explorer.
THIS IS NOT GOING TO CREATE A GUI CLIENT.
Follow the instructions in [whatever coin name] docs folder Unix build - some builds are different.
I setup this up on both Ubuntu 15.10 and 16.04 with no issues.
You can create an account on vultr and get $50 free to be used in 2 months.
@BlackPeter13
BlackPeter13 / AdbCommands
Created January 29, 2023 19:29 — forked from ernestkamara/AdbCommands
Adb useful commands list
== Adb Server
adb kill-server
adb start-server
== Adb Reboot
adb reboot
adb reboot recovery
adb reboot-bootloader
== Shell
@BlackPeter13
BlackPeter13 / GoogleDorking.md
Created January 27, 2023 23:23 — forked from sundowndev/GoogleDorking.md
Google dork cheatsheet

Google dork cheatsheet

Search filters

Filter Description Example
allintext Searches for occurrences of all the keywords given. allintext:"keyword"
intext Searches for the occurrences of keywords all at once or one at a time. intext:"keyword"
inurl Searches for a URL matching one of the keywords. inurl:"keyword"
allinurl Searches for a URL matching all the keywords in the query. allinurl:"keyword"
intitle Searches for occurrences of keywords in title all or one. intitle:"keyword"
@BlackPeter13
BlackPeter13 / .. MediaCreationTool.bat ..md
Created January 22, 2023 22:54 — forked from AveYo/.. MediaCreationTool.bat ..md
Universal MediaCreationTool wrapper for all MCT Windows 10 versions - MOVED TO github.com/AveYo/MediaCreationTool.bat
echo "INSTALLING DOCKER..."
echo
sudo apt update
sudo apt install apt-transport-https ca-certificates curl software-properties-common
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo gpg --dearmor -o /usr/share/keyrings/docker-archive-keyring.gpg
echo \
"deb [arch=amd64 signed-by=/usr/share/keyrings/docker-archive-keyring.gpg] https://download.docker.com/linux/ubuntu \
# sebelum execute:
# useradd -g users -s `which bash` -m app
# usermod -aG sudo app
# echo "enter app password for sudo"
# passwd app
# su - app
# execute: curl https://gist.github.com/akhdaniel/e7b989dc21907a535e11fa2f1c7bde52/raw/be000c190c779a89ee770505e3fde9aec0560ff4/install-opendax.txt | bash
echo "INSTALLING DOCKER..."
@BlackPeter13
BlackPeter13 / opendax install.md
Created June 27, 2022 20:28 — forked from akhdaniel/opendax install.md
opendax step by step install

1 Requiement VM

Minimum VM requirements for OpenDAX:

  • 8GB of RAM (12GB recommended)
  • 4 cores vCPU (6 cores recommended)
  • 300GB disk space (SSD recommended)
@BlackPeter13
BlackPeter13 / install.sh
Last active September 11, 2022 21:37
deb10req.sh
#!/bin/bash -x
COMPOSE_VERSION="1.23.2"
COMPOSE_URL="https://github.com/docker/compose/releases/download/$COMPOSE_VERSION/docker-compose-$(uname -s)-$(uname -m)"
# Opendax bootstrap script
install_core() {
sudo bash <<EOS
apt-get update
apt-get remove -y --purge unscd
@BlackPeter13
BlackPeter13 / setup.sh
Last active June 4, 2022 22:36 — forked from alinetskyi/setup.sh
Setup Debian machine for docker-compose
#!/bin/bash -x
COMPOSE_VERSION="1.23.2"
COMPOSE_URL="https://github.com/docker/compose/releases/download/$COMPOSE_VERSION/docker-compose-$(uname -s)-$(uname -m)"
# Opendax bootstrap script
install_core() {
sudo bash <<EOS
apt-get update
apt-get remove -y --purge unscd