frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Show HN: Throwaway – open-source disposable email checker and API

https://github.com/sslboard/throwaway
3•weddpros•1h ago•1 comments

Show HN: Bin collection calendars for the entire UK

https://ukbinday.co.uk/
4•chartreuseai•2h ago•0 comments

Show HN: Qumulator – quantum circuit simulator, 1000 qubits, no GPU

https://github.com/qumulator/qumulator-sdk
12•nnoorbakhsh•2d ago•4 comments

Show HN: Rocky – Rust SQL engine with branches, replay, column lineage

https://github.com/rocky-data/rocky
116•hugocorreia90•1d ago•48 comments

Show HN: A new benchmark for testing LLMs for deterministic outputs

https://interfaze.ai/blog/introducing-structured-output-benchmark
52•khurdula•19h ago•21 comments

Show HN: Agent that refuses to run commands without human approval

https://github.com/few-sh/fewshell
9•hexer303•9h ago•2 comments

Show HN: Rip.so – a graveyard for dead internet things

https://rip.so
173•bozdemir•1d ago•112 comments

Show HN: Drive any macOS app in the background without stealing the cursor

https://github.com/trycua/cua
180•frabonacci•1d ago•40 comments

Show HN: An attempt to grow a mind – building software with an inner life

https://www.momentbymoment.app/
9•shahabebrahimi•15h ago•14 comments

Show HN: Live Sun and Moon Dashboard with NASA Footage

https://www.lumara-space.app/
213•beeswaxpat•1d ago•65 comments

Show HN: Task Manager for AI Agents (MCP, Opensource)

https://github.com/agentrq/agentrq
4•mrtnx•5h ago•1 comments

Show HN: Adblock-rust Manager – Firefox extension to enable the Brave ad blocker

https://github.com/electricant/adblock-rust-manager
91•electricant•23h ago•42 comments

Show HN: Auto-Architecture: Karpathy's Loop, pointed at a CPU

https://github.com/FeSens/auto-arch-tournament/blob/main/docs/auto-arch-tournament-blog-post.md
232•fesens•1d ago•75 comments

Show HN: My retired dad and I made a daily, somewhat difficult, quiz

https://kviss.eu/
35•steinvakt2•21h ago•18 comments

Show HN: SigMap – 81.1% retrieval hit 5, 96.9% token reduce,zero deps

https://github.com/manojmallick/sigmap
5•manoj079•10h ago•1 comments

Show HN: WorkProof – JSON schema for skill evidence graphs

https://github.com/TalentProof/workproof-schema
3•parth4•10h ago•0 comments

Show HN: OSS Agent I built topped the TerminalBench on Gemini-3-flash-preview

https://github.com/dirac-run/dirac
389•GodelNumbering•2d ago•145 comments

Show HN: 1990s Game Dev Algorithms for Distributed Systems

https://docs.merca.earth/blog/1990s-game-dev-algorithms-distributed-systems
8•cremer•15h ago•0 comments

Show HN: A Multi User Multi Task Board MCP Server

https://github.com/dizlexic/moo-tasks
5•dizlexic•15h ago•2 comments

Show HN: Study Bible MCP – scholarly Greek/Hebrew lexicons and morphology

https://github.com/djayatillake/studybible-mcp
11•DSJayatillake•20h ago•13 comments

Show HN: Utilyze – an open source GPU monitoring tool more accurate than nvtop

https://www.systalyze.com/utilyze
124•ManyaGhobadi•2d ago•28 comments

Show HN: Agent that mines academic research for novel time series discoveries

https://github.com/adam-s/alphadidactic
2•dataviz1000•13h ago•0 comments

Show HN: A terminal spreadsheet editor with Vim keybindings

https://github.com/garritfra/cell
124•garritfra•2d ago•51 comments

Show HN: Stream iOS Simulators to a Browser Window

https://github.com/EvanBacon/serve-sim
3•EvanBacon•14h ago•1 comments

Show HN: Claude Code Web UI

https://github.com/alexjbarnes/cockpit
3•recouptreadmill•14h ago•0 comments

Show HN: The Dominion List – an open-source db of Canadian founders in the US

https://dominionlist.com
7•antoinenivard•15h ago•0 comments

Show HN: Generative UI Library for React

https://www.getsyntux.com/
7•BeverlyHills001•16h ago•1 comments

Show HN: See where your computer connects (TapMap)

https://github.com/olalie/tapmap
2•olalie•17h ago•0 comments

Show HN: Send your first Peppol e-invoice in 5 minutes (EU mandate live)

https://getpeppr.dev/
2•zerolooplabs•17h ago•2 comments

Show HN: AgentPort – Open-source Security Gateway For Agents

https://agentport.sh/
6•yakkomajuri•19h ago•2 comments
Open in hackernews

Show HN: MMORPG prototype inspired by World of Warcraft

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

Comments

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