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 maxNumbers = 60; | |
const defaultNumberListLength = 6; | |
const defaultBetNumber = 10; | |
function generateRandomNumber() { | |
return parseInt((Math.random() * maxNumbers)) + 1; | |
} | |
function generateRandomNumberList(numberListLength = defaultNumberListLength) { | |
const numbers = []; |
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
// Notion Formulas for Time Tracking | |
// ============================================================================= | |
// Notion Formula to hidden field _minutes: | |
toNumber(slice(prop("Hours"), 0, 1)) * 60 + toNumber(slice(prop("Hours"), 2, 4)) | |
// Indented version for readability: | |
toNumber( | |
slice( | |
prop("Hours"), |
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
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 |
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
// # CS2 settings by Santhor - https://steamcommunity.com/id/santhor | |
cls; | |
// # Crosshair | |
// # v1 CSGO-2YNby-c3Dnf-9PqaP-Sazz8-nNuSJ | |
// # v2 CSGO-HrhF8-8mCMv-65n3o-w9K4n-xh74E | |
// # Steam launch options | |
// # -high -freq 240 -novid 1 -nojoy -no-browser -nohltv -console -softparticlesdefaultoff +r_drawparticles 0 -forcenovsync -allow_third_party_software |
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
sv_cheats 1 | |
bot_kick | |
ammo_grenade_limit_total 5 | |
mp_startmoney 60000 | |
mp_maxmoney 60000 | |
mp_roundtime 60 | |
mp_roundtime_defuse 60 | |
mp_freezetime 0 |
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
cl_disablehtmlmotd "1"; | |
cl_disablefreezecam "1"; | |
cl_autohelp "0"; | |
cl_showhelp "0"; | |
cl_hud_playercount_showcount "1"; | |
cl_detail_avoid_force "0"; | |
cl_detail_avoid_radius "0"; | |
cl_detail_avoid_recover_speed "0"; | |
cl_detail_max_sway "0"; | |
func_break_max_pieces "0"; |