frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: Firefox in WebAssembly

https://developer.puter.com/labs/firefox-wasm/
58•coolelectronics•1h ago•19 comments

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

https://github.com/welcome-to-the-sunny-side/misa77
119•nonadhocproblem•6h ago•38 comments

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

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

Show HN: Microcosm Industries – Simulation toys and software microcosms

https://microcosm.industries/
9•arbesman•5d ago•1 comments

Show HN: Swagsocial

https://swag.nomaakip.xyz/browse
2•wishyt•6m ago•0 comments

Show HN: Capn-hook for coding agents – don't grep the same mystery twice

https://github.com/cyrusNuevoDia/capn-hook
25•knrz•3d ago•5 comments

Show HN: Dropper

https://dropper.page
3•johnwheeler•26m ago•0 comments

Show HN: SirixDB 1.0 Beta – Git-Like Versioning, Diffs, Time-Travel Queries

https://github.com/sirixdb/sirix
10•lichtenberger•6h ago•1 comments

Show HN: Pullboard – a work queue for agents, built to run a quant desk

https://pullboard.dev/
2•Olscore•35m ago•0 comments

Show HN: Redis Rubix Bridge a HTTP API Redis Gateway

https://github.com/rubix-studios-pty-ltd/rubix-redis-bridge
2•rubixvi•41m ago•0 comments

Show HN: Chariot – Elastic Claw Compute

https://www.chariots.sh/
5•benmax•48m ago•0 comments

Show HN: Spellsurf – Create words from words

https://spellsurf.com/
5•alexakten•1h ago•5 comments

Show HN: BibleFollow – Scroll the Bible instead of doomscrolling

https://biblefollow.com
8•timsayshey•2h ago•1 comments

Show HN: Heard for iOS: ePub reader with on-device text to speech

https://heard.quest/
3•alana314•2h ago•0 comments

Show HN: Autoportrait Playground – painting timelapses in the browser

https://philipweiss.net/autoportrait/
2•philipfweiss•1h ago•1 comments

Show HN: GitHub Contribution Graph Painter

https://contributist.stupidity.works/en
2•fabianse•1h ago•0 comments

Show HN: webcast.social – Got MP3s? Host your own radio show from the browser

https://webcast.social
2•freshman_dev•1h ago•0 comments

Show HN: PostgreSQL Now Supported in DBTrail

https://github.com/dbtrail/dbtrail
2•nethalo•1h ago•1 comments

Show HN: ScreenshotAPIs – screenshot/PDF API with credits that never expire

https://screenshotapis.org
2•screenshotapi•1h ago•0 comments

Show HN: 18KB ls alternative in no_std rust and Libc

https://crates.io/crates/fli-tool
19•tracyspacy•8h ago•4 comments

Show HN: Vendo (YC S26) – Let your users add their own features to your product

https://github.com/runvendo/vendo
2•yousefh409•1h ago•4 comments

Show HN: Make senders work to get into your inbox

https://www.captchainbox.com
40•felixdoerp•10h ago•65 comments

Show HN: Painterly – Turn pictures into digital paintings without generative AI

https://github.com/jbunke/painterly
15•flinkerflitzer•5h ago•3 comments

Show HN: For 10 World Cups, my model's 2 favorites had the champion every time

https://papers.ssrn.com/sol3/papers.cfm?abstract_id=7013338
33•fabioricardo7•11h ago•46 comments

Show HN: Marketing for Solo Technical Founders

https://www.frhog.com/?solo
2•krm01•2h ago•0 comments

Show HN: Gate.cat – block an AI coding agent's rm -RF before it runs

https://gate.cat/
2•bgmlai•2h ago•0 comments

Show HN: An incremental build cache for Rust on GHA

https://github.com/clipper-registry/cache/tree/main/rust
2•a_t48•2h ago•0 comments

Show HN: A web based VistaPro clone

https://toby.github.io/vista/
8•tobypadilla•20h ago•0 comments

Show HN: NetBox plugin that turns config changes into Grafana annotations

https://github.com/mfarook2/netbox-grafana-annotations-plugin
2•mfarook•2h ago•0 comments

Show HN: OpenClaw for Your Health

https://www.withmurph.ai
4•willhay•2h 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)