frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: Getting GLM 5.2 running on my slow computer

https://github.com/JustVugg/colibri
799•vforno•1d ago•198 comments

Show HN: Runloom – Go-style coroutines for Python free-threaded

https://github.com/robertsdotpm/runloom
21•Uptrenda•2h ago•9 comments

Show HN: 18 Words

https://18words.com/
1063•pompomsheep•1d ago•339 comments

Show HN: Pay-per-call MCP server with 47 AI endpoints, micropayments via x402

https://goldbean-api.xyz
2•13639366668•2h ago•0 comments

Show HN: Hacker News book recs as study guides

https://biteread.ai/collection/hacker-news-top-nonfiction
3•xxbondsxx•2h ago•1 comments

Show HN: LifetimeR–A memento mori wallpaper generator (life,year,goal calendars)

https://lifetimer.vercel.app/
2•alvaro_l_torres•2h ago•0 comments

Show HN: Opula – portfolio and net-worth analysis as a hosted MCP connector

https://opula.io
2•bboydart•2h ago•0 comments

Show HN: Mojave Paint for macOS, edit images like it's 1999

https://mojavepaint.app/
3•jpsimons•3h ago•3 comments

Show HN: I mapped 8.5M research papers into an interactive atlas

https://tomesphere.com/atlas
77•leonickson•1d ago•22 comments

Show HN: Analog Watch

https://analog.watch
95•ezekg•1d ago•93 comments

Show HN: Frugon – Find which LLM calls a cheaper model could handle (local, MIT)

https://github.com/Rodiun/frugon
37•jarodrh•3d ago•10 comments

Show HN: Reverse-engineering web apps into agent tools

34•pancomplex•1d ago•16 comments

Show HN: Rubiks Cube Solver

https://speedcube.com.br/
21•wozzp•18h ago•11 comments

Show HN: The Flint Programming Language

https://github.com/flint-lang/flintc
2•zweiler1•5h ago•0 comments

Show HN: I built a web tool to see and edit what an AI thinks before it answers

https://lucid.earthpilot.ai
32•ada1981•22h ago•6 comments

Show HN: FableCut – A browser video editor AI agents can drive (zero deps)

https://github.com/ronak-create/FableCut
94•ronak_parmar•1d ago•58 comments

Show HN: Abralo – Free, easy way to run several Claude Code agents in one window

https://abralo.com/
29•cwbuilds•2d ago•21 comments

Show HN: Drag boxes around and watch a layout engine infer the Flexbox (no AI)

https://wpconverters.com/playground/
5•drzivil•6h ago•0 comments

Show HN: LastShelf – an emergency map of your family's documents bills& contacts

https://www.lastshelf.ai/
46•sbrown12•1d ago•31 comments

Show HN: RandoFont – A browser for Google Fonts

https://randofont.alesh.com
23•aleshh•19h ago•3 comments

Show HN: Snitch – Deterministic prose claim verifier for coding agents. (OSS)

https://github.com/fristovic/snitch
3•fristovic•2h ago•0 comments

Show HN: Follow London Trains in 3D

https://ride.nexttrain.london/
153•mgranados•5d ago•61 comments

Show HN: Microsoft releases Flint, a visualization language for AI agents

https://microsoft.github.io/flint-chart/#/
343•chenglong-hn•1d ago•135 comments

Show HN: Sighthound - open-source vulnerability scanner for source code

https://github.com/Corgea/Sighthound
17•asadeddin•1d ago•0 comments

Show HN: Devthropology – Better Insights for GitHub Repos

https://devthropology.com/demo
36•dpc94•23h ago•10 comments

Show HN: Pylon Sync, an agent-first full-stack realtime framework

https://www.pylonsync.com
10•ericc59•22h ago•1 comments

Show HN: Policy enforcement for Claude Code, Cursor, and Codex

https://kastra.ai/
12•carlosjimenez1•1d ago•4 comments

Show HN: Yamanote.fun – A complete soundscape for Tokyo's Yamanote line

https://www.yamanote.fun/
234•madebymagnolia•3d ago•52 comments

Show HN: Neil the Seal Game

https://neiltheseal.app/
95•dalemhurley•5d ago•85 comments

Show HN: FormGrid – Forms that can look like CLIs, pixel art, GeoCities and more

https://www.formgrid.com/
12•bjoernm•1d ago•2 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)