frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: Galaxium, an experimental WebGPU space explorer

https://galaxium.app
18•guillaumec•4d ago•10 comments

Show HN: Laser Graffiti

https://laser.consti.de
4•con•48m ago•1 comments

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

https://github.com/krisraven/qwiksi
2•krisraven•1h ago•0 comments

Show HN: DeepSeekGUI – A Windows desktop client for DeepSeek's coding agent

https://github.com/See-Sol-Lab/DeepSeekGUI
2•Goumang•2h ago•0 comments

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

https://usesesame.app/
53•d0mkaaa•18h ago•73 comments

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

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

Show HN: Kith – AI clinical notes for therapists from ambient session audio

https://www.kith.space
3•kithmedai•5h ago•2 comments

Show HN: AMC Stocks Hub – asset-manager profiles, 13F holdings, and co-holdings

https://assetmanagementcompany.net/
3•lzyuan1006•7h ago•0 comments

Show HN: Itsuki – open-source memory engine for AI agents (API and MCP)

https://itsuki.app/
2•12ziyad•5h ago•2 comments

Show HN: The load-bearing vocabulary of Claude

https://louisabraham.github.io/load-bearing/
665•Labo333•2d ago•319 comments

Show HN: Tokensift, an open-sourced token-efficiency linter for LLM prompts

https://github.com/ritenv/tokensift
3•ritenv•6h ago•2 comments

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

https://github.com/elyosh/OpenTIE/
218•elyosh•1d ago•56 comments

Show HN: Visits.Report – analytics you can publish and prove

https://visits.report/
3•nadermx•7h ago•0 comments

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

https://github.com/opslane/opslane
35•aray07•1d ago•11 comments

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

https://github.com/nilbuild/rundown
8•kamranahmedse•17h ago•0 comments

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

https://github.com/stanford-mast/blast
10•calebhwin•19h ago•0 comments

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

https://github.com/experientiallabs/experiential
210•SilenN•1d ago•46 comments

Show HN: 500,000+ AOL Instant Messenger Buddy Icons All at Once

https://buddyiconarchive.com/
6•shedletsky•14h ago•0 comments

Show HN: Metis – An agent harness pushing DeepSeek to Opus-tier coding (82%)

https://github.com/Wholiver/metis
3•oliverhuchenrui•10h ago•2 comments

Show HN: A lightweight, stateless database for agent memory

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

Show HN: Build your own theme park

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

Show HN: Voronoi Go

https://voronoigo.com/
154•igpay•1d ago•26 comments

Show HN: FeatureFlags.app – Feature Management for .NET

https://featureflags.app/
4•avlcodemonkey•20h ago•1 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
86•sachinneravath•1d ago•64 comments

Show HN: I read 648 banks' exchange boards daily to show what they charge

https://myratefx.com/
5•pedroalbaladejo•21h ago•2 comments

Show HN: An annotated archive of S-1 filings, with hindsight

https://s-1.space/
2•eigen-vector•12h ago•0 comments

Show HN: Texttile, a multiplayer blog engine for people who write together

https://www.texttile.blog/
13•klausbreyer•1d ago•3 comments

Show HN: Boop – tiny, self-hosted push notifications for your apps built in Go

https://github.com/chrisgreg/boop
6•bustylasercanon•18h ago•2 comments

Show HN: Awe Radio, free 24/7 internet radio stations for anyone

https://aweradio.app/
2•vbst•12h ago•2 comments

Show HN: Restoredrill – proves your Postgres backups restore

https://github.com/ahmadpiran/restoredrill
46•ahmadpiran•1d ago•22 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)