frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: What if the speed of light was 5 km/h?

https://rivendell.dmitrybrant.com/relativity/
261•dmitrybrant•5h ago•105 comments

Show HN: Compute polynomials twice as fast

https://thomasahle.com/fast-polynomials/
73•thomasahle•23h ago•24 comments

Show HN: Botbin.io – pastebin for AI agent artifacts

https://botbin.io/?v=next
2•obilgic•56m ago•0 comments

Show HN: Self-hosted company OS, Claude Code and Codex agents in departments

https://github.com/OtoDock/oto-dock
44•dimitrismrtzs•13h ago•11 comments

Show HN: They chose your competitor. Find out why

https://drop.space
5•zhangchen0411•5h ago•2 comments

Show HN: Geiger – See every AI agent on your machine and what it can touch

https://github.com/Atomburstofficial/geiger
45•atomburst•17h ago•21 comments

Show HN: Oz – a Vim-style terminal editor written in Zig

https://github.com/niT-Tin/oz
3•niT-Tin•4h ago•0 comments

Show HN: Copperhead – Cursor for circuit boards

https://copperhead.sh/
242•animeshchouhan•1d ago•113 comments

Show HN: NYC rideshare market analysis (2019 – 2026)

https://github.com/omarirfa/rideshare_market
3•fl4res•5h ago•0 comments

Show HN: Find your next client on X

https://tiny.opencreators.ai
4•zhangchen0411•5h ago•0 comments

Show HN: LLM Attention Visualization

https://ishamf.dev/p/llm-attention-visualizer/
167•ifz•1d ago•26 comments

Show HN: Rdltr – Inbox zero for your reading list

https://rdltr.app/
23•eduardosasso•14h ago•17 comments

Show HN: Whetuu – An opinionated, zero-config status line and history picker

https://github.com/yamafaktory/whetuu
13•yamafaktory•17h ago•1 comments

Show HN: Hydra – Open-source agentic terminal with a PTY daemon

https://github.com/hydraterm/hydra-local
11•hydraterms•10h ago•5 comments

Show HN: Persistent Jupyter kernel execution and live output streaming in VSCode

https://github.com/rnoro/tithon
5•rnoro_•18h ago•1 comments

Show HN: VolAnti – Open-source acoustic detector for fibre-optic FPV drones

https://github.com/agamrossen/VolAnti
16•agamrossen•1d ago•0 comments

Show HN: Stuxnet – A reconstructed source code of the infamous cyber-weapon

https://github.com/Sadpainy/Stuxnet
176•CMDDestory•2d ago•51 comments

Show HN: Csirac emulator with Interprogram – first .au computer & language

https://grahame.dev/csirac/
3•grahameb•13h ago•0 comments

Show HN: Ctrlb-decompose: Strip the noise from logs before sending to LLMs

https://github.com/ctrlb-hq/ctrlb-decompose
14•ruhani_grover•19h ago•0 comments

Show HN: I'm not a PostgREST fan this is why I'm building an alternative

https://github.com/rustrum/xepak
4•rumatoest•14h ago•0 comments

Show HN: GET Together – A social network where you don't need POST to Post

https://gettogether.dev
107•nchudleigh•3d ago•59 comments

Show HN: A guestbook for humans and AI agents, built on 144 pixels

https://a90.com/blog/a-guestbook-for-humans-and-ai-agents/
4•genesishash•14h ago•2 comments

Show HN: Story map of the 2026 Nepal flood: damage on the ground, lakes above

https://notebook.link/@arjxn-py/nepal-flash-flood-review
5•arjxn-py•14h ago•1 comments

Show HN: An open-source SAS interpreter, written by agents

https://kirha.com/research/opensas
5•rektorship•14h ago•2 comments

Show HN: Tech Event Bingo – Track Events in Tech on a Bingo Card

https://techeventbingo.com/
3•aviflombaum•15h ago•1 comments

Show HN: 2K Animated Images

https://gifrun.com/filix
4•builderone•15h ago•0 comments

Show HN: GBDL – one Markdown+YAML file to save a multi-agent Grok Bot setup

https://github.com/jcpsimmons/gbdl
3•joshcsimmons•15h ago•0 comments

Show HN: A rated ladder for vibe coders – we rank the human, not the model

https://vibeladder.dev
3•alviso•15h ago•0 comments

Show HN: Mushrooms – A personal MCP server for 2,500 apps, so your AI can act

https://mushrooms.viasocket.com
2•ankit100•15h ago•0 comments

Show HN: Open-source whiteboard animator running locally

2•Masih77•15h 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)