frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

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

https://github.com/rocky-data/rocky
54•hugocorreia90•18h ago•3 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
147•fesens•16h ago•31 comments

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

https://rip.so
2•bozdemir•9m ago•0 comments

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

https://github.com/trycua/cua
130•frabonacci•17h ago•30 comments

Show HN: Live Sun and Moon Dashboard with NASA Footage

https://www.lumara-space.app/
198•beeswaxpat•20h ago•62 comments

Show HN: TiGrIS, a tiling compiler that fits ML models onto embedded devices

https://github.com/raws-labs/tigris
18•asteinh•2h ago•0 comments

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

https://github.com/dirac-run/dirac
384•GodelNumbering•1d ago•141 comments

Show HN: Pi-hosts – Give the Pi coding agent access to your servers

https://github.com/hunvreus/pi-hosts
16•hunvreus•7h ago•0 comments

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

https://www.systalyze.com/utilyze
122•ManyaGhobadi•1d ago•28 comments

Show HN: GeoTraceroute – Traceroutes on a 3D globe and submarine cables

https://geotraceroute.com
21•Himred•7h ago•1 comments

Show HN: A terminal spreadsheet editor with Vim keybindings

https://github.com/garritfra/cell
121•garritfra•1d ago•50 comments

Show HN: 49Agents – 2D Canvas IDE for Orchestrating Agents, Repos, Issues

https://github.com/49Agents/49Agents
14•alpadurza•9h ago•1 comments

Show HN: I built another to do list. But it does a lot

https://apps.apple.com/us/app/rotation-list-shared-to-do/id6758746324
11•toddh•10h ago•2 comments

Show HN: ClusterdOS – Kubernetes without the platform team

https://gitlab.com/aranya-tech/public/clusterdos
13•druid•11h ago•1 comments

Show HN: I wrote a DOOM clone in my own programming language

https://spectrelang.org/log/devlog#cubedoom
20•pizza_man•22h ago•5 comments

Show HN: Waiting for LLMs Suck – Give your user a game

https://github.com/ftaip/waiting-game
33•dalemhurley•1d ago•14 comments

Show HN: Effected Keyboard 2 – Effects as You Type

13•vitalipom•12h ago•0 comments

Show HN: A TUI for Markdown view an editing

https://mdee.bkh.dev
19•cloked•13h ago•1 comments

Show HN: Devicons, +1300 logos and icons in React, SVG, and icon format

https://devicons.io/
18•vorillaz•1d ago•2 comments

Show HN: I mapped the latest UK fuel prices by county

https://fuelfox.uk/regional
19•sircipher•14h ago•2 comments

Show HN: Open Bias – proxy that enforces agent behavior at runtime

https://github.com/open-bias/open-bias/
19•algomaniac•14h ago•3 comments

Show HN: The Unix Magic poster, annotated (updated)

https://github.com/drio/unixmagic
74•drio•2d ago•7 comments

Show HN: Tiao, A two-player turn-based board game

https://playtiao.com
73•trebeljahr•2d ago•29 comments

Show HN: Free textbook on engineering thermodynamics

https://thermodynamicsbook.com/
187•2DcAf•2d ago•47 comments

Show HN: Unusual Wikipedia

https://unusualwiki.nk412.com/
37•grilledchickenw•1d ago•3 comments

Show HN: AgentSwift – Open-source iOS builder agent

https://github.com/hpennington/agentswift
63•hpen•1d ago•9 comments

Show HN: Ragnerock, an AI data analysis tool

https://www.ragnerock.com
13•mmahowald27•16h ago•4 comments

Show HN: Decaf – rewrites webpage comments using on-device Gemini Nano

https://github.com/milind-soni/Decaf
15•milindsoni201•17h ago•1 comments

Show HN: PrePrompt – rewrites vague prompts before they reach the LLM

https://preprompt.org/
21•yashdeeptehlan•1d ago•5 comments

Show HN: SyncVibe – Code with friends in the terminal, each with your own AI

https://syncvibe.online/
18•curious1008•18h ago•4 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)