frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: My 13-year-old built an ant colony tracker

https://formicarium.es
63•abelgvidal•17h ago•43 comments

Show HN: Erlangchain – A tiny Erlang client for LLMs

https://github.com/abhavk/erlangchain
3•Abhavk•2h ago•0 comments

Show HN: C++, Java and C# light-weight-logger

https://github.com/PenguineDavid/light-weight-logger
10•PenguineDavid•20h ago•0 comments

Show HN: Free Online GIS Viewer and Format Converter

https://geodataviewer.com/
5•twainyoung•10h ago•0 comments

Show HN: Coding agent that compiles intent into deterministic DAG before running

https://github.com/arman-jalili/rigorix-oss
9•arman-w-jalili•8h ago•0 comments

Show HN: Morph Reflexes – Multi-head classifiers for agent traces

7•bhaktatejas922•13h ago•1 comments

Show HN: Gilfoyle's Project but IRL

https://github.com/korrectional/GilfoyleAI
5•korrectional•7h ago•3 comments

Show HN: TakoVM – open-source sandboxing for your agent's code

https://github.com/Tako-Research/TakoVM
6•sakuraiben•11h ago•0 comments

Show HN: Openleetcode – LeetCode runner where tests live in the repo

https://github.com/therepanic/openleetcode/releases/tag/v1.0.0
6•therepanic•13h ago•0 comments

Show HN: Shot-scraper video tool for recording YAML-defined webapp feature demos

https://simonwillison.net/2026/Jun/30/shot-scraper-video/
7•simonw•17h ago•1 comments

Show HN: Live face swap and outfit try-on in the browser

https://vivify.video/realtime-face-swap
4•mixfox•9h ago•0 comments

Show HN: Clusy – Cursor for data science notebooks in cloud

https://www.clusy.io/
6•eldar_hsnv•17h ago•1 comments

Show HN: Open-source restreaming and live studio

https://github.com/muxshed/shed
8•franticstone•12h ago•2 comments

Show HN: DRM-Free Books

https://frequal.com/Perspectives/DrmFreeAuthors.html
118•TeaVMFan•2d ago•46 comments

Show HN: Zanagrams

https://zanagrams.com/
392•pompomsheep•2d ago•106 comments

Show HN: Kage, verification and freshness for Google's OKF agent memory

https://kage-core.com/
3•kage18•13h ago•0 comments

Show HN: Jensen – a Deus Ex: Human Revolution theme for 30 developer apps

https://tomaytotomato.github.io/jensen/
3•tomaytotomato•14h ago•0 comments

Show HN: Classic Minesweeper

https://guokai.dev/minesweeper/
12•hanguokai•1d ago•11 comments

Show HN: Agentic Orchestrator, a TUI for long-running coding agents

https://github.com/doordash-oss/agentic-orchestrator
16•ivrr•1d ago•2 comments

Show HN: I made a heatmap of 3400 VCs who are open to cold emails

https://apparent.social/heat-map
23•west_subject•15h ago•28 comments

Show HN: Makes local LLMs faster and more reliable by optimizing for your device

https://www.autotunellm.com/
5•tanavc•16h ago•0 comments

Show HN: PDFMergely – In-browser PDF tools that never upload your files

https://pdfmergely.com
16•pdfmergely•1d ago•24 comments

Show HN: Bash4LLM+ – A lightweight, dependency-free Bash wrapper for LLM APIs

https://github.com/kamaludu/bash4llm/
60•kamaludu•2d ago•22 comments

Show HN: I built an AI agent to yell at me about my ADHD

https://0xff.nu/hex/
4•hxii•16h ago•2 comments

Show HN: fenic – LLMs as dataframe operators, query meaning and structure

https://github.com/typedef-ai/fenic
3•cpard•17h ago•0 comments

Show HN: Openleetcode – local LeetCode runner with open test suites

https://github.com/therepanic/openleetcode
3•therepanic•17h ago•0 comments

Show HN: Don't ask if devs cheat with AI, test if they're good with it

https://tryevaluator.com
5•skyepstein•18h ago•3 comments

Show HN: NanoEuler – GPT-2 scale model in pure C/CUDA from scratch

https://github.com/JustVugg/nanoeuler
54•vforno•2d ago•26 comments

Show HN: Decomp Academy – Learn to decompile GameCube games into matching C

https://decomp-academy.dev
195•jackpriceburns•3d ago•78 comments

Show HN: OM Core – multidimensional models without spreadsheet cell formulas

https://github.com/cloudcell/om-core
2•cloudcell•19h ago•1 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)