frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: Weedout – Safari extension that hides YouTube AI-labeled videos

https://masteranza.github.io/weedout/
92•masteranza•7h ago•34 comments

Show HN: HN Match Maker – Matching "Who Wants to Be Hired?" With "Who's Hiring?"

https://hnmatchmaker.com/
64•all2•8h ago•30 comments

Show HN: Running 104GB Qwen3.8-Flash-Next on 48GB Mac with at ~12 tok/s

https://github.com/carloslfu/slotstream
184•carloslfu•12h ago•91 comments

Show HN: Gawkbot – open-source Grok bot with local vms for each bot

https://gawk.bot
3•najmuzzaman•24m ago•0 comments

Show HN: Newton's Orchard – Browser-based space/gravity playground

https://newtonsorchard.app
22•andrewchilds•12h ago•1 comments

Show HN: Markdown Gatekeeper – one current source per topic for AI agents

https://github.com/nanlogic/markdown-gatekeeper
3•sacravenger•2h ago•0 comments

Show HN: Claude and ChatGPT need a datacenter. This runs on my phone

https://llmobi.pages.dev
8•12ziyad•10h ago•0 comments

Show HN: Laser Graffiti

https://laser.consti.de
249•con•3d ago•60 comments

Show HN: Notes Plus – A Markdown Apple Notes Clone with Latex, Excalidraw etc.

https://notesplus.io/
3•sliqqq•6h ago•5 comments

Show HN: Rails Baseline – a Rails SaaS starter with agent-readable architecture

https://railsbaseline.com/
3•polysaturate•7h ago•0 comments

Show HN: Mcptunnels – ngrok for MCP with basic OAuth

https://terragohan.github.io/mcptunnels/
13•helpprotactiniu•9h ago•0 comments

Show HN: I measured when impossible-to-book restaurants release their tables

https://tablefriend.app/clock
4•BrendanSF•14h ago•6 comments

Show HN: Gopdfrab – Open-source PDF/A processing for Go

https://gopdfrab.voidrab.com/
2•sudostar•11h ago•0 comments

Show HN: Markdown Viewer and Editor

https://kingsbridge-consultancy.com/md-viewer/
31•beerglass•1d ago•17 comments

Show HN: FnScribe – Open-source, offline dictation for macOS

https://github.com/AlgorithmicResearchGroup/fnscribe
36•modagent•4d ago•25 comments

Show HN: Three Pins a daily 3-hole golf game in the browser

https://threepins.golf/
4•colin_rightwork•11h ago•2 comments

Show HN: Semantic Overlays – an NX bit for LLM prompt injection (live demo)

https://semantic-overlays.vercel.app/
5•joshua_s_penman•11h ago•0 comments

Show HN: Floe – an open-source plugin for sample libraries – CLAP/VST3/AU

https://floe.audio/
22•windell•1d ago•13 comments

Show HN: Corporate Mind Games – logic puzzles with a sarcastic corporate theme

https://corporatemindgames.com/
48•dontwordle•1d ago•15 comments

Show HN: I built a live stream site where every spot is instantly AI-generated

https://videoai.me/live
8•Paul_Grsl•18h ago•9 comments

Show HN: NFC Energy-Harvesting PCB Business Card with an MCU

https://wilsonharper.net/projects/businesscard/
217•WilsonHarper•4d ago•30 comments

Show HN: Shed – Git Repo Management for Terminal Agents

https://github.com/AndrewHannigan/shed
2•andrewhannigan•13h ago•0 comments

Show HN: SlideOps – slides from a repo that flag when they drift from the code

https://github.com/glukicov/slideops
22•lukicov•1d ago•5 comments

Show HN: Serendipity – rediscover the web one interesting page at a time

https://serendipity.surf/
7•RaCaS123•1d ago•7 comments

Show HN: PearPie – Private AI chat that syncs peer-to-peer, no accounts needed

https://www.pearpie.ai/launch/
3•cheesetoast•15h ago•3 comments

Show HN: Seatlr – We rebuilt our traveler chat into an AI-powered travel network

https://www.seatlr.com/
4•alihadi965•1d ago•0 comments

Show HN: Openheim – a multi-provider LLM agent runtime, written in Rust

https://openheim.io/
3•themartto•15h ago•0 comments

Show HN: OSS, K8s-native AI platform for distributed multi-model inference

https://github.com/axem-solutions/shaide
4•EmbeddedMagicX•15h ago•0 comments

Show HN: MQLens – A Native MongoDB GUI (SSH, X.509, Kerberos, No Electron)

https://mqlens.com/
4•deveshk0•16h ago•1 comments

Show HN: Keeplea – photograph everything you want to remember

https://keeplea.app/
4•BrainQuanta•16h ago•6 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)