frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: Gander, an Android file viewer that asks for no permissions at all

https://github.com/mokshablr/gander
108•mokshablr•7h ago•55 comments

Show HN: Distilling DeepSeek into GPT-OSS doesn't transfer censorship. Try it

https://www.ctgt.ai/research/distillation-censorship-transfer
142•cgorlla•19h ago•69 comments

Show HN: Kedge – Full-stack cloud with forkable VM snapshots and global SQLite

https://kedge.dev/
120•wgjordan•1d ago•21 comments

Show HN: A udev implementation in Guile Scheme

https://codeberg.org/goodev/goodev
16•mbakke•4d ago•5 comments

Show HN: Cubic Doggo 06R: 12-DOF 4-Legged Robot with IMU

https://github.com/SphericalCowww/CubicDoggo_06R
6•SphericalCowww•5d ago•0 comments

Show HN: What should the GUI for AI agents look like?

https://marbleos.com/demo
77•akbabu•7h ago•46 comments

Show HN: Optimize and serve models with Fable quality at half the cost

https://github.com/experientiallabs/world-model-optimizer
68•SilenN•4d ago•28 comments

Show HN: I made a game where you build a CPU from logic gates

https://select.supply/game/chipbuilder
85•laurentiurad•1d ago•67 comments

Show HN: Open-source engine running Gemma 4 26B in 2 GB RAM on any M-series Mac

https://github.com/drumih/turbo-fieldfare
896•gitpusher42•1d ago•330 comments

Show HN: Claude-account – switch Claude Code accounts without logging in again

https://github.com/hamzarehmandeveloper/claude-account
51•hamza_rehman•22h ago•26 comments

Show HN: Noisegate – a differential-privacy gateway for untrusted AI agents

https://github.com/yashmahajan10/llm-differential-privacy-gateway
17•yashmahajan10•19h ago•0 comments

Show HN: A Handwritten Blogging Platform

https://handwritten.blog/
7•emilesilvis•6h ago•4 comments

Show HN: Local text, image, video, music and 3D from one CLI, no Python

https://github.com/sawfwair/mere-run
13•sawfwair•23h ago•5 comments

Show HN: Tileroot – save/restore tiling WM layouts (sway, Hyprland, i3)

https://github.com/Hinikaa/tileroot
2•hinikaa•7h ago•0 comments

Show HN: Reclip – AI Video Clipper, Voiceover and Creator Tools

https://www.reclip.io
3•qwikhost•10h ago•0 comments

Show HN: Supapool – a Supabase per coding agent in ~400 ms

https://supapool.io/
29•kevo1ution•1d ago•8 comments

Show HN: Port Zero – How I learned to stop worrying and love PORT=0

https://portzero.net/
19•octopoc•4d ago•20 comments

Show HN: CheapFoodMap – A map of good meals under $10

https://cheapfoodmap.com/
277•jaep1•1d ago•244 comments

Show HN: Qwen Scribe – local transcription and dictation for Apple Silicon

https://github.com/VladUZH/qwen-scribe
93•sidclaw•1d ago•20 comments

Show HN: Widen – Open-source Mac Postgres GUI with local or cloud text-to-SQL

https://widen.dev/
7•thedreammachine•11h ago•0 comments

Show HN: Great Spectations, the Spec Checker

https://greatspectations.org
4•RustyRussell•12h ago•0 comments

Show HN: DMARC.quest SPF/DKIM/DMARC Demystified

https://www.dmarc.quest
2•junkDrawer_ai•8h ago•0 comments

Show HN: Prizm – One API key for every top AI video, image and voice model

https://www.prizmkey.com
2•jking413•9h ago•0 comments

Show HN: ShowTrust – Testimonials Collection Tool and Widget Embed

https://showtrust.to
2•sev_tinker•9h ago•0 comments

Show HN: Eloqra - Live Chat with Telegram integration

https://eloqra.app
4•sev_tinker•9h ago•2 comments

Show HN: A local merge queue for parallel Claude Code agents

https://github.com/funador/claude-code-merge-queue
42•funador•1d ago•22 comments

Show HN: The fastest JSON parser for Go

https://github.com/buger/jsonparser
6•LeonidBugaev•9h ago•1 comments

Show HN: I was tired of opening 2 tabs for every HN link, so I made a userscript

https://github.com/twalichiewicz/HNewhere
426•twalichiewicz•2d ago•122 comments

Show HN: XY – A Fast, composable, GPU-accelerated interactive plotting library

https://github.com/reflex-dev/xy
134•apetuskey•2d ago•46 comments

Show HN: NegativeEV – I built a tool to help people see how bad their bets are

https://negativeev.com/
6•qkwrv•18h ago•5 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)