This is a SCRIPT-8 cassette.
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
Here is a test |
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
4 |
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
function(context, args) | |
{ | |
var alogrg = /(?:Connection from|Breach attempt from|(?:sys\..*) execution from) (.*\..*)/; // alicegex | |
var logwriterrg = /sys.write_log execution from (?:.*\..*)/; | |
var alogs = #ls.sys.access_log(); | |
var locs = []; | |
var logw = false; | |
for (var i=alogs.length-1; i >= 0; i--) { | |
if (logw) { | |
logw = false; |
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
function(context, args) | |
{ | |
var args = args || {}; | |
var cull = args.mode == 'cull'; | |
var upgs = #hs.sys.upgrades(); // get all upgrades | |
var crarities = args.rarities || [0, 1]; | |
var cexclude = args.exclude_type || ['tool', 'script_space']; | |
var showloaded = !!args.show_loaded; | |
var ctiers = args.tiers || [1]; | |
var rarities = ['n00b', 'kiddie', 'h4x0r', 'h4rdc0re', '|_|b3|2', '31337'] |
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
.386 | |
.model flat, stdcall | |
option casemap:none | |
include \masm32\include\windows.inc | |
include \masm32\include\kernel32.inc | |
include \masm32\include\user32.inc | |
include \masm32\include\msvcrt.inc | |
include \masm32\include\gdi32.inc |
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
# untrustworthy_boolean.har | |
function make_untrustworthy!(obj) do | |
if type(obj) != "boolean" then | |
abort("not a bool") | |
end | |
override obj.get do | |
trueval = obj.get!() | |
if Harmony::Random.select(1, 5) == 1 then | |
trueval = not trueval |
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
--[[ | |
classes.lua | |
version 1.1 | |
changelog: | |
+ 1.1: getters and setters | |
"Rin, what the actual fuck" |
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 System.Linq; | |
using System.Text; | |
using System.Threading.Tasks; | |
using OpenTK.Graphics.OpenGL; | |
namespace GLExperiments | |
{ | |
public class GLVertexArrayObject |
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
--[[ | |
classes.lua | |
version 1.1.1 | |
changelog: | |
+ 1.1.0: getters and setters | |
+ 1.1.1: made errors bubble up properly because yeah | |
"Rin, what the actual fuck" |
OlderNewer