frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: A Project Oberon System version running on RISC-V instead of RISC-5

https://github.com/rochus-keller/OberonSystem/tree/op2-rv32
89•Rochus•8h ago•16 comments

Show HN: Alphabet Soup, a multiplayer game, build the longest word to win

https://alphabetsoup.club
4•johnchinjew•49m ago•0 comments

Show HN: A replayable A2A jury for tracing how agents influence decisions

https://github.com/nMaroulis/protolink/tree/main/examples/ai_courtroom
11•nmaroulis21•3h ago•0 comments

Show HN: Today's cities on a globe of Earth's tectonic past and future

https://douwe.com/projects/tectonic_globe
24•dosinga•6h ago•5 comments

Show HN: Airy – Free, fast, and simple voice content creation

https://airy.so
31•login588•11h ago•15 comments

Show HN: Open-source playground to red-team AI agents against public prompts

https://playground.fabraix.com/
12•zachdotai•3h ago•3 comments

Show HN: A time zone converter where the URL encodes the whole comparison

https://acrosszones.com
3•nomadrat•3h ago•1 comments

Show HN: Ember – Redshift safe color palettes

https://github.com/carpdiem/ember
4•carpdiem•4h ago•0 comments

Show HN: TokenSpend, the AI ROI Solution

https://tokenspend.dev/
3•haseebejaz•5h ago•0 comments

Show HN: Repro, disposable Docker env for GitHub issues(pip install repro-cli)

https://github.com/SukhdevThukral/repro
3•sukhdevth_•5h ago•0 comments

Show HN: Sufleur - npm-style prompt registry with typed code-generation

https://github.com/sufleur/cli
3•wtomas•5h ago•0 comments

Show HN: An enjoyable and efficient way for product teams to communicate

https://fosbury.ai/
3•YarivAshk•5h ago•3 comments

Show HN: Cash-o-mat - Find your favorite new Euro Bill Design

https://cash-o-mat.eu
3•zinngr•5h ago•1 comments

Show HN: StoneBuild – a build tool in Go for your projects in any languages

https://github.com/tigerlang/stonebuild
3•tiger-langer•5h ago•0 comments

Show HN: Make a Fake MySpace Profile

https://allthedamn.tools/myspace-profile-generator/
2•kilroy123•6h ago•0 comments

Show HN: A tool to auto-generate .vscode/settings.json and extensions.json

https://github.com/RKasai127/vscode-autoconfig
3•rkasai•6h ago•0 comments

Show HN: Augmented Violin Finger Choice Recommendation

https://violin-fingering.unstacked.cc
4•lennart-rth•7h ago•2 comments

Show HN: Sift – Fast local file organizer CLI with 1-click transaction undo

https://github.com/taevel02/Sift
3•taevel02•7h ago•0 comments

Show HN: Job Seeker – AI agent skills for job searching

https://github.com/galiprandi/job-seeker
5•galiprandi•7h ago•0 comments

Show HN: FAIth – a syntax-free JVM language, compiled by an LLM front-end

https://github.com/krossovochkin/faith
3•krossovochkin•8h ago•0 comments

Show HN: My WHOOP has no screen. My Kindle had no job. So I put them together

https://github.com/kaibuildsai/kindle-for-whoop
10•kaibuidsai•8h ago•5 comments

Show HN: textlog – A quiet, text-only microblogging platform, open-source, no JS

https://textlog.cc/about
199•stagas•2d ago•75 comments

Show HN: Wyzer Programming Language

https://github.com/Wyzer-Lang/wyzer
217•v0id_isgood•2d ago•116 comments

Show HN: Algebruh - Cross-check arithmetic claims with Z3, cvc5, and Lean

https://github.com/skorotkiewicz/algebruh
13•modinfo•1d ago•1 comments

Show HN: Tura – Build agent that uses 80% less token and delivers better results

https://github.com/Tura-AI/tura
12•turaainet•20h ago•0 comments

Show HN: Open-source binaural-beats engine

https://github.com/txus/farfield
4•txus•12h ago•0 comments

Show HN: Sign language translation with smart glasses

https://github.com/aadisang/hand-wave
25•aadisang•4d ago•13 comments

Show HN: Faaah – Filesystem as an AI Handler

https://github.com/sebastiancarlos/faaah
3•httbs•21h ago•2 comments

Show HN: VD – TUI Password Manager and OTP Authenticator for Unix

https://github.com/ahmedhosssam/vd
5•ahmedhosssam•22h ago•3 comments

Show HN: Inertia – Not your Grandfathers animation editor

https://inertiagraphics.com/
5•hpen•22h 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)