Skip to content

Instantly share code, notes, and snippets.

/* ==UserStyle==
@name unfuck discord
@namespace easrng
@version 0.0.2
@author easrng
==/UserStyle== */
@-moz-document domain("discord.com") {
:root {
--font-primary: "Roboto", "Noto Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
--font-display: "Roboto", "Noto Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
@InvoxiPlayGames
InvoxiPlayGames / physical_store_win7.hexpat
Created February 18, 2025 12:16
ImHex pattern for the SPPSVC "Physical Store" files used in Windows 7
#include <std/mem.pat>
u8 hmac_key[0x10] @ 0x0;
u8 hmac_sha[0x14] @ 0x10;
enum blocktype : u32 {
None = 0,
Named = 1,
Attribute = 2,
Timer = 3,
@nessus42
nessus42 / destiny-networking-revised.md
Last active April 1, 2025 05:11
How Networking Works in Destiny 1 and How It Will Differ in Destiny 2 (According to Bungie, Redux)
@mattypiper
mattypiper / stringobf-cpp11.cpp
Last active September 28, 2021 09:29
compile time string obfuscation
// http://www.rohitab.com/discuss/topic/39611-malware-related-compile-time-hacks-with-c11/
#include <stdio.h>
#include <stdint.h>
//-------------------------------------------------------------//
// "Malware related compile-time hacks with C++11" by LeFF //
// You can use this code however you like, I just don't really //
// give a shit, but if you feel some respect for me, please //
// don't cut off this comment when copy-pasting... ;-) //