Skip to content

Instantly share code, notes, and snippets.

View andreynaldoni's full-sized avatar

Andrey Naldoni andreynaldoni

View GitHub Profile
@sbhadr
sbhadr / roblox_api_domain_list.txt
Last active September 15, 2025 15:26
Roblox API Domain List - (Last Updated 5/17/23)
This is a list of all known endpoints for the Roblox API.
This list is meant to be used as a educational & informative
resource to help you match thirdparty development with the functionality
that you need. It's highly advised and against the point of this list to abuse,
cheat or phish other users. Please be mindful.
[Basic]
websiteUrl - https://www.roblox.com
apiProxyUrl - https://api.roblox.com (deprecated / no longer reachable)
@andreynaldoni
andreynaldoni / tesseract.bat
Last active April 30, 2025 16:50
Install Tesseract in Windows using Chocolatey
@ECHO OFF
ECHO [Info] Checking admin rights
NET SESSION
CALL :CHECK_ERROR_ECHO [Error] You need admin rights to run this batch file
IF %ERRORLEVEL% NEQ 0 (
TIMEOUT 5
EXIT
)
ECHO [Info] Checking if chocolatey is installed...