Skip to content

Instantly share code, notes, and snippets.

View xewl's full-sized avatar
👾
Working the future

Ken Verhaegen xewl

👾
Working the future
View GitHub Profile
@xewl
xewl / minesweeper.php
Last active March 5, 2022 11:56
Stripped down Discord Minesweeper
<?php
// http://thisismywww.com/blog/2018/09/minesweeper-in-php/
// edited the above for some Discord fun.
// Note: 9x9 is prolly maximum grid
// 10x10 will leave off the last emoji for some reason
class MineSweeper {
@xewl
xewl / breakout.php
Last active September 16, 2021 13:44
WP Breakout
<?php
/**
* Plugin Name: WP Breakout
* Version: 0.0.1
* Description: Do not activate. Click "Visit plugin site".
* Plugin URI: /wp-content/plugins/breakout/breakout.php
* Update URI: #
*
* Put me in /wp-content/plugins/breakout/breakout.php
* or upload me in a "breakout.zip" file.
@xewl
xewl / natsortbykey
Last active August 29, 2015 14:20
PHP Naturally sorting an array by key
usort($array, function($a, $b) {
return strnatcmp($a['key'],$b['key']);
});