frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: TeXbrain, a LaTeX editor that runs pdfTeX in the browser via WASM

https://github.com/swimmingbrain/texbrain
22•swimmingbrain•1h ago•3 comments

Show HN: I made a Raspberry with Qwen my local car AI

https://github.com/ThinkOffApp/CarWatch
81•petruspennanen•8h ago•15 comments

Show HN: LatticeDB – Like SQLite but for graph databases

https://github.com/jeffhajewski/latticedb
94•smiths1999•6h ago•30 comments

Show HN: I built self-hosted deployment automation tool for Windows and IIS

https://fdeploy.com/
10•dt3ft•16h ago•3 comments

Show HN: Lightweight system monitor for Linux VPS written in Go

https://github.com/leodeim/vpsmon
44•ygagaga•6h ago•14 comments

Show HN: I wrote a BASIC interpreter that boots on UEFI machines

https://tarjan.itch.io/thoreaubasic
122•Gorsefound•2d ago•38 comments

Show HN: 1 Bit Pixel, pixel art editor with a CRT soul (iPad/Mac)

https://1bitstudio.app/pixel/
3•selimonder•1h ago•0 comments

Show HN: Graphlib 3.1 – the C++ 23, header only solution to directional graphs

https://github.com/RANDOMFNP/Graphlib
2•RandomFNP•2h ago•0 comments

Show HN: Ecdeos – P2P Web/Native Distributed OS on Entity Core Protocol

https://ecdeos.org
2•billatbillslab•2h ago•0 comments

Show HN: Wireshark in a TUI

https://github.com/yeet-src/pktscope
3•ok_major_9889•5h ago•1 comments

Show HN: Sillage a 4 MB memory that lets a frozen language>model remember

https://github.com/riscoss63/sillage
3•riscoss•3h ago•0 comments

Show HN: MulmoTerminal – Run many Claude Code sessions, see which needs you

https://github.com/receptron/mulmoterminal
3•isamu138•4h ago•5 comments

Show HN: A techno machine in one HTML file, with verifiable renders

https://ssx360.github.io/rack-02/?src=hn
225•ssx360•1d ago•45 comments

Show HN: I missed the moving blocks, so I built a real Linux disk defragmenter

https://github.com/gbin/defragger
2•gbin•4h ago•1 comments

Show HN: PicoMQ – Durable Streams over HTTP, on object storage

https://picomq.com/
147•adesh_nalpet•1d ago•28 comments

Show HN: Dribbling the AI Watermark Directly In-Prompt

https://www.explore-exploit.com/p/dribbling-the-ai-watermark-directly
2•jejay•5h ago•0 comments

Show HN: GlassBox – what the browser reveals, and how identifiable you are

https://glassbox.codecanary.org
124•tke248•1d ago•59 comments

Show HN: I built a cybersecurity challenge for university students

https://vitb-polimi-cyber-v4.vercel.app/
2•adityainsights•6h ago•0 comments

Show HN: Typeclip – types your clipboard like a human, for screen recordings

https://github.com/cssllcio/typeclip
3•izenme•6h ago•0 comments

Show HN: Is this the limit of what a solo founder can build?

https://limitpixel.com/
2•truth_behold•6h ago•2 comments

Show HN: Offer discounts and get more visitors

https://outdiscount.lol/
2•devarifhossain•6h ago•0 comments

Show HN: A Modern GUI Library for Ada: CSS Styling, XML UI, SDL3

https://github.com/ovenpasta/adi2
57•ovenpasta•1d ago•23 comments

Show HN: Player vs. Computer – fight your computer in my web game

https://github.com/Rubinoslaw/Player-vs-Computer/
2•PolishDevelop22•6h ago•0 comments

Show HN: JeopardyGithub: GitHub Repo to Jeopardy Game

https://jeopardygithub.com
2•init0•7h ago•2 comments

Show HN: Canaster is a canvas based visual workspace

2•shardullavekar•7h ago•0 comments

Show HN: Flostep – Diagrams people can actually walk through

https://flostep.dev/
25•pandurang90•1d ago•9 comments

Show HN: Searching for optimal strategies in a puzzle game with chance (Drop7)

https://drop7.dev
3•primitivesuave•7h ago•0 comments

Show HN: A portable evidence record for what an AI agent ran

https://trace.agentrust-io.com/
3•mosiddi•7h ago•1 comments

Show HN: Screen memory without screenshots, just text to Markdown

https://github.com/dragthelake/ambient-context
61•Dramatize•19h ago•25 comments

Show HN: Orbit - One agent across many repos: real worktrees, no index

https://github.com/orbcli/orbit
2•firespark•7h ago•0 comments
Open in hackernews

Show HN: TeXbrain, a LaTeX editor that runs pdfTeX in the browser via WASM

https://github.com/swimmingbrain/texbrain
22•swimmingbrain•1h ago
I'm a master's engineering student and a big fan of LaTeX, which I used for my thesis and research articles. I have used Overleaf and that was fine until I wanted to git sync, which unfortunately sits behind a paywall. Since I didn't want to pay subscriptions for things that should simply just work, I built the editor I wanted in my free time, where you open a tab, write LaTeX, get your PDF and the files stay all in one folder on my disk.

TeXbrain is a static site with no backend. pdfTeX is compiled to WebAssembly (SwiftLaTeX) and runs in your browser. The editor can read and write your project folder through the File System Access API, so you can use git, any local TeX install, local AI Agents, or any other editor on the same files. Git is built in through isomorphic-git for anyone who would rather not touch a terminal and clone, branch, commit, push or pull via commands. No account is needed, no analytics, and everything works offline after the first load.

Try it out: https://tex.swimmingbrain.dev/ (Chromium browsers get direct folder access, while Firefox or Safari fall back to a virtual filesystem)

Or for self-hosting/contributing: https://github.com/swimmingbrain/texbrain (MIT, the pdfTeX engine is EPL 2.0 / GPL 2.0 and is listed in the THIRD_PARTY_LICENSES file).

The part I'm most proud of getting to work is the package loading. The engine itself is only 1.8 MB. When it asks for a file it doesn't have, then a service worker intercepts the request and resolves it through Cache Storage first, then a small bundled subset, then a TeX Live tree mirrored on jsDelivr, then a SwiftLaTeX style server as a last resort. Every file is fetched once at most and after the first successful compilation, the core subset is prefetched in the background so that the offline story actually holds. Only file names go over the network, never any document content.

So far, it only supports pdfTeX (no XeTeX or LuaTeX), so fontspec or polyglossia won't work, packages are pinned to the TeX Live 2020 era to stay coherent with the engine's format file and there is no bibtex or biber in the engine yet, which is maybe the roughest edge.

This is should be a good solution for people on a work laptop, a Chromebook, or a university lab PC where installing TeX Live isn't always an option, and people who don't want to maintain a TeX install at all. If you already have a local setup you like, keep it. This isn't necessarily thought as a replacement for that.

Some people have already used it for their thesis in the past months and their bug reports (which I would never have hit on my own) were then most of the summer's work. The first outside PR also landed recently, so if something doesn't compile for you, an issue with the package name or the bug itself is the most useful thing you can send me!

Comments

copperx•1h ago
Well done!
Gualdrapo•43m ago
This is super cool. I wish there was something like this for ConTeXt too.
kccqzy•8m ago
Does this work on Firefox or Safari? You say “Firefox or Safari fall back to a virtual filesystem” but somehow I can’t get this fallback to work. Is there a button to press to trigger the fallback?