frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

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

https://github.com/chr15m/runprompt
75•chr15m•6h ago•26 comments

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

https://github.com/MartenBE/mkslides
56•MartenBE•7h ago•7 comments

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

https://github.com/Dancode-188/synckit
55•danbitengo•6h ago•26 comments

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

https://github.com/BinSquare/ERA
50•gregTurri•15h ago•13 comments

Show HN: KiDoom – Running DOOM on PCB Traces

https://www.mikeayles.com/#kidoom
342•mikeayles•1d ago•49 comments

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

https://github.com/kevinslin/safe-npm
85•kevinslin•3d ago•55 comments

Show HN: ZigFormer – An LLM implemented in pure Zig

5•habedi0•4h ago•0 comments

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

https://radi8.dev/blog/stratospore/
133•radeeyate•5d ago•13 comments

Show HN: I built an interactive HN Simulator

https://news.ysimulator.run/news
523•johnsillings•3d ago•213 comments

Show HN: Derusted – An open-source programmable HTTPS MitM proxy engine in Rust

https://github.com/kumarimlab/derusted
4•kumaras•7h ago•0 comments

Show HN: Yolodex – real-time customer enrichment API

https://api.yolodex.ai
36•hazzadous•3d ago•23 comments

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

https://github.com/flowglad/flowglad
387•agreeahmed•2d ago•214 comments

Show HN: MakeSkill – The Intelligent Skill Builder for Claude

https://makeskill.cc
9•thanhdongnguyen•16h ago•2 comments

Show HN: PyTorch-World – Modular Library to Build and Train World Models

https://github.com/ParamThakkar123/pytorch-world
2•paramthakkar•10h ago•0 comments

Show HN: Env files aren't meant for storing secrets

https://github.com/BinSquare/envmap
2•binsquare•10h ago•0 comments

Show HN: Anthony Bourdain's Lost Li.st's

https://bourdain.greg.technology/
20•gregsadetsky•1d ago•6 comments

Show HN: I wrote a minimal memory allocator in C

https://github.com/t9nzin/memory
135•t9nzin•3d ago•32 comments

Show HN: OCR Arena – A playground for OCR models

https://www.ocrarena.ai/battle
215•kbyatnal•6d ago•62 comments

Show HN: Stun LLMs with thousands of invisible Unicode characters

https://gibberifier.com
200•wdpatti•3d ago•109 comments

Show HN: Cynthia – Reliably play MIDI music files – MIT / Portable / Windows

https://www.blaizenterprises.com/cynthia.html
86•blaiz2025•3d ago•33 comments

Show HN: Zephyr3D – TypeScript WebGPU/WebGL 3D engine with an in‑browser editor

https://zephyr3d.org
5•gavinyork•1d ago•0 comments

Show HN: Infinite scroll AI logo generator built with Nano Banana

https://durable.co/ai-logo-generator
4•rookhack•1d ago•0 comments

Show HN: Datamorph – A clean JSON ⇄ CSV converter with auto-detect

https://datamorphio.vercel.app
23•sumit_entr42•6d ago•9 comments

Show HN: Build the habit of writing meaningful commit messages

https://github.com/arpxspace/smartcommit
109•Aplikethewatch•5d ago•131 comments

Show HN: Wealthfolio 2.0- Open source investment tracker. Now Mobile and Docker

https://wealthfolio.app/?v=2.0
673•a-fadil•6d ago•213 comments

Show HN: We cut RAG latency ~2× by switching embedding model

https://www.myclone.is/blog/voyage-embedding-migration/
25•vira28•2d ago•4 comments

Show HN: Forty.News – Daily news, but on a 40-year delay

https://forty.news
440•foxbarrington•5d ago•180 comments

Show HN: ChatIndex – A Lossless Memory System for AI Agents

16•LoMoGan•1d ago•5 comments

Show HN: White-Box-Coder – AI that self-reviews and fixes its own code"

https://github.com/EMMA019/WHITE-BOX-CODER
3•tarocha1019•23h ago•0 comments

Show HN: Parm – Install GitHub releases just like your favorite package manager

https://github.com/yhoundz/parm
5•houndz•1d ago•2 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)