frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: Declick – Turn an OpenAPI Spec, MCP Server or SQLite DB into a CLI

https://github.com/ucsandman/declick
3•practicalsystem•33m ago•2 comments

Show HN: Audioreality.ai – email to private daily podcast summary show

https://www.audioreality.ai
2•BSOhealth•33m ago•0 comments

Show HN: Sentrint, Ship AI features without losing sleep

https://sentrint.com/
3•xEcho•33m ago•1 comments

Show HN: OpenStint – lap timing using RTL-SDR and near-field transponders

https://openstint.org/
2•zsellera•37m ago•0 comments

Show HN: Webmcp-react v1.0.0 (React hooks for agents to use WebMCP)

https://github.com/agentcathq/webmcp-react
3•naseemalnaji•1h ago•2 comments

Show HN: Reactor Atlas

https://reactoratlas.com
50•fedecaccia•1d ago•21 comments

Show HN: Million Bricks – a 3D tower of one million bricks you can buy for $10

https://www.millionbrickshomepage.com
3•keslert•2h ago•3 comments

Show HN: What if AI did the prompting – and humans did the thinking?

https://www.antiagent.site
3•EnthusiastShiv•2h ago•0 comments

Show HN: I made a word building game supporting anagrams and one handed use

16•busymom0•1d ago•1 comments

Show HN: Aurict – An open-source Terminal AI

https://github.com/aurict/aurict
5•hamzakhrmn2•6h ago•2 comments

Show HN: OwnTime – a chess clock for your day's priorities

https://owntime.app/
108•fmos•2d ago•58 comments

Show HN: Prices.eu.org

https://prices.eu.org/
13•sourcecodeplz•5h ago•7 comments

Show HN: Interactive map of the Japanese address system

https://japanmap.fyi
7•vkuikka•8h ago•2 comments

Show HN: HN Match Maker – Matching "Who Wants to Be Hired?" With "Who's Hiring?"

https://hnmatchmaker.com/
117•all2•2d ago•46 comments

Show HN: The cheapest GPU cloud – H100s at $2.04/HR, H200s at $3/HR

https://compute.cheap/
53•EmiCorleone•1d ago•20 comments

Show HN: Real-time AI news aggregator with daily digest

https://aibriefs.news
11•michelmi•1d ago•15 comments

Show HN: Newton's Orchard – Browser-based space/gravity playground

https://newtonsorchard.app
30•andrewchilds•2d ago•4 comments

Show HN: Weedout – Safari extension that hides YouTube AI-labeled videos

https://masteranza.github.io/weedout/
182•masteranza•2d ago•81 comments

Show HN: Wordmate – local speech-to-text for macOS

https://github.com/vdszds/wordmate
5•vdszds•21h ago•0 comments

Show HN: I built my first MCP to manage Google Ads

https://adchestra.com/
15•MichalKrk•1d ago•10 comments

Show HN: A gravity simulator where forces propagate at the speed of light

https://github.com/alessandro-pioli/AstroCausal_Engine
6•alessandropioli•21h ago•0 comments

Show HN: asciiQuake

https://asciiquake.wtf/
16•apresmoi•2d ago•6 comments

Show HN: Running 104GB Qwen3.8-Flash-Next on 48GB Mac with at ~12 tok/s

https://github.com/carloslfu/slotstream
230•carloslfu•2d ago•115 comments

Show HN: Word42, a wordprocessor inspired by MS Word and Abiword

https://word42.org/
4•roschdal•10h ago•0 comments

Show HN: A benchmark for flight search intent

https://fjmatrix.github.io/flight-search-intent-eval/
5•rabbit_1•1d ago•0 comments

Show HN: Sirenfall, a civil defense siren synthesized in Web Audio

https://sirenfall.live/
5•beeswaxpat•18h ago•1 comments

Show HN: Laser Graffiti

https://laser.consti.de
252•con•6d ago•61 comments

Show HN: Devbar – Point at what to change. Leave a comment. Your agent ships it

https://devbar.sh
4•linesofcode•19h ago•5 comments

Show HN: MesaOS – An operating system written from scratch in Rust

https://github.com/crackanimad0r/MesaOS
3•crackanimador•20h ago•13 comments

Show HN: Bridle: hand your agent's context to a coworker's agent

https://www.bridle.network/
5•withoutshape•21h 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)