Skip to content

Instantly share code, notes, and snippets.

@twinpigs
twinpigs / README.md
Created April 16, 2024 09:50 — forked from opyate/README.md
Simple no-cache gamedev-friendly Python 3 webserver for testing web builds locally

Seeing this when running an HTML5 Godot game?

image

This is a simple no-cache Python 3 gamedev-friendly webserver which runs on port 4443.

Run with

python3 gamedevweb.py
@twinpigs
twinpigs / index.php
Last active April 24, 2019 12:06
funpay
<?php
$messages = [
"Пароль: 3762
Спишется 458,3р.
Перевод на счет 4100134534578",
"Пароль: 3762
Спишется 4583р.
Перевод на счет 4100134534578",
"Для перевода 552,4 рублей на кошелек 4100134534579998 введите код 3762",
@twinpigs
twinpigs / gist:614f0c3d755f788653ff8eb8dd9a3de7
Created August 12, 2016 15:32 — forked from timonweb/gist:3165322
Code to catch all PHP errors which result in 500 Error Code. Include this snippet at the beginning of index.php file
<?php
define('E_FATAL', E_ERROR | E_USER_ERROR | E_PARSE | E_CORE_ERROR |
E_COMPILE_ERROR | E_RECOVERABLE_ERROR);
define('ENV', 'dev');
//Custom error handling vars
define('DISPLAY_ERRORS', TRUE);
define('ERROR_REPORTING', E_ALL | E_STRICT);