frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: Claude-account – switch Claude Code accounts without logging in again

https://github.com/hamzarehmandeveloper/claude-account
18•hamza_rehman•2h ago•16 comments

Show HN: I made a game where you build a CPU from logic gates

https://select.supply/game/chipbuilder
53•laurentiurad•6h ago•52 comments

Show HN: secure FFmpeg

2•finbot•59m ago•4 comments

Show HN: I was able to run tiberian sun on cncnet on an M4 MacBook Pro

https://github.com/piyiotisk/cncnet-ts-client-package/blob/master/docs/running-tiberian-sun-on-ap...
2•piyiotisk•1h ago•0 comments

Show HN: OpenMetaHarness – long-horizon execution over multiple context sessions

https://github.com/openmetaharness/openmetaharness
3•IzhaarTejani•1h ago•0 comments

Show HN: Open-source engine running Gemma 4 26B in 2 GB RAM on any M-series Mac

https://github.com/drumih/turbo-fieldfare
865•gitpusher42•1d ago•311 comments

Show HN: Agentic data transformation & analytic for corporate finance

https://trysecondstate.com/
3•ELAmrani•2h ago•1 comments

Show HN: AgentCouch – let your agents chat with other agents

https://agentcouch.dev
6•spstoyanov•2h ago•1 comments

Show HN: Tilery-VM – run Nvidia cuTile GPU kernels on a CPU, no GPU required

https://github.com/drbh/tilery-vm
4•justdrbh•2h ago•0 comments

Show HN: Dowe Lang simplifies fullstack applications, web, Android and iOS

https://www.dowe.dev
2•victorriba•2h ago•2 comments

Show HN: Let your agents create custom pods

https://thedaily.fm/docs/agents
2•carimura•2h ago•1 comments

Show HN: stock-tui – an open-source terminal app inspired by StockTouch

https://github.com/chatcode-lab/stock-tui
4•borkasm•2h ago•0 comments

Show HN: Markdown.gg – OSS to collaborate on md files

https://github.com/xatuke/markdowngg
3•satuke•3h ago•0 comments

Show HN: Wrapper – Best Ever Agent Manager

https://github.com/xatuke/wrapper
6•satuke•3h ago•0 comments

Show HN: ApeiroCraft – see when clients open your proposals

2•lolllll•3h ago•4 comments

Show HN: Skill-up – Regression testing for Agent Skills

https://github.com/alibaba/skill-up
4•roark47•3h ago•0 comments

Show HN: Figranium – Open-source visual Playwright control plane (Docker, API)

https://figranium.dev
2•asernasr•3h ago•0 comments

Show HN: Hacker Fables – A satirical cyberpunk novel you can read as a man page

https://sebastiancarlos.github.io/hacker-fables/
3•httbs•3h ago•0 comments

Show HN: CheapFoodMap – A map of good meals under $10

https://cheapfoodmap.com/
264•jaep1•1d ago•238 comments

Show HN: A local merge queue for parallel Claude Code agents

https://github.com/funador/claude-code-merge-queue
40•funador•17h ago•22 comments

Show HN: Qwen Scribe – local transcription and dictation for Apple Silicon

https://github.com/VladUZH/qwen-scribe
91•sidclaw•1d ago•20 comments

Show HN: XQL, a query language for screening market data

https://xcreener.com/xql-playground
2•guzzul•4h ago•2 comments

Show HN: Homebutler – Homelab CLI that gives agents commands, not a shell

https://github.com/Higangssh/homebutler
5•swq115•4h ago•0 comments

Show HN: SwiftNet 0.6.0 – Lightweight l2 C networking lib (pcap and early DPDK)

2•morcules•4h ago•0 comments

Show HN: wthrtxt – the same weather forecast in the browser and terminal

https://wthrtxt.com
2•qrv3w•4h ago•1 comments

Show HN: DispatchSEO – open-source SEO manager tool for Claude Code

https://github.com/NeoZi12/dispatchseo
2•neozino•4h ago•0 comments

Show HN: I Made Generateppt.com Free

https://www.generateppt.com/
4•fer_momento•4h ago•1 comments

Show HN: FBSimCity – an explorable city that shows how Firebird works

https://mariuz.github.io/FBSimCity/
2•mariuz•4h ago•1 comments

Show HN: Scalix World – AI native Neo cloud built by two engineers in Rust

https://scalix.world/
3•kiran-ravi•4h ago•4 comments

Show HN: Noticky – A local MCP server for sticky notes on macOS

https://www.noticky.app/en/sticky-notes-mcp
2•leotryhard•4h ago•1 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)