frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: Block/buzz: a workspace built for teams of humans and agents

https://github.com/block/buzz
6•ThomPete•14m ago•1 comments

Show HN: Selector Forge – browser extension for AI-generated resilient selectors

https://github.com/Intuned/selector-forge
15•ahmadilaiwi•3h ago•0 comments

Show HN: React Native Boost – swaps RN's Text/View wrappers for native ones

https://github.com/kuatsu/react-native-boost
3•mfkrause•29m ago•1 comments

Show HN: Smolsonic – A Subsonic-compatible music server written in Rust

https://github.com/tsirysndr/smolsonic
3•tsiry•49m ago•0 comments

Show HN: Teach your kids perfect pitch

https://github.com/paytonjjones/bsharp
195•paytonjjones•1d ago•134 comments

Show HN: I rebuilt the only parts of my IDE I use, in Rust, over a weekend

https://github.com/kyle-ssg/kyde
29•kyle-ssg•4h ago•27 comments

Show HN: Criterion Closet as a website – pull any of 1,247 films off the shelf

https://the-criterion-closet.vercel.app
163•olievans•2d ago•51 comments

Show HN: Recall – Local project memory for Claude Code

https://github.com/raiyanyahya/recall
124•mateenah•20h ago•77 comments

Show HN: Revenant – automatic LLM powered reverse engineering and reimplement

6•sylwester•3h ago•0 comments

Show HN: Prismag – Per-block model routing for the terminal and any IDE

https://github.com/rufus-SD/prismag
5•arthur-G•8h ago•0 comments

Show HN: KeyGhost – Keyboard app launcher for macOS

https://keyghost.dev/
6•3stacks•7h ago•3 comments

Show HN: CleverCrow: give tokens to your favorite projects

https://clevercrow.io
39•zhubert•22h ago•57 comments

Show HN: MiniPCs.zip – Charting the Pareto frontier of Mini PCs

https://minipcs.zip
42•yathern•1d ago•21 comments

Show HN: Socket to Me, a static file server that runs in the browser

https://socket2.me/
6•markjivko•5h ago•2 comments

Show HN: I rebuilt Jobs To Be Done on scientific foundations and open-sourced it

https://github.com/zamesin/Next-Move-Theory-Canon-and-Skills
15•zamesin•5h ago•0 comments

Show HN: SindriKit – A C framework applying dependency injection to exploit dev

https://sibouzitoun.tech/articles/sindrkit
4•sibouzitoun•5h ago•0 comments

Show HN: PauseRead – hosted read-later with Pocket HTML import

https://pauseread.com/pocket-alternative
4•YuriiKholodkov•5h ago•0 comments

Show HN: Bowora – A launchpad for build-in-public founders

https://bowora.com
5•Nimaaksoy•5h ago•0 comments

Show HN: Crespo – Tree-sitter AST blueprints instead of raw code for LLMs

https://github.com/hrudulmmn/crespo
11•ByteJoseph•14h ago•1 comments

Show HN: Ze.sh – a z.sh-derived directory jumper that uses an event clock

https://github.com/jghub/ze
5•jghub•5h ago•0 comments

Show HN: Pulse – Dashboard for Claude Code, approve tool calls from your phone

https://github.com/nikitadoudikov/claude-pulse
38•nikitadvd•1d ago•14 comments

Show HN: TownSquare, a tiny presence layer for websites

https://townsquare.cauenapier.com/
260•cauenapier•2d ago•149 comments

Show HN: Duckle a drag-and-drop visual pipeline designer

https://github.com/slothflowlabs/duckle
4•souravroy78•6h ago•4 comments

Show HN: StartupWiki – A Free Alternative to Crunchbase

https://startupwiki.tech/
227•shpran•2d ago•69 comments

Show HN: Make PDFs look scanned (CLI or in the browser via WASM)

https://github.com/overflowy/make-look-scanned
151•overflowy•1d ago•63 comments

Show HN: StartupsBR – A map of Brazilian startups

https://www.startupsbr.com/sao-paulo
16•leonagano•3d ago•7 comments

Show HN: Got sick of ads, so I made my own logic puzzle site

https://puzzlelair.com/
67•HaxleRose•5h ago•61 comments

Show HN: Brain Frog – Can you be random enough for 11 lines of JavaScript?

https://brainfrog.lol
15•AlexanderZ•3d ago•10 comments

Show HN: Microcrad – Micrograd Reimplemented in C

https://github.com/oraziorillo/microcrad
78•oraziorillo•5d ago•28 comments

Show HN: Talos – Open-source WASM interpreter for Lean

https://github.com/cajal-technologies/talos
105•mfornet•4d ago•28 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)