frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: Leaves – A text-UI disk usage treemap visualizer

https://github.com/patonw/leaves
50•patonw•4h ago•16 comments

Show HN: A modern port of Linux to a ten-year-old QWERTY phone

29•tmzt•4h ago•6 comments

Show HN: Galois connections for composable numeric casts in Rust

https://github.com/cmk/connections
22•partialsolve•4h ago•2 comments

Show HN: HeimWall – Catch secrets before you paste them into Claude or Cursor

https://heimwall.ai/individual
2•ata2gxxx•33m ago•0 comments

Show HN: Be the ChatBOT

https://bethechatbot.com/
9•keito•2h ago•4 comments

Show HN: CreditKit, a Stripe usage-credits engine I kept rebuilding

https://youngalgy.com/creditkit
2•youngalgy•40m ago•0 comments

Show HN: I open-sourced a macOS native Markdown rendering engine

https://github.com/nodes-app/swift-markdown-engine
4•jacobchen7•56m ago•2 comments

Show HN: QBasic Gorillas (Repeeled)

https://gameswithtony.com/gorillas/
16•TonyAlicea10•6h ago•14 comments

Show HN: Rudo - A small, elegant dock for Wayland

https://github.com/skorotkiewicz/rudo
2•modinfo•1h ago•0 comments

Show HN: Sentinel – open-source QA agent that reads your code before it clicks

https://blog.simbastack.com/announcing-sentinel/
13•asenna•5h ago•3 comments

Show HN: Algotrek – Algorithms visualized, problem shape shifting and a tutor

https://app.algotrek.io
10•nyggy•6h ago•4 comments

Show HN: Firefox in WebAssembly

https://developer.puter.com/labs/firefox-wasm/
237•coolelectronics•1d ago•120 comments

Show HN: Tree, truth, druid, dryad, and tar share one Proto-Indo-European root

https://p.migdal.pl/tree-of-tree/
3•stared•3h ago•0 comments

Show HN: Wallflower – A Quiet Social Reader

https://thewallflower.app/about
6•tldrthelaw•6h ago•0 comments

Show HN: misa77 - a codec that decodes 2x faster than LZ4 (at better ratios)

https://github.com/welcome-to-the-sunny-side/misa77
155•nonadhocproblem•1d ago•47 comments

Show HN: One More Letter

https://playonemoreletter.com/
83•hmate9•21h ago•56 comments

Show HN: I Built an Accent Changer App

https://accentchanger.com/
5•wbemaker•9h ago•11 comments

Show HN: I built an open source alternative to Workflowy

https://dotflowy.com
2•campak•4h ago•0 comments

Show HN: Open-source AI app builder you can embed into your own SaaS

https://github.com/totalumlabs/ai-app-builder-open
5•francescjuille•5h ago•0 comments

Show HN: PokeTokenBar – Raise a Pokémon with your AI token usage

https://github.com/chattymin/PokeTokenBar
2•chattymin•5h ago•1 comments

Show HN: Token Gobbler – the goofy game where you're the LLM

https://tokengobbler.vercel.app/
2•dschwede•5h ago•2 comments

Show HN: Tmux tab markers for Claude Code, Grok, and pi sessions

https://github.com/jhickner/tmux-agent-tabs
2•jhickner•5h ago•0 comments

Show HN: Docs.dev Your Own Hosted Docs Platform in Minutes

https://docs.dev
8•linktothenew•5h ago•4 comments

Show HN: A spectral live stream of NYC sunlight

https://nyc-stream.enody.lighting
4•carterpeterson•5h ago•0 comments

Show HN: Ingestr CDC – open-source CDC replication in Go

https://bruin-data.github.io/ingestr/getting-started/cdc.html
2•karakanb•5h ago•0 comments

Show HN: Democr.ai – self-hosted agentic AI runtime with audit and RBAC

https://github.com/democr-ai/democrai
2•fabio2•5h ago•0 comments

Show HN: E-- – A language you dial between English and Python

https://github.com/frmoded/e--
26•OdedF•6d ago•17 comments

Show HN: Low-latency local LLM runner via OpenJDK Panama FFM (Java 22)

https://github.com/projectargus-cc/libargus.cc
38•KingJoker•2d ago•9 comments

Show HN: Trying to fix the web scraping industry's benchmark problem

https://github.com/usestring/web-data-frontier-benchmark
16•rohitshenoy•6h ago•0 comments

Show HN: I've built a words game based on binary search

https://hilogame.cc/
43•ludovicianul•7h ago•42 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)