This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# AntiCheat configuration file | |
# Please report any bugs: https://github.com/gravitylow/AntiCheat/issues | |
xray: | |
# Should AntiCheat use calculations to try and find xrayers? | |
check-xray: false | |
# Should a warning be sent to admins when a person is found that could be xraying? | |
alert: false | |
# How often (in seconds) should AntiCheat check for xrayers if alert is true? | |
alert-interval: 60 | |
# Should players in creative mode be tracked for possible xray usage? |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/python3 | |
import time | |
# Center the text with the deli | |
def center_text(header: str, deli: str, size: int) -> str: | |
half = int(size / 2 - len(header) / 2) | |
return deli*half + " " + header + " " + deli*half | |
# Return True or False if index is in the no no spot | |
def nono(header: str, size: int, pos: int): |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# This will keep a list of repositories in sync. | |
# This is a one way parent -> fork | |
DATE=$(date -u +%F-%H-%M-%S) | |
SYNC_FOLDER=keep_sync_folder | |
KEY= | |
cd ~ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$data = $_POST["data"]; | |
$is_data = isset($data); | |
?> | |
<form method="post"> | |
<label> Key | |
<?php if ($is_data): ?> | |
<input name="data" type="text" value="<?= md5($data) ?>" size="30" /> | |
<?php else: ?> | |
<input name="data" type="password" size="30" /> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>Portal Site</title> | |
<meta name="description" content="Portal Site not Portal"/> | |
<meta name="keywords" content="Minecraft"/> | |
<link href='http://fonts.googleapis.com/css?family=Ubuntu' rel='stylesheet' type='text/css'> | |
<link href="//netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.css" rel="stylesheet"> | |
<style type="text/css" rel="stylesheet"> | |
body { |
NewerOlder