Skip to content

Instantly share code, notes, and snippets.

View brostosjoined's full-sized avatar
😑
Troubleshooting

brostos brostosjoined

😑
Troubleshooting
View GitHub Profile
@brostosjoined
brostosjoined / bs1.7.37_ubuntu20_server_pathch.sh
Created February 24, 2025 08:06
A script to make Bombsquad latest server version to run on older ubuntu distros
#!/bin/bash
# crafted; by brostos
# Place this script inside the main server folder
# Fixes the error below
# ./bombsquad_headless: /lib/x86_64-linux-gnu/libstdc++.so.6: version `GLIBCXX_3.4.29' not found (required by ./bombsquad_headless)
# ./bombsquad_headless: /lib/x86_64-linux-gnu/libstdc++.so.6: version GLIBCXX_3.4.30' not found (required by ./bombsquad_headless)
# ./bombsquad_headless: /lib/x86_64-linux-gnu/libc.so.6: version GLIBC 2.33' not found (required by ./bombsquad_headless)
# ./bombsquad_headless: /lib/x86_64-linux-gnu/libc.so.6: version GLIBC_2.34' not found (required by ./bombsquad_headless)
@brostosjoined
brostosjoined / README.md
Last active August 29, 2024 21:57
Automated Installion of Lua (and wlua!),Luarocks and Luasocket on native Windows (not WSL)

Automated Installion of Lua (and wlua!),Luarocks and Luasocket on native Windows (not WSL)

Thanks to Frityet's gist instructions now you can easily install lua,wlua and luarocks easily from this automated powershell script. Added a patch to make Luasocket compile using this PR.

Running the Script

  • To execute the script, open your terminal and run the following command:
powershell -executionpolicy bypass -File .\lua_installer.ps1
@brostosjoined
brostosjoined / token_getter.py
Last active June 3, 2023 11:27
Get your discord TOKEN and USER ID through Python Request module/HTTP request and using email and password.
import requests
import http.client
import urllib3
import json
#Disable the ssl warning, helps if your using proxy
urllib3.disable_warnings(urllib3.exceptions.InsecureRequestWarning) #Remove if not needed
#request module example