frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: I am building a map of people who lived in the Roman Empire

https://new.roman-names.com/
185•metiscus•3d ago•43 comments

Show HN: Paca – Lightweight Jira alternative for human-AI collaboration

https://github.com/Paca-AI/paca
158•pikann22•1d ago•56 comments

Show HN: Bastion – isolated Linux VMs for background coding agents

https://bastion.computer/
21•almostlit•11h ago•2 comments

Show HN: Velyr – an AI agent that finds and fixes conversion leaks on your site

https://velyr.io/
4•flo_r•3h ago•0 comments

Show HN: I run a vision model on every screenshot, locally, on a 4GB GPU

https://github.com/ayushh0110/ScreenMind
26•skye0110•14h ago•4 comments

Show HN: 2 Weeks of Hallucinate – The Photo Gallery

https://hallucinate.site/gallery
71•stagas•1d ago•24 comments

Show HN: Lightweight Task queue on Erlang/OTP, SQLite-backed, no overengineering

https://github.com/entGriff/ezra
72•ent1c3d•4d ago•11 comments

Show HN: Putt.day a daily mini golf game

https://putt.day/
304•ellg•1d ago•110 comments

Show HN: Homebrew 6.0.0

https://brew.sh/2026/06/11/homebrew-6.0.0/
1446•mikemcquaid•3d ago•354 comments

Show HN: Quant Picker – which GGUF file fits your model and machine

https://vettedconsumer.com/quant-picker/
18•ermantrout•1d ago•0 comments

Show HN: Motplot is a crossword but it plays like Sudoku

https://motplot.app/
5•jamwise•8h ago•2 comments

Show HN: FablePool – pool money behind a prompt, and Fable builds it in public

https://fablepool.com
518•matthewbarras•2d ago•273 comments

Show HN: StackScope – I crawled over 40k indie launches to see what they ship

https://stackscope.dev/
63•datafreak_•1d ago•17 comments

Show HN: Skill for your agent to visualize your gbrain and Obsidian

https://github.com/vladignatyev/brain-map-skill
20•v_ignatyev•1d ago•16 comments

Show HN: Boo – Screen-style terminal multiplexer built on libghostty

https://github.com/coder/boo
93•kylecarbs•2d ago•28 comments

Show HN: Inkwash, a watercolor sketching app and explanation

https://johnowhitaker.github.io/inkwash/about
4•Yenrabbit•11h ago•3 comments

Show HN: Extend UI – open-source UI kit for modern document apps

https://www.extend.ai/ui
249•kbyatnal•3d ago•80 comments

Show HN: Lightweight C++23 S3 client with no extra deps (just curl and OpenSSL)

https://github.com/ggcr/s3cpp
5•ggcr•21h ago•4 comments

Show HN: Claw Patrol, a security firewall for agents

https://github.com/denoland/clawpatrol
109•rough-sea•4d ago•30 comments

Show HN: Turn your name into a tree in an infinite procedural shanshui landscape

https://landscape.bairui.dev/
39•subairui•3d ago•20 comments

Show HN: HelixDB – A graph database built on object storage

https://github.com/HelixDB/helix-db/tree/main
156•GeorgeCurtis•3d ago•42 comments

Show HN: A bunch of Apache2/MIT log generators

https://github.com/expanso-io/log-simulators
4•TheIronYuppie•14h ago•0 comments

Show HN: Script to bulk delete Claude chats from the web UI

https://github.com/MatteoLeonesi/bulk-delete-claude-chat
59•ML0037•1d ago•20 comments

Show HN: Gravity – Interactive solar-system simulator, from Newton to Einstein

https://qunabu.github.io/Gravity/
216•qunabu•5d ago•53 comments

Show HN: Performative-UI – A react component library of design tropes

https://vorpus.github.io/performativeUI/
1173•lizhang•5d ago•212 comments

Show HN: GentleOS – A pair of hobby OSes for vintage 32-bit and 16-bit PCs

https://github.com/luke8086/gentleos32
129•luke8086•6d ago•104 comments

Show HN: Slopsome – a VRAM fit calculator and tok/s database for local LLMs

https://slopsome.com
3•NexAIGuy•18h ago•0 comments

Show HN: I created a simple searchable list of abandoned WordPress Plugins

https://vimsy.io/plugin-graveyard
3•arximughal•10h ago•0 comments

Show HN: Galdor – a Go LLM agent framework with built-in tracing and replay

https://github.com/YasserCR/galdor
6•yassros16•18h ago•1 comments

Show HN: LLMRender, a 10kb Markdown+LaTeX renderer for React

https://llmrender.com/
4•franciscop•1d 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)