frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: Build your own theme park

https://www.magicpatterns.com/theme-park
43•thealexanderlee•13h ago•18 comments

Show HN: We built the smallest dual-band aircraft tracker

https://pantsforbirds.com/the-worlds-smallest-dual-band-ads-b-receiver-module/
27•CoolNamesAllTkn•9h ago•4 comments

Show HN: Devx – Autonomous AI coding agent built for Android Termux and desktop

https://github.com/apvcode/Termux-Dev
11•apvcode•9h ago•1 comments

Show HN: Every push-up becomes an attack in a camera-counted RPG game

https://pushup.quest/
20•not_wowinter13•9h ago•6 comments

Show HN: I wrote a BASIC interpreter that boots on UEFI machines

https://tarjan.itch.io/thoreaubasic
154•Gorsefound•3d ago•43 comments

Show HN: LatticeDB – Like SQLite but for graph databases

https://github.com/jeffhajewski/latticedb
179•smiths1999•1d ago•49 comments

Show HN: Buslens – where can I get to by bus? (UK)

https://rupertlinacre.com/buslens/
77•RobinL•22h ago•54 comments

Show HN: Tally – Track campaign donors, promises, and voting records

https://tally-2026.github.io/
2•Somnora•5h ago•1 comments

Show HN: TexLite – A lightweight self-hosted LaTeX workspace

https://github.com/SWUFE-DB-Group/TexLite
20•thisispi•15h ago•0 comments

Show HN: Bury.lol – a $2 pixel-art graveyard for things that died

https://bury.lol/
10•alertcubes•15h ago•0 comments

Show HN: TeXbrain, a LaTeX editor that runs pdfTeX in the browser via WASM

https://github.com/swimmingbrain/texbrain
117•swimmingbrain•1d ago•27 comments

Show HN: NetSour, the modular packet analyzer TUI

https://github.com/thegoodduck/NetSour
4•thegoodduck•10h ago•0 comments

Show HN: How much of Hacker News is about AI?

https://hnstats.com
69•beekthos•15h ago•46 comments

Show HN: Timber (iOS) and Timber Tabs (Mac) – best offline read-aloud LLMs

https://timberreader.com/
11•Fe2_O3•12h ago•1 comments

Show HN: Prompt Builder – Free Templates

https://www.promptbuilder.space/templates
17•LandoLorinse•16h ago•0 comments

Show HN: Fab Friends a crowdfunding site for Rwandan college students

https://www.joinfabfriends.org
4•muramira•8h ago•0 comments

Show HN: Lightweight system monitor for Linux VPS written in Go

https://github.com/leodeim/vpsmon
61•ygagaga•1d ago•17 comments

Show HN: Railo – Deterministic security patch bot using AST and Z3 (no LLMs)

https://www.railo.dev
4•mdzariflatif•12h ago•1 comments

Show HN: I built self-hosted deployment automation tool for Windows and IIS

https://fdeploy.com/
34•dt3ft•1d ago•20 comments

Show HN: SSH Session Monitor – read-only Windows OpenSSH monitoring

https://github.com/issacnitin/SshSessionMonitor
3•issacnitin•13h ago•0 comments

Show HN: Invader – an indie iOS podcast player that never phones home

https://invader.gg/
3•HeadOfProbing•9h ago•3 comments

Show HN: Family sync with no server – Apple-signed entitlements on iOS

https://receiptiq.me/blog-family-sync-architecture
5•nichliu•13h ago•0 comments

Show HN: A techno machine in one HTML file, with verifiable renders

https://ssx360.github.io/rack-02/?src=hn
236•ssx360•2d ago•46 comments

Show HN: Infra Lang – Compile a Single DSL to K8s, Compose, Helm and Terraform

3•Tuvi•10h ago•0 comments

Show HN: Find Perth jobs. Hire local talent

https://jobsinperth.com.au
2•wowinter15•10h ago•0 comments

Show HN: Ten_cubed – Artificially restricted social graph

https://tencubed.dev
3•darkpicnic•10h ago•0 comments

Show HN: Convolens – Real time slides and fact-checking

https://demo.convolens.ai
3•Banbanaste•10h ago•0 comments

Show HN: Highball – Run Windows games on Apple Silicon, with an open game db

https://github.com/gauthierpiarrette/highball
4•gauthierpiarret•14h ago•0 comments

Show HN: Use GLM-5.3 in Cursor today via tokengo API

https://www.tokengo.com
3•bingus-bongo•10h ago•2 comments

Show HN: PicoMQ – Durable Streams over HTTP, on object storage

https://picomq.com/
154•adesh_nalpet•2d ago•31 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)