frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Show HN: I took back Video.js after 16 years and we rewrote it to be 88% smaller

https://videojs.org/blog/videojs-v10-beta-hello-world-again
424•Heff•17h ago•86 comments

Show HN: DuckDB community extension for prefiltered HNSW using ACORN-1

https://github.com/cigrainger/duckdb-hnsw-acorn
54•cigrainger•7h ago•4 comments

Show HN: Email.md – Markdown to responsive, email-safe HTML

https://www.emailmd.dev/
303•dancablam•18h ago•76 comments

Show HN: I built a free CharacterAI that runs locally

https://github.com/akdeb/open-toys/tree/main/resources
4•akadeb•57m ago•0 comments

Show HN: Gemini can now natively embed video, so I built sub-second video search

https://github.com/ssrajadh/sentrysearch
335•sohamrj•20h ago•91 comments

Show HN: AI Roundtable – Let 200 models debate your question

https://opper.ai/ai-roundtable/
66•felix089•15h ago•53 comments

Show HN: CI/CD in your terminal, zero YAML

https://zippy.sh
3•svanderbijl•1h ago•0 comments

Show HN: ProofShot – Give AI coding agents eyes to verify the UI they build

https://github.com/AmElmo/proofshot
133•jberthom•1d ago•90 comments

Show HN: PSFuturemail – Write a letter and forget it until it arrives

https://www.psfuturemail.com/
4•itspawanhere•2h ago•1 comments

Show HN: Gridland: make terminal apps that also run in the browser

https://www.gridland.io/
85•rothific•18h ago•12 comments

Show HN: I ran a language model on a PS2

https://github.com/xaskasdf/ps2-llm
36•xaskasdf•3d ago•11 comments

Show HN: Cq – Stack Overflow for AI coding agents

https://blog.mozilla.ai/cq-stack-overflow-for-agents/
208•peteski22•1d ago•93 comments

Show HN: Antimatter – Match the opposites (Mahjong solitaire mechanic)

https://www.linguabase.org/antimatter/
10•michaeld123•15h ago•4 comments

Show HN: RemoteDevJobs – AI-curated remote developer positions with scoring

https://remotedvjobs.com
4•remotedvjons•10h ago•0 comments

Show HN: Necessary Cuts – an interactive fiction fragment

https://necessarycuts.com/play
2•liquidchicken•7h ago•0 comments

Show HN: The King Wen Permutation: [52, 10, 2]

https://gzw1987-bit.github.io/iching-math/
62•gezhengwen•2d ago•27 comments

Show HN: Vedic Astroglogy

https://rasiandrise.com/
4•simple_elephant•9h ago•0 comments

Show HN: Herd – A Go sidecar to stop stateful processes Puppeteer/LLMs from OOM

6•sankalpnarula•9h ago•0 comments

Show HN: Plasmite – a lightweight IPC system that's fun

https://github.com/sandover/plasmite
2•sandover•10h ago•0 comments

Show HN: Mapping the most convenient ways to meet someone with public transit

https://www.commutometer.com/meet-in-sanfrancisco
10•acavailhez•20h ago•1 comments

Show HN: Skub – a sliding puzzle browser game

https://skub.app
8•kasperstorgaard•16h ago•6 comments

Show HN: Lexplain – AI-powered Linux kernel change explanations

https://lexplain.net
4•daisydevel•12h ago•0 comments

Show HN: Origin – Git blame for AI agents (track which AI wrote every line)

https://getorigin.io
3•dolobanko•12h ago•0 comments

Show HN: RentDataNow – free rent data for 4k US cities and 8k ZIP codes

https://rentdatanow.com/
6•misterinfo•12h ago•1 comments

Show HN: Create a full language server in Go with 3.17 spec support

https://github.com/owenrumney/go-lsp
4•rumno0•13h ago•0 comments

Show HN: A/B test images with your eyes using ARKit face tracking

https://saccadeapp.com/
3•hoag•13h ago•0 comments

Show HN: Revise – An AI Editor for Documents

https://revise.io
83•artursapek•2d ago•75 comments

Show HN: Visualizing Apple Health workout data (stats, trends, insights)

https://apps.apple.com/us/app/streakout-workout-stats/id6758457318
5•toni88x•19h ago•0 comments

Show HN: Updated GiantJSON Viewer – Opening 100GB JSONs on Android (Rust+SIMD)

https://giantjson.com/
3•kotysoft•15h ago•5 comments

Show HN: Wordif.sh – word-by-word text comparison in color, output to HTML/PDF

https://github.com/jazzfan2/wordif
3•robtoscani•15h ago•2 comments
Open in hackernews

Show HN: MMORPG prototype inspired by World of Warcraft

https://github.com/nickyvanurk/everwilds
28•nickyvanurk•10mo ago

Comments

ricardobayes•10mo ago
Still to this day I have not seen an MMORPG that has as smooth movement and camera system as WoW.
okdood64•10mo ago
Camera movement in FFXIV is fine. Character movement was a bit clunky but still very usable.
kristoff200512•10mo 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•10mo ago
To replicate that feel is pretty much the point of this project.
MacNCheese23•10mo 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•10mo 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•10mo 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•10mo 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•10mo ago
I get net::ERR_CERT_COMMON_NAME_INVALID on everwilds.io (chrome android)