frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: Bolnee-Chat – Self Hosted Chatbot Integration in Your Business Website

https://github.com/AniketWathore/bolnee-chat
2•AniketWathore•51m ago•0 comments

Show HN: I missed the moving blocks, so I built a real Linux disk defragmenter

https://github.com/gbin/defragger
69•gbin•4d ago•50 comments

Show HN: Typebase – A single-folder back end you write in TypeScript

https://typebase.io
107•andrewww-dev•3d ago•30 comments

Show HN: Galaxium, an experimental WebGPU space explorer

https://galaxium.app
121•guillaumec•5d ago•36 comments

Show HN: Practice where countries are in the world

2•blackbrokkoli•6h ago•0 comments

Show HN: Delete yourself from data brokers without a subscription

https://github.com/k7cfo/remove-your-data
11•k7peak•12h ago•5 comments

Show HN: SubSmith – Turn your own videos into language-learning material

https://subsmith.app
73•IbrahimF96•1d ago•51 comments

Show HN: Flint – A minimal C/C++ package manager and build tool written in C

https://github.com/mainak55512/flint
11•mbhatt99•17h ago•2 comments

Show HN: Sesame - a local-first, open-source password manager

https://usesesame.app/
61•d0mkaaa•1d ago•83 comments

Show HN: The load-bearing vocabulary of Claude

https://louisabraham.github.io/load-bearing/
685•Labo333•3d ago•321 comments

Show HN: HN Mirror with Image Previews

https://hackernews.beliantech.com/
2•ernsheong•10h ago•1 comments

Show HN: OpenTIE and OpenXWA, Modern Ports of Tie Fighter and X-Wing Alliance

https://github.com/elyosh/OpenTIE/
223•elyosh•2d ago•57 comments

Show HN: PhpEZ – A tiny PHP framework for shared LAMP hosting

https://github.com/QcFe/phpEZ
7•qcfe•16h ago•2 comments

Show HN: The impact that made the Moon, 262k particles in a browser tab

https://gaploid.github.io/cosmic-collisions/
8•gaploid•21h ago•3 comments

Show HN: Watches user sessions, finds bugs that matter, and fixes them

https://github.com/opslane/opslane
39•aray07•2d ago•11 comments

Show HN: We built open OpenRouter that turns usage into a better model

https://github.com/experientiallabs/experiential
218•SilenN•2d ago•46 comments

Show HN: A SLM Optimized for Tool Calling

https://blog.neurometric.ai/p/introducing-a-task-specific-tool
2•robmay•14h ago•0 comments

Show HN: SSH Ache – open-source desktop SSH client with SFTP, tunnels and MCP

https://github.com/SSH-Ache/ssh-ache
2•tanvirmahin24•15h ago•0 comments

Show HN: Build your own theme park

https://www.magicpatterns.com/theme-park
56•thealexanderlee•3d ago•25 comments

Show HN: Hacker News Client with Claude Code and Codex Integration

https://github.com/nilbuild/rundown
11•kamranahmedse•1d ago•0 comments

Show HN: Qwiksi a CLI tool for adding your signature to a PDFs

https://github.com/krisraven/qwiksi
8•krisraven•23h ago•0 comments

Show HN: Open-Source Local Whisper Flow Alternative

https://www.cloudless.so/
4•vednig•16h ago•7 comments

Show HN: 3D Embodiment of your Git repo

https://github.com/michaelaz774/RepoWorld
3•michael774•16h ago•2 comments

Show HN: A lightweight, stateless database for agent memory

https://polign.com/blog-edge-agent-memory
35•anuptalwalkar•3d ago•12 comments

Show HN: Blast – Open-source sandbox-as-a-service

https://github.com/stanford-mast/blast
11•calebhwin•1d ago•0 comments

Show HN: Voronoi Go

https://voronoigo.com/
155•igpay•2d ago•26 comments

Show HN: LatticeDB – Like SQLite but for graph databases

https://github.com/jeffhajewski/latticedb
187•smiths1999•4d ago•54 comments

Show HN: My Claude quota ran out in 10 minutes, so I made a tool to find out why

https://github.com/kelviq/tare
88•sachinneravath•2d ago•66 comments

Show HN: Buslens – where can I get to by bus? (UK)

https://rupertlinacre.com/buslens/
82•RobinL•4d ago•55 comments

Show HN: Restoredrill – proves your Postgres backups restore

https://github.com/ahmadpiran/restoredrill
48•ahmadpiran•2d ago•23 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)