frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Show HN: Remotely use my guitar tuner

https://realtuner.online/
163•smith-kyle•3d ago•40 comments

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

https://washere.live
17•mrktsm__•2h ago•8 comments

Show HN: DenchClaw – Local CRM on Top of OpenClaw

https://github.com/DenchHQ/DenchClaw
112•kumar_abhirup•16h ago•96 comments

Show HN: Latchup – Competitive programming for hardware description languages

https://www.latchup.app/
2•fayalalebrun•1h ago•0 comments

Show HN: The Mog Programming Language

https://moglang.org
145•belisarius222•13h ago•70 comments

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

https://github.com/ratwolfzero/hopalong_python
12•ratwolf•3d ago•1 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...
92•gbro3n•21h ago•43 comments

Show HN: sAT Protocol – static social networking

https://github.com/remysucre/satproto
3•remywang•4h ago•1 comments

Show HN: Skir – like Protocol Buffer but better

https://skir.build/
107•gepheum•1d ago•56 comments

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

https://github.com/BigBodyCobain/Shadowbroker
300•vancecookcobxin•1d ago•115 comments

Show HN: ChatJC – chatbot for resume/LinkedIn/portfolio info

https://joshuacurry.dev/
3•ogou•7h ago•3 comments

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

https://kindvoicenotes.com
45•thepaulthomson•1d ago•21 comments

Show HN: Zenòdot – Find if a book has been translated into your language

https://www.zenodot.app/
11•AusiasTsel•15h ago•11 comments

Show HN: Husky hook that blocks Git push until you do your pushups

https://git-push.app
13•zimboy•23h ago•2 comments

Show HN: Eyot, A programming language where the GPU is just another thread

https://cowleyforniastudios.com/2026/03/08/announcing-eyot/
76•steeleduncan•1d ago•18 comments

Show HN: Reviving a 20-year-old puzzle game Chromatron with Ghidra and AI

https://quesma.com/blog/chromatron-recompiled/
25•stared•2d ago•8 comments

Show HN: Curiosity – DIY 6" Newtonian Reflector Telescope

https://curiosity-telescope.vercel.app/
80•big_Brain69•2d ago•22 comments

Show HN: WolfStack – Proxmox-like server management in a single Rust binary

https://wolfscale.org/
31•wolfsoftware•1d ago•3 comments

Show HN: DopaLoop – Habit tracker for ADHD brains, local-first, no streaks

https://dopaloop.app/de
3•steviee•11h ago•0 comments

Show HN: Free open-source churn prediction for SaaS–Stripe and LLM interventions

https://github.com/ShreyasDasari/churnguard-ai
4•ShreyasDasari•11h ago•1 comments

Show HN: Dashboard for monitoring multiple Claude Code sessions

https://github.com/Stargx/claude-code-dashboard
2•Stargx•11h ago•1 comments

Show HN: Mcp2cli – One CLI for every API, 96-99% fewer tokens than native MCP

https://github.com/knowsuchagency/mcp2cli
144•knowsuchagency•1d ago•101 comments

Show HN: SimpleStats – Server-side Laravel analytics, immune to ad blockers

https://simplestats.io/blog/server-side-analytics-laravel
2•Sairahcaz2k•12h ago•1 comments

Show HN: Run 500B+ Parameter LLMs Locally on a Mac Mini

https://github.com/opengraviton/graviton
11•fatihturker•1d ago•6 comments

Show HN: I built a database of air fry times for 300+ foods

https://airfrypro.com
3•chrisdeweese•12h ago•0 comments

Show HN: OpenMeters – A fast and free audio metering/visualization suite

https://github.com/httpsworldview/openmeters
15•httpsworldview•1d ago•0 comments

Show HN: MindfulClaude – Guided breathing during Claude Code's thinking time

https://github.com/halluton/Mindful-Claude
4•kayba•12h ago•0 comments

Show HN: Colchis Log – cryptographic audit trail for AI systems (Python)

https://github.com/GhurtSky-GR13/colchis-log
3•GhurtSky•13h ago•0 comments

Show HN: Ratschn – A local Mac dictation app built with Rust, Tauri and CoreML

https://ratschn.com
4•Edos8877•13h ago•2 comments

Show HN: ANSI-Saver – A macOS Screensaver

https://github.com/lardissone/ansi-saver
103•lardissone•2d ago•37 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)