frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: Bento - An entire PowerPoint in one HTML file (edit+view+data+collab)

https://bento.page/slides/
589•starfallg•8h ago•141 comments

Show HN: Cactus Hybrid: We taught Gemma 4 to know when it's wrong

https://github.com/cactus-compute/cactus-hybrid
29•HenryNdubuaku•5h ago•4 comments

Show HN: ValuePair – a friendship app that cares about values first

https://valuepair.app
4•zloy88•1h ago•4 comments

Show HN: Vivace – A single-process Qt media player with interactive DVD menus

https://github.com/Sportacandy/vivace
2•Sportacandy•12m ago•0 comments

Show HN: DeepSQL – A self-hostable DBA agent for Postgres and MySQL

https://deepsql.ai/
42•venkat971•2d ago•21 comments

Show HN: Web swing through midtown NYC

https://www.swingnyc.com/
61•shahahmed•7h ago•24 comments

Show HN: 1,280 open USDZ furniture assets for VR/AR

https://lx2026.github.io/genhome3d-1280/
4•linxy97•34m ago•0 comments

Show HN: HN Hall of Fame – browse 3,100 legendary Hacker News links

https://www.orangecrumbs.com/hall/
178•oyster143•7h ago•37 comments

Show HN: The Daily FM – Turn any source into a daily podcast

https://thedaily.fm/
4•carimura•2h ago•1 comments

Show HN: I ran 12 AI bots predicting stocks for two months, every call public

https://ldbd.app
3•kkjh0723•52m ago•0 comments

Show HN: NextBest – See what skincare people recommend

https://www.nextbest.one
3•kalila855•1h ago•0 comments

Show HN: LiquidBrain – Unlimited Tokens. Unlimited Context. One Fixed Price

https://liquidbrain.ai/
4•salsta1•2h ago•2 comments

Show HN: Promptrack A local menu bar app that tracks your Claude Code usage

https://promptrack.dev/
2•feskk•1h ago•0 comments

Show HN: Kalvir Clock

https://kalvir.life/clock
3•kalv•3h ago•0 comments

Show HN: Stream Android Emulators to a Browser Window

https://github.com/hsandhu/serve-avd
4•rsandhu•1h ago•0 comments

Show HN: What's one random memory from your childhood that you'll never forget?

https://mil.now
2•untitled-now•2h ago•0 comments

Show HN: I brute-forced a wooden Antikythera-style puzzle in Rust

https://github.com/garyhtou/grecian-computer
2•garyhtou•2h ago•1 comments

Show HN: Autograd-Free LLM Guiding with 0MB VRAM (Alternative Pathways)

https://github.com/PJHkorea/Continuous_Wave_Field_LLM_Brain
2•PJHkorea•2h ago•1 comments

Show HN: Focus on approving agent actions and managing team MCP access

https://gettrustloop.app
2•ducnguyen67201•2h ago•0 comments

Show HN: Cartopolis – OpenStreetMap rendered like it's 1999

https://seriot.ch/drawing/cartopolis/
4•beefburger•5h ago•0 comments

Show HN: Millwright – Rust-based, self-hosted LLM router

https://github.com/Northwood-Systems/millwright
5•AndrewLiu96•4h ago•2 comments

Show HN: SlapMetrics – Mac menu bar app that monitors Stripe/GA4 metrics

https://www.slapmetrics.com
2•devtanna•2h ago•0 comments

Show HN: Netmon – self-hosted LAN monitor with sarcastic AI reports to Telegram

https://github.com/Role1776/netmon
2•OymInIRole•3h ago•0 comments

Show HN: ReadKinetic – a free, local-first speed reader for your own books

https://www.readkinetic.com/app/
95•SamuraiLion•17h ago•60 comments

Show HN: Pacwich, Monorepo tooling for Bun/NPM/pnpm (try the browser CLI demo)

https://pacwich.dev
2•smorsic•3h ago•0 comments

Show HN: TTFT benchmark: LLM Gateway vs. OpenRouter (Claude-haiku-4.5, 150 runs)

https://llmgateway.io/blog/openrouter-vs-vercel-vs-llmgateway-performance
3•proxysoul•3h ago•0 comments

Show HN: Agent in 9 Lines Python

https://gist.github.com/tosh/6e91a9dbf08dd630c535e7345ac7f0b5
17•tosh•9h ago•7 comments

Show HN: Paste a job description, get a broken Kubernetes cluster to fix

https://prepme.io
3•ilyasubach•3h ago•2 comments

Show HN: Szr: A safer command output reduction for coding agents

https://github.com/devr-tools/szr
3•alxxjohn•5h ago•2 comments

Show HN: Stele – A self-maintaining knowledge graph for AI coding agents

https://stele-ai.dev/
4•serkanyersen•5h ago•2 comments
Open in hackernews

Show HN: MMORPG prototype inspired by World of Warcraft

https://github.com/nickyvanurk/everwilds
28•nickyvanurk•1y ago

Comments

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