frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Show HN: We built a camera only robot vacuum for less than 300$ (Well almost)

https://indraneelpatil.github.io/blog/2026/robot-vacuum/
60•indraneelpatil•2d ago•16 comments

Show HN: An interactive map of Tolkien's Middle-earth

https://middle-earth-interactive-map.web.app/
239•frasermarlow•16h ago•47 comments

Show HN: Gemma 4 Multimodal Fine-Tuner for Apple Silicon

https://github.com/mattmireles/gemma-tuner-multimodal
199•MediaSquirrel•17h ago•25 comments

Show HN: I pipe free sports streams into Jellyfin – no ads, just HLS

https://github.com/pcruz1905/hls-restream-proxy
2•pruz•1h ago•0 comments

Show HN: Brutalist Concrete Laptop Stand (2024)

https://sam-burns.com/posts/concrete-laptop-stand/
760•sam-bee•1d ago•230 comments

Show HN: Voxcode: local speech to text and ripgrep = transcript and code context

https://github.com/jensneuse/voxcode
4•jensneuse•2h ago•1 comments

Show HN: Android SSH client with full Terminal, server monitoring and runbooks

https://saltserv.com/posts/cura-sysadmin-server-monitoring-android/
3•0dayman•2h ago•0 comments

Show HN: Unicode Steganography

https://steganography.patrickvuscan.com
25•PatrickVuscan•1d ago•4 comments

Show HN: A cartographer's attempt to realistically map Tolkien's world

https://www.intofarlands.com/atlasofarda
159•intofarlands•1d ago•29 comments

Show HN: Pion/handoff – Move WebRTC out of browser and into Go

https://github.com/pion/handoff
96•Sean-Der•1d ago•17 comments

Show HN: Finalrun – Spec-driven testing using English and vision for mobile apps

https://github.com/final-run/finalrun-agent
26•ashish004•22h ago•12 comments

Show HN: Stop paying for Dropbox/Google Drive, use your own S3 bucket instead

https://locker.dev
241•Zm44•1d ago•197 comments

Show HN: Ghost Pepper – Local hold-to-talk speech-to-text for macOS

https://github.com/matthartman/ghost-pepper
459•MattHart88•1d ago•194 comments

Show HN: Anos – a hand-written ~100KiB microkernel for x86-64 and RISC-V

https://github.com/roscopeco/anos
111•noone_youknow•4d ago•31 comments

Show HN: Hippo, biologically inspired memory for AI agents

https://github.com/kitfunso/hippo-memory
122•kitfunso•1d ago•24 comments

Show HN: Tusk for macOS and Gnome

https://shapemachine.xyz/tusk/
116•factorialboy•4d ago•45 comments

Show HN: I built a tiny LLM to demystify how language models work

https://github.com/arman-bd/guppylm
894•armanified•2d ago•133 comments

Show HN: Real-time AI (audio/video in, voice out) on an M3 Pro with Gemma E2B

https://github.com/fikrikarim/parlor
288•karimf•2d ago•35 comments

Show HN: GovAuctions lets you browse government auctions at once

https://www.govauctions.app/
313•player_piano•1d ago•89 comments

Show HN: TTF-DOOM – A raycaster running inside TrueType font hinting

https://github.com/4RH1T3CT0R7/ttf-doom
65•4RH1T3CT0R•1d ago•12 comments

Show HN: Gemma Gem – AI model embedded in a browser – no API keys, no cloud

https://github.com/kessler/gemma-gem
154•ikessler•2d ago•20 comments

Show HN: Can an AI model fit on a single pixel?

https://github.com/dvelton/ai-pixel
7•deevelton•13h ago•7 comments

Show HN: Mo – checks GitHub PRs against decisions approved in Slack

https://motionode.com/index
9•oscarcaldera•16h ago•1 comments

Show HN: A game where you build a GPU

https://jaso1024.com/mvidia/
954•Jaso1024•3d ago•186 comments

Show HN: Silkwave Voice – AI Notetaker Using Apple Intelligence's ChatGPT

https://www.silkwave.ai/silkwave-voice
2•bmv3502•9h ago•0 comments

Show HN: I made a YouTube search form with advanced filters

https://playlists.at/youtube/search/
318•nevernothing•2d ago•201 comments

Show HN: A social feed with no algo where communities decide what gets seen

https://veridonia.com
9•smnkgv•1d ago•5 comments

Show HN: AdaShape-3D modeler for intuitive 3D printing parts / Windows 11

https://adashape.com
32•fsloth•4d ago•31 comments

Show HN: Arrow – A Simple Airdrop Clone

https://github.com/aabiji/arrow
3•aabiji•11h ago•0 comments

Show HN: Modo – I built an open-source alternative to Kiro, Cursor, and Windsurf

https://github.com/mohshomis/modo
99•mohshomis•2d ago•28 comments
Open in hackernews

Show HN: MMORPG prototype inspired by World of Warcraft

https://github.com/nickyvanurk/everwilds
28•nickyvanurk•11mo ago

Comments

ricardobayes•11mo ago
Still to this day I have not seen an MMORPG that has as smooth movement and camera system as WoW.
okdood64•11mo ago
Camera movement in FFXIV is fine. Character movement was a bit clunky but still very usable.
kristoff200512•11mo 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•11mo ago
To replicate that feel is pretty much the point of this project.
MacNCheese23•11mo 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•11mo 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•11mo 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•11mo 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•11mo ago
I get net::ERR_CERT_COMMON_NAME_INVALID on everwilds.io (chrome android)