frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Show HN: Tiny-vLLM – high performance LLM inference engine in C++ and CUDA

https://github.com/jmaczan/tiny-vllm
127•yu3zhou4•11h ago•10 comments

Show HN: Open-source private home security camera system (end-to-end encryption)

https://github.com/secluso/core
43•arrdalan•8h ago•9 comments

Show HN: TV Explorer. Adding advanced UI to free online TV

https://tvexplorer.live
138•dtagames•14h ago•39 comments

Show HN: VT Code – open-source terminal coding agent in Rust

https://github.com/vinhnx/VTCode
10•vinhnx•3h ago•4 comments

Show HN: Zot – Yet another coding agent harness

https://www.zot.sh
77•patriceckhart•1d ago•69 comments

Show HN: Free activity calendar for schools, sports clubs, and organizations

https://freecal.eu/?lang=en
6•glenn_vc•7h ago•6 comments

Show HN: Self Publish Studio

https://selfpublishstudio.com/
7•noahwardlow•8h ago•0 comments

Show HN: Ktx – Open-source executable context layer for data agents

https://github.com/Kaelio/ktx
82•lucamrtl•1d ago•24 comments

Show HN: Context-aware Japanese furigana using Sudachi and ModernBERT

https://www.ezfurigana.com/
33•epitrochoid413•18h ago•17 comments

Show HN: Continue? Y/N: A 60-second game about AI agent permission fatigue

https://llmgame.scalex.dev
376•Wirbelwind•1d ago•155 comments

Show HN: Promptloop – create, run, and improve prompt evals from the terminal

https://github.com/Bella3202019/promptloop
9•velapod•14h ago•2 comments

Show HN: AionOS – self-healing microkernel in Zig (boots on real hardware)

https://github.com/rodancz/aion
4•rodancz•13h ago•0 comments

Show HN: Oort – A prompt library where every listing has a shipped project

https://oortstack.com
5•Wesearchpress•14h ago•0 comments

Show HN: Hallucinate – Massively Multiplayer Online Rave

https://hallucinate.site
435•stagas•2d ago•193 comments

Show HN: Open-Source AI Racing Harness

https://www.elodin.systems/post/elodin-ai-grand-prix-race-sim-harness
74•danAtElodin•2d ago•22 comments

Show HN: MigraDiff – maintained fork of migra (PostgreSQL schema diff)

https://github.com/migradiff/migra
4•lateos-ai•10h ago•2 comments

Show HN: I brought back Airbnb categories

https://www.vibebnb.fyi/
4•giulioco•10h ago•0 comments

Show HN: I built a better GitHub search that rank repos by what matters

https://reposeek.ai
4•donghaxkim•11h ago•2 comments

Show HN: Local-first semantic knowledge graph with magnetic-pull retrieval

https://github.com/Astralchemist/rig
4•akashi_dev•17h ago•0 comments

Show HN: Open-source Workspace (mail,docs,spreadsheet,drive) web/iOS

https://tinycld.org/
109•nathanstitt•2d ago•39 comments

Show HN: Gaia Atlas – Local Stellar Map

https://valhovey.github.io/gaia-atlas/
6•speleo•13h ago•4 comments

Show HN: NvEnvy – A Notational Velocity (NvAlt) Reboot in Swift. OSS

https://github.com/kenm47/nvEnvy
3•hank2000•13h ago•0 comments

Show HN: Vibewarz – bot vs bot arena for vibecoders

https://vibewarz.com
4•gaomri•13h ago•3 comments

Show HN: Compile-time model-id validation with declared capability

https://github.com/yujonglee/openrouter-toolkit
5•yujonglee•3d ago•2 comments

Show HN: Elemental – simple front ends in plain JavaScript

https://github.com/fynyky/elemental
6•fynyky•15h ago•3 comments

Show HN: Tab Council – turn your AI tabs into a model council

https://github.com/vaddisrinivas/tab-council
3•srinivasvaddi•15h ago•0 comments

Show HN: I made an emergency page for my family

https://help.delduca.org
82•delduca•2d ago•103 comments

Show HN: Repolog, website audit for SEO, performance, security, and AI readiness

https://repolog.io/
5•petersas•16h ago•0 comments

Show HN: TypistStories, new Gothic novel released

https://typiststories.com/
2•afonsosoares•16h ago•2 comments

Show HN: Posthorn, self-hosted mail gateway

https://github.com/craigmccaskill/posthorn
82•craigmccaskill•3d ago•60 comments
Open in hackernews

Show HN: VT Code – open-source terminal coding agent in Rust

https://github.com/vinhnx/VTCode
10•vinhnx•3h ago

Comments

ninja333•2h ago
Can I run a local LLM and connect to it?
vinhnx•1h ago
Thank you for checking out VT Code! Yes, VT Code supports connecting to local LLMs through two main providers: LM Studio and Ollama. But local LLMs inference is experimenting, as I don't have enough hardware with large VRAM to test it, my main machine is MacBook Pro M4 with just 16 GB Ram. The community always have asked for it and I would love to have sought contributor on these regards. My initial vision is to support open weight and local inference. So LM Studio and Ollama are supported but still have bugs. https://github.com/vinhnx/VTCode/blob/a154162f/docs/provider...

Notes: VT Code also supports custom OpenAI-compatible providers through the custom providers' configuration, allowing you to connect to any local LLM server that exposes an OpenAI-compatible API: https://github.com/vinhnx/VTCode/blob/a154162f/docs/config/C...

afshinmeh•1h ago
what does "LLM-native code understanding" mean in this context?
vinhnx•1h ago
Thank you for checking out VT Code! “LLM-native code understanding” refers to VT Code's approach of using LLM as the primary mechanism for semantic code analysis rather than relying solely on traditional static analysis tools. I have tried using ast-grep for structured code parsing understanding as a ground truth before/after the agent executes a code analysis or does a code edit/write operation and code context understanding and symbol analysis. I also tried to use tree-sitter to enhance the user's prompt parser grammar. Example: currently I use tree-sitter bash grammar to check for user input prompts for Unix commands: “run cargo fmt” -> VT Code will detect and understand right away the intent is to run a bash command -> parse and hand it to the harness -> wait for the stdout/err. Then, parse the stdio handle to the LLM as an agent loop. This is to save context and parser roundtrip.

This is just my naive implementation, so as “llm-native code understanding,” VT Code will use LLMs to perform deep code understanding across multiple programming languages as a fallback if my enhance `ast-grep` + ripgrep + tree-sitter implementation is failed, but this relies on the model's intelligent. If you follow end-of last year post-training breakthrough (GPT-5.1 and Opus 4.5 era, November 2025), I read somewhere from Anthropic and OpenAI researchers that now the models are smart enough to understanding code with more context. They even have their own internal monologue so they can reason about code grammars and code context by itself. https://github.com/vinhnx/VTCode/blob/a154162f/docs/README.m...

Note: I don't have enough understanding describing this cleanly as I learn by doing mostly. However, initially when I designed and built VT Code, I had a vision of using and for AST-enhanced grep code for replacement of std grep. I also use my grep tool, called grep. `perg`). I also wanted to parse source code into concrete syntax trees usable in compilers, interpreters, text editors, and static analyzers. Also, I thought of using LSP but still exp. All this might be overhead for a small open source coding harness, but I love to build, so I thought to myself, why not, just build and learn.