Generate private key:
openssl ecparam -name prime256v1 -genkey -out irc_nist256.pem
#!/bin/sh | |
########################################################################################## | |
# Script to be placed in /etc/initramfs-tools/hooks/ipv6 | |
# | |
# These initramfs IPv6 scripts were originally made by zajdee, and were modified by Someguy123 | |
# at Privex Inc. ( https://www.privex.io ) to fix some issues and add debug logging. | |
# | |
# It can be found online here: https://gist.github.com/Someguy123/8092bdc9834aa210fb4bd1523e9a1c38 | |
# | |
# (Original Gist this was based off of (broken script!): https://gist.github.com/zajdee/65aad61f35d3a63c56c7d1cc76c22e14) |
""" | |
This is a Python adapter class for the Insight block explorer software, which can query the Insight API for | |
various public block explorers, such as BitPay's multi-coin block explorer ( https://bitpay.com/insight/ ) , | |
and Loshan's LiteCore LTC Insight explorer ( https://insight.litecore.io ). | |
This adapter was written by Chris (Someguy123) ( https://github.com/Someguy123 ), originally | |
for use in Privex's Payment Gateway ( https://pay.privex.io ), as well as | |
AnonSteem ( https://anon.steem.network ), and BeeAnon ( https://beeanon.com ). | |
License: X11 / MIT |
################## | |
# | |
# This is a ZSH/Bash function that helps you to quickly publish one or more GPG keys to | |
# several keyservers using just one command. | |
# | |
# Add the below code to your ~/.bashrc or ~/.zshrc (or put it in a separate file, if you | |
# understand how and why to source files - whatever you prefer). | |
# | |
# You can use it like so: | |
# |
#!/usr/bin/env zsh | |
###################################################################################################### | |
# | |
# IP Extraction + IP Stats Functions for ZSH | |
# Written by Someguy123 ( https://github.com/Someguy123 || https://www.privex.io ) | |
# Date: 2021-05-31 | |
# License: X11 / MIT | |
# | |
# Usage: | |
# copy paste the commands at the start, to install the deps needed. |
############################ | |
# Excerpt of /etc/caddy/Caddyfile from Privex Inc's Synapse server ( matrix.privex.io / privex.io ) | |
# Released under X11 / MIT License | |
# (C) 2021 Privex Inc. - Affordable + Privacy friendly server hosting at https://www.privex.io | |
############################ | |
matrix.privex.io, se1.matrix.privex.io { | |
root * /var/www/html | |
# Enable the static file server. | |
file_server | |
# We hardcode the JSON into the .well-known routes for convenience and fast responses |
privexinc Privex Inc. #PrivacyMatters We're a cloud services company that cares about your privacy. Belize City, Belize
I hereby claim:
#!/usr/bin/env bash | |
############################################################################################ | |
# Linux Kernel Commandline Parsing Shellscript Functions | |
# | |
# These functions have been written in a way that they should be compatible | |
# with almost any "standard" UNIX/Linux shell, including: sh, bash, ash, dash, zsh | |
# | |
# They are designed to be sourced from (or copy pasted into) another shellscript, | |
# and used to parse / query the Linux kernel commandline ( /proc/cmdline ), or strings | |
# which use a similar key=value format. |
# The Caddyfile is an easy way to configure your Caddy web server. | |
# | |
# Unless the file starts with a global options block, the first | |
# uncommented line is always the address of your site. | |
# | |
# To use your own domain name (with automatic HTTPS), first make | |
# sure your domain's A/AAAA DNS records are properly pointed to | |
# this machine's public IP, then replace the line below with your | |
# domain name. | |
:80 |
#!/usr/bin/env python3.8 | |
""" | |
# ------------------------------------------------------ | |
# | |
# Hive/Steem RPC get_block benchmarker | |
# Written by Someguy123 (github.com/Someguy123) | |
# | |
# (C) 2020 Someguy123 / Privex || License: X11 / MIT | |
# Buy a server from Privex! https://www.privex.io | |
# |