frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: Justif – Knuth-Plass justification and microtypography for the web

https://justif.lyall.co/
103•lyall•4d ago•14 comments

Show HN: Computable – Buy, sell, and redeem GPU for the exact weeks you want

https://www.getcomputable.com/
28•yuansong98•5h ago•20 comments

Show HN: An MCP server that turns async-work practices into tools

https://github.com/open-and-async/mcp
14•benbalter•11h ago•4 comments

Show HN: A self-running space economy SIM in Rust and Bevy

https://github.com/Kalcode/spaceprojectsim
91•kalcode•9h ago•28 comments

Show HN: CodeAlmanac – Karpathy-style codebase wiki from your conversations

https://github.com/AlmanacCode/codealmanac/
44•divitsheth•10h ago•15 comments

Show HN: Workaround – Unstar GitHub Repos in Bulk

https://workaround.run/
8•yusveng•3d ago•4 comments

Show HN: Imagin Raw – A 9MB Open-Source Alternative to Adobe Bridge for Mac

https://github.com/cristibaluta/Imagin-Raw
55•cristi_baluta•10h ago•20 comments

Show HN: Browser Tools SDK – an optimal browser harness for agents

https://libretto.sh/browser-tools
10•tanishqkanc•6h ago•2 comments

Show HN: Orate – On-device neural text-to-speech queue for Mac

https://orate.to/
11•bherms•6h ago•10 comments

Show HN: Anypost – transactional and broadcast email API, 8¢ per 1k

https://anypost.com
17•dancablam•13h ago•8 comments

Show HN: Word in Web – Near MS Word Parity Docx Editor in Web

https://word-in-web.com/
31•theRealestAEP•10h ago•8 comments

Show HN: Read the Tape – Wordle for daytrading, five blind S&P 500 charts a day

https://readthetape.cc/
55•will_asouka•1d ago•41 comments

Show HN: Superserve – Firecracker microVM sandboxes for long-running AI agents

https://www.superserve.ai/
6•pavitrabhalla•4h ago•1 comments

Show HN: Faceblind – In-browser only video face blurring

https://kmcheung12.github.io/faceblind/
5•a_c•5h ago•0 comments

Show HN: Language Model Builder (an app to learn about and build models)

https://languagemodelbuilder.com/
13•felixrieseberg•9h ago•3 comments

Show HN: OSS Cross-Harness self hosted registry and analytics for AI Agents

https://github.com/Observal/Observal
20•haz3-jolt•10h ago•1 comments

Show HN: Explore 6048 YC companies as an interactive galaxy

https://artifacta.io/a/pg_x9pombpdybx90q2s16eu
35•jnakano89•2d ago•18 comments

Show HN: Free Desktop OrcaBot for macOS

https://orcabot.com/blog/free-desktop-orcabot
2•robbomacrae•3h ago•0 comments

Show HN: Memsprout – share your AI context with teammates

https://memsprout.com
3•mat10112•3h ago•0 comments

Show HN: Redential – open-source CLI that proves what you can build, NDA safe

https://github.com/redential/redential-cli
2•Jperalbelmont•3h ago•0 comments

Show HN: Surfacing gaps in neuroscience and narrative insights in Final Fantasy

https://dmerullo.github.io/crystal-pipeline/
3•us-merul•3h ago•0 comments

Show HN: Jaybase: Append-only fact store for AI doing business workflows

https://github.com/kyle-visner/jaybase
2•kvisner•3h ago•0 comments

Show HN: Hoop – A sandboxed P2P live collaboration harness for Claude Code

https://github.com/bruno-de-queiroz/hoop
2•brunodequeiroz•3h ago•0 comments

Show HN: RootBadger – a modern Usenet-style discussion platfor

https://rootbadger.com
5•yodabytz•6h ago•0 comments

Show HN: Meltbox – where your agents send you briefs

https://meltbox.ai/
3•flysonic10•6h ago•0 comments

Show HN: Chalk: a Mac app for technical diagrams with a built-in MCP for Claude

https://chalk.appkit.studio
6•davideweaver•6h ago•0 comments

Show HN: DocCharm – The help center that keeps itself up to date

https://doccharm.com/
7•yakshaving_jgt•9h ago•2 comments

Show HN: Pure PHP server, from yesterday, now supports sockets and rooms.

https://github.com/Qbix/webserver
4•EGreg•4h ago•0 comments

Show HN: In Meeting – A native macOS Mic/Cam observer for home automation

https://github.com/fellowgeek/in-meeting
8•pcbmaker20•9h ago•0 comments

Show HN: An interactive game of British Columbia

https://bigfootsbc.ca/
4•halshin_dev•4h 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)