frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Show HN: Hacker News archive (47M+ items, 11.6GB) as Parquet, updated every 5m

https://huggingface.co/datasets/open-index/hacker-news
187•tamnd•4d ago•80 comments

Show HN: Playing LongTurn FreeCiv with Friends

https://github.com/ndroo/freeciv.andrewmcgrath.info
21•verelo•1h ago•14 comments

Show HN: Elisym – Open protocol for AI agents to discover and pay each other

4•igor-peregudov•6h ago•0 comments

Show HN: I built 48 lightweight SVG backgrounds you can copy/paste

https://www.svgbackgrounds.com/set/free-svg-backgrounds-and-patterns/
27•visiwig•4h ago•8 comments

Show HN: Tmux-IDE, OSS agent-first terminal IDE

https://tmux.thijsverreck.com
31•thijsverreck•2h ago•21 comments

Show HN: Crossle – Scrabble meets crossword game

https://playcrossle.com/
4•enahs-sf•59m ago•7 comments

Show HN: Sub-millisecond VM sandboxes using CoW memory forking

https://github.com/adammiribyan/zeroboot
283•adammiribyan•1d ago•65 comments

Show HN: Clippy – screen-aware voice AI in the browser

https://RememberClippy.com
2•krschacht•1h ago•0 comments

Show HN: Will my flight have Starlink?

84•bblcla•3h ago•76 comments

Show HN: Open-source Typeform

https://forms.md/
4•darkhorse13•2h ago•0 comments

Show HN: Reprompt – Score your AI coding prompts with NLP papers

https://github.com/reprompt-dev/reprompt
7•LuxBennu•7h ago•1 comments

Show HN: Pgit – A Git-like CLI backed by PostgreSQL

https://oseifert.ch/blog/building-pgit
108•ImGajeed76•1d ago•56 comments

Show HN: Crust – A CLI framework for TypeScript and Bun

https://github.com/chenxin-yan/crust
88•jellyotsiro•1d ago•38 comments

Show HN: Hanoi-CLI – simulate and optimize pod placement in Kubernetes

https://github.com/k-krew/hanoi-cli
2•kreicer•4h ago•0 comments

Show HN: Save Claude tokens with semantic search powered by SQLite and Ollama

https://github.com/ory/lumen/tree/main
4•illogicalabc•4h ago•0 comments

Show HN: Horizon – GPU-accelerated infinite-canvas terminal in Rust

https://github.com/peters/horizon
75•petersunde•1d ago•31 comments

Show HN: Claude Code skills that build complete Godot games

https://github.com/htdt/godogen
323•htdt•2d ago•197 comments

Show HN: PlanckClaw an AI agent in 6832 bytes of x86-64 assembly

https://github.com/frntn/planckclaw
4•frntn•5h ago•2 comments

Show HN: NC Web – Norton Commander for the web, built with vanilla JavaScript

https://github.com/victorantos/NC
4•victorbuilds•6h ago•2 comments

Show HN: Website lets you post only once for life

https://opo.fausto.me/
3•faustoct•6h ago•1 comments

Show HN: Bento – Save and restore multi-monitor app layouts

https://bentodesktop.com
7•aarmenante•6h ago•3 comments

Show HN: deariary – An automated diary generated from the tools you use

https://deariary.com/en
5•unhappychoice•7h ago•0 comments

Show HN: We built AI agents that reduce mortgage processing from 18 days to 3–5

https://app.simplai.ai/register
4•SimplAI_ai•7h ago•2 comments

Show HN: Git-ownership – A tool to visualize code ownership over time from Git

https://github.com/MichaelMure/git-ownership
4•michaelmure•7h ago•0 comments

Show HN: Claude-copy – Copy Claude Code output to clipboard

https://github.com/clementrog/claude-copy
4•crog•8h ago•2 comments

Show HN: Antfly: Distributed, Multimodal Search and Memory and Graphs in Go

https://github.com/antflydb/antfly
101•kingcauchy•1d ago•40 comments

Show HN: Mozilla Firefox is getting a free built-in VPN, with a catch

https://www.xda-developers.com/mozilla-firefox-is-getting-a-free-built-in-vpn-with-a-catch/
2•guilamu•3h ago•0 comments

Show HN: UpdateBerry – Turn Git commits into marketing assets (prototype)

https://updateberry.com
2•wjr•9h ago•2 comments

Show HN: I built a message board where you pay to be the homepage

https://saythat.sh
18•SayThatSh•1d ago•14 comments

Show HN: A client-side visual workflow builder for PDFs

https://www.convertuniverse.com
4•Lyriryl•11h 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)