frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: CUA-S1 – A System One Model for Computer Use

https://github.com/trycua/cua
64•frabonacci•9h ago•7 comments

Show HN: Text-me: a personal agent that learns your pace

https://aiworthusing.com/agent-index/text-me
3•melfernand•1h ago•0 comments

Show HN: Jev-lint – semantic linter with plain English rules

https://github.com/zdenham/jev-lint
4•zdenham•1h ago•0 comments

Show HN: DH Tools – 40 client-side developer and productivity tools

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

Show HN: Rubrol – Sub-10ms PDF engine using Typst instead of Headless Chrome

https://rubrol.com/
2•halfradaition•2h ago•0 comments

Show HN: Jev-align, a CLI to calibrate Jev to your judgement

https://github.com/sutro-sh/jev-align
2•sethkim•2h ago•0 comments

Show HN: Frost – frosted-glass Linux icons where file types say what they are

https://github.com/thissayantan/frost-icon-theme
5•thissayantan•4h ago•0 comments

Show HN: I am vibe coding a drone

https://ai-eng-design-production.up.railway.app/login
2•couAUIA•3h ago•0 comments

Show HN: An e-ink frame that hears birds and draws them as 1800s illustrations

https://github.com/arnegiacomo/fugleramme
2355•arnemunthekaas•4d ago•259 comments

Show HN: Set, offline Markdown note-taking app with device-to-device sync

https://app.writewithset.com
2•aavshr•3h ago•0 comments

Show HN: Forexfin – Trading calculators, alerts and a journal in one place

https://forexfin.tech/
2•howtobatman101•3h ago•0 comments

Show HN: Kibana-agent – query Kibana logs from CLI

https://github.com/hyzyla/kibana-agent
2•hyzyla•3h ago•0 comments

Show HN: Connectome-inspired spiking network you can try in the browser

https://awareliquid-sparse-snn-demo.static.hf.space/index.html
3•EverestAn•5h ago•0 comments

Show HN: Play DSS and DS2 dictation files online without uploading your audio

https://speechtext.ai/online-dss-player
3•robgehring•5h ago•0 comments

Show HN: OpenWand – A mission to remove chat interface from working with AI

https://github.com/SunnyLich/OpenWand
3•OpenWand•5h ago•0 comments

Show HN: Cactus Needle 3: 8-29MB automation models can match DeepSeek V4 Flash

https://cactuscompute.com/needle
225•HenryNdubuaku•2d ago•91 comments

Show HN: KillSwitch – a programming language designed to be difficult for LLMs

https://killswitch-lang.org
7•dom96•6h ago•2 comments

Show HN: I wrote a custom assembler for CHIP-8 in C++

https://github.com/Tackx/c8-ass
26•tack1234•2d ago•4 comments

Show HN: Scry, programmable internet search w/ congestion pricing

https://scry.io/
59•Xyra•2d ago•25 comments

Show HN: Flyover Country – guide to the window seat with AR

https://flyovercountry.app/
2•headsupernova•7h ago•0 comments

Show HN: Share your AI Setup, Learn from others

https://mysetup.ai/
238•steveybrown•2d ago•138 comments

Show HN: Ax-check.com – Can agents use your product?

https://www.ax-check.com/
34•0x63_Problems•2d ago•39 comments

Show HN: BreachScanner – Check if your email has been in data breaches

https://github.com/Aaronmike481/BreachScanner
2•thewalnut124•8h ago•3 comments

Show HN: Snapdrop: Instantly share files between devices. No setup, no signup

https://snapdrop.me
107•Capira•2d ago•49 comments

Show HN: Seal – Letters and passwords that open for your family after you die

https://github.com/jasonepage/Seal
11•jpage2•21h ago•7 comments

Show HN: Jeff – A read-only CLI for semantic code review using Jev

https://github.com/Alurith/jeff
26•imalessandro•1d ago•4 comments

Show HN: CAS-X – An automated compliance matrix for the Amaya Axioms (v5.0)

2•richardaamaya•3h ago•0 comments

Show HN: CrabBoss, radio automation software

https://crabboss.vercel.app
2•sonyarianto•10h ago•0 comments

Show HN: LiveWorld – Every 24/7 YouTube live camera on one globe

https://liveworld.info/
39•harisingh1612•1d ago•37 comments

Show HN: Sigabrt.dev – cronjob monitor with an SSH TUI

https://sigabrt.dev
2•4815162342•15h ago•0 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)