frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: Nightcrawler – A local AI pentesting agent running on a smartphone

https://github.com/garagehq/nightcrawler/
63•NickySlicks•4h ago•22 comments

Show HN: Isopolis – Isometric pixel map of SF

https://sf.isopolis.city/
301•nuwandavek•15h ago•66 comments

Show HN: We Fixed UniFi's Slow PPPoE Performance with PPPoE Half-Bridge

https://arcbox.dev/blog/unifi-pppoe-half-bridge-acceleration
55•uneven9434•7h ago•27 comments

Show HN: ssh ssh.place

https://ssh.place
163•jeninh•15h ago•89 comments

Show HN: One Thing at a Time – a todo app that hides your list

https://onethingatatime.app/
2•sumtsui•1h ago•0 comments

Show HN: Kakehashi – Experimental userspace to run macOS binaries on Linux ARM

https://github.com/wie-project/kakehashi
240•vlad_kalinkin•23h ago•61 comments

Show HN: A Handwritten Blogging Platform

https://handwritten.blog/
160•emilesilvis•3d ago•78 comments

Show HN: Lunar, a "fast", memory-efficient Lua 5.1 VM written in Go

https://github.com/mmcdole/lunar
6•drakenot•1h ago•2 comments

Show HN: NixOS-DGX-Spark – Nix and NixOS on the DGX Spark

https://github.com/graham33/nixos-dgx-spark
120•graham33•22h ago•39 comments

Show HN: Make your Framework 12 sound like a creaky door

https://github.com/ArcaEge/creakwork12
90•arcaege•19h ago•17 comments

Show HN: Bor – Open-source policy management for Linux desktops

https://getbor.dev/blog/2026-08-02-bor-v080-release/
181•eniac111•1d ago•26 comments

Show HN: Runthru – open-source Interactive Demos

https://github.com/marktolson/runthru
5•marktolson•3h ago•0 comments

Show HN: Fuse – statically typed functional programming language

https://fuselang.org
113•the_unproven•1d ago•41 comments

Show HN: Shitty – fast terminal. Memory-unsafe and faster than yours

https://github.com/pg83/shitty
157•pshirshov•16h ago•135 comments

Show HN: New Parts for Old Computers

https://newold.computer/
13•joshu•11h ago•0 comments

Show HN: Elevators

https://john.fun/elevators
1644•Jrh0203•3d ago•401 comments

Show HN: A MicroVM Launcher for BSD and Linux Guests on macOS/Linux (libkrun)

https://github.com/tsirysndr/bsdkrun
2•tsiry•5h ago•0 comments

Show HN: I'm a 15 Year Old Wannabe Engineer, This Is a Cycloidal Gearbox I Built

https://github.com/tom-ilan/cycloidal_gearbox
327•tomilan•1d ago•110 comments

Show HN: The best-paid AI/tech job anyone advertises pays $824k, not $100M

https://ctaio.dev/en/jobs/
4•norejisace•6h ago•2 comments

Show HN: Kuvu AI – Your All-in-One AI Creative Studio and Marketing Studio

https://kuvu.ai/
2•longyuanpro•6h ago•0 comments

Show HN: TermBoard – A TUI dashboard for Python projects

https://github.com/HeyShinde/TermBoard
2•heyshinde•6h ago•0 comments

Show HN: Do Codex skills save tokens? A six-run task-size benchmark

https://codex-howto-benchmark.nguyenvantamdk2.chatgpt.site
5•phelannguyen164•12h ago•1 comments

Show HN: Syncular – offline-first SQL sync with TypeScript and Rust cores

https://github.com/syncular/syncular
77•quambo•1d ago•27 comments

Show HN: SaaS payment integration in ~10 lines of code

https://github.com/paycan-app/paycan
6•mehraban•7h ago•5 comments

Show HN: Hacker News CLI

https://github.com/ViktorRingnes/hackernews
2•viktorringnes•7h ago•0 comments

Show HN: Katharos Functional programming and CSP-style concurrency for Python

https://github.com/kamalfarahani/katharos
36•kamalf•1d ago•8 comments

Show HN: MicroCodex Coding Agent – OpenAI/codex reimplemented in C++ <1MB binary

https://github.com/paoloanzn/microcodex
19•paoloanzn•19h ago•16 comments

Show HN: Daily Math Puzzle

https://dozenal.game
4•sarreph•7h ago•2 comments

Show HN: Eight: a symbolic, indentation-based programming language

https://git.disroot.org/EightLang/Eight/src/branch/alpha
2•Vextoly•8h ago•1 comments

Show HN: An AI wrote and illustrated a book of fables about threads and packets

https://booyaka101.github.io/thedailyfable/day07/
6•Booyaka101•11h ago•2 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)