frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Show HN: A Karpathy-style LLM wiki your agents maintain (Markdown and Git)

https://github.com/nex-crm/wuphf
158•najmuzzaman•7h ago•80 comments

Show HN: SherifDB, a databe written in Golang under 500 LOC

https://emmanuel326.github.io/blogs/sheriffdb.html
3•Nya-kundi•1h ago•1 comments

Show HN: WhiskeySour – A 10x faster drop-in replacement for BeautifulSoup

6•ayas_behera•1h ago•1 comments

Show HN: I've built a nice home server OS

https://lightwhale.asklandd.dk/
159•Zta77•18h ago•58 comments

Show HN: Browser Harness – Gives LLM freedom to complete any browser task

https://github.com/browser-use/browser-harness
116•gregpr07•1d ago•55 comments

Show HN: Gova – The declarative GUI framework for Go

https://github.com/NV404/gova
134•aliezsid•1d ago•27 comments

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

https://github.com/russellromney/honker
300•russellthehippo•2d ago•78 comments

Show HN: VT Code – Rust TUI coding agent with multi-provider support

https://github.com/vinhnx/VTCode
12•vinhnx•12h ago•2 comments

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

https://github.com/Infisical/agent-vault
147•dangtony98•2d ago•54 comments

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

https://github.com/refactoringhq/tolaria
294•lucaronin•1d ago•132 comments

Show HN: Nimbus – Browser with Claude Code UX

https://usenimbus.app/
15•pycassa•20h ago•1 comments

Show HN: HNswered – watches for replies to your Hacker News posts and comments

https://github.com/adam-s/HNswered
20•dataviz1000•20h ago•20 comments

Show HN: Agent MCP Studio – build multi-agent MCP systems in a browser tab

https://www.agentmcp.studio
9•stealthtsdb•9h ago•2 comments

Show HN: Built an AI that maps 17 facial dimensions and shows what to improve

https://realsmile.online
5•realsmile•11h ago•1 comments

Show HN: Collaborative sentence builder with real-time voting

https://www.sentensus.com/
11•cd-4•11h ago•0 comments

Show HN: Bunny Agent – Build Coding Agent SaaS via Native AI SDK UI

https://github.com/buda-ai/bunny-agent
8•chepy•12h ago•0 comments

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

https://github.com/RivoLink/leaf
43•RivoLink•1d ago•22 comments

Show HN: I Reverse Engineered Codex Background Computer Use

https://github.com/actuallyepic/background-computer-use
9•anupamb•18h ago•0 comments

Show HN: Markdown as a Database

https://github.com/molefrog/lilmd
10•molefrog•19h ago•1 comments

Show HN: Claude Code Manager

https://claude.ldlework.com/
10•ldlework•19h ago•1 comments

Show HN: I built a simple site to reduce tool overload and improve focus

8•saeefwaleed•19h ago•1 comments

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

https://github.com/besimple-oss/broccoli
81•yzhong94•2d ago•49 comments

Show HN: Built a daily game where you sort historical events chronologically

https://hisorty.app/
72•damiannn•2d ago•62 comments

Show HN: #1 On This Day

https://onthisday-theta.vercel.app
17•starzmustdie•23h ago•1 comments

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

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

Show HN: Lilo – a self-hosted, open-source intelligent personal OS

https://github.com/abi/lilo
7•abi•20h ago•3 comments

Show HN: Markant – A Dedicated Markdown Reader

https://markant.md/
6•lokimedes•22h ago•2 comments

Show HN: RoboAPI – A unified REST API for robots, like Stripe but for hardware

https://github.com/amitb-quantum/roboapi
10•xmas123•16h ago•2 comments

Show HN: Codex context bloat? 87% avg reduction on SWE-bench Verified traces

https://www.npmjs.com/package/pando-proxy
9•george_ciobanu•18h ago•2 comments

Show HN: I built a CLI that turns your codebase into clean LLM input

https://github.com/NoahCristino/llmcat
10•cristinon•18h ago•0 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)