frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: NFC Energy-Harvesting PCB Business Card with an MCU

https://wilsonharper.net/projects/businesscard/
163•WilsonHarper•2d ago•17 comments

Show HN: I missed the moving blocks, so I built a real Linux disk defragmenter

https://github.com/gbin/defragger
93•gbin•5d ago•67 comments

Show HN: Card Shop Directory – Find trading card shops by state, city, and game

https://cardshopdir.com
2•laimingj•5h ago•0 comments

Show HN: I asked LLMs to choose between popular developer tools

https://github.com/betocmn/preseason
3•thedreammachine•5h ago•0 comments

Show HN: ScoutLayer – a simple API to find contacts from a domain

https://scoutlayer.io
4•yuangwya•5h ago•1 comments

Show HN: Typebase – A single-folder back end you write in TypeScript

https://typebase.io
117•andrewww-dev•4d ago•30 comments

Show HN: Break 5, the addictive, free 5 minute, daily word game

https://break5.co.uk/
3•dwgebler•8h ago•0 comments

Show HN: What Apple's OS updates silently change in the on-device AI model

https://umer9538.github.io/underfoot/
2•Umer2521•8h ago•0 comments

Show HN: Galaxium, an experimental WebGPU space explorer

https://galaxium.app
133•guillaumec•6d ago•39 comments

Show HN: Hillock: Local neuro-symbolic memory engine in <1.2GB VRAM

https://github.com/roandejager/Hillock
10•roandejager5•14h ago•2 comments

Show HN: SubSmith – Turn your own videos into language-learning material

https://subsmith.app
75•IbrahimF96•2d ago•51 comments

Show HN: The load-bearing vocabulary of Claude

https://louisabraham.github.io/load-bearing/
694•Labo333•3d ago•326 comments

Show HN: Drop a SQL schema, get an interactive ER diagram

https://mcdview.dev/
14•PatuDev•21h ago•5 comments

Show HN: Bolnee-Chat – Self Hosted Chatbot Integration in Your Business Website

https://github.com/AniketWathore/bolnee-chat
32•AniketWathore•22h ago•0 comments

Show HN: Cogram Studio – CAD and BIM workspace for humans and agents

https://studio.cogram.com/
6•alexvboe•13h ago•0 comments

Show HN: Sesame - a local-first, open-source password manager

https://usesesame.app/
65•d0mkaaa•2d ago•85 comments

Show HN: C# Game Engine with its own scripting language and IDE

https://github.com/ArcadeMakerSources/ArcadeMaker/tree/master
11•am-gm•20h ago•0 comments

Show HN: My startup-idea scanner scored 500 ideas; the best got 6.3/10

https://1mil.app/
7•fayerman•20h ago•4 comments

Show HN: OpenTIE and OpenXWA, Modern Ports of Tie Fighter and X-Wing Alliance

https://github.com/elyosh/OpenTIE/
227•elyosh•3d ago•58 comments

Show HN: CardGo – Reusable, end-to-end encrypted context cards for AI chats

https://cardgo.ai
3•trinhngocdieu•16h ago•0 comments

Show HN: BentoPDF, Hyper Compress and Kura

https://www.bentopdf.com
3•__alam__•16h ago•0 comments

Show HN: Snaketron – Competitive multiplayer Snake. Back after 14 years

https://snaketron.io
5•lopatin•16h ago•1 comments

Show HN: Delete yourself from data brokers without a subscription

https://github.com/k7cfo/remove-your-data
22•k7peak•1d ago•6 comments

Show HN: Murmell – Collaborative cloud canvas for coding agents

https://murmell.com/
8•Mossab22•17h ago•2 comments

Show HN: Cushion – PouchDB on Deno KV

https://jsr.io/@mikehall314/cushion
7•mikehall314•17h ago•1 comments

Show HN: Watches user sessions, finds bugs that matter, and fixes them

https://github.com/opslane/opslane
40•aray07•3d ago•11 comments

Show HN: We built open OpenRouter that turns usage into a better model

https://github.com/experientiallabs/experiential
220•SilenN•3d ago•46 comments

Show HN: Build your own theme park

https://www.magicpatterns.com/theme-park
57•thealexanderlee•4d ago•25 comments

Show HN: Flint – A minimal C/C++ package manager and build tool written in C

https://github.com/mainak55512/flint
12•mbhatt99•1d ago•2 comments

Show HN: Self-hosted mobile-friendly web UI for Herdr agents

https://github.com/luiscleto/shepherdr
6•lfcc•20h ago•0 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)