frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Show HN: Continue? Y/N: A 60-second game about AI agent permission fatigue

https://llmgame.scalex.dev
163•Wirbelwind•7h ago•82 comments

Show HN: Ktx – Open-source executable context layer for data agents

https://github.com/Kaelio/ktx
30•lucamrtl•5h ago•3 comments

Show HN: Hallucinate – Massively Multiplayer Online Rave

https://hallucinate.site
376•stagas•16h ago•165 comments

Show HN: Open-Source AI Racing Harness

https://www.elodin.systems/post/elodin-ai-grand-prix-race-sim-harness
55•danAtElodin•23h ago•6 comments

Show HN: Py-SQL-cleaner – format SQL embedded in Python strings

https://github.com/enumura1/py-sql-cleaner
5•enumura•2h ago•0 comments

Show HN: TapToyPia

https://memalign.github.io/m/taptoypia/index.html
12•memalign•4d ago•5 comments

Show HN: Workout to Work – A desktop app that annoys you into exercising

https://gitlab.com/tivat/workout-to-work
3•blingojames•1h ago•0 comments

Show HN: Libfyaml adds a YAML/JSON parse cache; 427 MB reloads in 36 ms

https://github.com/pantoniou/libfyaml/releases/tag/v1.0.0-alpha7
3•fypanto•2h ago•0 comments

Show HN: Beacon CLI for self-hosted monitoring, remote access and deployments

https://github.com/Bajusz15/beacon
6•matebajusz•5h ago•1 comments

Show HN: AI Skill to port PostgreSQL extensions to MySQL

https://github.com/villagesql/villagesql-skills
3•deesix•4h ago•0 comments

Show HN: Open-source Workspace (mail,docs,spreadsheet,drive) web/iOS

https://tinycld.org/
102•nathanstitt•1d ago•38 comments

Show HN: Multiplayer, a debugging agent to run locally next to your coding agent

https://www.multiplayer.app/
5•tomjohnson3•5h ago•1 comments

Show HN: I made an emergency page for my family

https://help.delduca.org
79•delduca•1d ago•102 comments

Show HN: LiteParse v2, now in Rust 100x faster

https://github.com/run-llama/liteparse/
10•pierre•7h ago•0 comments

Show HN: Posthorn, self-hosted mail gateway

https://github.com/craigmccaskill/posthorn
79•craigmccaskill•1d ago•60 comments

Show HN: Electrical Grid Mapping Launchpad

https://MapYourGrid.org/map-it/
6•andreashd11•10h ago•2 comments

Show HN: AT4K Launcher - Apple TV inspired Launcher for Android TVs

https://at4klauncher.com
6•avadhesh18•10h ago•2 comments

Show HN: Reassign – a 24-hour dial for planning your day

https://reassign.app
7•smuk3c•10h ago•22 comments

Show HN: A website that tracks every stock trade Congress makes

https://congress.kadoa.com/
59•hubraumhugo•2d ago•20 comments

Show HN: LaunchPact – get upvotes for your ProductHunt launch

https://www.launchpact.io
6•devtanna•12h ago•2 comments

Show HN: Teleport-env – <500ms stateful rollbacks for AI agents via CRIU

https://github.com/JaiCode08/teleport-env
7•Jainish08•18h ago•0 comments

Show HN: OpenBrief – Local-first video downloader/summarizer

https://github.com/tantara/openbrief
91•tantara•2d ago•17 comments

Show HN: Audiomass – a free, open-source multitrack audio editor for the web

https://audiomass.co/?multitrack=1
547•pantelisk•4d ago•120 comments

Show HN: Filemat – an open-source web-based file manager

https://github.com/bingud/filemat
17•bingud•1d ago•12 comments

Show HN: Sweetpad – VS Code extension for building iOS/Swift apps

https://github.com/sweetpad-dev/sweetpad
7•hyzyla•23h ago•0 comments

Show HN: Geomatic – A command-driven geometry studio enabled with autodiff

https://www.tinyvolt.com/geomatic
74•nivter•3d ago•17 comments

Show HN: Rapel – chunked resumable downloads in unstable networks

https://github.com/redraw/rapel
20•autorun•2d ago•9 comments

Show HN: An update to our long-turn FreeCiv experience

https://freeciv.andrewmcgrath.info/
5•verelo•19h ago•0 comments

Show HN: Hodor – a 701KB native macOS prompt launcher for AI tools

https://hodor.design
9•woodydesign•1d ago•2 comments

Show HN: Fungible – A local personal finance app in the terminal

https://github.com/tomfunk/fungible
28•tomfunk•2d ago•13 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)