frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: Run an 80B Qwen in 4.3 GB of RAM on a Mac, and a 35B on an iPhone

https://github.com/leonickson1/Swiftlet
112•leonickson•13h ago•32 comments

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

https://github.com/garagehq/nightcrawler/
110•NickySlicks•19h ago•30 comments

Show HN: Product analytics (and evals) for agent sessions on your MCP

https://armature.tech/
39•screm•14h ago•2 comments

Show HN: ssh ssh.place

https://ssh.place
173•jeninh•1d ago•108 comments

Show HN: A Handwritten Blogging Platform

https://handwritten.blog/
176•emilesilvis•4d ago•83 comments

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

https://arcbox.dev/blog/unifi-pppoe-half-bridge-acceleration
70•uneven9434•22h ago•35 comments

Show HN: Isopolis – Isometric pixel map of SF

https://sf.isopolis.city/
334•nuwandavek•1d ago•75 comments

Show HN: Every plaintext HTTP request on your Linux box captured via eBPF

https://github.com/yeet-src/httpwatch
2•r3tr0•5h ago•0 comments

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

https://github.com/graham33/nixos-dgx-spark
127•graham33•1d ago•40 comments

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

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

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

https://github.com/ArcaEge/creakwork12
92•arcaege•1d ago•18 comments

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

https://github.com/wie-project/kakehashi
250•vlad_kalinkin•1d ago•61 comments

Show HN: Fuse – statically typed functional programming language

https://fuselang.org
115•the_unproven•1d ago•47 comments

Show HN: Elevators

https://john.fun/elevators
1652•Jrh0203•3d ago•409 comments

Show HN: Spellfolio – my stock market game with news events and inside info

https://www.spellfolio.com/
2•pandaman28•8h ago•0 comments

Show HN: Texpile, an open-source desktop LaTeX editor with a visual mode

https://github.com/texpile/texpile
3•asyncfun•8h ago•1 comments

Show HN: LarpIn – LinkedIn, but everyone admits they're larping, one global feed

https://larpin.io
6•joeamroo•6h ago•4 comments

Show HN: Freqcast, an Android radio player that finds streams from a website URL

https://github.com/z0rats/freqcast
2•z0rats•9h 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
332•tomilan•2d ago•111 comments

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

https://github.com/pg83/shitty
165•pshirshov•1d ago•151 comments

Show HN: Svelte-rs – a Svelte compiler in Rust

https://github.com/MrWaip/svelte-rs
4•mrwaip•9h ago•0 comments

Show HN: New Parts for Old Computers

https://newold.computer/
16•joshu•1d ago•1 comments

Show HN: Golars (Go Equivalent of Polars)

https://guywaldman.com/posts/polars-dataframe-contributions
4•guywald•10h ago•0 comments

Show HN: I worked on a new browser for 2 years, today it passed Acid 3

https://code.intellios.ai/cwbrowser/
158•coolwulf•3d ago•46 comments

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

https://github.com/syncular/syncular
78•quambo•1d ago•29 comments

Show HN: Hacker News with AI stories filtered out

https://hcker.news/?view=frontpage&ai=exclude
47•postalcoder•13h ago•9 comments

Show HN: Java MultiTool – How I Replaced 6 browser tabs with a Single Program

https://github.com/ShiningPr1sm/JavaMultiTool
3•shiningpr0xsm•12h ago•0 comments

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

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

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

https://marbleos.com/demo
136•akbabu•4d ago•80 comments

Show HN: Vinyl – Animated vinyl record wallpaper for Mac, synced to Spotify

https://www.vinylformac.com/
8•sxhivs•13h ago•0 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)