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
//: This script was generated by the Master Particle Studio HUD v11.6 on 2019-10-25. | |
ParticleEngine(string xTexture) | |
{ | |
//: Particle Mask | |
integer flags = 0 | PSYS_PART_INTERP_COLOR_MASK | PSYS_PART_INTERP_SCALE_MASK; | |
//: Particle Engine | |
llParticleSystem([ |
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
key g_kWearer; | |
integer g_iGarbleChan; | |
integer g_iGarbleListen; | |
string g_sPrefix; | |
integer bOn; | |
key g_kBinder; |
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
/* ==UserStyle== | |
@name Bepis | |
@namespace github.com/openstyles/stylus | |
@version 1.0.0 | |
@description A new userstyle | |
@author Me | |
@preprocessor less | |
==/UserStyle== */ | |
@-moz-document regexp(.*) { |
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
javascript:(function(fontUrl,font,style){if(location.protocol==='https:'){fontUrl='https://cdn.jsdelivr.net/gh/RoelN/SansBullshitSans/SansBullshitSans.ttf'}else{fontUrl='http://cdn.jsdelivr.net/gh/RoelN/SansBullshitSans/SansBullshitSans.ttf';}font='@font-face{font-family:SansBullshitSans;src:url('+fontUrl+');font-weight:normal}';style=document.createElement('style');style.innerHTML=font+'*{font-family:SansBullshitSans;font-feature-settings:\'liga\',\'dlig\';font-variant-ligatures:common-ligatures;}';document.head.appendChild(style);}()); |
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 BlackenPage | |
// @version 1.0.3 | |
// @match http://*/* | |
// @match https://*/* | |
// @grant GM_xmlhttpRequest | |
// @run-at document-start | |
// ==/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
unit Unit3; | |
interface | |
implementation | |
{ | |
New script template, only shows processed records | |
Assigning any nonzero value to Result will terminate script | |
} |
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 FixHashes($XMLFilePath) { | |
function HexToString($i) { | |
$r = "" | |
for ($n = 0; $n -lt $i.Length; $n += 2) | |
{$r += [char][int]("0x" + $i.Substring($n,2))} | |
return $r | |
} | |
function ProduceHashTable() { | |
#Get a fresh version of the list | |
$TehContent = ((Invoke-WebRequest "https://gist.githubusercontent.com/wasdennnoch/17ae986e1960b9723a476e0d424fb036/raw/c4794191cdfef3ff7347aec80cc8f638fa3212af/merged_wd_crc32_dump.txt").Content).Split([Environment]::NewLine) |
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
#!/usr/bin/python3 | |
""" | |
WARNING: The code you are about to view is DISGUSTING | |
I wrote most of it months ago, so don't ask me what it's doing, or why. | |
""" | |
import struct | |
import sys |
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
// ArrowKeyStringConstruction.cpp : Defines the entry point for the console application. | |
// | |
//#pragma warning(disable : 4996) | |
// System headers | |
#include <switch.h> | |
//#include <conio.h> |
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
cmake_minimum_required(VERSION 3.5) | |
set(CMAKE_C_STANDARD 11) | |
set(CMAKE_CXX_STANDARD 11) | |
add_executable(stelenet stelnet.c) | |
target_link_libraries(stelenet -lnx ) |