- Open DOSBox configuration
- Scroll down until you see the
[serial]section. - Set one of the 4 serial values to contain
nullmodem server:192.168.0.192 port:7733 transparent:1.
Here I set it to 1. But you can use any of the 4, just remember which one you set it! We will need that number later!
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
| #name|anthro|feral|flags|pos|rot | |
| Walk Right|stand|wolf_stance1|8|<-0.25,-0.65,0> | |
| Walk Left|stand|wolf_stance1|8|<-0.25,0.65,0> | |
| Sit|stand|wolf_sit,wolf_head_1|0|<0,0,0>|<0,0,0,0> | |
| Lap|sitting_pet|wolf_lay6|0|<-0.081803, 0.226859, -0.460814>|<0.000000, 0.000000, -0.707107, 0.707107> |
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/env python3 | |
| import struct | |
| import socket | |
| import sys | |
| import traceback | |
| import random | |
| import libfurc.client | |
| import libfurc.base | |
| import io | |
| import asyncio |
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
| From 2add8423816e98c76419a8aeb22b599e4f5097a1 Mon Sep 17 00:00:00 2001 | |
| From: Kyler Eastridge <[email protected]> | |
| Date: Wed, 19 Jul 2023 14:00:35 -0400 | |
| Subject: [PATCH] Fix OpenSSL V21 padding deprecation | |
| --- | |
| perform.c | 9 +++++++++ | |
| 1 file changed, 9 insertions(+) | |
| diff --git a/perform.c b/perform.c |
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/env python3 | |
| import argparse | |
| import struct | |
| import os | |
| ROMHeader = b"Sony Computer Entertainment Inc\x2e\0" | |
| ConsoleTypes = { | |
| "C": "Retail", | |
| "D": "Debug", | |
| "T": "Developer", |
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/env python3 | |
| import asyncio | |
| import math | |
| def b95encode(i, size = None): | |
| out = b"" | |
| while i > 0: | |
| out = bytes([i % 95 + 32]) + out | |
| i = i // 95 | |
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/env python3 | |
| from PIL import Image | |
| from PIL import ImageShow | |
| ImageShow.register(ImageShow.DisplayViewer, 0) | |
| def lerp(a, b, p): | |
| return a + p * (b - a) | |
| def bilinear(a, b, c, d, x, y): |
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
| * Ensure it is set to zero. It should already be set to zero but do it just in case. | |
| (0:0) When everything is starting up, | |
| (5:300) set variable %dreamclosed to the value 0. | |
| * Restrict it to the owner | |
| (0:31) When someone says {!closedream}, | |
| (1:10) and they are the Dream owner, | |
| (5:300) set variable %dreamclosed to the value 1. | |
| * This works because anyone entering the dream will trigger it |
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
| import logging | |
| from django.conf import settings | |
| from django.urls import get_urlconf, set_urlconf | |
| logger = logging.getLogger(__name__) | |
| #We only really need the lower case variant, so cast it to lower case | |
| #instead of doing it every time | |
| ROOT_HOSTROOT = ("localhost",) | |
| if hasattr(settings, "ROOT_HOSTROOT"): |
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/env python3 | |
| import struct | |
| import io | |
| """ | |
| * indicates comment, this is read until newline | |
| { indicates string literal start. | |
| } indicates string literal end. | |
| @ indicates raw integer variable number. (EG: @12) | |
| % indicates integer variable. (EG: %fdsa) | |
| ~ indicates a string variable. |