frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: Rotation via Double Reflection

https://static.laszlokorte.de/rotor-reflect/
18•laszlokorte•22h ago•3 comments

Show HN: 3D Engine for Rust Programs

https://github.com/David-OConnor/graphics
2•the__alchemist•1h ago•0 comments

Show HN: Forst – migrate TypeScript back ends to Go incrementally

https://forst-lang.org/docs
3•haveyaseen•2h ago•0 comments

Show HN: Shoehorn – Quantize any model down to run on your machine

https://notactuallytreyanastasio.github.io/shoehorn/
92•rhgraysonii•4d ago•16 comments

Show HN: Rex, a parallel functional language for scientific workflows

https://github.com/peterkelly/rex
24•peterkelly•5d ago•5 comments

Show HN: OzBrain, a shared brain for knowledge between agents and your team

https://ozbrain.com
71•dariusmonsef•16h ago•45 comments

Show HN: Huzzah – a novel approach to coding with AI

https://www.danielvaughn.dev/posts/huzzah/
373•danielvaughn•1d ago•208 comments

Show HN: I trained a 125M model to autocomplete piano on-device

https://simedw.com/2026/08/20/midi-autocomplete/
584•simedw•2d ago•116 comments

Show HN: Agile AI Development Lifecycle

https://valeriavg.dev/agile-ai-development-lifecycle
2•valeriavg_dev•7h ago•0 comments

Show HN: PgExtAssure – pre-admission security evidence for PostgreSQL extensions

https://github.com/borborich/pgextassure
3•borborich•8h ago•0 comments

Show HN: Proliferate- open-source, self-hostable Codex for any coding agent

https://github.com/proliferate-ai/proliferate
40•pablo24602•23h ago•15 comments

Show HN: EchoVault, an app that interviews you and answers as you after death

https://apps.apple.com/us/app/echovault-digital-legacy/id6762042028
5•kingbillion1•15h ago•5 comments

Show HN: I reverse-engineered Bambu's 3MF color format so GLB keeps the colors

https://github.com/SamiSalah221/3mf-to-glb
3•SamiSalah221•8h ago•1 comments

Show HN: Open-source Stripe Connect alternative

https://zoneless.com
81•tinyprojects•2d ago•36 comments

Show HN: Declarative-forms – await an object the way prompt() awaits a string

https://wolfoo2931.github.io/declarative-forms/
12•WolfOliver•22h ago•1 comments

Show HN: Front end skill pack for AI agents, with machine-enforced quality gates

https://krishna-modi12.github.io/frontend-design-pro/
2•KrishnaModi12•10h ago•0 comments

Show HN: Check if any of the $656M in unclaimed royalties at The MLC is yours

https://pub.doub.ly/
76•knaught•2d ago•37 comments

Show HN: Public Muscriptor Instance (latest, most powerful Audio-to-MIDI model)

https://www.pianoify.net/
9•jardy•1d ago•0 comments

Show HN: Oasis - Giving Agents Situational Awareness

https://joinoasis.com
7•ns90001•22h ago•3 comments

Show HN: I let an subagent workflow refactor my codebase for three days

https://github.com/ringlochid/oh-my-subagents
6•ringlochid•13h ago•2 comments

Show HN: ServerKit - Self-hosted control panel for apps, Docker, and databases

https://github.com/jhd3197/ServerKit
3•jhd3197•13h ago•0 comments

Show HN: Heimdall – Trust-verified knowledge layer for AI coding agents

https://github.com/ArihantDeva/heimdall
3•arihantdeva•13h ago•0 comments

Show HN: Automatically detect and patch walking-dead states in Sierra games

https://github.com/katiahayati/lucasartsifier/
159•wkfauna•3d ago•97 comments

Show HN: Plethora – Social platform and SDK around games and interactive content

https://plethora.studio/
3•pratt3000•14h ago•1 comments

Show HN: ParqDB – Vector search in the browser from Parquet over HTTP"

https://search.parqdb.io/
25•petrizhang•1d ago•4 comments

Show HN: We chased a weather balloon across Montana and never found it

https://radi8.dev/blog/uplink/
59•radeeyate•1d ago•26 comments

SHOW HN: WillItSpam – paste an email, see why it will land in spam

https://willitspam.com
4•vladimir-aleksi•1d ago•0 comments

Show HN: Argentic – An L402 Lightning toll booth for AI scraping agents

https://Argentic.network
9•Ag0146•1d ago•7 comments

Show HN: Saggar, a Mac terminal that keeps sessions and your attention organized

https://saggar.marginalutility.dev/
70•mcclowes•5d ago•61 comments

Show HN: Gramola, a CoverFlow-style music dock for macOS

https://apps.apple.com/us/app/gramola-music-dock/id6801078031?mt=12
7•fulltimefeline•23h ago•2 comments
Open in hackernews

Show HN: Forst – migrate TypeScript back ends to Go incrementally

https://forst-lang.org/docs
3•haveyaseen•2h ago
Over the past ~1.5 years I've been working on this programming language called Forst with the primary goal of replacing TypeScript on the backend.

I'd seen many times that running JavaScript on the backend often leads to memory spikes, especially when handling larger data structures, and other inefficiencies due to over-usage of the heap and being restricted to one core by default. So I wanted more efficient native code to replace it but also figured that it's often simply too risky and time consuming to rewrite entire codebases in Go, Rust, or others.

This idea led the design. By now, Forst is interoperable with Node, so you can call Forst code from Node via IPC or an HTTP sidecar, and even call existing TS code from Go if you're running a Node process as a child process of your Forst host process. These features enable an incremental migration of parts of your codebase rather than having to go all-in immediately.

It started out as a transpiler that emits Go code with support for structural typing in a way closer to TypeScript, i.e. allowing anonymous objects to be passed to functions and just matched on required properties. Overall however both the syntax and the semantics of the language are designed to be as close to Go as possible, both to avoid Go's developing features from interfering with the design and to prevent Forst from becoming an exotic language that no one wants to risk using in production.

Other features include:

  - import any Go code directly, to profit from its massive ecosystem
  - an `ensure` keyword that promotes early returns
  - a first-class `error` keyword that makes errors explicit, nominal structs that are shared between ecosystems
  - a first-class dependency injection feature called *Providers* via `with` and `use` keywords
  - constraints on types (refinement types) you can define yourself using *type guards* that look like Go functions
You can also check the docs and the roadmap for more details.

There is a VSCode extension with a built-in LSP so you get syntax highlighting and IntelliSense on hover.

(Disclaimer: The compiler has pretty much been vibe-coded but I'd say it is quite well tested at this point.)

Let me know what you think, I'm very curious about your feedback! Would love to hear about any new ideas, problems you encounter with it or even fundamental concerns you have that I haven't considered.