Skip to content

Instantly share code, notes, and snippets.

View amrutadotorg's full-sized avatar
😀
Enjoy yourself

Radoslaw amrutadotorg

😀
Enjoy yourself
View GitHub Profile
@amrutadotorg
amrutadotorg / Dockerfile
Last active December 8, 2025 10:20
readbeyond/aeneas with Debian Trixie - Currently Python 3.13
# Use Debian Trixie - Currently Python 3.13
FROM debian:trixie-slim
ENV DEBIAN_FRONTEND=noninteractive
# 1. Fix Shell Encoding Warning
# This fixes the [WARN] you saw in diagnostics
ENV PYTHONIOENCODING=UTF-8
ENV LANG=C.UTF-8
ENV LC_ALL=C.UTF-8
#!/bin/bash
# VTT Processor Ubuntu Installer Script
echo "===== VTT File Processor Installer ====="
echo "This script will set up everything needed to run the VTT Processor application."
echo ""
# Get username for desktop shortcut
USERNAME=$(whoami)
HOME_DIR="/home/$USERNAME"