frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Show HN: OneCLI – Vault for AI Agents in Rust

https://github.com/onecli/onecli
65•guyb3•2h ago•26 comments

Show HN: Aurion OS – A 32-bit GUI operating system written from scratch in C

https://github.com/Luka12-dev/AurionOS
21•Luka12-dev•47m ago•5 comments

Show HN: Understudy – Teach a desktop agent by demonstrating a task once

https://github.com/understudy-ai/understudy
37•bayes-song•2h ago•10 comments

Show HN: Axe – A 12MB binary that replaces your AI framework

https://github.com/jrswab/axe
75•jrswab•5h ago•62 comments

Show HN: Rudel – Claude Code Session Analytics

https://github.com/obsessiondb/rudel
110•keks0r•5h ago•66 comments

Show HN: Web-based ANSI art viewer

https://sure.is/ansi/
14•lubujackson•2d ago•4 comments

Show HN: Raccoon AI – Collaborative AI Agent for Anything

https://raccoonai.tech
3•scorchy38•1h ago•1 comments

Show HN: An application stack Claude coded directly in LLVM IR

https://github.com/dot-matrix-labs/alien-stack
2•dboreham•1h ago•0 comments

Show HN: s@: decentralized social networking over static sites

http://satproto.org/
393•remywang•18h ago•196 comments

Show HN: Hyper – Voice Notes for Whiteboarding Sessions

https://apps.apple.com/us/app/hyper-ai-for-real-talk/id6760206718
3•kthaker1224•1h ago•0 comments

Show HN: Cloud to Desktop in the Fastest Way

https://nativedesktop.com/
2•lasgawe•2h ago•0 comments

Show HN: PipeStep – Step-through debugger for GitHub Actions workflows

https://github.com/Photobombastic/pipestep
5•photobombastic•2h ago•2 comments

Show HN: Verge Browser a self-hosted isolated browser sandbox for AI agents

https://github.com/zzzgydi/verge-browser
3•zzzgydi•2h ago•0 comments

Show HN: Autoschematic is a new infra-as-code tool built on reversible computing

https://github.com/autoschematic-sh/autoschematic
2•pfnsec•3h ago•0 comments

Show HN: A2Apex – Test, certify, and discover trusted A2A agents

https://a2apex.io
3•Hauk307•3h ago•2 comments

Show HN: Open-source browser for AI agents

https://github.com/theredsix/agent-browser-protocol
137•theredsix•1d ago•47 comments

Show HN: Calyx – Ghostty-Based macOS Terminal with Liquid Glass UI

https://github.com/yuuichieguchi/Calyx
24•yuu1ch13•6h ago•29 comments

Show HN: Riventa.Dev – AI-native DevOps that acts, not just alerts

https://www.riventa.dev/
3•christopherAs•4h ago•0 comments

Show HN: Autoresearch@home

https://www.ensue-network.ai/autoresearch
72•austinbaggio•19h ago•19 comments

Show HN: I built a tool that watches webpages and exposes changes as RSS

https://sitespy.app
302•vkuprin•1d ago•77 comments

Show HN: VaultLeap – USD accounts for founders outside the US

https://vaultleap.com
3•GregReve•4h ago•2 comments

Show HN: We open sourced Vapi – UI included

https://github.com/dograh-hq/dograh
8•pritesh1908•4h ago•5 comments

Show HN: A desktop app for managing Claude Code sessions

https://github.com/doctly/switchboard
2•kapitalx•4h ago•1 comments

Show HN: MoneyOnFIRE – FI date and action plan (v2)

https://www.moneyonfire.com
3•LambdaAndLatte•1h ago•0 comments

Show HN: Vanilla JavaScript refinery simulator built to explain job to my kids

https://fuelingcuriosity.com/game.html
115•fuelingcurious•1d ago•46 comments

Show HN: A context-aware permission guard for Claude Code

https://github.com/manuelschipper/nah/
120•schipperai•19h ago•83 comments

Show HN: XLA-based array computing framework for R

https://github.com/r-xla/anvil
11•sebffischer•3d ago•1 comments

Show HN: Python DSL for system programming with manual memory and linear types

https://github.com/1flei/PythoC/
2•1flei•5h ago•0 comments

Show HN: I built an ISP infrastructure emulator from scratch with a custom vBNG

https://aether.saphal.me/dashboard/default
63•saphalpdyl•1d ago•19 comments

Show HN: Satellite imagery object detection using text prompts

https://www.useful-ai-tools.com/tools/satellite-analysis-demo/
51•eyasu6464•3d ago•19 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)