frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: Bento - An entire PowerPoint in one HTML file (edit+view+data+collab)

https://bento.page/slides/
779•starfallg•16h ago•176 comments

Show HN: Cactus Hybrid: We taught Gemma 4 to know when it's wrong

https://github.com/cactus-compute/cactus-hybrid
120•HenryNdubuaku•13h ago•16 comments

Show HN: A satellite control room from 100% open data, self-hosted in Europe

https://overwatch.confinia.io
2•clement_igonet•1h ago•0 comments

Show HN: NeedFeed – Turn Reddit noise into a feed of needs

https://needfeed.io/
2•niliu123•7m ago•0 comments

Show HN: DeepSQL – A self-hostable DBA agent for Postgres and MySQL

https://deepsql.ai/
47•venkat971•2d ago•26 comments

Show HN: Web swing through midtown NYC

https://www.swingnyc.com/
69•shahahmed•15h ago•25 comments

Show HN: HN Hall of Fame – browse 3,100 legendary Hacker News links

https://www.orangecrumbs.com/hall/
193•oyster143•16h ago•37 comments

Show HN: AgentNest, self-hosted sandboxes for AI agents

https://github.com/mihirahuja1/agentnestOSS
9•mihir_ahuja•5h ago•2 comments

Show HN: Vivace – A single-process Qt media player with interactive DVD menus

https://github.com/Sportacandy/vivace
9•Sportacandy•8h ago•0 comments

Show HN: KageOps – An open-source, local-first alternative to Devin

https://github.com/hmanoor/kageops-core
5•hmanoor•7h ago•0 comments

Show HN: Cartopolis – OpenStreetMap rendered like it's 1999

https://seriot.ch/drawing/cartopolis/
9•beefburger•13h ago•0 comments

Show HN: ValuePair – a friendship app that cares about values first

https://valuepair.app
7•zloy88•9h ago•7 comments

Show HN: Sambaudit, a secrets scanner for SMB shares with a web UI

https://github.com/d-woosley/SambAudit
2•dwoosley•5h ago•0 comments

Show HN: ReadKinetic – a free, local-first speed reader for your own books

https://www.readkinetic.com/app/
98•SamuraiLion•1d ago•66 comments

Show HN: NextBest – See what skincare people recommend

https://www.nextbest.one
5•kalila855•10h ago•0 comments

Show HN: LiquidBrain – Unlimited Tokens. Unlimited Context. One Fixed Price

https://liquidbrain.ai/
6•salsta1•10h ago•6 comments

Show HN: The Daily FM – Turn any source into a daily podcast

https://thedaily.fm/
4•carimura•10h ago•1 comments

Show HN: Millwright – Rust-based, self-hosted LLM router

https://github.com/Northwood-Systems/millwright
9•AndrewLiu96•12h ago•4 comments

Show HN: Kalvir Clock

https://kalvir.life/clock
5•kalv•11h ago•0 comments

Show HN: The latest and most advanced version of Adsense, sponsored by Google

https://www.3emalak.com/2026/07/get-adsense-approval-after-rejection.html
2•omeraliamm•6h ago•0 comments

Show HN: A self-running space economy SIM in Rust and Bevy

https://github.com/Kalcode/spaceprojectsim
106•kalcode•1d ago•30 comments

Show HN: Grimoire – Best Practices for Everyone Installed for Your AI Agents

https://github.com/jeffreytse/grimoire
2•jeffreytse•6h ago•0 comments

Show HN: A new kind of FPS aim trainer

https://openaim.pramit.gg/
82•pmazumder•1d ago•45 comments

Show HN: LitigationBench. A Litigation Task-Based AI Benchmark

https://litco.ai/litigationbench
2•ybathaee•6h ago•0 comments

Show HN: Agent in 9 Lines Python

https://gist.github.com/tosh/6e91a9dbf08dd630c535e7345ac7f0b5
17•tosh•17h ago•8 comments

Show HN: Computable – Buy, sell, and redeem GPU for the exact weeks you want

https://www.getcomputable.com/
45•yuansong98•1d ago•25 comments

Show HN: A local, extensible session viewer for Pi and Codex

https://github.com/skorotkiewicz/sessions-viewer
2•modinfo•7h ago•0 comments

Show HN: CodeAlmanac – Karpathy-style codebase wiki from your conversations

https://github.com/AlmanacCode/codealmanac/
59•divitsheth•1d ago•20 comments

Show HN: JSON to Md(gfm)

https://json-to-md.rajnandan.com/
4•rajnandan1•13h ago•0 comments

Show HN: Justif – Knuth-Plass justification and microtypography for the web

https://justif.lyall.co/
190•lyall•5d ago•39 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)