frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Show HN: I built a frontpage for personal blogs

https://text.blogosphere.app/
544•ramkarthikk•7h ago•154 comments

Show HN: TurboQuant for vector search – 2-4 bit compression

https://github.com/RyanCodrai/py-turboquant
65•justsomeguy1996•5d ago•5 comments

Show HN: Apfel – The free AI already on your Mac

https://apfel.franzai.com
589•franze•11h ago•134 comments

Show HN: Run Claude Code autonomously inside your Docker Compose stack (OSS)

https://github.com/sayil/dangerously
4•sayil•29m ago•0 comments

Show HN: Matrix OS, like Lovable, but for personal apps

https://matrix-os.com/
2•hamedmp•3h ago•1 comments

Show HN: Made a little Artemis II tracker

https://artemis-ii-tracker.com/
138•codingmoh•21h ago•54 comments

Show HN: Speck PBR – A WebGPU molecular visualizer

https://github.com/wwwtyro/speck-pbr
3•wwwtyro•4h ago•0 comments

Show HN: Aurion OS, A 1.8MB OS with a browser, try it live (C/x86 ASM)

https://aurionos.vercel.app/
4•Luka12-dev•4h ago•1 comments

Show HN: Community Curated Lists

https://www.thebreakfastlist.com/
2•onounoko•1h ago•0 comments

Show HN: Home Maker: Declare Your Dev Tools in a Makefile

https://thottingal.in/blog/2026/03/29/home-maker/
89•sthottingal•5d ago•60 comments

Show HN: Minimal Brain Teaser Web Game (Handcrafted, No AI)

https://mehuleo.github.io/encircle/
19•arttaboi•16h ago•8 comments

Show HN: Dull – Instagram Without Reels, YouTube Without Shorts (iOS)

https://getdull.app
146•kasparnoor•1d ago•114 comments

Show HN: A P2P messenger with dual network modes (Fast and Tor)

https://github.com/Realman78/Kiyeovo/
36•Realman78•1d ago•21 comments

Show HN: OpenCode Pollinations Plugin –AI & tool layer with freetier control

https://github.com/fkom13/opencode-pollinations-plugin
2•ericnolo•6h ago•1 comments

Show HN: I built a DNS resolver from scratch in Rust – no DNS libraries

https://github.com/razvandimescu/numa
104•rdme•1d ago•64 comments

Show HN: SyNumpy – a Header only C++17 library for working with NumPy Arrays

https://github.com/symisc/sy-numpy-cpp
19•symisc_devel•1d ago•3 comments

Show HN: I tested 15 free AI models at building real software on a $25/year VPS

https://georgelarson.me/writing/2026-04-03-25-dollar-ai-lab/
28•j0rg3•1d ago•4 comments

Show HN: Figma 3D Tilt, Like "Firefox Tilt" but for Figma

https://www.figma.com/community/plugin/1592501914078287014/figma-3d-tilt
3•say2015•7h ago•0 comments

Show HN: CLI to order groceries via reverse-engineered REWE API (Haskell)

https://github.com/yannick-cw/korb
203•wazHFsRy•4d ago•85 comments

Show HN: Git bayesect – Bayesian Git bisection for non-deterministic bugs

https://github.com/hauntsaninja/git_bayesect
335•hauntsaninja•5d ago•44 comments

Show HN: Koriander – Recipe manager that parses ingredients and tracks nutrition

https://koriander.app
2•laleshii•9h ago•2 comments

Show HN: Postgres extension for BM25 relevance-ranked full-text search

https://github.com/timescale/pg_textsearch
200•tjgreen•3d ago•56 comments

Show HN: Nova v1.5.0 Gold Master – A pure C++17 assistant with zero dependencies

https://github.com/94BILLY/NOVA/releases
2•94BILLY•4h ago•0 comments

Show HN: Zerobox – Sandbox any command with file, network, credential controls

https://github.com/afshinm/zerobox
139•afshinmeh•4d ago•92 comments

Show HN: Forkrun – NUMA-aware shell parallelizer (50×–400× faster than parallel)

https://github.com/jkool702/forkrun
149•jkool702•1w ago•41 comments

Show HN: A Minimal Basic Inspired by Brainfuck

https://coe.psu.ac.th/ad/minBASIC/
8•ADavison2560•20h ago•0 comments

Show HN: 1-Bit Bonsai, the First Commercially Viable 1-Bit LLMs

https://prismml.com/
418•PrismML•2d ago•152 comments

Show HN: ctx – an Agentic Development Environment (ADE)

https://ctx.rs
37•luca-ctx•6h ago•51 comments

Show HN: Sleek – analytics tool with AI chat, public link and realtime tracking

2•nazbasho•6h ago•2 comments

Show HN: Wazear – A visual AI orchestrator where agents review each other

2•Vallar•12h ago•0 comments
Open in hackernews

Show HN: MMORPG prototype inspired by World of Warcraft

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

Comments

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