frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: FrontierHarness Eval – 9 harness, same model, cost per pass varies 17x

https://frontierharness.org
36•shiqimei•1h ago•14 comments

Show HN: SufferTrails, the Anti-AllTrails

https://suffertrails.com/
3•richhwang•15m ago•0 comments

Show HN: AQ – A multiplayer workspace for coding agents on your own cloud

https://aq.dev/
2•knighthacker•27m ago•0 comments

Show HN: Kekoso – On-device dictation and transcription for macOS

https://kekoso.app/
4•a_chmerev•1h ago•2 comments

Show HN: Aura – a Rust agent that investigates and fixes production incidents

https://github.com/mezmo/aura
16•jvogt•2h ago•2 comments

Show HN: Skatanica – Browse and share skate clips by location

https://skatanica.com/runs
3•ralusek•1h ago•2 comments

Show HN: G3M – MCP server for physical outbound

https://g3m.co/
2•davismartens•57m ago•0 comments

Show HN: Cmdxray – explain any shell command, offline, with a shareable card

https://aurelio-nakamura.github.io/cmdxray/
3•aurelionakamura•1h ago•0 comments

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

https://hnmatchmaker.com/
104•all2•21h ago•45 comments

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

https://masteranza.github.io/weedout/
174•masteranza•20h ago•74 comments

Show HN: FontWizard, Change Windows system font everywhere in UI and apps

https://github.com/karnyadavdev/FontWizard
3•karnyadav•3h ago•0 comments

Show HN: Convert Anything to Markdown

https://anyto.md/
5•vlucas•3h ago•0 comments

Show HN: Windrunner – AI-powered project collaboration workspace

https://shzlw.github.io/windrunner/
8•yuegui•5h ago•3 comments

Show HN: Flawd is mutation testing for the AI era

https://fixture.dev/flawd
4•fohara•3h ago•5 comments

Show HN: Edgy – Ambient edge lighting for macOS

https://getedgy.app
3•renatoworks•3h ago•0 comments

Show HN: ZSvirt – A lightweight, scalable open source virtualization platform

https://github.com/ZSvirt/zsvirt
62•czhou25•4h ago•8 comments

Show HN: asciiQuake

https://asciiquake.wtf/
3•apresmoi•4h ago•1 comments

Show HN: Freefund – Reduce no shows at free/RSVP events

https://www.ticketfairy.com/guides/reduce-no-shows-at-free-rsvp-events
4•riteshpatel•4h ago•0 comments

Show HN: I Have Been Clawed – Index of coding agent incidents

https://ihavebeenclawed.com/
17•nezhar•12h ago•2 comments

Show HN: Heides,deterministic code harness giving AI agents senses and judgment

https://github.com/AbduljabbarBXR/heides
2•TawResearch•4h ago•0 comments

Show HN: Open protocol for AI agents to discover, negotiate, and pay each other

https://github.com/bizswarm44-coder/aether-protocol
2•intentswarm•4h ago•0 comments

Show HN: Kafma – a desktop Kafka GUI client for debugging

https://kafma.app/
4•KafmaKarma•4h ago•0 comments

Show HN: Skywarden – Smart astrophotography planning companion

https://skywarden.app/en
3•adfr•4h ago•0 comments

Show HN: Authorizer – open-source auth for enterprise apps and agents

https://github.com/authorizerdev/authorizer
2•lakhansamani93•4h ago•0 comments

Show HN: Cupertino – MCP servers for the Apple apps on your Mac

https://cupertino.mgcrea.io/
2•olouv•4h ago•0 comments

Show HN: tagger – a self-hosted webui for audio file tagging

https://github.com/rnhinson/tagger
2•farthest•4h ago•0 comments

Show HN: Streamtop, a terminal HLS, DASH and IPTV stream monitor

https://github.com/Jorji49/streamtop
4•kayraak•4h ago•0 comments

Show HN: CleanMyMedia – organize decades of photos, with local face recognition

https://cleanmymedia.com
3•ed-cmm•4h ago•0 comments

Show HN: Apple's TLS stack can't see weak ciphers, so I craft raw ClientHellos

https://apps.apple.com/us/app/radien-network-toolbox/id6789207545
3•igor_arsenkin•4h ago•0 comments

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

https://github.com/carloslfu/slotstream
225•carloslfu•1d ago•105 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)