frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Show HN: Pulse 2.0 – Live co-listening rooms where anyone can be a DJ

https://473999.net/pulse
43•473999•4h ago•12 comments

Show HN: An LLM-Powered Tool to Catch PCB Schematic Mistakes

https://netlist.io/
27•wafflesfreak•5h ago•21 comments

Show HN: I've built a Cursor alternative in browser. AI Coding Agent.

https://playcode.io
3•ianberdin•45m ago•0 comments

Show HN: Glasses to detect smart-glasses that have cameras

https://github.com/NullPxl/banrays
466•nullpxl•17h ago•170 comments

Show HN: Browser Calendar: Track Safari, Chrome, Firefox, Edge & Opera Releases

https://browsercalendar.com/
2•grosmar•1h ago•1 comments

Show HN: Spikelog – A simple metrics service for scripts, cron jobs, and MVPs

https://spikelog.com
29•dsmurrell•1d ago•14 comments

Show HN: DB Pro – A Modern Desktop Client for Postgres, MySQL, SQLite and LibSQL

https://www.dbpro.app/
18•upmostly•9h ago•4 comments

Show HN:TaskHub – Update

https://github.com/TaskHub-Server/TaskHub.Shared
2•andrey-serdyuk•3h ago•1 comments

Show HN: Design a commercial bakery in an afternoon, not for $10k

https://rfmodernbakerydesign.com
2•Rafael_Mauricio•4h ago•0 comments

Show HN: Bodge.app – μFaaS for hacked-together personal tools and small projects

https://bodge.app/
6•azdle•6h ago•3 comments

Show HN: Local-first RAG for PDF user manuals, datasheets

https://github.com/dymk/askdocs-mcp
3•dymk•4h ago•0 comments

Show HN: Dialed – A Radial Calendar App for iOS

https://apps.apple.com/us/app/dialed-radial-day-planner/id6755455859
3•sirkaiwade•4h ago•0 comments

Show HN: KiDoom – Running DOOM on PCB Traces

https://www.mikeayles.com/#kidoom
352•mikeayles•3d ago•49 comments

Show HN: An AI powered Welcome Note Generator in Go (Moderation and LLM and UI)

https://github.com/vnaveen-mh/welcome-note-generator
2•vnaveen9296•6h ago•0 comments

Show HN: Runprompt – run .prompt files from the command line

https://github.com/chr15m/runprompt
128•chr15m•1d ago•40 comments

Show HN: MkSlides – Markdown to slides with a similar workflow to MkDocs

https://github.com/MartenBE/mkslides
70•MartenBE•1d ago•14 comments

Show HN: SyncKit – Offline-first sync engine (Rust/WASM and TypeScript)

https://github.com/Dancode-188/synckit
83•danbitengo•1d ago•33 comments

Show HN: Recall - TUI to Resume Claude/Codex conversations with full-text search

https://github.com/zippoxer/recall
2•zippoxer•8h ago•0 comments

Show HN: Research Papers as Memes

https://near.tl/tech
6•QueensGambit•6h ago•1 comments

Show HN: Era – Open-source local sandbox for AI agents

https://github.com/BinSquare/ERA
59•gregTurri•1d ago•18 comments

Show HN: I built an interactive HN Simulator

https://news.ysimulator.run/news
533•johnsillings•4d ago•214 comments

Show HN: Swatchify – CLI to get a color palette from an image

https://james-see.github.io/swatchify/
4•jamescampbell•16h ago•1 comments

Show HN: I turned algae into a bio-altimeter and put it on a weather balloon

https://radi8.dev/blog/stratospore/
138•radeeyate•6d ago•13 comments

Show HN: Oblit – A zero-dependency, binary-first protocol for Node.js (Show HN

3•_melikeymen_•5h ago•1 comments

Show HN: Safe-NPM – only install packages that are +90 days old

https://github.com/kevinslin/safe-npm
89•kevinslin•5d ago•62 comments

Show HN: Simple xbox360 inspired CSS library: 360CSS

https://github.com/tarmo1/360css
3•Tarmo362•10h ago•2 comments

Show HN: Total Reciprocity Public License

https://trplfoundation.org/
4•jaypatelani•11h ago•0 comments

Show HN: We built an open source, zero webhooks payment processor

https://github.com/flowglad/flowglad
392•agreeahmed•3d ago•217 comments

Show HN: SiteIQ – LLM and Web security testing tool (built by a high schooler)

https://github.com/sastrophy/siteiq
4•sastrophy•15h ago•1 comments

Show HN: ZigFormer – An LLM implemented in pure Zig

15•habedi0•1d ago•4 comments
Open in hackernews

Show HN: MMORPG prototype inspired by World of Warcraft

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

Comments

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