frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: An 8-bit live gamecast for baseball

https://ribbie.tv/watch
141•brownrout•3h ago•82 comments

Show HN: Inkwash, a watercolor sketching app and explanation

https://johnowhitaker.github.io/inkwash/about
120•Yenrabbit•3d ago•18 comments

Show HN: StarScope – Free astronomy dashboard for observers outside the US/UK

https://starscope.live/feed
9•xenophin•2d ago•1 comments

Show HN: High-Res Neural Cellular Automata

https://cells2pixels.github.io/
172•esychology•11h ago•44 comments

Show HN: Deconvolution – a Rust image deconvolution and restoration crate

https://github.com/pbkx/deconvolution
25•rmi0•2d ago•4 comments

Show HN: Capacitor Alarm Clock

https://github.com/ArcaEge/capacitor-alarm-clock
129•arcaege•3d ago•38 comments

Show HN: I built 184 free browser tools – PDF, image, dev, AI tasks, no upload

https://brevio.pro
81•ruimbarreira•10h ago•27 comments

Show HN: Relaymux, a tmux-based meta-harness for local coding agents

https://github.com/mupt-ai/relaymux
6•byhong03•3h ago•0 comments

Show HN: cuTile Rust: Safe, data-race-free GPU kernels in Rust

https://github.com/nvlabs/cutile-rs
98•melihelibol•1d ago•15 comments

Show HN: The full Minecraft game as an embeddable Framer component

https://www.framer.com/community/contests/agents-hackathon/submissions/Y1tmsVEc6HdhnNPsympLxP/
3•xmorse•3h ago•0 comments

Show HN: In-browser Python/Pandas/Git practice with animated Git simulator

https://practice.lernerpython.com/classroom/540d7ab1a1/
3•reuven•4h ago•0 comments

Show HN: VoiceDraw – Talk system design out loud, the diagrams draw themselves

https://voicedraw.com/
47•ajaypanthagani•1d ago•18 comments

Show HN: Sabela – A Reactive Notebook for Haskell

https://sabela.datahaskell.com/
44•mchav•3d ago•4 comments

Show HN: Fata – Spaced repetition to fight skill rot from AI coding

https://fata.dev
116•djoume•6d ago•53 comments

Show HN: LinguaX – a native macOS mouse enhancer (Logi Options+ alternative)

https://linguax.app/
3•deepzz0•7h ago•0 comments

Show HN: Garden of Flowers – an archive of pictorial typography before ASCII art

https://garden-of-flowers.heikkilotvonen.com/
153•california-og•1d ago•26 comments

Show HN: Mira – Open-source and self-hosted AI code reviewer

https://github.com/miracodeai/mira
8•upmostly•7h ago•2 comments

Show HN: Agenthatch – Compile any skill into a standalone Python agent

https://github.com/agenthatch/agenthatch
5•EternalRights•7h ago•0 comments

Show HN: Ferrix AI – Agentic Product Management Platform

https://ferrix.ai/
6•B_Nemade•7h ago•1 comments

Show HN: Veterinarian turned founder, AI lawn diagnosis

https://grassdx.com/
75•andrewbr•2d ago•60 comments

Show HN: Pen and paper resource development game with an emergent world

https://www.jameshylands.co.uk/2026/06/sortis-paper-empire-game.html
32•jhylands•1d ago•2 comments

Show HN: Kage – Shadow any website to a single binary for offline viewing

https://github.com/tamnd/kage
696•tamnd•3d ago•140 comments

Show HN: machine0 – Persistent NixOS VMs You Control from the CLI

https://machine0.io
92•bwm•2d ago•36 comments

Show HN: Trace – Offline Mac meeting transcripts you can flag mid-call

https://traceapp.info
203•AG342•3d ago•83 comments

Show HN: Otty – a native and beautiful terminal emulator

https://otty.sh/
11•ilchenearly•18h ago•9 comments

Show HN: Day-ahead river discharge forecasting using USGS and ERA5 data

https://sentinel-forecasting.com/mississippi-tutorial/
3•grezac•13h ago•0 comments

Show HN: Discover Wikipedia articles popular on Hacker News

https://www.orangecrumbs.com/
137•octopus143•3d ago•34 comments

Show HN: Azure DevOps TUI Management Style

https://github.com/elpulgo/azdo
9•elpulgo•1d ago•1 comments

Show HN: Homebrew 6.0.0

https://brew.sh/2026/06/11/homebrew-6.0.0/
1475•mikemcquaid•6d ago•362 comments

Show HN: SharkClean MCP

https://github.com/a-funk/sharkclean-mcp
16•afunk•5d ago•4 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)