frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Show HN: Claude Code plugin that gives .svelte files full LSP intelligence

https://github.com/RA1NCS/svelte-lsp
3•gshreyan•1h ago•0 comments

Show HN: GDSL – 800 line kernel: Lisp subset in 500, C subset in 1300

https://firthemouse.github.io/
67•FirTheMouse•21h ago•18 comments

Show HN: Signet – Autonomous wildfire tracking from satellite and weather data

https://signet.watch
113•mapldx•1d ago•31 comments

Show HN: What if your synthesizer was powered by APL (or a dumb K clone)?

https://octetta.github.io/k-synth/
85•octetta•1d ago•31 comments

Show HN: Paperverse, an Hyperbolic Presentation

https://paperverse.net
4•Nesco•3h ago•0 comments

Show HN: Signbee – An API that lets AI agents send documents for signature

https://signb.ee
5•mjcbeckett•4h ago•3 comments

Show HN: Goal.md, a goal-specification file for autonomous coding agents

https://github.com/jmilinovich/goal-md
23•jmilinovich•18h ago•6 comments

Show HN: CastLoom Pro – Turn podcasts into a personal knowledge base

https://castloompro.toolooz.com/?lang=en
5•MikeLuLu•9h ago•0 comments

Show HN: Open-source playground to red-team AI agents with exploits published

https://github.com/fabraix/playground
25•zachdotai•14h ago•9 comments

Show HN: HN Skins – Available Skins: Cafe, Courier, London, Midnight, Terminal

https://github.com/susam/hnskins
8•susam•17h ago•0 comments

Show HN: Ichinichi – One note per day, E2E encrypted, local-first

127•katspaugh•1d ago•57 comments

Show HN: Han – A Korean programming language written in Rust

https://github.com/xodn348/han
206•xodn348•1d ago•114 comments

Show HN: GitAgent – An open standard that turns any Git repo into an AI agent

https://www.gitagent.sh/
139•sivasurend•1d ago•35 comments

Show HN: Free OpenAI API Access with ChatGPT Account

https://github.com/EvanZhouDev/openai-oauth
42•EvanZhouDev•15h ago•17 comments

Show HN: Lockstep – A data-oriented programming language

https://github.com/seanwevans/lockstep
6•goosethe•12h ago•4 comments

Show HN: I was laid off, so I built a NerdWallet for startup equity liquidity

https://www.strikerates.com
6•rafaelvalle03•5h ago•1 comments

Show HN: Search for Apple Messages

https://github.com/dmd/imessage-search
2•dmd•10h ago•0 comments

Show HN: Try Gerbil Scheme in the Browser

https://trygerbil.dev/
3•agambrahma•10h ago•0 comments

Show HN: OpenClaiming, a tiny protocol for verifiable claims that works anywhere

https://github.com/OpenClaiming/Documentation
2•EGreg•11h ago•0 comments

Show HN: Argazer – detect outdated Helm charts in ArgoCD applications

https://github.com/k-krew/argazer
2•kreicer•11h ago•0 comments

Show HN: Context Gateway – Compress agent context before it hits the LLM

https://github.com/Compresr-ai/Context-Gateway
92•ivzak•2d ago•62 comments

Show HN: GrobPaint: Somewhere Between MS Paint and Paint.net

https://github.com/groverburger/grobpaint
54•__grob•1d ago•19 comments

Show HN: File converters and 75 tools that run in the browser

6•kalinuxer•12h ago•0 comments

Show HN: Ritual – An Open Source Local Monochrome Themed Habit Tracker PWA

https://ritual.tangentlabs.dev/
5•sheerluck•13h ago•0 comments

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

https://github.com/jrswab/axe
223•jrswab•3d ago•123 comments

Show HN: Webassembly4J Run WebAssembly from Java

2•tegmentum•13h ago•0 comments

Show HN: AgentMailr – dedicated email inboxes for AI agents

https://www.agentmailr.com/
7•kumardeepanshu•1d ago•5 comments

Show HN: Tmux-nvim-navigator – Seamless navigation with zero Neovim config

https://github.com/sindrip/tmux-nvim-navigator
4•Sindrip•15h ago•0 comments

Show HN: Data-anim – Animate HTML with just data attributes

https://github.com/ryo-manba/data-anim
16•ryo-manba•1d ago•7 comments

Show HN: Graft – Your local environment, everywhere

https://graft.run
5•erdaniels•15h ago•2 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)