frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: Sabela – A Reactive Notebook for Haskell

https://sabela.datahaskell.com/
8•mchav•2d ago•0 comments

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

https://garden-of-flowers.heikkilotvonen.com/
135•california-og•15h ago•22 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
5•jhylands•1h ago•0 comments

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

https://voicedraw.com/
3•ajaypanthagani•30m ago•0 comments

Show HN: Dev-friendly native OTel: only OSS stateful, on-the-wire Observability

5•jratkevic•43m ago•0 comments

Show HN: Azure DevOps TUI Management Style

https://github.com/elpulgo/azdo
2•elpulgo•59m ago•0 comments

Show HN: Ctx, save tokens by loading only the relevant tools

https://github.com/stevesolun/ctx
3•stevesolun•1h ago•0 comments

Show HN: Microlearning apps with a TikTok-style feed to beat doomscrolling

https://usescroll.app
2•maclinz•2h ago•3 comments

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

https://fata.dev
109•djoume•5d ago•51 comments

Show HN: Veterinarian turned founder, AI lawn diagnosis

https://grassdx.com/
71•andrewbr•1d ago•55 comments

Show HN: Claireon – MCP Server for Unreal Editor

https://github.com/believer-oss/claireon
9•karl_gluck•3h ago•1 comments

Show HN: SharkClean MCP

https://github.com/a-funk/sharkclean-mcp
15•afunk•4d ago•4 comments

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

https://machine0.io
90•bwm•1d ago•35 comments

Show HN: git-lrc – Free, Micro AI Code Reviews That Run on Git Commit

https://github.com/HexmosTech/git-lrc
8•atomicnature•5h ago•0 comments

Show HN: The Dictionary Game (Fictionary/Balderdash) as a Daily Puzzle

https://dictionarypuzzle.com/
5•woutervd•5h ago•1 comments

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

https://github.com/tamnd/kage
689•tamnd•2d ago•138 comments

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

https://traceapp.info
202•AG342•2d ago•83 comments

Show HN: Morning Stack finds real job openings, tweaks resume and cover letter

https://morningstack.app/demo/
4•hillj23•6h ago•2 comments

Show HN: Pair your iPhone to your own Ollama over Tailscale with a QR scan

https://github.com/TeamDzX/myllm-connect
3•TeamDzX•6h ago•0 comments

Show HN: AppointMe – open-source .NET SaaS template (modular monolith, DDD)

https://github.com/bravodev-hub/appointme
4•eugene-maksak•7h ago•0 comments

Show HN: Zero Browser

https://github.com/nz366/zero_browser
11•zeron0a•20h ago•7 comments

Show HN: Exploiting Slack's video embeds to achieve E2EE communication

https://v1c.rocks/log/exploiting-slack-video/
31•victorio•1d ago•3 comments

Show HN: Discover Wikipedia articles popular on Hacker News

https://www.orangecrumbs.com/
135•octopus143•2d ago•33 comments

Show HN: Write SaaS apps where users control where their data is stored

https://linkedrecords.com/
4•WolfOliver•8h ago•3 comments

Show HN: Brainfuck but with Turtle Graphics

https://czterycztery.pl/programy/turtlefreeze/
5•fourgreen•9h ago•0 comments

Show HN: CoreMCP – MCP Server for On-Prem DBs

https://github.com/corebasehq/coremcp
4•y11t0•9h ago•1 comments

Show HN: I am building a map of people who lived in the Roman Empire

https://new.roman-names.com/
208•metiscus•6d ago•49 comments

Show HN: Paca – Lightweight Jira alternative for human-AI collaboration

https://github.com/Paca-AI/paca
171•pikann22•3d ago•64 comments

Show HN: Nxui – Copy-paste animated UI components for Vue

https://nxui.geoql.in/docs/
13•vinayakkulkarni•1d ago•4 comments

Show HN: Homebrew 6.0.0

https://brew.sh/2026/06/11/homebrew-6.0.0/
1472•mikemcquaid•5d ago•361 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)