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
# trying to solve this user's mojibake | |
# so far no encoding pairs or encoding quads have done it. | |
# https://www.reddit.com/r/softwaregore/comments/1gdlcjb/all_i_did_was_hit_print/ | |
# Notes: | |
# * It's an all caps font. | |
# * It's encoding consistantly, E is always 8... | |
# * It feels ebcdic-ish, but not sure how. | |
from encodings.aliases import aliases |
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 <stdio.h> | |
#include <stddef.h> | |
#include <stdbool.h> | |
#include <stdlib.h> | |
#include <ctype.h> | |
struct json_array_t; | |
typedef struct json_array_t json_array_t; |
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 <asm/unistd.h> | |
#include <inttypes.h> | |
#include <linux/perf_event.h> | |
#include <stdio.h> | |
#include <sys/mman.h> | |
#include <unistd.h> | |
#include <stdint.h> | |
static uint64_t mul_u64_u32_shr(uint64_t cyc, uint32_t mult, uint32_t shift) { | |
__uint128_t x = cyc; |
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
module source.app; | |
import std.algorithm; | |
import std.stdio; | |
import std.string; | |
import std.array; | |
import std.file; | |
import std.conv : to; | |
import core.stdc.ctype; |
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
unary_polyfill_config = { | |
typename = 'Unary'; | |
aliases = { | |
'+@' = '+/1'; | |
'+' = '+/2'; | |
'-@' = '-/1'; | |
'-' = '-/2'; | |
:0 | |
}(); | |
debug = {}; |
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
---- Minecraft Crash Report ---- | |
WARNING: coremods are present: | |
CTMCorePlugin (CTM-MC1.12-0.2.3.12.jar) | |
EnderCorePlugin (EnderCore-1.12.2-0.5.20.jar) | |
BedPatch (bedpatch-2.2-1.12.2.jar) | |
TheBetweenlandsLoadingPlugin (TheBetweenlands-3.3.7-core.jar) | |
OpenModsCorePlugin (OpenModsLib-1.12.2-0.11.5.jar) | |
AstralCore (astralsorcery-1.12.2-1.8.5.jar) | |
LoadingPlugin (Quark-r1.4-123.jar) |