frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: Automatically detect and patch walking-dead states in Sierra games

https://github.com/katiahayati/lucasartsifier/
150•wkfauna•1d ago•86 comments

Show HN: Linux and iPhone Continuity (iMessage / SMS)

https://github.com/zackb/tether
8•zackb•5h ago•2 comments

Show HN: Frugal Tokens – explore costs and usage across coding agents

https://demo.frugaltokens.com/
33•dpc94•17h ago•8 comments

Show HN: Interactive, animated architecture of any HuggingFace models

https://modelmap.cc
110•lizhaoliu•1d ago•12 comments

Show HN: Nikon F100 Film Camera Repair Notes

https://github.com/enthdegree/f100
48•enthdegree•5d ago•24 comments

Show HN: Saggar, a Mac terminal that keeps sessions and your attention organized

https://saggar.marginalutility.dev/
67•mcclowes•2d ago•59 comments

Show HN: Openleetcode – Local LeetCode runner where tests live in the repo

https://github.com/therepanic/openleetcode
71•therepanic•1d ago•19 comments

Show HN: Mail client optimized for self-hosted email across multiple domains

https://mainly.crnst8.com/
3•flowerpil•8h ago•1 comments

Show HN: Anonymous age verification with passkey-powered encryption

https://loginwithone.com/
14•mikeysight•20h ago•6 comments

Show HN: terminal-code – VS Code inside the terminal

https://terminal-code.com
6•robpruzan•17h ago•2 comments

Show HN: Desktopcolors.com – A museum for solid background colors of classic OS

https://desktopcolors.com
165•vlowrian•3d ago•73 comments

Show HN: Hack Club Folktale: Learn Python, Make a Game, Get Free Stickers

https://folktale.hackclub.com/
4•breynard•11h ago•1 comments

Show HN: A new way to read books, magnifying in and out

https://book.curiora.space/
7•pentagram•12h ago•5 comments

Show HN: macOS data protection keychain for Electron apps

https://github.com/biw/keychain-store
24•biwills•1d ago•3 comments

Show HN: Turning websites into micro CLIs for Claude Code to save on tokens

https://github.com/only-cli/oc
4•hyes•13h ago•2 comments

Show HN: HyperSAE – Sparse Autoencoders, reimagined in hyperbolic space

https://github.com/vishal-dehurdle/hypersae
4•visha1v•14h ago•0 comments

Show HN: Shoehorn – Quantize any model down to run on your machine

https://notactuallytreyanastasio.github.io/shoehorn/
46•rhgraysonii•1d ago•9 comments

Show HN: Sokoban AI Solver

https://mkornreich.me/projects/sokoban/
72•enjoyyourlife•2d ago•42 comments

Show HN: Invoicing and Tax for UK Tradespeople

https://tradetally.co.uk
3•wowinter15•15h ago•0 comments

Show HN: CopyLasso, a free local screen OCR app for macOS

https://copylasso.com/
6•bennetthilberg•15h ago•0 comments

Show HN: HRAG – Hybrid RAG on €116/month of Hetzner, officially benchmarked

https://hrag.app/
6•victor_edka•16h ago•0 comments

Show HN: Go CLI for website health checks, zero dependencies

https://github.com/atillalab/site-health
13•mehmetkose•1d ago•3 comments

Show HN: A public AI whose memory is shared across all users

https://wildstatic.com/
86•adjohu•3d ago•75 comments

Show HN: Learn Flags Quiz

https://flagquizzes.com/
57•artiomyak•2d ago•39 comments

Show HN: Naeos – an engineering system for AI coding agents

https://github.com/NAEOS-foundation/naeos
3•bayu911•18h ago•0 comments

Show HN: nanoAlphaZero – Train a grandmaster-level chess model in 24h with TPUs

https://github.com/wtedw/nanoAlphaZero
2•tdoubleu•18h ago•0 comments

Show HN: I am getting genuine questions

https://github.com/docbrain-ai/docbrain
2•bhanuhai2•18h ago•3 comments

Show HN: LongTerMemory, an AI EdTech Platform

https://wired.business/longtermemory
2•aledevv•18h ago•0 comments

Show HN: a javascript engine written in C3 with native TS support

https://github.com/ricardobeat/boomkat
4•ricardobeat•19h ago•1 comments

Show HN: A local MitM proxy to control TLS fingerprints

https://github.com/ytkoka/impersonate-proxy
28•ytkoka•1d ago•6 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)