Stop wasting your life on Microsoft Word. Paste code. Get a perfect PDF. Pass the lab.
I built this because I was tired of the busywork, and now it's here to save your weekends too.
It's not just a "formatter"—it's a full-blown execution engine that runs your code, captures the output (even the graphs), and hands you a submission-ready PDF before you can finish your coffee.
- Native Execution, No BS: We don't just "highlight" your code. We run it. Python, C, C++, Node.js—it all executes in a real, isolated environment.
- PDFs That Look Better Than Yours: Syntax highlighting? Check. Vector graphs? Check. Formatting that makes TAs weep with joy? Double check.
- VSCode in the Browser: The IDE experience you know and love, right there in the web app. No learning curve.
- Bulletproof Security: Every single line of code runs in a locked-down Docker container. It’s safer than your grandma’s PC.
- Traffic? What Traffic?: Our custom queue system handles load like a champ. 100 students trying to submit at 11:59 PM? No problem.
We didn't cut corners. We built this with the best tools available.
- Next.js 16 (React 19): Bleeding edge. Fast as hell.
- Tailwind CSS v4: Because writing CSS files is so 2015.
- Monaco Editor: The engine behind VSCode. If it's good enough for Microsoft, it's good enough for us.
- Custom Runner Service: A Node.js beast using
node-ptyto stream real terminal outputs via WebSockets. It's real-time, it's raw, and it's beautiful. - Docker Isolation: Custom-built
python-runnerimages that spin up in milliseconds and vanish just as fast. - PostgreSQL + Prisma: Rock-solid data storage.
- JWT Auth: Secure, stateless, and scalable.
This isn't a hackathon toy. It's built to survive the real world.
- "Nice Try, Hackers": You can't break out. Containers run with
--network none(no internet access), restricted CPUs, and capped memory. You run your logic, not a crypto miner. - The Queue: We implemented a smart FIFO semaphore system. If the server is full, you don't crash it—you get a ticket. We process jobs orderly, ensuring 100% uptime.
- Garbage Collection: We clean up after ourselves. Ephemeral containers and temp files are nuked instantly after execution. The server stays lean and mean.
Want to see how the sausage is made? Here is how you spin it up locally.
- Node.js (v18+)
- Docker (Running)
- Postgres
-
Clone it.
git clone https://github.com/yourusername/autolabdocs.git cd autolabdocs -
Install the goods.
npm install cd backend-runner && npm install && cd ..
-
Config. Create a
.envfile. You know the drill.DATABASE_URL="postgresql://user:pass@localhost:5432/autolabdocs" SESSION_SECRET="mash-your-keyboard-here-to-make-it-secure"
-
Database.
npx prisma db push
-
Build the Runner. Crucial Step. You need the engine image.
cd backend-runner docker build -t python-runner:latest . cd ..
-
Launch. Terminal 1 (Frontend):
npm run dev
Terminal 2 (The Muscle):
cd backend-runner node server.js
Built by Adithya Hegde Kota.
I solve my problems. Then I generalize them so you can solve yours. I am leveling up, getting sharper, and building faster every single day.
Open for opportunities. If you want a builder who actually ships high-leverage work, let's talk.