frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: Gravity – interactive solar-system simulator, from Newton to Einstein

https://qunabu.github.io/Gravity/
43•qunabu•3h ago•14 comments

Show HN: Performative-UI – A react component library of design tropes

https://vorpus.github.io/performativeUI/
1069•lizhang•1d ago•195 comments

Show HN: Hires Chess Trainer – drill the mistakes from your own chess games

https://github.com/gaelazzo/python_chess
2•gaelazzo•37m ago•0 comments

Show HN: Gitdot – A better GitHub. Open-source, written in Rust

https://gitdot.io/
294•baepaul•22h ago•272 comments

Show HN: Simten – design hardware in TypeScript and simulate it in the browser

https://simten.dev/
2•charlesfrisbee•1h ago•0 comments

Show HN: UK sold house prices, uncapped, by postcode/county (Land Registry)

https://github.com/vladignatyev/uk-land-registry-price-paid
4•v_ignatyev•1h ago•0 comments

Show HN: Learn from 30 historical figures, open source, nonprofit, self-hosted

https://github.com/chipmates/agoracosmica
3•micstradev•2h ago•2 comments

Show HN: A static SPA to query ATF / BATFE historic AFMER data

https://ryjones.github.io/AFMER-SPA/?ymin=2000&ymax=2024&text=BOEING
2•RyJones•3h ago•0 comments

Show HN: Command Center, the AI coding env for people who care about quality

https://www.cc.dev/
53•Darmani•16h ago•26 comments

Show HN: Mach – A compiled systems language looking for contributions

https://github.com/octalide/mach
28•octalide•15h ago•14 comments

Show HN: SuperTree – interactive decision tree plot for sklearn,xgboost,lightgbm

https://github.com/mljar/supertree
2•pplonski86•6h ago•0 comments

Show HN: CSV Graph – create charts from CSV files in the browser

https://csv.qingyanglabs.com
5•lfdev•7h ago•2 comments

Show HN: Courtside – TUI for NBA Games

https://github.com/NolanFogarty/courtside
17•nolanfogarty•3d ago•4 comments

Show HN: NoSuggest – Watch YouTube without the recommendation algorithm

https://www.nosuggest.com/
58•VJ-2-108•5d ago•61 comments

Show HN: Startup sci-fi novel that took me 5 years to write

https://www.blockchainednovel.com/
21•mck-•22h ago•9 comments

Show HN: HTTP/3 and raw QUIC client/server APIs for Node.js

https://github.com/currentspace/http3
14•brian_meek•20h ago•0 comments

Show HN: Lathe – Use LLMs to learn a new domain, not skip past it

https://github.com/devenjarvis/lathe
390•devenjarvis•2d ago•70 comments

Show HN: I Derived a Pancake

https://www.absurdlyoptimized.com/recipes/pancakes/
333•bkazez•4d ago•135 comments

Show HN: Quick games disguised as boring spreadsheets

https://boredspreadsheet.com/workbook
13•kevinclelland•22h ago•1 comments

Show HN: Nightwatch, The open-source, read-only AI SRE

https://github.com/ninoxAI/nightwatch
33•egorferber•1d ago•9 comments

Show HN: Kyushu – A self-hostable WASM sandbox for JavaScript workers

https://kyushu.dev/
82•le_chuck•2d ago•38 comments

Show HN: fontliberator: Automatic font clean-room reimplementor

https://github.com/robinpie/fontliberator/
4•robinpie•11h ago•0 comments

Show HN: Deep Memory – Vocabulary-driven graph memory for AI agents

https://github.com/TjWheeler/deep-memory
4•tjwheeler•12h ago•2 comments

Show HN: macOS Apps on Linux: SwiftUI for Linux (and AppKit, NSFoundation, etc.)

https://github.com/Lore-Hex/QuillUI
5•ljlolel•18h ago•0 comments

Show HN: Formally verified polygon intersection – Opus 4.8 oneshots, prev failed

https://github.com/schildep/verified-polygon-intersection
93•permute•4d ago•21 comments

Show HN: Lowfat – pluggable CLI filter that saved 91.8% of my LLM tokens

https://github.com/zdk/lowfat
154•zdkaster•4d ago•77 comments

Show HN: Free animated icon library for Vue

https://respeak-io.github.io/lucide-motion-vue/
63•evolabs•5d ago•18 comments

Show HN: DaysLeft – a bio-age clock that shows a range, not a death date

https://daysleft.io
2•neo-genesis•14h ago•1 comments

Show HN: AI Pair Programmer for Emacs

https://github.com/jaketothepast/codetutor
34•jakewindle47•20h ago•0 comments

Show HN: I recreated AOL Instant Messenger in the browser

https://www.webaim.xyz
5•RgrTheShrubbr•15h 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)