frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Show HN: How LLMs Work – Interactive visual guide based on Karpathy's lecture

https://ynarwal.github.io/how-llms-work/
177•ynarwal__•8h ago•45 comments

Show HN: Gova – The declarative GUI framework for Go

https://github.com/NV404/gova
83•aliezsid•8h ago•15 comments

Show HN: Browser Harness – simplest way to give AI control of real browser

https://github.com/browser-use/browser-harness
3•gregpr07•33m ago•0 comments

Show HN: Atomic – Local-first, AI-augmented personal knowledge base

https://atomicapp.ai/
9•kenforthewin•2h ago•2 comments

Show HN: Tolaria – Open-source macOS app to manage Markdown knowledge bases

https://github.com/refactoringhq/tolaria
249•lucaronin•17h ago•114 comments

Show HN: Agent Vault – Open-source credential proxy and vault for agents

https://github.com/Infisical/agent-vault
128•dangtony98•1d ago•43 comments

Show HN: Honker – Postgres NOTIFY/LISTEN Semantics for SQLite

https://github.com/russellromney/honker
283•russellthehippo•1d ago•69 comments

Show HN: leaf – a terminal Markdown previewer with a GUI-like experience

https://github.com/RivoLink/leaf
5•RivoLink•4h ago•1 comments

Show HN: Learn conflict resolution through a 90-second interactive story

https://app.questly.academy/try/play?story=conflict
5•danish00111•8h ago•2 comments

Show HN: Safer – Sleep better while AI agents have shell access

https://github.com/crufter/safer
4•friendly_chap•8h ago•0 comments

Show HN: Broccoli, one shot coding agent on the cloud

https://github.com/besimple-oss/broccoli
71•yzhong94•1d ago•47 comments

Show HN: GoModel – an open-source AI gateway in Go

https://github.com/ENTERPILOT/GOModel/
205•santiago-pl•3d ago•75 comments

Show HN: AgentSearch – Self-hosted search and MCP for AI agents, no API keys

https://github.com/brcrusoe72/agent-search
4•bricrusoe•20h ago•0 comments

Show HN: LocalLLM – Recipes for Running the Local LLM (Need Contributors)

https://locallllm.fly.dev
11•Igor_Wiwi•1d ago•2 comments

Show HN: easl – Instant hosting for AI agents

https://github.com/AdirAmsalem/easl
3•Adir•17h ago•0 comments

Show HN: Pdfnative – zero-dependency TypeScript PDF engine

https://www.npmjs.com/package/pdfnative
3•nizoka•17h ago•0 comments

Show HN: RustNmap

2•greatwallisme•12h ago•0 comments

Show HN: Run coding agents in microVM sandboxes instead of your host machine

https://github.com/superhq-ai/superhq
59•phoenixranger•22h ago•1 comments

Show HN: A Clean Room RFC for NTFS Structural Repair

https://github.com/seb3773/ntfs-repair-rfc/
3•seb3773•14h ago•1 comments

Show HN: Mediator.ai – Using Nash bargaining and LLMs to systematize fairness

https://mediator.ai/
160•sanity•3d ago•74 comments

Show HN: SQL Protocol – learn SQL by running real queries, with 1v1 PvP

https://sqlprotocol.com
2•ItaiZeilig•15h ago•1 comments

Show HN: VidStudio, a browser based video editor that doesn't upload your files

https://vidstudio.app/video-editor
297•kolx•3d ago•107 comments

Show HN: Ctx – a /resume that works across Claude Code and Codex

https://github.com/dchu917/ctx
72•dchu17•3d ago•28 comments

Show HN: Stash – CLI to search over your team's coding agent sessions

https://github.com/Fergana-Labs/stash
7•samzliu•16h ago•1 comments

Show HN: Algorithmic String Art, accessible to all

https://string-loom.pages.dev
12•s_e__a___n•1d ago•4 comments

Show HN: Endo Familiar, an O-cap based JavaScript agent sandbox

https://dcfoundation.io/containing-ai-agents-the-endo-familiar-demo/
13•zmanian•17h ago•3 comments

Show HN: Daemons – we pivoted from building agents to cleaning up after them

https://charlielabs.ai/
69•rileyt•2d ago•34 comments

Show HN: Real-Real-Time Chat

https://kraa.io/kraa/trees
9•levmiseri•1d ago•9 comments

Show HN: Tron Hilbert Curve Macro

https://github.com/EricNelson12/retrocycles-hilbert
2•i_am_a_squirrel•18h ago•0 comments

Show HN: Chestnut – The antidote to AI-induced skill atrophy

https://www.chestnut.so/
7•NickMiladinov•19h ago•3 comments
Open in hackernews

Show HN: MMORPG prototype inspired by World of Warcraft

https://github.com/nickyvanurk/everwilds
28•nickyvanurk•11mo ago

Comments

ricardobayes•11mo ago
Still to this day I have not seen an MMORPG that has as smooth movement and camera system as WoW.
okdood64•11mo ago
Camera movement in FFXIV is fine. Character movement was a bit clunky but still very usable.
kristoff200512•11mo ago
Yes, I think so too! I'm not sure why, but even though technology has advanced so much compared to before, there still isn't an online game that can surpass it.
nickyvanurk•11mo ago
To replicate that feel is pretty much the point of this project.
MacNCheese23•11mo ago
Do i see this correctly, TCP-based Websocket with JSON messages that are parsed?

That is very much removed from any MMORPG type of communication.

One of the hardest parts of a client/server MMO architecture is the network layer, which uses a lossless/retry/fault-prove UDP-based protocol. Everything else sits on top. Luckily, there are tons of sample libraries by now, I suggest peeking at the leaked SW Online sony code which includes the source for their implementation.

jaoane•11mo ago
World of Warcraft uses TCP, which is the correct choice because the current state is the sum of all previous updates. So why not let the kernel handle the hairy parts?
setr•11mo ago
>because the current state is the sum of all previous states

I don't think that's true, except for the server? From the client's perspective, the current state is whatever the hell the server thinks is the sum of all previous state. So you generally don't need lossless message passing; you just need to be able to resync periodically, and trying to resend on lost messages is probably a waste of time if you can sync straight to current state

If the client/server were deterministically simulated -- thus every event must be fully represented on both sides to be in sync -- then sure, but I'm fairly positive no MMO does that

jaoane•11mo ago
That’s not how it works in World of Warcraft though. The server only sends the client the absolute state of the world on login. Then it’s all relative updates. Like: unit X lost 13 hit points. The client derives the current state from that. So UDP is inappropriate because you need things to be ordered.
MJGrzymek•11mo ago
I get net::ERR_CERT_COMMON_NAME_INVALID on everwilds.io (chrome android)