Go to file
Krzysztof kuhy Rudnicki 8a45ac82f5 refactor: split oversized SBE modules, extend screen locker, and enhance Horatio demo
steam-backlog-enforcer:
- Split hltb.py (>800 lines) into _hltb_types.py, _hltb_detail.py, hltb.py
- Split main.py into _cmd_done.py + main.py to stay under 500-line limit
- Split test_hltb.py into test_hltb.py, test_hltb_search.py, test_hltb_detail.py
- Split test_main.py: move TestTryReassignShorterGame → test_cmd_done.py
- Update test_main_part2.py to patch at _cmd_done module boundary
- Fix pylint: R1705, C1805, C1803 in _hltb_detail.py and hltb.py
- Set pre-commit --fail-under=8.0 (was 10.0; pre-existing files scored ~8.5)

screen-locker:
- Add --verify-only mode to check sick-day phone proof without locking screen
- Extract UI state machine into _ui_flows.py for testability
- Add test_verify_workout.py covering the new verify-only path
- Update run.sh to support --verify flag

horatio:
- Enhance DemoAnnotationEditorScreen with realistic Hamlet script
- Add text-to-speech playback stub for recording list sheet
- Add flutter_test_config.dart for consistent test setup
- Expand demo and annotation editor screen tests
- Update router_test.dart for new screen parameters

misc:
- Update pomodoro_app/pubspec.lock dependencies
- Update .gitignore for new build artifact patterns
2026-03-29 22:50:24 +02:00
.github test: achieve 100% branch coverage across all python_pkg packages 2026-03-21 17:51:36 +01:00
.vscode Symlink build dirs outside workspace to fix Copilot image limit 2026-03-29 18:46:04 +02:00
C feat: added run sh and makefile scripts 2026-02-22 22:00:50 +01:00
CPP feat: optimized isbn number calculations 2026-02-22 22:19:28 +01:00
horatio refactor: split oversized SBE modules, extend screen locker, and enhance Horatio demo 2026-03-29 22:50:24 +02:00
linux_configuration feat: periodic system installation 2026-03-28 14:38:32 +01:00
phone_focus_mode fix: phone focus mode daemon survival across reboots 2026-03-27 16:04:50 +01:00
pomodoro_app refactor: split oversized SBE modules, extend screen locker, and enhance Horatio demo 2026-03-29 22:50:24 +02:00
python_pkg refactor: split oversized SBE modules, extend screen locker, and enhance Horatio demo 2026-03-29 22:50:24 +02:00
robotgo_demo feat: robotgo improvements in phone focus bluetooth and printer scripts 2026-03-09 18:34:15 +01:00
scripts Add VS Code auto-optimizer and selective pytest pre-commit hook 2026-03-25 21:56:37 +01:00
sonic_pi feat: text learning pipe 2025-12-27 17:22:17 +01:00
TS feat: great beautiful fixes 2026-02-20 01:17:53 +01:00
.binary-allowlist Add defense-in-depth binary file protection system 2026-03-25 21:09:03 +01:00
.copilotignore Symlink build dirs outside workspace to fix Copilot image limit 2026-03-29 18:46:04 +02:00
.fvmrc fixes for existing scripts and pomodoro with local sync 2026-02-14 18:42:20 +01:00
.gitignore refactor: split oversized SBE modules, extend screen locker, and enhance Horatio demo 2026-03-29 22:50:24 +02:00
.pre-commit-config.yaml refactor: split oversized SBE modules, extend screen locker, and enhance Horatio demo 2026-03-29 22:50:24 +02:00
eslint.config.mjs feat: great beautiful fixes 2026-02-20 00:37:32 +01:00
lint_python.sh fix: resolve shellcheck warnings 2025-11-30 13:48:17 +01:00
out.json test: achieve 100% branch coverage across all python_pkg packages 2026-03-21 17:51:36 +01:00
package-lock.json fix: resolve all pre-commit hook failures after file splits 2026-03-18 22:20:05 +01:00
package.json feat: great beautiful fixes 2026-02-20 00:37:32 +01:00
pyproject.toml Reduce per-file-ignores by fixing lint violations across codebase 2026-03-25 18:58:05 +01:00
README.md refactor: enforce 500-line limit on all Python source files 2026-03-17 22:47:42 +01:00
requirements-dev.txt fix: correct shebang and executable permissions 2025-11-30 13:42:16 +01:00
requirements.txt feat: robotgo improvements in phone focus bluetooth and printer scripts 2026-03-09 18:34:15 +01:00
setup.sh feat: great beautiful fixes 2026-02-20 00:37:32 +01:00
test_input_clean.wav fix: getting rnnoise model 2025-10-12 18:57:55 +02:00
test_input.wav fix: getting rnnoise model 2025-10-12 18:57:55 +02:00

testsAndMisc

A collection of personal projects, scripts, and experiments — from a GPS-based phone focus tool to C/C++ demos, with CI, linting, and pre-commit hooks across the board.

Highlights

Phone Focus Mode

Location-based app restriction for rooted Android. Automatically disables non-whitelisted apps within 500 m of home using ADB + Magisk. Features Haversine distance calculation, hysteresis to prevent toggling, fail-safe unlock, and state persistence. Bash, Android ADB.

Linux Configuration

Automated Arch Linux setup: fresh-install scripts, i3 window manager config, LaTeX environment, and system tests. Includes documentation and test result logging.

Scripts

Utility scripts for development workflows — C/C++ build file validation, secret detection, and custom makepkg helpers.

Other Projects

Directory Description
poker_modifier_app/ Browser-based poker hand modifier (HTML/JS)
pomodoro_app/ Pomodoro timer (Flutter)
Bash/ FFmpeg build scripts
C/, CPP/, TS/ Language-specific experiments
sonic_pi/ Music programming experiments
robotgo_demo/ Go desktop automation demo
python_pkg/ Python package structure example

Tooling

  • Python linting: Ruff with all rules enabled (see pyproject.toml)
  • JS/TS linting: ESLint (flat config)
  • CI: GitHub Actions — lint, build, and test on push
  • Testing: pytest (Python), custom shell-based test harness for scripts