This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <html><head> | |
| </head><body> | |
| <div style="text-align: center"> | |
| <canvas width="640" height="360" id="canvas"> | |
| </canvas> | |
| <br>Click to change tiles. | |
| </div> | |
| <script type="text/javascript">(function() { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package yy; | |
| using StringTools; | |
| import haxe.Json; | |
| /** | |
| * This is largely a copy of haxe.format.JsonParser, except: | |
| * - Trailing commas are allowed | |
| * - Int64 literals are preserved as Int64, not cast to Float with precision loss | |
| * @author YellowAfterlife | |
| */ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using System; | |
| using System.Collections.Generic; | |
| using PluginLoader; | |
| using Terraria; | |
| /// Updated July 24, 2015 | |
| /// Updates: https://gist.github.com/YellowAfterlife/1edaa4060191823ee366 | |
| namespace YellowAfterlifePlugins { | |
| /// Item modification rules are defined as following: | |
| /// [item3507] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| //================================================================ | |
| // | |
| // raw_mouse.c - Win XP access to multiple mice via raw input | |
| // | |
| // To do: | |
| // | |
| // - Improve the method for weeding out the RDP Mouse. Find "status bits" (see below). | |
| // | |
| //================================================================ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import haxe.ds.*; | |
| import haxe.Constraints.IMap; | |
| @:transitive | |
| @:multiType(@:followWithAbstracts K) | |
| abstract Set<T>(IMap<T, Bool>) { | |
| public function new(); | |
| @:to static inline function toStringMap<K:String>(t:IMap<K, Bool>):StringMap<Bool> { | |
| return new StringMap<Bool>(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package terra; | |
| import openfl.Lib; | |
| import openfl.utils.ByteArray; | |
| import openfl.utils.Endian; | |
| import Ext.cfor; | |
| using utils.ByteArrayTools; | |
| /** | |
| * ... |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include <Windows.h> | |
| #include <stdio.h> | |
| #define dllx extern "C" __declspec(dllexport) | |
| dllx double delay(double ms) { | |
| Sleep((DWORD)ms); | |
| return 1; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| var i; | |
| i := 0; | |
| while (i < 10) begin | |
| show_message("o rly"); | |
| i := i + 1; | |
| end; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ==UserScript== | |
| // @name Discord: compact checkbox | |
| // @namespace https://yal.cc | |
| // @version 0.2 | |
| // @description try to take over the world! | |
| // @author YellowAfterlife | |
| // @match https://discord.com/* | |
| // @grant none | |
| // ==/UserScript== |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "name": "synext", | |
| "description": "", | |
| "scripts": ["synext.js"], | |
| "stylesheets": [] | |
| } |
NewerOlder