Skip to content

Instantly share code, notes, and snippets.

@czow
czow / redis_sync_init.php
Last active January 28, 2026 23:25
Transfer ratings from MySQL to a Redis cache for fast leaderboard query
<?php
mysqli_report(MYSQLI_REPORT_ERROR);
$env = parse_ini_file(__DIR__."/../.env");
$mysqli = new mysqli("localhost", $env["DB_USER"], $env["DB_PASS"], $env["DB_NAME"]);
if ($mysqli->connect_error)
{
exit("Connection failed: " . $mysqli->connect_error . "\n");
}
@czow
czow / ActivityStats.php
Last active January 28, 2026 06:10
Measure player activity in a Team Fortress 2 server
<?php
date_default_timezone_set('UTC');
mysqli_report(MYSQLI_REPORT_ERROR);
/**
* Compiles an activity sheet in JSON format from a database populated by the 'MGE'
* and 'Private Analytics' plugins:
*
* * https://forums.alliedmods.net/showthread.php?p=2723595
* * https://forums.alliedmods.net/showthread.php?p=1448559