frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Show HN: boringBar – a taskbar-style dock replacement for macOS

https://boringbar.app/
466•a-ve•1d ago•265 comments

Show HN: Bloomberg Terminal for LLM ops – free and open source

2•amans9712•1h ago•1 comments

Show HN: I built a social media management tool in 3 weeks with Claude and Codex

https://github.com/brightbeanxyz/brightbean-studio
161•JanSchu•8h ago•110 comments

Show HN: Oberon System 3 runs natively on Raspberry Pi 3 (with ready SD card)

https://github.com/rochus-keller/OberonSystem3Native/releases
226•Rochus•1d ago•77 comments

Show HN: 15 yrs of Django in prod: patterns I keep using (agent skills)

https://github.com/dvf/opinionated-django
3•vanflymen•2h ago•1 comments

Show HN: Crafto – AI carousel post generator for LinkedIn and Instagram

https://crafto.ai
2•xz_tie•3h ago•0 comments

Show HN: Equirect – a Rust VR video player

https://github.com/greggman/equirect
8•greggman65•9h ago•1 comments

Show HN: The Infinite Tolkien – endless narration of Middle-earth

http://infinitetolkien.com/
2•Jarlakxen•5h ago•1 comments

Show HN: Turn your favorite YouTube channels into a streaming experience

https://minitube.tv
6•renatoworks•5h ago•9 comments

Show HN: Claudraband – Claude Code for the Power User

https://github.com/halfwhey/claudraband
114•halfwhey•1d ago•42 comments

Show HN: Git-style branching for your Rails database

https://github.com/carldaws/activerecord-postgresql-branched
3•carldaws•6h ago•0 comments

Show HN: Real-Time, Streaming SQL Queries on Flight Data

https://dashboard.transcend.modolap.com/queries?mode=demo
4•ronfriedhaber•7h ago•0 comments

Show HN: Pardonned.com – A searchable database of US Pardons

493•vidluther•2d ago•268 comments

Show HN: Kyomu - 13 puzzles from math and physics that map your cognitive style

https://mostlykiguess.github.io/Kyomu/
4•mostlyk•8h ago•2 comments

Show HN: A social feed with no strangers

https://www.grateful.so/
8•rpatni•19h ago•5 comments

Show HN: FluidCAD – Parametric CAD with JavaScript

https://fluidcad.io/
155•maouida•2d ago•37 comments

Show HN: Bad Apple (Oscilloscope-Like) – one stroke per frame

https://bad-apple-on-oscilloscope.pages.dev/
5•araniwa•12h ago•1 comments

Show HN: A WYSIWYG word processor in Python

https://codeberg.org/chrisecker/miniword
87•chrisecker•2d ago•39 comments

Show HN: Narrate – Generate multi-voice long-form audio with one command

https://github.com/zackham/narrate
5•zackham•15h ago•2 comments

Show HN: I built a Cargo-like build tool for C/C++

https://github.com/randerson112/craft
174•randerson_112•4d ago•166 comments

Show HN: Eve – Managed OpenClaw for work

https://eve.new/login
71•zachdive•3d ago•39 comments

Show HN: Waffle – Native macOS terminal that auto-tiles sessions into a grid

https://waffle.baby
38•olleeolleeollee•2d ago•20 comments

Show HN: CSS Studio. Design by hand, code by agent

https://cssstudio.ai
172•SirHound•4d ago•107 comments

Show HN: Local LLM on a Pi 4 controlling hardware via tool calling

https://github.com/stfurkan/pi-llm
3•stfurkan•18h ago•3 comments

Show HN: Rekal – Long-term memory for LLMs in a single SQLite file

https://github.com/janbjorge/rekal
3•jeeybee•20h ago•2 comments

Show HN: Keeper – embedded secret store for Go (help me break it)

https://github.com/agberohq/keeper
63•babawere•3d ago•33 comments

Show HN: SnatchHub – An App That Solves The "who's using staging?" Problem

https://getsnatchhub.com
3•boothemoo•20h ago•0 comments

Show HN: Druids – Build your own software factory

https://github.com/fulcrumresearch/druids
64•etherio•4d ago•15 comments

Show HN: Stork – MCP server so Claude/Cursor can search 14k MCP servers AI tools

https://www.stork.ai
2•usestork•22h ago•0 comments

Show HN: Bullseye2D – A Dart library for cross-platform 2D games

https://github.com/bullseye2d/bullseye2d
4•joemanaco•1d ago•1 comments
Open in hackernews

Show HN: MMORPG prototype inspired by World of Warcraft

https://github.com/nickyvanurk/everwilds
28•nickyvanurk•11mo ago

Comments

ricardobayes•11mo ago
Still to this day I have not seen an MMORPG that has as smooth movement and camera system as WoW.
okdood64•11mo ago
Camera movement in FFXIV is fine. Character movement was a bit clunky but still very usable.
kristoff200512•11mo 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•11mo ago
To replicate that feel is pretty much the point of this project.
MacNCheese23•11mo 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•11mo 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•11mo 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•11mo 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•11mo ago
I get net::ERR_CERT_COMMON_NAME_INVALID on everwilds.io (chrome android)