Skip to content

Instantly share code, notes, and snippets.

@ottosch
ottosch / fork-helper.py
Last active January 18, 2023 22:06
A script to help using ymgve's bitcoin_fork_claimer script
#!/usr/bin/env python
# This script is meant to be used with bitcoin_fork_claimer: https://github.com/ymgve/bitcoin_fork_claimer
# The outputs of this script are the inputs to that script.
# Python 2.x is required
import urllib2
import json
import sys
import collections
@Deshke
Deshke / ark_server.sh
Created December 27, 2015 10:08
update and start ark survival evolved linux server
#!/bin/bash
# nedded mcrcon (https://github.com/Tiiffi/mcrcon.git)
# update the vars, and set down below #start_server the install dir
BASE_DIR=""
STEAM_CMD="path to steamcmd.sh"
RCON_PW=""
RCON_HOST="localhost"
RCON_PORT=""
@nouseforname
nouseforname / rcon.sh
Last active October 15, 2020 16:59 — forked from mbasaglia/rcon.sh
#!/bin/bash
SERVER='localhost'
PORT='26000'
PASSWORD='foo'
SECURE=0
SECURE_PORT="1234"
RCON_HEADER=$(echo -e "\xff\xff\xff\xff")
ESCAPE_CHAR=$(echo -en "\x1b")
@mbasaglia
mbasaglia / rcon.sh
Created June 5, 2014 21:04
A shell script which executes rcon commands
#!/bin/bash
SERVER='localhost'
PORT='26000'
PASSWORD='foo'
SECURE=0
SECURE_PORT="1234"
RCON_HEADER=$(echo -e "\xff\xff\xff\xff")
ESCAPE_CHAR=$(echo -en "\x1b")