** Get $25 / $20 / $15 / $10 free DigitalOcean Credit.**
- First open this link and Sign Up to get your $10 credit.
- While filling your billing info, click on "Have a Promo Code?" at the bottom of the page.
** Get $25 / $20 / $15 / $10 free DigitalOcean Credit.**
Have a good day!
#!/usr/bin/env php | |
<?php | |
$debug = true; // Set this to true to avoid automatic updates of this script | |
echo "mtproxyd - Copyright by Daniil Gentili, licensed under AGPLv3\n\n"; | |
if (!isset($argv[2])) { | |
echo "Usage: ".$argv[0]." seed port\n\nseed is any string or word that will be used as seed to generate the proxy secret\nport is the port where to start listening for connections\n"; | |
exit(1); | |
} |
{ | |
"port":1984, | |
"secret":"e3095bafa2e03884de07fe6a7bcb8a85" | |
} |
{ | |
"port":443, | |
"secret":"e13d0063bcb58dbdd13576ca760749d3" | |
} |
#!/bin/bash | |
exists() | |
{ | |
command -v "$1" >/dev/null 2>&1 | |
} | |
service_exists() { | |
local n=$1 | |
if [[ $(systemctl list-units --all -t service --full --no-legend "$n.service" | sed 's/^\s*//g' | cut -f1 -d' ') == $n.service ]]; then | |
return 0 |
#!/bin/bash | |
BALANCE=$(yarn --cwd /root/ironfish/ironfish-cli/ start accounts:balance) | |
AMOUNT=$(echo $BALANCE | grep -Eo 'spend\: \$IRON ([0-9]+\.[0-9]+)' | cut -c 13-) | |
if (( $(echo "$AMOUNT >= 0.10000001" |bc -l) )); then | |
$(yarn --cwd /root/ironfish/ironfish-cli/ start deposit) | |
fi |
#!/bin/bash | |
BALANCE=$(yarn --cwd /root/ironfish/ironfish-cli/ start accounts:balance) | |
AMOUNT=$(echo $BALANCE | grep -Eo 'spend\: \$IRON ([0-9]+\.[0-9]+)' | cut -c 13-) | |
if (( $(echo "$AMOUNT >= 0.10000001" |bc -l) )); then | |
$(yarn --cwd /root/ironfish/ironfish-cli/ start deposit --confirm) | |
fi |
#!/bin/bash | |
BALANCE=$(yarn --cwd ~/ironfish/ironfish-cli/ start accounts:balance) | |
AMOUNT=$(echo $BALANCE | grep -Eo 'spend\: \$IRON ([0-9]+\.[0-9]+)' | cut -c 13-) | |
if (( $(echo "$AMOUNT >= 0.10000001" |bc -l) )); then | |
$(yarn --cwd ~/ironfish/ironfish-cli/ start deposit --confirm) | |
fi |
<?php //version my202 | |
//set allowTestMenu to false to disable System/Server test page | |
$allowTestMenu = true; | |
$use_mysqli = function_exists("mysqli_connect"); | |
header("Content-Type: text/plain; charset=x-user-defined"); | |
error_reporting(0); | |
set_time_limit(0); |