frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: Nikon F100 Film Camera Repair Notes

https://github.com/enthdegree/f100
22•enthdegree•4d ago•11 comments

Show HN: a javascript engine written in C3 with native TS support

https://github.com/ricardobeat/boomkat
3•ricardobeat•1h ago•1 comments

Show HN: Automatically detect and patch walking-dead states in Sierra games

https://github.com/katiahayati/lucasartsifier/
132•wkfauna•14h ago•74 comments

Show HN: Progressive web-app to explore Paris while solving puzzles without app

https://flanori.com/
4•rhazn•2h ago•0 comments

Show HN: Interactive, animated architecture of any HuggingFace models

https://modelmap.cc
101•lizhaoliu•16h ago•10 comments

Show HN: Verify OpenAI's signed agent traffic in Python (RFC 9421/Web Bot Auth)

https://github.com/regent-protocol/regent-httpsig
3•abay_aubakirov•2h ago•0 comments

Show HN: Xalgorix – open-source AI pentester that proves vulnerabilities

https://www.xalgorix.com/
6•xalgord•2h ago•4 comments

Show HN: Anonymous age verification with passkey-powered encryption

https://loginwithone.com/
4•mikeysight•2h ago•4 comments

Show HN: My Mac slept through its cron jobs, so I made goguma, a menu bar app

https://github.com/junnam586/goguma
4•junnam586•2h ago•2 comments

Show HN: Marginal – See which customers and features drive your AI API costs

https://marginalhq.com/
4•jithinlalk25•3h ago•0 comments

Show HN: Carno.js – a Nest-style application framework for Bun

https://github.com/carnojs/carno.js
5•l-crispr•3h ago•1 comments

Show HN: Openleetcode – Local LeetCode runner where tests live in the repo

https://github.com/therepanic/openleetcode
68•therepanic•1d ago•17 comments

Show HN: Saggar, a Mac terminal that keeps sessions and your attention organized

https://saggar.marginalutility.dev/
65•mcclowes•2d ago•59 comments

Show HN: LLM-Shield-Proxy Zero-Egress PII Streaming Proxy (55MB RAM)

https://github.com/ninadphalak/LLM-Shield-Proxy
4•ninadphalak•4h ago•1 comments

Show HN: Basis – A free crypto terminal without paywalls

https://www.basischarts.com/
2•Alrady•6h ago•0 comments

Show HN: macOS data protection keychain for Electron apps

https://github.com/biw/keychain-store
23•biwills•23h ago•3 comments

Show HN: Desktopcolors.com – A museum for solid background colors of classic OS

https://desktopcolors.com
162•vlowrian•2d ago•71 comments

Show HN: Shoehorn – Quantize any model down to run on your machine

https://notactuallytreyanastasio.github.io/shoehorn/
44•rhgraysonii•1d ago•9 comments

Show HN: PlugClaw – Private AI agent hardware for any phone or PC

https://plugos.net/plugclaw/
6•darkreader•12h ago•5 comments

Show HN: Capto – alerts when a background job goes quiet, with breadcrumbs

https://capto.run
7•johndory80•1w ago•3 comments

Show HN: SparkleChinese – Learn Chinese while you browse

https://sparklechinese.com
5•tommy_guo•3h ago•0 comments

Show HN: Go CLI for website health checks, zero dependencies

https://github.com/atillalab/site-health
13•mehmetkose•1d ago•2 comments

Show HN: Loft Day – a wedding invitation turned point-and-click game

https://marketa.behdad.org/loft-day
9•behdad•1d ago•5 comments

Show HN: Sokoban AI Solver

https://mkornreich.me/projects/sokoban/
70•enjoyyourlife•2d ago•42 comments

Show HN: 4bit bridge between AI and humans

https://github.com/YOalphabet/YOalphabet
3•YOalphabet•12h ago•1 comments

Show HN: A local MitM proxy to control TLS fingerprints

https://github.com/ytkoka/impersonate-proxy
27•ytkoka•1d ago•6 comments

Show HN: Learn Flags Quiz

https://flagquizzes.com/
57•artiomyak•2d ago•38 comments

Show HN: Extctl, a super simple systemd-sysext wrapper

https://github.com/OperatorProject/extctl
5•fluorocaster•18h ago•0 comments

Show HN: A public AI whose memory is shared across all users

https://wildstatic.com/
86•adjohu•3d ago•75 comments

Show HN: ChatOSS – A Codex alternative for Open Source AI built on Ollama

https://chatoss.ai
6•thetjmccarty•19h ago•5 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)