frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: Immersive Gaussian Splat tour of grace cathedral, San Francisco

https://vincentwoo.com/3d/grace_cathedral/
116•akanet•8h ago•24 comments

Show HN: OTP Inspired actor supervisor based full stack templates

https://shipstacks.tech
10•annrap1d•14h ago•1 comments

Show HN: Envy - A flat-file, frictionless note-taking application for macOS

https://envynote.app
4•widowlark•1h ago•0 comments

Show HN: Shackle – Deterministic runtime governance for AI agents

https://github.com/Fame510/SHACKLE
2•shacklepro•1h ago•0 comments

Show HN: pgwd – PostgreSQL connection alerts with cron exit codes

https://github.com/hrodrig/pgwd
2•hejeroaz•1h ago•0 comments

Show HN: The0 – self-hosted runtime for trading bots, bring your own language

https://github.com/alexanderwanyoike/the0
11•mercutio93•14h ago•3 comments

Show HN: Ekko – post-quantum E2EE layer for Instagram, WhatsApp, Telegram Web

https://useekko.app/
6•kvasilev•3h ago•0 comments

Show HN: I replaced a $120k bowling center system with $1,600 in ESP32s

2841•section33•1d ago•339 comments

Show HN: Hospital Price Watch: Transparent, Shoppable Hospital Prices

https://hospitalpricewatch.com/
3•brad12345•2h ago•1 comments

Show HN: AI meeting notes – no bot, insights and answers from your files (BYOK)

https://getaiassist.app/
2•rfigueror1•2h ago•0 comments

Show HN: Wheesper – Start an anonymous discussion with a link

https://wheesper.com/
33•whatdoyouthink2•13h ago•22 comments

Show HN: How to Get a Fable CoT for the Jacobian Conjecture Refutation

4•SonOfLilit•3h ago•0 comments

Show HN: A Job Board for European Defence Companies

https://www.defencejobseu.com/
3•Collusus96•5h ago•0 comments

Show HN: AI Secretary – Stop checking your phone "just in case"

https://github.com/mathigatti/telegram-ai-secretary
2•mathigatti•3h ago•0 comments

Show HN: Agent Search Engine – an independent index of 247 AI agents

https://agentsearchengine.app
2•ASE-APP•3h ago•0 comments

Show HN: cbxy – A format for creating guided comic book experiences

https://github.com/ngafar/cbxy
9•nawazgafar•9h ago•3 comments

Show HN: Vidmoat – a video editing pipeline any AI agent can operate

https://www.vidmoat.com/
3•fredabila•4h ago•0 comments

Show HN: PounceDomains – Domain discovery and sniping for Namecheap Marketplace

https://pouncedomains.com
2•DotSauce•4h ago•0 comments

Show HN: A Pipeline for Making 10-minute AI Movies with Claude Code and Seedance

https://github.com/dawndrain/movie-gen
17•dawndrain•14h ago•4 comments

Show HN: A chess game you play with Claude as your wing-bot in the CLI

https://github.com/goawaygeek/ground-control
2•goawaygeek•4h ago•0 comments

Show HN: Relay – a self-hosted LLM gateway with eval-gated routing

https://github.com/llmrelay/relay
2•olopadef•5h ago•0 comments

Show HN: Internet Speed Atlas, a browser-measured ranking of 119 countries

https://speedof.me/internet-speed/
3•lastmile•5h ago•3 comments

Show HN: GPU Accelerated Desktop Screen Flash Filter (Photosensitive Epilepsy)

https://flashfilter.app/
6•flashfilter•10h ago•3 comments

Show HN: CheapStack – affordable dev starter kits and boilerplates

https://cheapstack.dev
2•makbar890•6h ago•1 comments

Show HN: Seek – Ctrl+F for Videos

https://seekapp.cc
4•surprisefox•7h ago•1 comments

Show HN: Gather every memory in one beautiful place

https://theirshoebox.com
3•not_wowinter13•10h ago•2 comments

Show HN: Velprium - Time Workspace

https://www.velprium.com/
2•mjkl7896•7h ago•0 comments

Show HN: Linguin, a live multilingual dictionary for 120 languages

https://linguin.xyz/
3•astroscout•7h ago•0 comments

Show HN: Whetuu – a zero-config cross-shell prompt written in Zig

https://github.com/yamafaktory/whetuu
4•yamafaktory•11h ago•1 comments

Show HN: Q3Edit – Edit and play Quake 3 maps in the browser

https://q3edit.com
104•drdator•2d ago•26 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)