- test
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 | |
// Hash file using sha512, salt and a secret key. | |
// By github.com/lesander | |
// DON'T FORGET TO EDIT YOUR $secretkey !!! | |
// - Hashing your Password - | |
// Example 1 Request: | |
// http://domain.com/hash.php?s=myPassword | |
// Example 1 Result: |
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 | |
# MAC Address Switcher v1.1.0 | |
# Written by lesander - http://github.com/lesander | |
# Licensed under GPLv3 | |
# Tested on Ubuntu 14.04 | |
# - Set MAC addresses and settings. | |
address1="" | |
address2="" |
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/env/python3 | |
# | |
# Tic Tac Toe in Python 3 | |
# Licensed under the MIT License | |
# | |
# This was created as part | |
# of a one-hour code challenge. | |
import subprocess |
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/env bash | |
# Plex update script | |
# requires jq, curl, wget and sha1sum | |
# written for debian systemd environments | |
# CONFIGURATION | |
url="https://plex.tv/api/downloads/5.json?channel=plexpass" | |
package="plexmediaserver" | |
service="$package.service" | |
build="linux-x86_64" |