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
[ | |
{ | |
"id": 468650, | |
"title": "In Memoriam (2002 - 2025)", | |
"content": "Smeagle was a former QA tester and a close friend of the entire Polytoria team. We received the news last night that he regrettably passed away after a long disappearance following the previous Easter event and we plan on sending his family a copy of the farewell wishes posted here.\r\n\r\nThank you, everyone.", | |
"isPinned": true, | |
"isLocked": true, | |
"responseToID": null, | |
"rating": 13, | |
"author": { |
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
const paths = [ | |
"/users/1/", | |
"/places/", | |
"/home/", | |
"/forum/", | |
"/store/", | |
"/my/avatar/", | |
"/my/settings/", | |
"/create/", | |
"/rankings/", |
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
#!/bin/bash | |
# Made using ChatGPT because why not, I'm not writing all of this myself. | |
TEMP_DIR="/private/var/folders/PATH/com.Polytoria.Polytoria-Client" | |
BACKUP_DIR="PATH/PolytoriaTemp" | |
LOG_FILE="PATH/polytoria_temp.log" | |
# Create backup directory if it doesn't exist | |
mkdir -p "$BACKUP_DIR" | |
touch "$LOG_FILE" |