frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

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

https://textlog.cc/about
116•stagas•10h ago•51 comments

Show HN: Wyzer Programming Language

https://github.com/Wyzer-Lang/wyzer
159•v0id_isgood•9h ago•92 comments

Show HN: ReadMyStatement – Where did the money go?

https://readmystatement.com/
2•nadermx•1h ago•0 comments

Show HN: Zaivern Code – a Rust cockpit for parallel AI coding agents

https://github.com/tacyan/zaivern-code
2•tacyan•2h ago•0 comments

Show HN: The Channels SDK – Bring Any Agent to Any Channel (Slack, MS Teams)

https://github.com/CopilotKit/channels-sdk
112•davidmckayv•1d ago•24 comments

Show HN: S-Bahn Seat Picker

https://welidev.github.io/sbahn-picker/
4•weli•7h ago•2 comments

Show HN: Mousecrack – Teaching an LSTM to move a mouse like a human

https://github.com/puffinsoft/mousecrack
2•ReactRocks•4h ago•0 comments

Show HN: Certo – An open source platform to deliver Open Badges

https://github.com/schroedinger-Hat/certo
15•thejoin95•12h ago•0 comments

Show HN: Mermaid flowcharts you don't have to redraw in a diagram editor

https://line9.ai/diagram
2•jumpalongjim•5h ago•0 comments

Show HN: Likeface, make typefaces you like

https://0i0.app/pro/likeface
2•0gs•6h ago•2 comments

Show HN: A free mini game that makes you a smarter fly fisherperson

https://read-the-water.netlify.app/
21•mpc75•4d ago•10 comments

Show HN: Pokémon Emerald Ported to Raspberry Pi Pico 2

https://github.com/mattdeeds/pokeemerald-rp2350
52•mdeeds•1d ago•28 comments

Show HN: Clef – spaced repetition for piano over MIDI

https://playclef.com/
3•danieldratschuk•7h ago•1 comments

Show HN: File-based HTTP endpoints for Python with its own isolated dependencies

https://github.com/tanrax/bitpoint
5•andros•12h ago•1 comments

Show HN: Mirafold – Your Agent with Generative UI (Codex, Claude Code, Gemini)

https://mirafold.com/
4•kserrec•8h ago•7 comments

Show HN: A terminal glued to the macOS dock

https://github.com/palamim/starboard
46•leopalamim•1d ago•15 comments

Show HN: Lefts – a domain specific language for building creative ML models

https://nsmat.github.io/lefts/
6•niksmather•9h ago•0 comments

Show HN: Which devtools win when LLMs plan real web apps

https://preseason.ai
3•thedreammachine•9h ago•0 comments

Show HN: Remembrane – agent memory in one SQLite file, zero dependencies

https://github.com/satyasairay/remembrane
9•satyasairay•13h ago•0 comments

Show HN: Akintu – AI agents trained on custom knowledge bases using RAG

https://akintu.ai
3•Sharanxxxx•10h ago•1 comments

Show HN: XSAF – Extra Small Agent Framework

https://xsaf.ilha.build/
6•ryuzyy•14h ago•4 comments

Show HN: Sidebar – a private ESP32 intercom for five kids, no accounts

https://www.sundaradnus.ca/writing/sidebar-building-a-ham-radio-for-my-son
11•nonstopnonsense•18h ago•5 comments

Show HN: Simple algorithm and color space to generate diverse skin tones

https://toneyalexander.github.io/inclusive-color-space/
620•automatoney•3d ago•100 comments

Show HN: Recipe Jar, a local-first recipe keeper with no account or ads

https://recipejar.app/
9•sbmagar13•12h ago•2 comments

Show HN: posix-regex – POSIX standard regex engine for JavaScript

https://github.com/dawsonhuang0/posix-regex
2•dawson0•12h ago•0 comments

Show HN: Open-source pixel art editor with animation and auto-tiling tilesets

https://simplepixelart.com/editor
7•lam_hg94•19h ago•2 comments

Show HN: Seedance 2.5 video API (30s single-take, 50 refs, 4K) on Atlas Cloud

https://www.atlascloud.ai/models/seedance-2.5
3•qqt•15h ago•3 comments

Show HN: Wallfacer – A terminal session manager for Claude Code, and more

https://github.com/pradipta/wallfacer
35•pradiptasarma•1d ago•22 comments

Show HN: AI Tutoring with Visual Grounding

https://useknowable.ai/
7•samuelzxu•21h ago•7 comments

Show HN: Elevators

https://john.fun/elevators
1673•Jrh0203•1w ago•413 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)