Skip to content

Instantly share code, notes, and snippets.

View brunohubner's full-sized avatar
🚀

Bruno Hubner brunohubner

🚀
View GitHub Profile
@brunohubner
brunohubner / autoexec.cfg
Last active April 2, 2025 11:58
Santhor's CS2 Settings
// # CS2 settings by Santhor - https://steamcommunity.com/id/Santhor
// # https://gist.github.com/brunohubner/17d883cf609a96e8087e444a675907a7
// # Crosshair
// # v1 CSGO-2YNby-c3Dnf-9PqaP-Sazz8-nNuSJ
// # v2 CSGO-HrhF8-8mCMv-65n3o-w9K4n-xh74E
// # Steam launch options:
// # -high -freq 240 -allow_third_party_software -novid -nojoy -no-browser -nohltv -console -softparticlesdefaultoff +r_drawparticles 0 -forcenovsync -limitvsconst +cl_forcepreload 1 +mat_disable_fancy_blending 1
sudo apt-get update
sudo apt-get -y upgrade
sudo apt-get install build-essential checkinstall libffi-dev python2-dev python2 python-dev-is-python3 -y
sudo apt-get install libncursesw5-dev libssl-dev libsqlite3-dev tk-dev libgdbm-dev libc6-dev libbz2-dev -y
const maxNumbers = 60;
const defaultNumberListLength = 6;
const defaultBetNumber = 10;
function generateRandomNumber() {
return parseInt((Math.random() * maxNumbers)) + 1;
}
function generateRandomNumberList(numberListLength = defaultNumberListLength) {
const numbers = [];