frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Show HN: 500 years of Joseon court omens as an observability dashboard

https://ajin.im/is/building/omen.ops/
103•poppypetalmask•10h ago•17 comments

Show HN: Komi-learn – continuous memory and self-improvement for coding agents

https://github.com/kurikomi-labs/komi-learn
2•rainxchzed•59m ago•0 comments

Show HN: Open Envelope – an open schema for defining AI agent teams

https://openenvelope.org/docs/schema/
40•ashconway•2d ago•4 comments

Show HN: Helios – what plug-in solar could generate for any address in Britain

https://helios.southlondonscientific.com/
116•ruaraidh•19h ago•38 comments

Show HN: OWASP Agent Memory Guard – Stop AI Agent Memory Poisoning

https://github.com/OWASP/www-project-agent-memory-guard
3•vgudur297•2h ago•0 comments

Show HN: Tiny-vLLM – high performance LLM inference engine in C++ and CUDA

https://github.com/jmaczan/tiny-vllm
187•yu3zhou4•1d ago•16 comments

Show HN: Open-source private home security camera system (end-to-end encryption)

https://github.com/secluso/core
117•arrdalan•1d ago•25 comments

Show HN: I made a Gemma 4 Mac app that names screenshots with local AI

https://snapname.app
6•joas_coder•4h ago•3 comments

Show HN: TV Explorer. Adding advanced UI to free online TV

https://tvexplorer.live
180•dtagames•1d ago•56 comments

Show HN: Zot – Yet another coding agent harness

https://www.zot.sh
97•patriceckhart•2d ago•78 comments

Show HN: Lite-Harness – Self-Hosted Cursor Agents (Use Claude Code/OpenCode)

https://github.com/LiteLLM-Labs/lite-harness
6•detente18•6h ago•0 comments

Show HN: Kanji Pairs Explorer

https://trost.co/kanji-pairs/
5•matthewtoast•7h ago•0 comments

Show HN: Babo – A scripting natural language that works as intended

https://github.com/armbox/babo
6•theqoo•8h ago•0 comments

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

https://github.com/Kaelio/ktx
86•lucamrtl•2d ago•26 comments

Show HN: I built an Android OS in the browser

https://mobilegym.dev/
20•haozaz•1d ago•0 comments

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

https://llmgame.scalex.dev
380•Wirbelwind•2d ago•157 comments

Show HN: React-Rewrite – A visual editor for React that writes code, no LLM

https://github.com/donghaxkim/react-rewrite
3•donghaxkim•10h ago•0 comments

Show HN: leaf – one month later: website, releases and lots of improvements

https://leaf.rivolink.mg
4•RivoLink•11h ago•0 comments

Show HN: UN Condemnation Statistics

https://boxed.github.io/UN-condemns/
4•boxed•13h ago•0 comments

Show HN: Community Ninja – Find customers searching for your product

https://communityninja.ai/
5•shashanoid•13h ago•2 comments

Show HN: Hallucinate – Massively Multiplayer Online Rave

https://hallucinate.site
437•stagas•3d ago•194 comments

Show HN: Ego lite – why our browser agent writes JavaScript not CLI commands

https://github.com/CitroLabs/ego-lite
11•Nicole9•14h ago•8 comments

Show HN: Open-Source AI Racing Harness

https://www.elodin.systems/post/elodin-ai-grand-prix-race-sim-harness
75•danAtElodin•3d ago•22 comments

Show HN: Context-aware Japanese furigana using Sudachi and ModernBERT

https://www.ezfurigana.com/
37•epitrochoid413•1d ago•17 comments

Show HN: VT Code – open-source terminal coding agent in Rust

https://github.com/vinhnx/VTCode
16•vinhnx•1d ago•4 comments

Show HN: Free activity calendar for schools, sports clubs, and organizations

https://freecal.eu/?lang=en
9•glenn_vc•1d ago•6 comments

Show HN: Jynx, a matchmaking app to find gaming teammates

https://jynx.app/
4•akiro____•16h ago•4 comments

Show HN: Promptloop – create, run, and improve prompt evals from the terminal

https://github.com/Bella3202019/promptloop
12•velapod•1d ago•2 comments

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

https://tinycld.org/
109•nathanstitt•3d ago•39 comments

Show HN: AionOS – self-healing microkernel in Zig (boots on real hardware)

https://github.com/rodancz/aion
5•rodancz•1d 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)