frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: The load-bearing vocabulary of Claude

https://louisabraham.github.io/load-bearing/
202•Labo333•11h ago•102 comments

Show HN: Yet another minimal and lightweight terminal multiplexer written in Go.

https://github.com/patriceckhart/hrdx
25•patriceckhart•2h ago•9 comments

Show HN: Voronoi Go

https://voronoigo.com/
18•igpay•2h ago•3 comments

Show HN: Restoredrill – proves your Postgres backups restore

https://github.com/ahmadpiran/restoredrill
35•ahmadpiran•5h ago•16 comments

Show HN: go-binsync – Go binary patches up to 67× smaller than bsdiff

https://github.com/wjordan/go-binsync
2•wgjordan•19m ago•0 comments

Show HN: A lightweight, stateless database for agent memory

https://polign.com/blog-edge-agent-memory
13•anuptalwalkar•1d ago•8 comments

Show HN: My Claude quota ran out in 10 minutes, so I made a tool to find out why

https://github.com/kelviq/tare
53•sachinneravath•3h ago•40 comments

Show HN: RealDiff – runtime behavior diffing for pull requests (six languages)

https://github.com/issacnitin/RealDiff
35•issacnitin•6h ago•6 comments

Show HN: See fiber breaks linked to a map

https://react-networks-lib.rackout.net/otdr-strip
12•matt-p•3h ago•2 comments

Show HN: OpenWand – A mission to remove chat interface from working with AI

https://github.com/SunnyLich/OpenWand
2•OpenWand•1h ago•0 comments

Show HN: Z, minimal agentic harness for engineers that just works

https://github.com/computerex/z
2•computerex•1h ago•0 comments

Show HN: Collaborate with your team on Claude and ChatGPT artifacts

https://www.valet.dev/blog/your-agent-is-only-the-first-collaborator
4•miradu•1h ago•0 comments

Show HN: Interactive SDP Explainer for WebRTC, Sip, and RTSP

https://explainer.pion.ly/
5•JoTurk•1h ago•1 comments

Show HN: Music Visualizer|New MilkDrop engine and various types of reactive art

https://ikandy.app/
3•IKANDYAPP•2h ago•1 comments

Show HN: Sparrow-2 – Solving the cocktail party problem

https://www.tavus.io/blog/sparrow-2
6•code_brian•2h ago•0 comments

Show HN: Proval – Self-hosted code review agent for GitLab, Forgejo, and GitHub

https://github.com/seoes/proval
6•dowonseo•5h ago•1 comments

Show HN: A private radio station for issue updates across your org

https://github.com/statemediafm/statemediafmradio
3•private4e584d•2h ago•0 comments

Show HN: Dropping SynthID from 188/192 to 0/192 without changing visible text

https://mark.q1z.org
5•byte1•2h ago•0 comments

Show HN: AiTells, a Vale style package for AI-written prose tells

https://github.com/krishnasunkam/vale-ai-tells
2•krishnas2020•3h ago•0 comments

Show HN: ASOGrade – App Store keyword research using Apple Search Ads demand

https://asograde.com
5•ashwinn11•3h ago•0 comments

Show HN: IdeaKache – Ideas Worth Holding Onto

https://ideakache.com
4•jcowcher•4h ago•1 comments

Show HN: Meridian(PH#1) A better way to recognize developer contributions

https://github.com/Meridiona/meridian
5•meridiona•4h ago•0 comments

Show HN: PwnPad – hardware hacking platform built for practical learning

https://github.com/twelvesec/PwnPad
3•therepanic•4h ago•0 comments

Show HN: I built a site to share and find Claude Code passes

https://claudecoupons.com
2•alexander-g•4h ago•0 comments

Show HN: Warp – Run the 313B GLM-5.3-Flash on a MacBook with 8GB RAM

3•marcobambini•4h ago•0 comments

Show HN: KinoPipe – FFmpeg as a service for AI agents (typed ops, no shell)

https://kinopipe.com/
3•nicniclapanique•4h ago•0 comments

Show HN: Atlas – observability for startup operations via self-building agents

https://www.atlasjoins.ai/
2•csbhagav•4h ago•1 comments

Show HN: Feisty Duck's Cryptography and Security News Aggregator

https://www.feistyduck.com/news/
5•ivanr•4h ago•1 comments

Show HN: Backprompter – create, test, and deploy agents without a back end

https://backprompter.com/
3•aj-srivastava•4h ago•0 comments

Show HN: A virtual race car that drives only while someone pays for fuel

https://fuelup.lol/
4•bombashell•4h 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)