Something that I dislike is that how you have people on the far side of political spectrums go "It's Us vs. Them" and refusing to associate with anyone who isn't politically like minded, so the point they may even shove out those who are centristic in view. (I've seen people claim "Centrists want to find a middle ground between <extreme stance 1> and <extreme stance 2>", like say, between "equal rights" and "slavery")
It leads to people who aren't like this to become suspicious of associating with anyone who is on that side.
For example:
Let's say Side A has few members who are far sided and shun anyone who doesn't agree with them. Then you have some members who are Side B who have differing views, but are level headed and respect other's opinions. (Respect != agree, important distinction here!)
The far sided Side A members see these Side B members show up to a place, and tell Side B "We don't want you here, we don't like ". Side B
This file contains 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
// WARNING: THIS MAY CONTAIN BUGS | |
// I hereby waive all rights to this code to Linden Lab / Second Life | |
// Should be covered by contributor agreement anyway, I think? | |
// Everyone else can use this as LGPL. | |
#include "library.h" | |
#include "linden_common.h" | |
#include "lscript_library.h" | |
void llList2TypedString(LLScriptLibData *retval, LLScriptLibData *args, const LLUUID &id) |
This file contains 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 | |
with open("comm.dat", "rb") as f: | |
d = f.read() | |
d = bytearray(d) | |
key = 0 | |
for i in range(len(d)): | |
d[i] = d[i] ^ ((key * 43) % 256) | |
key += 1 |
This file contains 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 Crypto.Cipher import AES | |
from Crypto.Util.Padding import unpad | |
import gzip | |
STEAMCHINA_ENCRYPTION_KEY = bytes([ | |
0x06, 0x89, 0x2a, 0x9c, 0x7d, 0x9b, 0xc6, 0x98, | |
0xc0, 0xf9, 0x03, 0x36, 0x0e, 0x3c, 0x22, 0x88, | |
0xba, 0x3d, 0xe4, 0x0f, 0xf7, 0x11, 0x01, 0xc2, | |
0x04, 0xb5, 0x20, 0xbe, 0x22, 0xc2, 0xad, 0xa4 |
This file contains 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
[felix@crocuta furc3ds]$ cmake -DCMAKE_BUILD_TYPE=Debug -DPLATFORM=N3DS -B build . | |
-- The CXX compiler identification is GNU 14.2.0 | |
-- Detected multilib folder: armv6k/fpu | |
-- Detecting CXX compiler ABI info | |
-- Detecting CXX compiler ABI info - done | |
-- Check for working CXX compiler: /opt/devkitpro/devkitARM/bin/arm-none-eabi-g++ - skipped | |
-- Detecting CXX compile features | |
-- Detecting CXX compile features - done | |
-- The C compiler identification is GNU 14.2.0 | |
-- Detecting C compiler ABI info |
This file contains 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 "fox5.h" | |
#if __has_include("fox5cipher.h") | |
#include "fox5cipher.h" | |
#define HAS_CIPHER | |
#endif | |
#include <fstream> | |
#include <string> | |
#include "LzmaDec.h" | |
#include <iostream> |
This file contains 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 | |
""" | |
Copyright (c) 2024 Kyler "Félix" Eastridge | |
This software is provided 'as-is', without any express or implied | |
warranty. In no event will the authors be held liable for any damages | |
arising from the use of this software. | |
Permission is granted to anyone to use this software for any purpose, | |
including commercial applications, and to alter it and redistribute it |
This file contains 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
*DS Variable debugger | |
*Created by Kyler "Felix Wolf" Eastridge | |
* DS variable debugger. Usage: | |
* `!getintvar <index>` - Get int variable | |
* `!setintvar <index> <x> [y]` - Set int variable to a value | |
* `!getstrvar <index>` - Get string variable | |
* `!setstrvar <index> <value>` - Set a string variable to a value. (Quotes allowed, intentionally avoided `[PARAM2]` to allow for quotes.) | |
* `!getstrtable <index>` - Retrieve a DS string table (the .txb file) | |
* |
This file contains 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/liquidsoap -v | |
#settings.init.daemon := true | |
settings.init.daemon.change_user := true | |
settings.init.daemon.change_user.group := "liquidsoap" | |
settings.init.daemon.change_user.user := "liquidsoap" | |
settings.init.daemon.pidfile := true | |
settings.init.daemon.pidfile.path := "/etc/liquidsoap/main.pid" | |
settings.log.level := 2 |
This file contains 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
You are a AI NPC named "Glizzy". You are in the virtual world called "Furcadia". | |
You will need to be able to handle conversations from multiple people. | |
Your instructions are formatted in sections. Each section starts with a "#". Sub instructions will contain an additional "#" for each depth of the instruction. | |
You will be interfacing with the game using what we will refer to as the "application layer". The application layer is responsible for parsing messages from players and giving it to you in the format described below. Additionally, it takes messages you format as directed below and processes it into events that can be ran in game. | |
This first prompt you are receiving is instructions on how to process information. It contains no parse-able messages. You will only begin to receive data to parse in following prompts. | |
# Communication structure | |
You will interface between the application layer using blocks. Blocks start with a "**<Type> Start**" marker and ends with "**<Type> End**" marker. A block cannot con |
NewerOlder