frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Show HN: How I topped the HuggingFace open LLM leaderboard on two gaming GPUs

https://dnhkng.github.io/posts/rys/
340•dnhkng•15h ago•92 comments

Show HN: What's my JND? – a colour guessing game

https://www.keithcirkel.co.uk/whats-my-jnd/?r=ARUjKP__-ve-
38•Keithamus•18h ago•35 comments

Show HN: Safelaunch – Validates your environment before you push to production

https://www.npmjs.com/package/safelaunch
5•karthicedricq•3d ago•0 comments

Show HN: Joha – a free browser-based drawing playground with preset shape tools

https://joha-app.pages.dev/
10•smlee•2d ago•1 comments

Show HN: Modulus – Cross-repository knowledge orchestration for coding agents

https://modulus.so
9•dasubhajit•10h ago•2 comments

Show HN: DD Photos – open-source photo album site generator (Go and SvelteKit)

https://github.com/dougdonohoe/ddphotos
58•dougdonohoe•15h ago•18 comments

Show HN: Ash, an Agent Sandbox for Mac

https://ashell.dev
7•amsha•13h ago•7 comments

Show HN: Claude Code Token Elo

https://www.clauderank.com
7•ymaws•1d ago•5 comments

Show HN: Readhn – AI-Native Hacker News MCP Server (Discover, Trust, Understand)

https://github.com/xodn348/readhn
2•xodn348•4h ago•1 comments

Show HN: I Was Here – Draw on street view, others can find your drawings

https://washere.live
60•mrktsm__•23h ago•44 comments

Show HN: 2D RPG base game client recreated in modern HTML5 game engine with AI

https://github.com/ErkoKnoll/helbreath-base-game
5•erkok•8h ago•2 comments

Show HN: A modern React onboarding tour library

https://github.com/btahir/react-tourlight
10•bilater•12h ago•2 comments

Show HN: A playable version of the Claude Code Terraform destroy incident

https://www.youbrokeprod.com
22•cdnsteve•14h ago•8 comments

Show HN: The Mog Programming Language

https://moglang.org
162•belisarius222•1d ago•76 comments

Show HN: A retention mechanic for learning that isn't Duolingo manipulation?

https://www.dailylabs.co/
6•aidanadd•1d ago•4 comments

Show HN: Satellite imagery object detection using text prompts

https://www.useful-ai-tools.com/tools/satellite-analysis-demo/
7•eyasu6464•1d ago•2 comments

Show HN: Remotely use my guitar tuner

https://realtuner.online/
247•smith-kyle•4d ago•59 comments

Show HN: Draxl, agent-native source code with stable AST node IDs

https://github.com/draxl-org/draxl
4•rndhouse•7h ago•0 comments

Show HN: DenchClaw – Local CRM on Top of OpenClaw

https://github.com/DenchHQ/DenchClaw
138•kumar_abhirup•1d ago•126 comments

Show HN: VS Code Agent Kanban: Task Management for the AI-Assisted Developer

https://www.appsoftware.com/blog/introducing-vs-code-agent-kanban-task-management-for-the-ai-assi...
93•gbro3n•1d ago•50 comments

Show HN: KaraMagic – automatic karaoke video maker

https://karamagic.com/
2•godot•8h ago•0 comments

Show HN: Don't share code. Share the prompt

https://openprompthub.com/#
2•jacomoRodriguez•9h ago•1 comments

Show HN: Skir – like Protocol Buffer but better

https://skir.build/
111•gepheum•2d ago•65 comments

SHOW HN: A usage circuit breaker for Cloudflare Workers

17•ethan_zhao•15h ago•7 comments

Show HN: I built a real-time OSINT dashboard pulling 15 live global feeds

https://github.com/BigBodyCobain/Shadowbroker
304•vancecookcobxin•2d ago•120 comments

Show HN: Hopalong Attractor. An old classic with a new perspective in 3D

https://github.com/ratwolfzero/hopalong_python
23•ratwolf•4d ago•2 comments

Show HN: Agentic Data Analysis with Claude Code

https://rubenflamshepherd.com/articles/2026-03-09-agentic-data-analysis-with-claude-code
5•rubenflamshep•12h ago•0 comments

Show HN: I built a site where strangers leave kind voice notes for each other

https://kindvoicenotes.com
56•thepaulthomson•2d ago•38 comments

Show HN: Find Engineering Manager Jobs Efficiently

https://rolebeaver.com/
2•oah•14h ago•0 comments

Show HN: Get AI to write code that it can read

https://github.com/ELI7VH/wavelang
2•elijahlucian•14h ago•0 comments
Open in hackernews

Show HN: MMORPG prototype inspired by World of Warcraft

https://github.com/nickyvanurk/everwilds
28•nickyvanurk•10mo ago

Comments

ricardobayes•10mo ago
Still to this day I have not seen an MMORPG that has as smooth movement and camera system as WoW.
okdood64•10mo ago
Camera movement in FFXIV is fine. Character movement was a bit clunky but still very usable.
kristoff200512•10mo 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•10mo ago
To replicate that feel is pretty much the point of this project.
MacNCheese23•10mo 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•10mo 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•10mo 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•10mo 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•10mo ago
I get net::ERR_CERT_COMMON_NAME_INVALID on everwilds.io (chrome android)