Skip to content

Instantly share code, notes, and snippets.

@le717
le717 / lego-backlot.pyw
Last active July 14, 2019 22:14
LEGO Backlot dummy server. Used to save/load player progress.
"""
LEGO Backlot dummy server.
Used to save/load player progress.
Original PHP code by JrMasterModelBuilder.
Ported to Python by le717.
"""
<?php
function valid_cc_expire_format($val) {
return (bool) preg_match('/\d{2}\/\d{4}/', $val);
}
function valid_cc_expire_value($val) {
$currentMonth = intval(date('n'));
$currentYear = intval(date('Y'));
$r = preg_match('/(\d{2})\/(\d{4})/', $val, $matches);
@le717
le717 / gist:c698671893aa2a1ab8ac
Last active May 9, 2018 13:50 — forked from howtogeek/gist:6b3ed7d917900229b37e
Change font to Comic Sans if reader is using Adblock (and display a message at the top)
<script type="text/javascript">
var iframe = document.createElement("iframe");
iframe.height = "1px";
iframe.width = "1px";
iframe.id = "ads-text-iframe";
iframe.src = "/adframe.js";
document.body.appendChild(iframe);
var a = [
"In a world free from ads, one font reigns supreme. COMIC SANS!",
@le717
le717 / american-date.php
Created November 5, 2016 21:40
ACTUAL CODE I HAD TO WRITE BECAUSE PHP'S DATE PARSING IS GFXJDNVJVXJHZGVFHDSVXFHZFHSZDBMDBGMNGDFCVNG
<?php
/**
* Convert a date to the "American" date format.
*
* While one may assume this function appropriately rearranges the
* date format to follow the American MM/DD/YYYY format, in reality
* and by intention, this function is very naive. All it does is replace
* all dashes and periods with a forward-slash, preserving all ordering
* and leaving that up to the caller.
* This behavior is to allow PHP to correctly parse dates in the American
@le717
le717 / FilterFiles.py
Last active January 3, 2016 17:49
From my tutorial "Display Only Certain File Types - Blender 2.6 API" (http://wp.me/p1V5ge-190)
from bpy.props import StringProperty
from bpy_extras.io_utils import ImportHelper
class LDRImporterOps(bpy.types.Operator, ImportHelper):
"""LDR Importer Operator"""
bl_idname = "import_scene.ldraw"
bl_description = "Import an LDraw model (.ldr/.dat)"
bl_label = "Import LDraw Model"
@le717
le717 / checkacronym.js
Last active December 30, 2015 01:48
Match an acronym with it's full game name.
/*
Created 2013 Triangle717
<http://Triangle717.WordPress.com/>
Please contact me at the address above if
you use this script in any of your work. :)
*/
// Object containing the game names and acronyms
@le717
le717 / tracking-cookie.html
Created October 1, 2015 14:40
Expanded form of sneaky tracking cookie system as exposed in https://wp.me/p1V5ge-23v
<?php
if (PHP_OS == 'WIN32' || PHP_OS == 'WINNT') {
define('EOL', "\r\n");
} else if (PHP_OS == 'Linux') {
define('EOL', "\n");
} else {
define('EOL', "\n");
}
?>
@le717
le717 / such-scoping-and-variables.py
Last active August 29, 2015 14:17
I have no clue what younger me was trying to do. At all. File dated January 9, 2013.
def circle_info(Peri, Area):
if select == "Area":
area_of_circle(rad)
elif select == "Peri":
peri_of_circle(rad)
else:
print("Sorry, invalid selection.")
def area_of_circle(rad):
return (3.14 * (rad ** 2))
def peri_of_circle(rad):
class SOPOMessages:
def __init__(self):
self.__encodeLegend = {}
self.__decodeLegend = {}
# Only decode the legends once per instance
# We only need to check if the encoding legend is generated
# for both legends are generated at the same time
if len(self.__encodeLegend) == 0: