-
Install Python BeautifulDiscord is created in the Python programming language, and as such you must install it. Open https://www.python.org in your preferred web browser and download the latest version. Install Python and at the end therre should be an option that says something along the lines of
Add to PATH
. If you don't check this, it'll make a future step slightly harder. -
Install BeautifulDiscord Open a command prompt/terminal, and enter
python -m pip install -U https://github.com/leovoel/BeautifulDiscord/archive/master.zip
, this will download and install BeautifulDiscord so that you can use it. If you did not add Python to PATH, navigate to the directory of where Python is installed and run the command. If you get an error while installing that says something along the lines ofMicrosoft Visual C++ 14.0 is required
, follow these steps. A. If you do not have Visual Studio 2015 installed, go to http://landinghub.visualstudio.com/visual-cpp-build-tools and download the Visual C++ Build Too
View Timer.js
class Timer { | |
constructor(func, time) { | |
if (typeof func !== 'function') throw new Error('func is not a function'); | |
if (typeof time !== 'number') throw new Error('time is not a number'); | |
this.timerObj = setInterval(func, time); | |
this.func = func; | |
this.time = time; | |
} | |
View gist:0d8754a2e9a95ffb54dceb9f3b305902
### Keybase proof | |
I hereby claim: | |
* I am ovyerus on github. | |
* I am ovyerus (https://keybase.io/ovyerus) on keybase. | |
* I have a public key ASB85aXnzaKdL3MlfWXlFbzjgmYMQlHVJ_jDSftvZ_miGQo | |
To claim this, I am signing this object: |
View README.md
View detidebot.js
const Eris = require('eris'); | |
const bot = new Eris("TOKEN"); | |
const detideReplace = { | |
'(': ')', | |
')': '(', | |
'{': '}', | |
'}': '{', | |
'[': ']', | |
']': '[', |
View Coord Getter.ahk
CoordMode, Mouse, Screen | |
=:: | |
MouseGetPos, X, Y | |
MsgBox % "X Coord: " . X . " Y Coord: " . Y | |
clipboard = [%X%,%Y%] | |
Return |
View hacknet-script-docs.md
Hacknet Scripts
Executing a Hacker Script
Hacknet.HackerScriptExecuter.runScript("HackerScripts/Script.txt", os);
// This implies that you're running this in a Pathfinder command.
// If not, you'll have to replace `os` with an instance of the players os
// somehow.
Default scripts are ThemeHack.txt
(Naix's theme deleter) and SystemHack.txt
(Striker's VMBootloaderTrap)
To use your own script, create one using the documentation below and then add it to the Content/HackerScripts
folder in your Hacknet installation path.
View ISODateRename.py
import os, re, argparse, sys | |
from datetime import datetime | |
parser = argparse.ArgumentParser(description='Rename files to have a prefix of their created date.') | |
parser.add_argument('-v', '--version', action='version', version='%(prog)s v2.0', help='Display the version of the program.') | |
parser.add_argument('-f', '--file', default=' ', type=str, help='Choose which file to rename.') | |
parser.add_argument('-d', '--directory', default='./', type=str, help='Choose a directory to rename all files in.') | |
parser.add_argument('-i', '--ignore', default='@', type=str, help='Choose ignore files starting with a character.') | |
args = parser.parse_args() |
View TestFileDirectoryCreator.py
import os, string, random, re, argparse, sys, shutil | |
parser = argparse.ArgumentParser(description='Generate a random directory with randomly generated files within.') | |
parser.add_argument('-v', '--version', action='version', version='%(prog)s 1.4', help='Display the version of the program.') | |
parser.add_argument('-a', '--amount', default=random.randrange(50, 200), type=int, help='Set the amount of files to generate.') | |
parser.add_argument('-r', '--remove', action='store_true', help='Remove all directories that follow the format created by this program.') | |
args = parser.parse_args() | |
amt = args.amount; |
View deobfuscate.js
const ObfusRegex = /^([A-z]+)-(?![^A-Za-z0-9])(?=.*[A-Z])(?=.*[a-z])/; | |
function deobfuscate() { | |
var items = document.body.getElementsByTagName('*'); | |
var classes = []; | |
for (let i of items) if (i.className != '') classes.push(i); | |
classes = classes.filter(e => !(e.className instanceof SVGAnimatedString)); | |
classes.forEach(e => e.classList.forEach(c => {if (ObfusRegex.test(c) && !e.className.includes(' ' + c.match(ObfusRegex)[0].slice(0, -1))) e.className += ' ' + c.match(ObfusRegex)[0].slice(0, -1)})); | |
OlderNewer