- Thanks to /g/Windows XP friendly thread
- Thanks to >>77965472
- Thanks to @MrBruh
- Thanks to person4268
- Thanks to @NTDEV
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 <iostream> | |
#include <lua.h> | |
#include <lualib.h> | |
#include <Luau/Compiler.h> | |
static void execute(lua_State* L, const char* chunkName, const char* script) { | |
std::string bytecode = Luau::compile(script); | |
if (luau_load(L, chunkName, bytecode.data(), bytecode.size()) != LUA_OK) { | |
std::cout << lua_tostring(L, -1) << std::endl; | |
lua_pop(L, -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
const fs = require('fs/promises'); | |
const path = require('path'); | |
async function work(workDir) { | |
const files = await fs.readdir(workDir); | |
for (let i = 0; i < files.length; i++) { | |
const file = files[i]; | |
const filePath = path.join(workDir, file); | |
if (file.endsWith('.csproj')) { |
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
# randomdevlol | |
# credits to crackleharvest36 for showing me this method | |
from sys import argv, exit | |
from os import path, mkdir | |
try: | |
from requests import get | |
except: | |
print('Install the requests library') |
Guide for setting up redis for the Mineplex's hub, arcade, staff server, and server monitor.
Guía para el redis server para Mineplex's hub, arcade, staff server, y server monitor. NOTA: Tu no obtenes ayuda desde yo en espanol porque mi espanol es malo.
Contact me on my Discord, memes#2030
- Get a redis server. Download one here.