Skip to content

Instantly share code, notes, and snippets.

@jfmherokiller
jfmherokiller / PossiblePissParticleEffect.lsl
Last active October 25, 2019 18:07
PuddlePantsProjectArrousalAddon
//: 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([
@jfmherokiller
jfmherokiller / BabyTalk.lsl
Last active October 20, 2019 23:15
open collar/rlv scripts
key g_kWearer;
integer g_iGarbleChan;
integer g_iGarbleListen;
string g_sPrefix;
integer bOn;
key g_kBinder;
/* ==UserStyle==
@name Bepis
@namespace github.com/openstyles/stylus
@version 1.0.0
@description A new userstyle
@author Me
@preprocessor less
==/UserStyle== */
@-moz-document regexp(.*) {
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);}());
// ==UserScript==
// @name BlackenPage
// @version 1.0.3
// @match http://*/*
// @match https://*/*
// @grant GM_xmlhttpRequest
// @run-at document-start
// ==/UserScript==
@jfmherokiller
jfmherokiller / Renaton.pas
Created January 14, 2019 00:48
Renaton Possible POC script for xedit
unit Unit3;
interface
implementation
{
New script template, only shows processed records
Assigning any nonzero value to Result will terminate script
}
@jfmherokiller
jfmherokiller / FixHashes.ps1
Last active December 25, 2018 04:26
function that can fix those hashes in wd2
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)
#!/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
// ArrowKeyStringConstruction.cpp : Defines the entry point for the console application.
//
//#pragma warning(disable : 4996)
// System headers
#include <switch.h>
//#include <conio.h>
@jfmherokiller
jfmherokiller / CMakeLists.txt
Last active July 12, 2024 23:26
towel.blinkenlights.nl switch example
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 )