inital Jack

This commit is contained in:
2026-03-30 15:42:39 -04:00
commit cd46057cd2
11 changed files with 837 additions and 0 deletions
+23
View File
@@ -0,0 +1,23 @@
@echo off
setlocal
cd /d "%~dp0"
where python >nul 2>&1
if %errorlevel% equ 0 (
set "PY=python"
) else (
where py >nul 2>&1
if errorlevel 1 (
echo Python not found. Install from https://www.python.org/
pause
exit /b 1
)
set "PY=py"
)
echo Calculator: http://localhost:8888
start "" "http://localhost:8888"
"%PY%" -m http.server 8888 --bind 127.0.0.1
echo.
pause