https://gyazo.com/eb5c5741b6a9a16c692170a41a49c858.png

<?php | |
/** | |
* Get UUID from Username | |
* | |
* @param string $username | |
* @return string|bool UUID (without dashes) on success, false on failure | |
*/ | |
function username_to_uuid($username) { | |
$profile = username_to_profile($username); |
/** | |
* The following code, when executed in a browser's JS console, | |
* will log detailed information about every XHR made from the | |
* web page. Perfect for spying on API calls. | |
*/ | |
(function() { | |
var XHR = XMLHttpRequest.prototype; | |
// Remember references to original methods | |
var open = XHR.open; | |
var send = XHR.send; |
#! /usr/bin/python | |
import Queue | |
from pyroute2 import IPDB | |
import signal | |
import threading | |
work_queue = Queue.Queue() | |
ip = IPDB() |
package main | |
import ( | |
"fmt" | |
"io/ioutil" | |
"net" | |
"net/http" | |
"os" | |
"time" | |
) |
<?php | |
$short = array( | |
'Jan', | |
'Feb', | |
'Mar', | |
'Apr', | |
'May', | |
'Jun', | |
'Jul', |
/* | |
##Device = Desktops | |
##Screen = 1281px to higher resolution desktops | |
*/ | |
@media (min-width: 1281px) { | |
/* CSS */ | |
# === Optimized my.cnf configuration for MySQL/MariaDB (on Ubuntu, CentOS, Almalinux etc. servers) === | |
# | |
# by Fotis Evangelou, developer of Engintron (engintron.com) | |
# | |
# ~ Updated September 2024 ~ | |
# | |
# | |
# The settings provided below are a starting point for a 8-16 GB RAM server with 4-8 CPU cores. | |
# If you have different resources available you should adjust accordingly to save CPU, RAM & disk I/O usage. | |
# |
No, seriously, don't. You're probably reading this because you've asked what VPN service to use, and this is the answer.
Note: The content in this post does not apply to using VPN for their intended purpose; that is, as a virtual private (internal) network. It only applies to using it as a glorified proxy, which is what every third-party "VPN provider" does.
package main | |
import ( | |
"net/http" | |
"os" | |
"bytes" | |
"path" | |
"path/filepath" | |
"mime/multipart" | |
"io" |