frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: I made an alternative to the archived filebrowser

https://github.com/skidoodle/filebrowser
2•skidoodle•1h ago•1 comments

Show HN: Aqqai – Every answer, checked before you see it

https://demo.aqqai.in
2•Vineetyadav2•1h ago•1 comments

Show HN: Astah Pro MCP – Enabling AI-Powered UML Modeling

https://github.com/takaakit/astah-pro-mcp
2•takaakit•1h ago•0 comments

Show HN: See Sounds on Your Webcam

https://soundmap.darebuild.com/
14•jimhi•2d ago•4 comments

Show HN: Open-Sourced Chrome Extension to Save, Organize and Switch Bookmarks

https://github.com/ringlochid/leotabs
6•ringlochid•2h ago•0 comments

Show HN: Most Penalized HN Stories

https://news.social-protocols.org/penalties
12•jwarden•4h ago•2 comments

Show HN: Fleecevest – The Product Counterpart to Ponytail

https://github.com/Websites-On-Computers/fleecevest
4•mattcomputer•4h ago•1 comments

Show HN: Bodily Oddities

https://vester.si/bodily-oddities/
321•vesterde•2d ago•199 comments

Show HN: What If Donut.c but with Any ASCII Art

https://asdesai.com/blog/how-fetch-works/
5•areofyl•7h ago•1 comments

Show HN: DiskTriage – A simple CLI tool to reclaim space on your Win C drive

https://github.com/ricardoborges/DiskTriage
5•r2ob•5h ago•1 comments

Show HN: A Technical Book for the Age of AI

https://codeberg.org/juurej/p4cu
4•juurej•5h ago•0 comments

Show HN: ResolveHQ – A Helpdesk Built on Cloudflare Workers, D1, R2 and Queues

https://github.com/mirza-rizvi/ResolveHQ
67•mirza_rizvi•1d ago•25 comments

Show HN: Lumae Native macOS screen-demo recorder that agents can edit over MCP

https://lumae.app
3•happyyeti•5h ago•2 comments

Show HN: Everything a web page can learn about you, in plain English

https://sessioncontext.org
5•oddurs•5h ago•2 comments

Show HN: Practice English Grammar and Pronunciation (Uses Azure Speech)

https://marksdailyenglish.com/
2•MarkMc•6h ago•1 comments

Show HN: YazSes – offline hold-to-talk voice dictation for Linux, macOS, Windows

https://github.com/MSKazemi/yazses
5•mskazemi•6h ago•0 comments

Show HN: Determinstic LLM inference for lowest price Gemma 4, with Windows XP

https://www.tokendelivery.ai/
6•carsonpoole•11h ago•1 comments

Show HN: PDFidelity – Translate PDFs while preserving the original layout

https://www.pdfidelity.com/
3•andygeek•6h ago•1 comments

Show HN: Open-sourced solution to AI manage Playwright automations

https://github.com/rakutentech/sorify
2•kevincobain2000•6h ago•0 comments

Show HN: Give Claude Code / Cursor a real eng team (tiers, roles, escalation)

https://github.com/khuynh22/agent-dev-team
2•timhuyn•6h ago•0 comments

Show HN: No_human – The AI coding factory that you can TRUST

https://github.com/no-human-ai/no_human
2•eyalgolan•6h ago•1 comments

Show HN: Godot and Rust based multiplexer (terminal panes and more)

https://github.com/godot-pty/gpty
92•1nv1n•1d ago•47 comments

Show HN: Sill – a macOS system monitor that lives on your wallpaper

https://ptthe13.github.io/sill/
2•MrPFT•7h ago•0 comments

Show HN: Come prove the Berge Fulkerson conjecture with a swarm of agents

https://provetogether.ai/problems/15
5•fcesco•9h ago•0 comments

Show HN: Hacker News, without AI

https://hcker.news/?ai=exclude
199•postalcoder•1d ago•86 comments

Show HN: Termique, an SSH client where the server can't read your credentials

https://termique.app/
2•masitings•9h ago•0 comments

Show HN: Graphify C# – Compiler-accurate Find Usages for coding agents

https://github.com/zachsaw/graphify-csharp
41•zachsaw•1d ago•21 comments

Show HN: Stackray – Detect any website's tech stack

https://stackray.app
4•seelos•10h ago•0 comments

Show HN: What if the speed of light was 5 km/h?

https://rivendell.dmitrybrant.com/relativity/
617•dmitrybrant•3d ago•282 comments

Show HN: Music Generation Backed by Algebra

https://monictheory.com
5•song_synth•10h ago•0 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)