Skip to content

Instantly share code, notes, and snippets.

<?php
/**
* Copyright (c) 2024 tehbeard
*
* Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files
* (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify,
* merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
@tehbeard
tehbeard / gex-decompiler.html
Last active June 3, 2024 18:21
Gamemaker 7.1/8 GEX decompiler
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>GameMaker 7/8.1 GEX decompiler</title>
</head>
<body>
<h1>GameMaker 7/8.1 GEX decompiler</h1>
<p>
@tehbeard
tehbeard / gist:1292348
Created October 17, 2011 10:24
MC RCON (1.9pr4)
<?php
/*
RCON remote console class, modified for minecraft compability by Tehbeard.
!!!YOU MUST CONFIGURE RCON ON YOUR MINECRAFT SERVER FOR THIS TO WORK
AT TIME OF WRITING ONLY 1.9pr4+ HAVE BUILTIN RCON SUPPORT!!!
Example Code:
============
include_once("rcon.class.php"); //Include this file
@tehbeard
tehbeard / complex-reflection.php
Created January 19, 2023 21:07
Testing classes against complex types
<?php
/*
Function to test a class type against a potentially complex type
Should handle Disjunctive Normal Form Types as well (A&B)|C|null
*/
function matchesType(string $class, ReflectionNamedType|ReflectionIntersectionType|ReflectionUnionType $type): bool
{
if ($type instanceof ReflectionNamedType) {
return is_a($class, $type->getName(), true);
} else if ($type instanceof ReflectionIntersectionType) {
@tehbeard
tehbeard / fullTextDB.ts
Created March 27, 2021 16:29
Mucking around with Full text search and IndexedDB.
import { openDB, IDBPDatabase, DBSchema, IDBPTransaction,IDBCursorDirection } from "idb/with-async-ittr";
import { stemmer } from "./stemmer";
const TBL_ENTRY = "FTSEntry";
const IDX_BY_SCORE = "byScore";
const IDX_BY_DOC_ID = "byDocId";
type FTSEntry = { id: any, word: string , count: number };
interface FullTextSchema extends DBSchema {
@tehbeard
tehbeard / gist:d91c0cbfcc438ad7af4c310462f6f961
Created October 21, 2016 20:58
Minecraft PE 0.16 - Addon Component name list
minecraft:identifier
minecraft:collision_box
minecraft:projectile
minecraft:type_family
minecraft:fall_damage
minecraft:movement
minecraft:health
minecraft:nameable
minecraft:loot
minecraft:attack
@tehbeard
tehbeard / minecraft-head-canvas.html
Created March 7, 2016 22:00
Old minecraft canvas head script.
<!DOCTYPE html>
<html>
<head>
<title>Minecraft heads using Canvas 2D</title>
<script src='http://ajax.googleapis.com/ajax/libs/jquery/2.0.0/jquery.min.js'></script>
<style>
canvas{
width: 320px;
height: 320px;
/*border: 2px solid black;*/
@tehbeard
tehbeard / refs.js
Created January 15, 2016 23:44
Experiments with js-git
Trying to understand generators and yield, and create a listRefs() implementation for file backed repos.
2013-11-27 16:21:34 [INFO] [BeardAch] Loading Data Adapters
2013-11-27 16:21:35 [INFO] [BeardAch] Installing default triggers and rewards
2013-11-27 16:21:35 [WARNING] [BeardAch] [counter] Increment counter depends on BeardStat which is not found, this reward has been disabled. This may cause errors if an achievement is built using this.
2013-11-27 16:21:35 [WARNING] [BeardAch] [subgroup] (DroxPerms) add subgroup depends on DroxPerms which is not found, this reward has been disabled. This may cause errors if an achievement is built using this.
2013-11-27 16:21:35 [WARNING] [BeardAch] [promote] (DroxPerms) Promote along track depends on DroxPerms which is not found, this reward has been disabled. This may cause errors if an achievement is built using this.
2013-11-27 16:21:35 [WARNING] [BeardAch] [money] (vault) Give money depends on Vault which is not found, this reward has been disabled. This may cause errors if an achievement is built using this.
2013-11-27 16:21:35 [WARNING] [BeardAch] [vaultaddgroup] (Vau
public class PasteCommand extends CommandBase {
private final SchematicFile schFile;
public PasteCommand(SchematicFile schFile) {
this.schFile = schFile;
}
@Override
public String getCommandName() {