Flarum is ass. Can we go back to ProBoards and get back the features we had before, but no longer have because we don't have extensions for them on Flarum?
Posts by videogamesm12
-
-
-
Introduction
A while back, I wrote a script in Python that allowed me to essentially use a keybind to pop open a menu to do various things I usually did in the command-line, such as starting certain local servers or scraping Flarum forums. I called it the Toolbox, and the name has stuck with it ever since.
However, the main problem with the script was that it was extremely limited in what it could do, and its code was basically all over the place. Here's the source code so you can see what I mean:
Code
Display Moreimport termcolor import colorama from colorama import Fore, Back, Style import os import subprocess from pyfiglet import figlet_format #-- import Forum import LyicxScript #-- colorama.init() #-- #os.system("title Toolbox v1.3") #-- multiMC_directory = "E:\\Documents\\MultiMC\\" ftc_directory = "E:\\Toolbox\\Telnet\\" def MainMenu(error = None): os.system("cls") print(termcolor.colored(figlet_format("Toolbox", font = "small"), 'blue') + termcolor.colored("What would you like to do?\n", "cyan")) options = [ "Start the local Minecraft development test server", "Start the local Minecraft experimental server", "Scrape a Flarum forum", "Launch Minecraft (Carbon Fiber)", "Launch Minecraft (Blackwidow)", "Launch FreedomTelnetClient+", "Generate smithing concrete colors", "Generate smithing concrete colors (Looped)", "Open the All Tasks folder", "Nothing (Exit)" ] if error: print(termcolor.colored(error + "\n", "red")) for num in range(len(options)): text = termcolor.colored("[" + str(num + 1) + "] ", "cyan") + termcolor.colored(options[num], "cyan") print(text) promptChoice() def promptChoice(): choice = input("\nChoice: ") mode = { 1: fireUpTestServer, 2: fireUpExperimentalServer, 3: fireUpTP, 4: fireUpCarbonFiber, 5: fireUpBlackwidow, 6: fireUpTelnet, 7: runColors, 8: runColorsLooped, 11: openGodMode, 12: exit } if not choice or not choice.isnumeric() or int(choice) not in mode.keys(): MainMenu("That isn't an option.") return None return mode.get(int(choice), MainMenu)() def openGodMode(): print(termcolor.colored("\n" + "Opening the All Tasks folder...", "cyan")) os.system("explorer.exe shell:::{ED7BA470-8E54-465E-825C-99712043E01C}") def fireUpTestServer(): os.chdir("E:\Documents\ouch") subprocess.call(["java", "-jar", "paper-1.16.5-777.jar", "-nogui"]) def fireUpExperimentalServer(): os.chdir("E:\Documents\Experimental Server") subprocess.call(["java", "-jar", "paper-1.16.5-777.jar", "-nogui"]) def fireUpCarbonFiber(): os.chdir(multiMC_directory) subprocess.call(["MultiMC.exe", "--launch", "Carbon Fiber", "--profile", "videogamesm12"]) def fireUpBlackwidow(): os.chdir(multiMC_directory) subprocess.call(["MultiMC.exe", "--launch", "Blackwidow", "--profile", "MojangCantCode"]) def fireUpTelnet(): os.chdir(ftc_directory) subprocess.call(["FreedomTelnetClientPlus-2.1-INDEV-032821-202733.exe"]) def runColors(): os.chdir("E:\Toolbox\Concretes") os.system("cls") LyicxScript.init() def runColorsLooped(): os.chdir("E:\Toolbox\Concretes") os.system("cls") LyicxScript.init(True) def fireUpTP(): working_directory = "E:\Toolbox\Forum" os.system("cls") os.system("title Titan v" + Forum.version) print(Fore.BLUE + figlet_format("Titan", font = "small") + Fore.CYAN + Style.DIM + "Using " + Fore.BLUE + working_directory + Fore.CYAN + Style.DIM + " as the working directory.\n") #directory_prompt = input(Fore.RED + "Location of archived threads: ") #if directory_prompt: # working_directory = directory_prompt os.chdir(working_directory) print(Fore.BLUE + Style.DIM + "### BASICS ###\n" + Fore.CYAN + Style.DIM + "At the moment, you don't have to enter anything other than the forum you're trying to scrape." + "\n") Forum.promptForum() if __name__ == "__main__": MainMenu()Rewrite
To make things feel more graphical and allow for a more flexible interface, I recently rewrote the script to essentially make it feel more graphical and in doing so, built the foundation for a potentially useful graphical framework that lets you make simple menus using the curses library. So, I've decided to release the code for the Framework (the backend of the now-rewritten Toolbox) today. There are some places where it is rough around the edges but one of these days I'll get around to fixing it. For now, enjoy.
Code
Display Moreimport curses import pyfiglet class Option: def __init__(self, label, action, args = []): self.label = label self.action = action self.args = args self.selected = False def setSelected(self, value): self.selected = value def doAction(self): self.action(self.args) class Menu: def __init__(self, title, text): self.title = title self.text = text self.options = [] def addOption(self, option): self.options.append(option) def addAllOptions(self, options): for option in options: self.options.append(option) def open(self, stdscr): k = 0 selection = 0 offset = 0 stdscr.clear() stdscr.refresh() curses.start_color() curses.init_pair(1, curses.COLOR_BLUE, curses.COLOR_BLACK) curses.init_pair(2, curses.COLOR_CYAN, curses.COLOR_BLACK) curses.init_pair(3, curses.COLOR_BLACK, curses.COLOR_WHITE) curses.curs_set(False) while True: stdscr.clear() height, width = stdscr.getmaxyx() # Key event handling if k == curses.KEY_DOWN: if selection + 1 < 0: pass elif selection + 1 > len(self.options) - 1: pass else: selection = selection + 1 self.options[selection - 1].selected = False if (((len(self.options) + 5) - 2) > height - 5): offset = offset + 1 elif k == curses.KEY_UP: if selection - 1 < 0: pass elif selection - 1 > len(self.options) + 1: pass else: selection = selection - 1 self.options[selection + 1].selected = False if (((len(self.options) + 5) - 2) > height - 5): offset = offset - 1 elif k == curses.KEY_ENTER or k == 10 or k == 13: curses.endwin() self.options[selection].doAction() return self.options[selection].selected = True # Title setup title = pyfiglet.figlet_format(self.title, font = "small").split("\n") title = title[:-1] statusbarstr = " {} | Current selection: {}".format((" ", "\u2191")[offset > 0], selection + 1) # Render status bar stdscr.attron(curses.color_pair(3)) stdscr.addstr(height-1, 0, statusbarstr) stdscr.addstr(height-1, len(statusbarstr), " " * (width - len(statusbarstr) - 1)) stdscr.attroff(curses.color_pair(3)) # Turning on attributes for title stdscr.attron(curses.color_pair(1)) # stdscr.attron(curses.A_BOLD) # Line linenum = 0 # Rendering title for line in title: stdscr.addstr(linenum, 0, line) linenum = linenum + 1 stdscr.attroff(curses.color_pair(1)) # stdscr.attroff(curses.A_BOLD) stdscr.attron(curses.color_pair(2)) stdscr.addstr(linenum, 0, self.text) linenum = linenum + 2 for option in self.options: if (linenum - 2) > height - 5: break index = self.options.index(option) if offset > index: continue label = " " + str(index + 1) + ". " + option.label + " " if option.selected: stdscr.addstr(linenum, 0, label, curses.color_pair(3)) else: stdscr.attron(curses.color_pair(2)) stdscr.addstr(linenum, 0, label, curses.color_pair(2)) stdscr.attroff(curses.color_pair(2)) linenum = linenum + 1 stdscr.attroff(curses.color_pair(2)) stdscr.attroff(curses.A_BOLD) # Refresh the screen stdscr.refresh() # Wait for next input k = stdscr.getch() -
I miss that forum so much.
-
In July 2019, I decided to start working on pixel art of a screenshot of Windows 98 that showed what the TF website would have looked like if it was designed in the 90s. I designed the webpage and tried to make it look as authentic as possible. Here's the end result.
Still more functional than the current state of the website.
-
The order of operations matters.
-
These are excerpts of server logs I was able to uncover from an unlikely source: Twitter. Before the days of the forum, people used to tweet at Mark whenever the server went down or when there was a problem that he needed to handle. There is a surprising amount of server-related posts on Twitter, and I'm not sure how I managed to miss this.
November 3, 2011
Sourced from \@majesty327, missing some information
Code<l2listen> even death said i was <l2listen> I will say <l2listen> you were griefing <l2listen> :)December 20, 2011
Sourced from \@jessefirex1998
March 18, 2012
Sourced from \@majesty327
March 19, 2012
Sourced from \@majesty327
Code
Display More2012-03-19 04:49:33 [INFO] [PREPROCESS_COMMAND] boobs9(nyanboobs9): /butcher 2012-03-19 04:49:33 [INFO] WorldEdit: boobs9 (in "flatlands"): butcher - Position: (69.0, 71.0, 1271.0) 2012-03-19 04:49:41 [INFO] [PREPROCESS_COMMAND] Notch(Notch): /antioch 2012-03-19 04:49:41 [INFO] [PLAYER_COMMAND] Notch(Notch): /antioch 2012-03-19 04:49:44 [INFO] <cubeman27> Jono. 2012-03-19 04:49:44 [INFO] [PREPROCESS_COMMAND] boobs9(nyanboobs9): /whois herobrine 2012-03-19 04:49:44 [INFO] [PLAYER_COMMAND] boobs9(nyanboobs9): /whois herobrine 2012-03-19 04:49:49 [INFO] <Notch> who is the owner of this server? 2012-03-19 04:49:50 [INFO] <cubeman27> Stop with the breaking grass. 2012-03-19 04:49:50 [INFO] <JonoSerf> Fixing it 2012-03-19 04:49:52 [INFO] [PREPROCESS_COMMAND] boobs9(nyanboobs9): /butcher 2012-03-19 04:49:52 [INFO] WorldEdit: boobs9 (in "flatlands"): butcher - Position: (70.0, 76.0, 1273.0) 2012-03-19 04:49:53 [INFO] <cubeman27> Mark. 2012-03-19 04:49:54 [INFO] <The_Best_1998> umm yea i mhere to report a pest problem 2012-03-19 04:50:00 [INFO] [PREPROCESS_COMMAND] JonoSerf(JonoSerf): //set 2 2012-03-19 04:50:00 [INFO] WorldEdit: JonoSerf (in "flatlands"): /set 2 - Area: 280 (7 x 5 x 8) 2012-03-19 04:50:04 [INFO] <Herobrine> ghasts and enderdragons cant do damage 2012-03-19 04:50:05 [INFO] <Notch> what is his minecraft name? 2012-03-19 04:50:11 [INFO] <Herobrine> unless you are in survival 2012-03-19 04:50:11 [INFO] XXcamXX is banned by username match. 2012-03-19 04:50:11 [INFO] Offline Mode Login: Checking if XXcamXX is a superadmin, IP: 90.201.145.241 2012-03-19 04:50:11 [INFO] Disconnecting XXcamXX [/90.201.145.241:50719]: You are banned. Visit minecraftsite.info if you believe this is in error. 2012-03-19 04:50:13 [INFO] <nyanboobs9> ban Herobrine hes a fake 2012-03-19 04:50:13 [INFO] 313342 is banned by username match. 2012-03-19 04:50:13 [INFO] Offline Mode Login: Checking if 313342 is a superadmin, IP: 24.13.16.129 2012-03-19 04:50:13 [INFO] 313342 [/24.13.16.129:2217] logged in with entity id 3796709 at ([flatlands] 131.95661490192376, 50.97692429196571, 888.9141094390993) 2012-03-19 04:50:16 [INFO] <cubeman27> I know. 2012-03-19 04:50:18 [INFO] Notch lost connection: disconnect.quitting 2012-03-19 04:50:20 [INFO] <Herobrine> then why kill them 2012-03-19 04:50:25 [INFO] [PREPROCESS_COMMAND] 313342(313342): /creative 2012-03-19 04:50:25 [INFO] [PLAYER_COMMAND] 313342(313342): /creative 2012-03-19 04:50:27 [INFO] /76.4.54.199:23790 lost connection 2012-03-19 04:50:29 [INFO] <cubeman27> Because lag. 2012-03-19 04:50:30 [INFO] [PREPROCESS_COMMAND] boobs9(nyanboobs9): /butcher 2012-03-19 04:50:30 [INFO] WorldEdit: boobs9 (in "flatlands"): butcher - Position: (65.0, 68.0, 1258.0) 2012-03-19 04:50:32 [INFO] <Herobrine> they dont lag 2012-03-19 04:50:34 [INFO] <313342> op plz 2012-03-19 04:50:36 [INFO] <Herobrine> get a new computer 2012-03-19 04:50:37 [INFO] [PREPROCESS_COMMAND] cubeman27(cubeman27): /fr 2012-03-19 04:50:37 [INFO] [PLAYER_COMMAND] cubeman27(cubeman27): /fr 2012-03-19 04:50:37 [INFO] cubeman27 has temporarily frozen everyone on the server. 2012-03-19 04:50:43 [INFO] <Herobrine> obviously yours sucks 2012-03-19 04:50:43 [INFO] [PREPROCESS_COMMAND] cubeman27(cubeman27): /fr 2012-03-19 04:50:43 [INFO] [PLAYER_COMMAND] cubeman27(cubeman27): /fr 2012-03-19 04:50:43 [INFO] cubeman27 has unfrozen everyone. 2012-03-19 04:50:45 [INFO] <nyanboobs9> aw Notch left 2012-03-19 04:50:51 [INFO] [PREPROCESS_COMMAND] boobs9(nyanboobs9): /butcher 2012-03-19 04:50:51 [INFO] WorldEdit: boobs9 (in "flatlands"): butcher - Position: (77.0, 78.0, 1251.0) 2012-03-19 04:50:54 [INFO] <cubeman27> Acidic. 2012-03-19 04:50:55 [INFO] [PREPROCESS_COMMAND] boobs9(nyanboobs9): /butcher 2012-03-19 04:50:55 [INFO] WorldEdit: boobs9 (in "flatlands"): butcher - Position: (82.0, 83.0, 1247.0) 2012-03-19 04:50:59 [INFO] <cubeman27> Stop with the mobspam. 2012-03-19 04:51:02 [INFO] <cubeman27> Please. 2012-03-19 04:51:03 [INFO] <Herobrine> umadbro? 2012-03-19 04:51:06 [INFO] <cubeman27> Ok. 2012-03-19 04:51:12 [INFO] <313342> o get op plz 2012-03-19 04:51:12 [INFO] <cubeman27> I have the evidence. 2012-03-19 04:51:14 [INFO] <nyanboobs9> hai herobrine 2012-03-19 04:51:16 [INFO] <cubeman27> I can report you. 2012-03-19 04:51:17 [INFO] <Herobrine> lol 2012-03-19 04:51:21 [INFO] <cubeman27> So final warning. 2012-03-19 04:51:22 [INFO] <Herobrine> im scared. 2012-03-19 04:51:23 [INFO] <nyanboobs9> hello herobrine 2012-03-19 04:51:27 [INFO] [PREPROCESS_COMMAND] The_Best_1998(The_Best_1998): /tossmob squid 2012-03-19 04:51:27 [INFO] [PLAYER_COMMAND] The_Best_1998(The_Best_1998): /tossmob squid 2012-03-19 04:51:28 [INFO] <JonoSerf> Move 2012-03-19 04:51:28 [INFO] <cubeman27> For your position? 2012-03-19 04:51:31 [INFO] <nyanboobs9> lol scared herobrineMarch 21, 2012
Sourced from \@majesty327
Code
Display More2012-03-21 06:19:29 [INFO] [PREPROCESS_COMMAND] cubeman27(cubeman27): /explosives off 2012-03-21 06:19:29 [INFO] [PLAYER_COMMAND] cubeman27(cubeman27): /explosives off 2012-03-21 06:19:31 [INFO] [PREPROCESS_COMMAND] cubeman27(cubeman27): /tp as 2012-03-21 06:19:31 [INFO] [PLAYER_COMMAND] cubeman27(cubeman27): /tp as 2012-03-21 06:19:36 [INFO] [PREPROCESS_COMMAND] cubeman27(cubeman27): /list 2012-03-21 06:19:36 [INFO] [PLAYER_COMMAND] cubeman27(cubeman27): /list 2012-03-21 06:19:39 [INFO] [PREPROCESS_COMMAND] cubeman27(cubeman27): /tp jono 2012-03-21 06:19:39 [INFO] [PLAYER_COMMAND] cubeman27(cubeman27): /tp jono 2012-03-21 06:19:44 [INFO] [PREPROCESS_COMMAND] cubeman27(cubeman27): /tpo jono 2012-03-21 06:19:44 [INFO] [PLAYER_COMMAND] cubeman27(cubeman27): /tpo jono 2012-03-21 06:19:46 [INFO] mizadaboss lost connection: disconnect.quitting 2012-03-21 06:19:54 [INFO] [PREPROCESS_COMMAND] JonoSerf(ASDFGHJKL): /sp area 2 2012-03-21 06:19:54 [INFO] WorldEdit: JonoSerf (in "flatlands"): superpickaxe area 2 2012-03-21 06:19:54 [INFO] [PREPROCESS_COMMAND] JonoSerf(ASDFGHJKL): /sp area 2 2012-03-21 06:20:00 [INFO] <cubeman27> Jono. 2012-03-21 06:20:07 [INFO] <ASDFGHJKL> Sup 2012-03-21 06:20:14 [INFO] <cubeman27> Stop. 2012-03-21 06:20:19 [INFO] <cubeman27> I have screenshots of you doing this. 2012-03-21 06:20:22 [INFO] <ASDFGHJKL> Not against the rules 2012-03-21 06:20:24 [INFO] <ASDFGHJKL> Idc 2012-03-21 06:20:27 [INFO] <cubeman27> It's griefing. 2012-03-21 06:20:33 [INFO] <cubeman27> QED, against the rules. 2012-03-21 06:20:36 [INFO] <ASDFGHJKL> >Puts hole to the void 2012-03-21 06:20:38 [INFO] <ASDFGHJKL> >Griefing 2012-03-21 06:20:41 [INFO] <cubeman27> Yes. 2012-03-21 06:20:45 [INFO] <sonic_8298> griefing griefs isnt griefing 2012-03-21 06:20:51 [INFO] <ASDFGHJKL> ^^ 2012-03-21 06:20:52 [INFO] <cubeman27> It is. 2012-03-21 06:20:55 [INFO] <ASDFGHJKL> Cube 2012-03-21 06:21:00 [INFO] <ASDFGHJKL> Stop the act 2012-03-21 06:21:01 [INFO] <cubeman27> It's still griefing. 2012-03-21 06:21:03 [INFO] <sonic_8298> ikr 2012-03-21 06:21:05 [INFO] <cubeman27> What act? 2012-03-21 06:21:09 [INFO] youseif147 lost connection: disconnect.quitting 2012-03-21 06:21:09 [INFO] <ASDFGHJKL> You act like you're the boss 2012-03-21 06:21:10 [INFO] <sonic_8298> stop acting so superior 2012-03-21 06:21:14 [INFO] Checking for partial IP ban against: 86.97.200.160 2012-03-21 06:21:14 [INFO] Offline Mode Login: Checking if youseif147 is a superadmin, IP: 86.97.200.160 2012-03-21 06:21:14 [INFO] youseif147 [/86.97.200.160:52114] logged in with entity id 3400592 at ([flatlands] 71.79663134039401, 50.0, -489.62293084083245) 2012-03-21 06:21:17 [INFO] <sonic_8298> we;re the same rank 2012-03-21 06:21:22 [INFO] <sonic_8298> we're all admins now calm your tits 2012-03-21 06:21:25 [INFO] <ASDFGHJKL> You're just a butthurt faggot that only has power on the internet 2012-03-21 06:21:30 [INFO] <sonic_8298> brb 2012-03-21 06:21:30 [INFO] <cubeman27> But the problem is that you abuse it. 2012-03-21 06:21:46 [INFO] Checking for partial IP ban against: 124.183.116.64 2012-03-21 06:21:46 [INFO] Offline Mode Login: Checking if bradrocks is a superadmin, IP: 124.183.116.64 2012-03-21 06:21:46 [INFO] bradrocks [/124.183.116.64:65461] logged in with entity id 3422114 at ([TsuchiIwaAnvil] -399.5, 103.62000000476837, -235.5) 2012-03-21 06:21:48 [INFO] <ASDFGHJKL> But the problem is that you wont shut up 2012-03-21 06:21:50 [INFO] Checking for partial IP ban against: 203.56.244.147 2012-03-21 06:21:50 [INFO] Offline Mode Login: Checking if minimitch140 is a superadmin, IP: 203.56.244.147 2012-03-21 06:21:50 [INFO] Offline Mode Login: IP 203.56.244.147 found in superadmin list. 2012-03-21 06:21:50 [INFO] minimitch140 [/203.56.244.147:12026] logged in with entity id 3425533 at ([flatlands] 128.08840272621893, 84.0382692000001, -427.4480036090731) 2012-03-21 06:21:51 [INFO] [PREPROCESS_COMMAND] cubeman27(cubeman27): /gtfo brad 2012-03-21 06:21:51 [INFO] [PLAYER_COMMAND] cubeman27(cubeman27): /gtfo brad 2012-03-21 06:21:51 [INFO] bradrocks has been a VERY naughty, naughty boy. 2012-03-21 06:21:51 [INFO] WorldEdit: cubeman27 (in "flatlands"): /undo 15 bradrocks 2012-03-21 06:21:51 [INFO] Banning: bradrocks, IP: 124.183.*.*. 2012-03-21 06:21:52 [INFO] /50.23.30.168:53053 lost connection 2012-03-21 06:21:55 [INFO] [PREPROCESS_COMMAND] JonoSerf(ASDFGHJKL): /nick off 2012-03-21 06:21:55 [INFO] [PLAYER_COMMAND] JonoSerf(ASDFGHJKL): /nick off 2012-03-21 06:21:59 [INFO] <cubeman27> Then stop griefing. 2012-03-21 06:22:02 [INFO] Checking for partial IP ban against: 77.106.132.55 2012-03-21 06:22:02 [INFO] Offline Mode Login: Checking if Player is a superadmin, IP: 77.106.132.55 2012-03-21 06:22:02 [INFO] Player [/77.106.132.55:50270] logged in with entity id 3435226 at ([flatlands] 137.32179651867293, 47.0, -506.1204894979421) 2012-03-21 06:22:05 [INFO] <JonoSerf> Not griefing 2012-03-21 06:22:06 [INFO] <cubeman27> And everything will be dandy. 2012-03-21 06:22:07 [INFO] <JonoSerf> Fag 2012-03-21 06:22:07 [INFO] Player lost connection: disconnect.quitting 2012-03-21 06:22:08 [INFO] <minimitch140> hi jono, sonic and cubeman 2012-03-21 06:22:10 [INFO] Checking for partial IP ban against: 77.106.132.55 2012-03-21 06:22:10 [INFO] Offline Mode Login: Checking if Player is a superadmin, IP: 77.106.132.55 2012-03-21 06:22:10 [INFO] Player [/77.106.132.55:50279] logged in with entity id 3441545 at ([flatlands] 137.32179651867293, 47.0, -506.1204894979421) 2012-03-21 06:22:24 [INFO] Player lost connection: disconnect.quitting 2012-03-21 06:22:29 [INFO] <JonoSerf> You know what? 2012-03-21 06:22:31 [INFO] <minimitch140> how r u going? 2012-03-21 06:22:35 [INFO] <JonoSerf> This is for the lulz 2012-03-21 06:22:35 [INFO] <cubeman27> What? 2012-03-21 06:22:38 [INFO] [PREPROCESS_COMMAND] JonoSerf(JonoSerf): /smite cube 2012-03-21 06:22:38 [INFO] [PLAYER_COMMAND] JonoSerf(JonoSerf): /smite cube 2012-03-21 06:22:38 [INFO] cubeman27 has been a naughty, naughty boy. 2012-03-21 06:22:47 [INFO] <JonoSerf> Bwahahaha 2012-03-21 06:22:51 [INFO] [PREPROCESS_COMMAND] minimitch140(minimitch140): /creative cubeman27 2012-03-21 06:22:51 [INFO] [PLAYER_COMMAND] minimitch140(minimitch140): /creative cubeman27 2012-03-21 06:22:56 [INFO] [PREPROCESS_COMMAND] cubeman27(cubeman27): /opem 2012-03-21 06:22:58 [INFO] [PREPROCESS_COMMAND] cubeman27(cubeman27): /opme 2012-03-21 06:22:58 [INFO] [PLAYER_COMMAND] cubeman27(cubeman27): /opme 2012-03-21 06:22:58 [INFO] (cubeman27: Opping cubeman27)March 24, 2012
Sourced from \@majesty327
Sourced from \@spongeruss
Code
Display More2012-03-24 21:47:05 [INFO] <SpecLeader> Sonic. 2012-03-24 21:47:07 [INFO] <AcidicCyanide> o 2012-03-24 21:47:07 [INFO] <sonic_8298> watch hes gonna come back on with a different name 2012-03-24 21:47:07 [INFO] <SpecLeader> be quiet. 2012-03-24 21:47:19 [INFO] [PREPROCESS_COMMAND] SpecLeader(SpecLeader): /smite sonic 2012-03-24 21:47:19 [INFO] [PLAYER_COMMAND] SpecLeader(SpecLeader): /smite sonic 2012-03-24 21:47:29 [INFO] <sonic_8298> spec 2012-03-24 21:47:34 [INFO] <SpecLeader> Sonic 2012-03-24 21:47:36 [INFO] <SpecLeader> be quiet. 2012-03-24 21:47:38 [INFO] <sonic_8298> i was talking to vincentseto 2012-03-24 21:47:38 [INFO] <SpecLeader> or be banned. 2012-03-24 21:47:40 [INFO] <sonic_8298> so stfu 2012-03-24 21:48:43 [INFO] <SpecLeader> Sonic is a gay name BTW. son you need to stop eating dick, 2012-03-24 21:48:50 [INFO] [PREPROCESS_COMMAND] SpecLeader(SpecLeader): /ignore sonic 2012-03-24 21:48:50 [INFO] [PLAYER_COMMAND] SpecLeader(SpecLeader): /ignore sonic 2012-03-24 21:48:51 [INFO] <SpecLeader> Ignored 2012-03-24 21:49:21 [INFO] [PREPROCESS_COMMAND] SpecLeader(SpecLeader): /gtfo sonic 2012-03-24 21:49:21 [INFO] [PLAYER_COMMAND] SpecLeader(SpecLeader): /gtfo sonic 2012-03-24 21:49:28 [INFO] <SpecLeader> acid 2012-03-24 21:49:34 [INFO] <SpecLeader> can you desuper him 2012-03-24 21:49:37 [INFO] <SpecLeader> he griefed 2012-03-24 21:49:39 [INFO] <SpecLeader> earlier 2012-03-24 21:49:51 [INFO] <SpecLeader> well i know you wont believe me 2012-03-24 21:49:52 [INFO] <SpecLeader> lol. 2012-03-24 21:49:56 [INFO] <AcidicCyanide> and how many fucking times have you griefed 2012-03-24 21:50:00 [INFO] <AcidicCyanide> and made fucking videos aboutit 2012-03-24 21:50:12 [INFO] <SpecLeader> thought we were friends. 2012-03-24 21:50:18 [INFO] <SpecLeader> But you end up being a dick.March 25, 2012
Sourced from \@zmajxd
March 27, 2012
Sourced from \@majesty327
Code
Display More2012-03-27 10:10:10 [INFO] [PREPROCESS_COMMAND] daniel0410(SuperAdmin_Daniel): /gtfo dead 2012-03-27 10:10:10 [INFO] [PLAYER_COMMAND] daniel0410(SuperAdmin_Daniel): /gtfo dead 2012-03-27 10:10:10 [INFO] deadmeu has been a VERY naughty, naughty boy. 2012-03-27 10:10:10 [INFO] WorldEdit: daniel0410 (in "YogOlympicsAnvil"): /undo 15 deadmeu 2012-03-27 10:10:10 [INFO] Banning: deadmeu, IP: 121.208.*.*. 2012-03-27 10:10:11 [INFO] <CubemanAdminHammer> IT is you that hax! 2012-03-27 10:10:15 [INFO] <JanTTuX> y threw computer to ma head 2012-03-27 10:10:16 [INFO] [PREPROCESS_COMMAND] cubeman27(CubemanAdminHammer): /glist unban deadmeu 2012-03-27 10:10:16 [INFO] [PLAYER_COMMAND] cubeman27(CubemanAdminHammer): /glist unban deadmeu 2012-03-27 10:10:16 [INFO] cubeman27 - Unbanning deadmeu and IPs: 121.208.108.22 2012-03-27 10:10:18 [INFO] deadmeu [/121.208.108.22:52266] logged in with entity id 11801172 at ([flatlands] 12.461252298206091, 53.981523797587016, 1390.5059376466088) 2012-03-27 10:10:20 [INFO] <deadmeu> DANIEL 2012-03-27 10:10:21 [INFO] [PREPROCESS_COMMAND] daniel0410(SuperAdmin_Daniel): /gtfo dead 2012-03-27 10:10:21 [INFO] [PLAYER_COMMAND] daniel0410(SuperAdmin_Daniel): /gtfo dead 2012-03-27 10:10:21 [INFO] deadmeu has been a VERY naughty, naughty boy. 2012-03-27 10:10:21 [INFO] WorldEdit: daniel0410 (in "YogOlympicsAnvil"): /undo 15 deadmeu 2012-03-27 10:10:21 [INFO] Banning: deadmeu, IP: 121.208.*.*. 2012-03-27 10:10:22 [INFO] <CubemanAdminHammer> Stop GTFO'ing him. 2012-03-27 10:10:25 [INFO] <SuperAdmin_Daniel> Nope 2012-03-27 10:10:26 [WARNING] Failed to handle packet: java.lang.NullPointerException java.lang.NullPointerException 2012-03-27 10:10:28 [INFO] <JanTTuX> thats getting retarded 2012-03-27 10:10:30 [INFO] maggoo002 [/122.150.160.15:49812] logged in with entity id 11807785 at ([flatlands] -340.60415370587276, 50.0, 1561.306782612769) 2012-03-27 10:10:31 [INFO] [PREPROCESS_COMMAND] cubeman27(CubemanAdminHammer): /gtfo daniel 2012-03-27 10:10:31 [INFO] [PLAYER_COMMAND] cubeman27(CubemanAdminHammer): /gtfo daniel 2012-03-27 10:10:31 [INFO] daniel0410 has been a VERY naughty, naughty boy. 2012-03-27 10:10:31 [INFO] WorldEdit: cubeman27 (in "YogOlympicsAnvil"): /undo 15 daniel0410 2012-03-27 10:10:31 [INFO] Banning: daniel0410, IP: 82.23.*.*. 2012-03-27 10:10:34 [INFO] [PREPROCESS_COMMAND] cubeman27(CubemanAdminHammer): /glist unban dead 2012-03-27 10:10:34 [INFO] [PLAYER_COMMAND] cubeman27(CubemanAdminHammer): /glist unban dead 2012-03-27 10:10:35 [INFO] daniel0410 [/82.23.178.1:53488] logged in with entity id 11809984 at ([YogOlympicsAnvil] -1.1875, 64.71875, 423.75) 2012-03-27 10:10:39 [INFO] [PREPROCESS_COMMAND] daniel0410(SuperAdmin_Daniel): /gtfo dead 2012-03-27 10:10:39 [INFO] [PLAYER_COMMAND] daniel0410(SuperAdmin_Daniel): /gtfo dead 2012-03-27 10:10:39 [INFO] [PREPROCESS_COMMAND] cubeman27(CubemanAdminHammer): /glist unban deadmeu 2012-03-27 10:10:39 [INFO] [PLAYER_COMMAND] cubeman27(CubemanAdminHammer): /glist unban deadmeu 2012-03-27 10:10:39 [INFO] cubeman27 - Unbanning deadmeu and IPs: 121.208.108.22 2012-03-27 10:10:43 [INFO] <xXmaggooXx> let me try somehthin 2012-03-27 10:10:44 [INFO] <JanTTuX> Y BANNED DANIEL 2012-03-27 10:10:52 [INFO] <JanTTuX> :3 2012-03-27 10:10:56 [INFO] <CubemanAdminHammer> Daniel. 2012-03-27 10:10:57 [INFO] deadmeu [/121.208.108.22:52276] logged in with entity id 11819303 at ([flatlands] 12.461252298206091, 54.0, 1390.5059376466088) 2012-03-27 10:10:59 [INFO] <CubemanAdminHammer> I have logs. 2012-03-27 10:10:59 [INFO] <SuperAdmin_Daniel> Im back Jan <3 2012-03-27 10:11:03 [INFO] <deadmeu> Fuck off daniel don't make me mad. 2012-03-27 10:11:03 [INFO] [PREPROCESS_COMMAND] daniel0410(SuperAdmin_Daniel): /gtfo DEAD 2012-03-27 10:11:03 [INFO] [PLAYER_COMMAND] daniel0410(SuperAdmin_Daniel): /gtfo DEAD 2012-03-27 10:11:03 [INFO] deadmeu has been a VERY naughty, naughty boy. 2012-03-27 10:11:03 [INFO] Banning: deadmeu, IP: 121.208.*.*. 2012-03-27 10:11:05 [INFO] <CubemanAdminHammer> Stop banning Deadmeu. 2012-03-27 10:11:05 [INFO] <SuperAdmin_Daniel> me 2 2012-03-27 10:11:08 [INFO] <SuperAdmin_Daniel> Nope 2012-03-27 10:11:08 [INFO] <JanTTuX> Y BANNED DEAD 2012-03-27 10:11:09 [INFO] <JanTTuX> :3 2012-03-27 10:11:10 [INFO] <xXmaggooXx> like? 2012-03-27 10:11:14 [INFO] <CubemanAdminHammer> Ok. 2012-03-27 10:11:16 [INFO] [PREPROCESS_COMMAND] daniel0410(SuperAdmin_Daniel): /me slaps Jan 2012-03-27 10:11:16 [INFO] [PLAYER_COMMAND] daniel0410(SuperAdmin_Daniel): /me slaps Jan 2012-03-27 10:11:17 [INFO] <CubemanAdminHammer> Sending to Mark. 2012-03-27 10:11:18 [INFO] Disconnecting deadmeu [/121.208.108.22:52283]: You are banned. Visit minecraftsite.info if you believe this is in error. 2012-03-27 10:11:21 [INFO] <SuperAdmin_Daniel> Oka :) 2012-03-27 10:11:24 [INFO] <JanTTuX> come at me bro with ur l33t hecks 2012-03-27 10:11:32 [INFO] <CubemanAdminHammer> If you ban Dead again, I'm going to have you desupered. 2012-03-27 10:11:32 [INFO] <Rad> fire, check ur msg. 2012-03-27 10:11:37 [INFO] <lecky2011> where's 54321cool and sethg 2012-03-27 10:11:41 [INFO] [PREPROCESS_COMMAND] JanTTuX(JanTTuX): /tp daniel 2012-03-27 10:11:41 [INFO] [PLAYER_COMMAND] JanTTuX(JanTTuX): /tp daniel 2012-03-27 10:11:44 [INFO] [PREPROCESS_COMMAND] cubeman27(CubemanAdminHammer): /glist unban deadmeu 2012-03-27 10:11:44 [INFO] [PLAYER_COMMAND] cubeman27(CubemanAdminHammer): /glist unban deadmeu 2012-03-27 10:11:44 [INFO] cubeman27 - Unbanning deadmeu and IPs: 121.208.108.22 2012-03-27 10:11:45 [INFO] deadmeu [/121.208.108.22:52296] logged in with entity id 11884803 at ([flatlands] 12.461252298206091, 54.0, 1390.5059376466088) 2012-03-27 10:11:47 [INFO] [PREPROCESS_COMMAND] JanTTuX(JanTTuX): /tp daniel2 2012-03-27 10:11:47 [INFO] [PLAYER_COMMAND] JanTTuX(JanTTuX): /tp daniel2 2012-03-27 10:11:49 [INFO] <deadmeu> Dan 2012-03-27 10:11:50 [INFO] <deadmeu> Good bye 2012-03-27 10:11:53 [WARNING] daniel0410 moved wrongly! 2012-03-27 10:11:53 [INFO] Got position -38.8987991741323, 72.50000001117587, -96.69999998807909 2012-03-27 10:11:53 [INFO] Expected -39.30000001192093, 72.50000001117587, -96.69999998807909 2012-03-27 10:11:56 [INFO] <JanTTuX> tpme thar cube 2012-03-27 10:11:58 [INFO] [PREPROCESS_COMMAND] deadmeu(deadmeu): /who 2012-03-27 10:11:58 [INFO] [PLAYER_COMMAND] deadmeu(deadmeu): /who 2012-03-27 10:12:01 [INFO] [PREPROCESS_COMMAND] cubeman27(CubemanAdminHammer): /tp daniel 2012-03-27 10:12:01 [INFO] [PLAYER_COMMAND] cubeman27(CubemanAdminHammer): /tp daniel 2012-03-27 10:12:05 [INFO] <JanTTuX> mkay? 2012-03-27 10:12:05 [INFO] [PREPROCESS_COMMAND] cubeman27(CubemanAdminHammer): /tpo danial 2012-03-27 10:12:05 [INFO] [PLAYER_COMMAND] cubeman27(CubemanAdminHammer): /tpo danial 2012-03-27 10:12:10 [INFO] [PREPROCESS_COMMAND] cubeman27(CubemanAdminHammer): /list 2012-03-27 10:12:10 [INFO] [PLAYER_COMMAND] cubeman27(CubemanAdminHammer): /list 2012-03-27 10:12:14 [INFO] [PREPROCESS_COMMAND] daniel0410(SuperAdmin_Daniel): /stop 2012-03-27 10:12:14 [INFO] [PLAYER_COMMAND] daniel0410(SuperAdmin_Daniel): /stopMarch 28, 2012
Sourced from \@jessefirex1998
Code2012-03-28 23:32:25 [INFO] [PLAYER_COMMAND] milkman739(milkman739): /r erm yes he;s a faggotx20March 29, 2012
Sourced from \@jessefirex1998, missing year
In another post:
And another:
And another:
April 1, 2012
Sourced from \@ethanmort
Code2012-04-01 07:04:10 [INFO] [PREPROCESS_COMMAND] RedwolfMC(RedwolfMC): //replacenear 15 grass tntApril 2, 2012
Sourced from \ AcidicCyanide, appears to be an excerpt from Telnet
Code
Display More:<AcidicCyanide> your gonna try to crash with bots :Disconnecting Abbyson [/178.255.43.91:49406]: Failed to verify username! :<juliana> lol :Disconnecting /76.164.222.35:2736: Took too long to log in :Read timed out :Connection reset :Disconnecting /75.73.144.197:55127: Took too long to log in :Read timed out :<VampireGirl> lol :[PREPROCESS_COMMAND] koolcallumrocks(koolcallumrocks): /afk :[PLAYER_COMMAND] koolcallumrocks(koolcallumrocks): /afk :<evanp1> Not crash :[PREPROCESS_COMMAND] toshiyan(toshiyan): /afk :[PLAYER_COMMAND] toshiyan(toshiyan): /afk :[PREPROCESS_COMMAND] 267240(267240): /afk :[PLAYER_COMMAND] 267240(267240): /afk :Binary_Ice [/85.10.236.134:4475] logged in with entity id 5072114 at ([yogiverse] 0.5, 61.62000000476837, 9.5) :[PREPROCESS_COMMAND] darkid(darkid): /afk :[PLAYER_COMMAND] darkid(darkid): /afk :Disconnecting /98.230.106.99:55484: Took too long to log in :[PREPROCESS_COMMAND] koolcallumrocks(koolcallumrocks): /afk :[PLAYER_COMMAND] koolcallumrocks(koolcallumrocks): /afk :Read timed out :[PREPROCESS_COMMAND] toshiyan(toshiyan): /afk :[PLAYER_COMMAND] toshiyan(toshiyan): /afk :[PREPROCESS_COMMAND] Binary_Ice(Binary_Ice): /afk :[PLAYER_COMMAND] Binary_Ice(Binary_Ice): /afk :/75.132.216.145:3896 lost connection :[PREPROCESS_COMMAND] 267240(267240): /afk :[PLAYER_COMMAND] 267240(267240): /afk :[PREPROCESS_COMMAND] darkid(darkid): /afk :[PLAYER_COMMAND] darkid(darkid): /afk :Disconnecting evannelson [/80.63.56.147:60202]: Failed to verify username! :<evanp1> Just annoy you :[PREPROCESS_COMMAND] ille2000(ille2000): /op darkid :ille2000: Opping darkid :[PREPROCESS_COMMAND] koolcallumrocks(koolcallumrocks): /afk :[PLAYER_COMMAND] koolcallumrocks(koolcallumrocks): /afk :[PREPROCESS_COMMAND] toshiyan(toshiyan): /afk :[PLAYER_COMMAND] toshiyan(toshiyan): /afk :[PREPROCESS_COMMAND] Binary_Ice(Binary_Ice): /afk :[PLAYER_COMMAND] Binary_Ice(Binary_Ice): /afk :[PREPROCESS_COMMAND] 267240(267240): /afk :[PLAYER_COMMAND] 267240(267240): /afk :Connection reset :Disconnecting /98.203.138.217:64025: Took too long to log in :Read timed out :Disconnecting /96.44.163.75:37492: Took too long to log in :Disconnecting maggie1999 [/178.255.43.91:49925]: Failed to verify username! :[PREPROCESS_COMMAND] koolcallumrocks(koolcallumrocks): /afk :[PLAYER_COMMAND] koolcallumrocks(koolcallumrocks): /afkIn another post:
Code
Display More[PREPROCESS_COMMAND] JonoSerf(JonoSerf): //replace sponge :WorldEdit: JonoSerf (in "flatlands"): /replace sponge - Area: 65536 (16 x 256 x 16) :[PREPROCESS_COMMAND] cubeman27(cubeman27): /tp grady :[PLAYER_COMMAND] cubeman27(cubeman27): /tp grady :[PREPROCESS_COMMAND] Funkeyroll(Funkeyroll): /enchant addall :[PLAYER_COMMAND] Funkeyroll(Funkeyroll): /enchant addall :[PREPROCESS_COMMAND] JonoSerf(JonoSerf): //limit -1 :WorldEdit: JonoSerf (in "flatlands"): /limit -1 :[PREPROCESS_COMMAND] JonoSerf(JonoSerf): //undo :WorldEdit: JonoSerf (in "flatlands"): /undo :[PREPROCESS_COMMAND] cubeman27(cubeman27): /s grady :[PLAYER_COMMAND] cubeman27(cubeman27): /s grady :[PREPROCESS_COMMAND] panchito19999(Pick): /spawn :[PLAYER_COMMAND] panchito19999(Pick): /spawn :[PREPROCESS_COMMAND] JonoSerf(JonoSerf): //replace 2 sponge :WorldEdit: JonoSerf (in "flatlands"): /replace 2 sponge - Area: 65536 (16 x 256 x 16)April 6, 2012
Sourced from \@jessefirex1998
April 14, 2012
Sourced from \@zmajxd
April 19, 2012
Sourced from \@ethanmort
Code[PREPROCESS_COMMAND] JonoSerf(JonoSerf): /r go\n[PLAYER_COMMAND] Jon2425(Jon2425): /msg jono ready?April 20, 2012
Sourced from \@ethanmort
May 10, 2012
Sourced from \@majesty327
Code
Display More2012-05-10 15:40:43 [INFO] Offline Mode Login: Checking if cubeman27 is a superadmin, IP: 76.79.232.194 2012-05-10 15:40:43 [INFO] cubeman27 [/76.79.232.194:11330] logged in with entity id 3312609 at ([TsuchiIwa] -525.4358382467653, 83.87944405664426, -319.23786455931753) 2012-05-10 15:40:43 [INFO] Fetching addPacket for removed entity: CraftPlayer{name=cubeman27} 2012-05-10 15:40:47 [INFO] < Mindaugelis> People are logging in as u 2012-05-10 15:40:48 [INFO] Offline Mode Login: Checking if cubeman27 is a superadmin, IP: 72.177.125.41 2012-05-10 15:40:48 [INFO] Offline Mode Login: IP 72.177.125.41 found in superadmin list. 2012-05-10 15:40:48 [INFO] cubeman27 [/72.177.125.41:61934] logged in with entity id 3316699 at ([TsuchiIwa] -518.3125, 69.0, -331.03125) 2012-05-10 15:40:48 [INFO] Fetching addPacket for removed entity: CraftPlayer{name=cubeman27} 2012-05-10 15:40:57 [INFO] Offline Mode Login: Checking if cubeman27 is a superadmin, IP: 76.79.232.194 2012-05-10 15:40:57 [INFO] cubeman27 [/76.79.232.194:25698] logged in with entity id 3324011 at ([TsuchiIwa] -562.1254232345558, 71.5382691836773, -336.9200985299834) 2012-05-10 15:40:57 [INFO] Fetching addPacket for removed entity: CraftPlayer{name=cubeman27} 2012-05-10 15:40:58 [INFO] [PREPROCESS_COMMAND] friko7( SuperAdminFriko7): //set blue 2012-05-10 15:40:58 [INFO] WorldEdit: friko7 (in "flatlands"): /set blue - Area: 336 (21 x 1 x 16) 2012-05-10 15:41:00 [INFO] [PREPROCESS_COMMAND] cubeman27(cubeman27): /ban cubeman27 2012-05-10 15:41:00 [INFO] [PLAYER_COMMAND] cubeman27(cubeman27): /ban cubeman27qMay 13, 2012
Sourced from \@ethanmort
May 18, 2012
Sourced from \@jessefirex1998
Code2012-05-18 23:03:57 [INFO] [PLAYER_COMMAND] nuGGetBoy123( [SuperAdmin]Nugget): /gcmd lecky2011 /deop Whakahoa can you de-admin?June 12, 2012
Sourced from \@majesty327
-
↩ @'r00t' Good heavens! That looks terrible. It literally took mental gymnastics to be able to process what's in the image.
-
Quote
↩ @'r00t' I always wondered what happened if you uninstalled the Microsoft Store. Does “disable” count as “uninstall”?
You can install and uninstall the Microsoft Store if you're running an LTSC version of Windows 10.
Quote↩ @'r00t' It also took them quite a while, which is proof that Microsoft is lazy.
You're right that took them a while to make the change, but that does not necessarily mean they're "lazy". Microsoft heavily focuses on backwards compatibility (arguably why Windows is still relevant), so it's entirely possible that they're just being very cautious when it comes to updating older components to avoid breaking older applications/components. They could totally rewrite many components from scratch, but a change like that could break so many things that in their eyes it may just make more sense to maintain what they have already than to risk breaking legacy applications. With that being said, it is still ridiculous how inconsistent things still are.
Quote↩ @'r00t' That’s because they stole it from the Linux community (specifically the KDE Plasma desktop environment).
Both sides are guilty of "borrowing" designs.
Quote↩ @'r00t' I think the Windows 10 Ribbon had more features.
It may have more features, but it was the jack of all trades and a master of none. The design present in Windows 7 (which was similar to what Packs posted) was much more productive because it didn't take mental gymnastics just to find what you were looking for.
-
Since we don't actually maintain NetworkManager as a plugin, I'm paging @"Ryan"#1 to forward this to the developer of that plugin.
-
-
The question is simple. Regardless of the consequences that followed, what is the most chaotic thing you have done on here?
EDIT: Fuck I put this in the wrong board
-
⠀⠀⠀
-
How the hell did you do that?
-
Wait, you're telling me that connecting your NAS to the internet and allowing people to access it from the outside is a bad idea?
Wow! Who would have thought?
-
Quote
Interesting idea. From what it sounds, you want to make its spawn like a "main hub" where shops can thrive. I like it, though I would much prefer it if anybody (even the average Joe) could maintain these shops, and not just staff members.
QuoteI strongly advise against this. Not only would this be weird to implement, it would also encourage gambling, especially to minors. I just don't find it ethical.
QuoteDo you mean ones that can be maintained by other players? If so, I think that's a good idea.
QuoteThis would likely be considered a low priority, but I do love the idea of adding easter eggs. We had some in the worlds for the hub from what I remember.
QuoteIf technically possible, I absolutely agree.
QuoteYou'll need to be more specific.
-
What for?
-
↩ @'r00t' Not if you're using the Home edition.
-
↩ @'FT '
Quotethere is an ongoing discussion about that among flarum developers which proposes making that an optional permission.
Is that not a thing with Flarum already? What the fuck?
-