frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: Lofi Cities – Pixel-art city nights with browser-generated lofi

https://loficities.com/
73•safaelmali•2h ago•29 comments

Show HN: TinyAIArena watch AI agents battle it out

https://tinyaiarena.com/
79•hp6•5h ago•36 comments

Show HN: Jevdit – a social network moderated by Jev

https://jevdit.com
2•TN1ck•12m ago•0 comments

Show HN: Building a Markdown editor for Mac, iOS and web

https://www.markdown.beauty/
54•thiagoperes•7h ago•38 comments

Show HN: Squint – Drag a box on your screen and ask AI about it

https://heysquint.com/
3•splurf•1h ago•0 comments

Show HN: Reladraw – A diagram language where you decide where to place things

https://github.com/reladraw/reladraw
382•jpwalsh234•1d ago•110 comments

Show HN: A bookshelf of rare company documents and out-of-print tech books

https://rare-books.vercel.app
4•miletus•1h ago•0 comments

Show HN: Asimov's 4 Laws for AI Contexts

https://github.com/davidsonff/asimov4laws
2•davidsonff•2h ago•0 comments

Show HN: A CC0 museum of retro 3D tricks you can paste into a page

https://3d-retro.com/
64•SouthWestAtlas•3d ago•11 comments

Show HN: Gat – Version large files with Git, without an LFS server

https://github.com/getgat-dev/gat
5•davnn•3h ago•0 comments

Show HN: Jev Plays Pokémon Red

https://jev-pokemon.vercel.app/
269•pancomplex•2d ago•117 comments

Show HN: Banker – CLI for your finances using Enable Banking and SQLite

https://github.com/karlis-vagalis/banker
3•nautical_dog•4h ago•0 comments

Show HN: MacUp – keep CLI tools up to date from the menu bar

https://macup.patriciobcs.com/
5•patriciobcs•5h ago•2 comments

Show HN: High-performance, zero-dependency charting engine for Svelte

https://bonguynvan.github.io/tradecanvas/
4•bonguynvan•5h ago•0 comments

Show HN: Andurel V2 – Space-Grade Go Web Framework

https://andurel.com/docs/head/whats-new
2•mbvisti•6h ago•0 comments

Show HN: Ekselio – Loveable for finance workflows (local first)

https://www.gptbeyond.com/try?home=1
39•kdautaj•1d ago•10 comments

Show HN: Revise, a new document editor library for React

https://www.npmjs.com/package/revise
2•artursapek•8h ago•2 comments

Show HN: Interactive Phaistos Disc workbench, rotation ergonomics, null models

https://lessthanzero.github.io/phaistos-disk/
3•sashakatin•8h ago•0 comments

Show HN: Aldine. Self-hosted Overleaf alternative. Every paper = 1 Git Repo

https://github.com/trahloff/Aldine
3•rahloff•8h ago•1 comments

Show HN: An OpenAI-compatible, model-agnostic agent API

https://rebyte.ai/docs/agents-api/overview
2•sonicgg•9h ago•0 comments

Show HN: What about a no-SSH agentic access tool

https://getfda.dev/
2•laotree•9h ago•0 comments

Show HN: Hacker Atlas - A map of what Hacker News talks about

https://hackeratlas.com/
85•andrearitossa•2d ago•28 comments

Show HN: Peekaboolean – image and jev-like typed questions in typed anwers out

https://github.com/bykof/peekaboolean
2•bykof•11h ago•0 comments

Show HN: Afterlife Vault – a virtual dead man's switch

https://afterlife-vault.com
2•wmeter•11h ago•3 comments

Show HN: I built an AR App that overlays makeup tutorials live on your face

https://urartist.app/
4•Vicmed13•11h ago•3 comments

Show HN: Whiteboard (YC W26) – An open-source IDE for thoughtful software design

https://github.com/devdotfast/whiteboard
415•sidharthkmenon•3d ago•141 comments

Show HN: Spivak's Calculus formalized in Lean 4 – every theorem, every problem

https://github.com/stormj-UH/spivak-lean
19•jsLavaGoat•1d ago•2 comments

Show HN: An interactive debugger for the Mornington Crescent esolang

https://codeberg.org/Two9A/mcresc
3•Two9A•13h ago•0 comments

Show HN: Ppgrid – Rasterising points in minutes, not hours

https://mrzk.io/posts/ppgrid-fast-continentscale-raster-interpolation/
3•marzukia•13h ago•0 comments

Show HN: A Claude Code skill to analyze your chess games

https://github.com/brumar/chess-postmortem-skills
75•brumar•1d ago•54 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)