frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Show HN: Coasts – Containerized Hosts for Agents

https://github.com/coast-guard/coasts
61•jsunderland323•11h ago•24 comments

Show HN: Rusdantic

https://github.com/mmgehlot/rusdantic
3•mmgehlot•4h ago•0 comments

Show HN: 30u30.fyi – Is your startup founder on Forbes' most fraudulent list?

https://30u30.fyi
230•not-chatgpt•4h ago•97 comments

Show HN: A 3D Body Scan for Nine Cents – Without SMPL

https://clad.you/blog/posts/body-pipeline/
7•arkadiuss•10h ago•2 comments

Show HN: I made my fitness dashboard public and Apple Health needs an API

https://aka.me/blog/personal-software-to-stay-healthy/
8•pbarondadditude•9h ago•6 comments

Show HN: The Alphabetical Clock

https://boat.horse/clock/
38•secretdark•19h ago•22 comments

Show HN: QuickBEAM – run JavaScript as supervised Erlang/OTP processes

https://github.com/elixir-volt/quickbeam
104•dannote•2d ago•16 comments

Show HN: Crazierl – An Erlang Operating System

https://crazierl.org/demo/
70•toast0•1d ago•13 comments

Show HN: Sheet Ninja – Google Sheets as a CRUD Back End for Vibe Coders

https://sheetninja.io
81•sxa001•1d ago•74 comments

Show HN: BreezePDF – Free, in-browser PDF editor

https://breezepdf.com/?v=3
91•philjohnson•1d ago•43 comments

Show HN: Heartbeat – A simple public page for your real-world and online status

https://heartbeat.page/
12•ipster_io•15h ago•9 comments

Show HN: I made a "programming language" looking for feedback

https://github.com/alonsovm44/glupe
36•alonsovm•1d ago•38 comments

Show HN: Memv – Memory for AI Agents

https://github.com/vstorm-co/memv
4•brgsk•9h ago•3 comments

Show HN: Codemaxxing – Maximize your slop abilities

https://github.com/jshchnz/codemaxxing
5•jshchnz•4h ago•1 comments

Show HN: AI Spotlight for Your Computer (natural language search for files)

3•DEEPAN_C•11h ago•0 comments

Show HN: React-Rewrite – Figma for localhost that directly edits your codebase

https://github.com/donghaxkim/react-rewrite
7•donghaxkim•23h ago•1 comments

Show HN: A Terminal Interface for Jira

https://github.com/justinmklam/tira
4•thehaikuza•13h ago•0 comments

Show HN: ListenDock – turn blogs and PDFs into audio

https://listendock.com/blogs
5•janpmz•14h ago•1 comments

Show HN: Pglens – 27 read-only PostgreSQL tools for AI agents via MCP

https://github.com/janbjorge/pglens
11•jeeybee•1d ago•7 comments

Show HN: Payphone Tag is territory game using Australia's 15,000 payphones

https://payphonetag.com
18•gangerang•1d ago•8 comments

Show HN: DeepRepo – AI architecture diagrams from GitHub repos

https://deeprepo.dev
17•uwais12•1d ago•7 comments

Show HN: Timezone App – Visual meeting scheduler for distributed teams

https://timezoneapp.co/
18•choogi•1d ago•3 comments

Show HN: ConvertPNG2JPG – A 100% free, client-side image and PDF converter

https://convertpng2jpg.com/
4•pramaz•16h ago•3 comments

Show HN: Turbolite – a SQLite VFS serving sub-250ms cold JOIN queries from S3

https://github.com/russellromney/turbolite
183•russellthehippo•4d ago•46 comments

Show HN: I made a free list of 100 places to promote your SaaS

https://launchdirectories.com
17•rosennn•1d ago•0 comments

Show HN: Agent Orchestrator, a local-first Harness Engineering control plane

14•gpgkd906•1d ago•0 comments

Show HN: IsDisposable – Open-source disposable email detection (160K+ domains)

https://www.npmjs.com/package/@isdisposable/js
5•junaidshaukat•18h ago•3 comments

Show HN: I put an AI agent on a $7/month VPS with IRC as its transport layer

https://georgelarson.me/writing/2026-03-23-nullclaw-doorman/
339•j0rg3•4d ago•97 comments

Show HN: Fio: 3D World editor/game engine – inspired by Radiant and Hammer

https://github.com/ViciousSquid/Fio
96•vicioussquid•4d ago•12 comments

Show HN: Veil – A Minimal Neovim GUI for macOS with Metal Rendering

https://github.com/rainux/Veil
7•rainux•19h ago•0 comments
Open in hackernews

Show HN: MMORPG prototype inspired by World of Warcraft

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

Comments

ricardobayes•10mo ago
Still to this day I have not seen an MMORPG that has as smooth movement and camera system as WoW.
okdood64•10mo ago
Camera movement in FFXIV is fine. Character movement was a bit clunky but still very usable.
kristoff200512•10mo 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•10mo ago
To replicate that feel is pretty much the point of this project.
MacNCheese23•10mo 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•10mo 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•10mo 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•10mo 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•10mo ago
I get net::ERR_CERT_COMMON_NAME_INVALID on everwilds.io (chrome android)