frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: Woxi - Open-source Mathematica / Wolfram Language reimplementation

https://woxi.ad-si.com
178•adius•6h ago•24 comments

Show HN: KidScreen, a finite YouTube shelf chosen by parents

https://kidscreen.app
20•Tintly•4h ago•17 comments

Show HN: Meteor shower, planet alignment, eclipse kit

https://lifesprites.com/share/0ACA25
8•jmtrevarton•2h ago•8 comments

Show HN: Seisin – a desktop app that turns your job search into analytics

https://getseisin.com
2•LudbaSH•27m ago•0 comments

Show HN: Smarter Shell History for Zsh

https://github.com/overflowy/zhist
7•overflowy•2h ago•0 comments

Show HN: Lucky Dangle – a lucky charm for your Mac

https://luckydangle.app/
3•kar-ma•2h ago•0 comments

Show HN: AI 3D pop-out videos for Reels, Shorts and ads

https://videopopy.com
3•wowinter15•3h ago•0 comments

Show HN: OpenMicroKbd: $40 open source alternative to Codex Micro Keyboard

https://openmicrokbd.org/
2•greatony•2h ago•0 comments

Show HN: Crabsoup, a Liquidsoap-inspired audio streaming engine in Rust.

https://crabsoup.vercel.app
2•sonyarianto•2h ago•0 comments

Show HN: Tamron Lens Utility Alternative on Linux

https://github.com/yikerman/tamron-lens-control
77•xiaoyu2006•5d ago•8 comments

Show HN: Word-finder/anagram solver web app for mobile browsers

https://wanderinghorse.net/gaming/paperback/words.html
2•sgbeal•2h ago•0 comments

Show HN: Make your bio link worth clicking, even for agents

4•czeizel•2h ago•1 comments

Show HN: Aakit – find every assumption your coding agent made, and which broke

https://github.com/abhixhek/aakit
5•Abhixhek•4h ago•0 comments

Show HN: I benchmarked my memory graph against Memora (0.831 vs. 0.801)

https://github.com/corbym/locomo-recordari
4•colourclash•2h ago•2 comments

Show HN: My Python course for those who want to improve their skills

https://en.andros.dev/courses/ab396439/python/1/setting-up-the-environment/
4•andros•2h ago•2 comments

Show HN: Line9 – A Mermaid rendering engine with its own layout

https://line9.ai/diagram
79•jumpalongjim•6d ago•27 comments

Show HN: Day to day windows reminder CLI (NPM)

https://www.npmjs.com/package/d2dwin-reminder-cli
3•jay__proto•2h ago•0 comments

Show HN: Talkform.org, Turn voice inputs into structured data using front end AI

https://talkform.org
4•pankajunk•2h ago•0 comments

Show HN: Git-knife – Edit commit messages, authors, and dates like a spreadsheet

https://github.com/TheRealYT/git-knife
160•YonathanTesfaye•1d ago•100 comments

Show HN: SHTM – 60 Seconds Random Chat

https://shtm.vercel.app/
3•Emirhan123•2h ago•0 comments

Show HN: Aileaks – scan repos for leaked LLM reasoning-trace secrets

https://github.com/sarthakuwar/aileaks
3•sarthakkuwar1•3h ago•1 comments

Show HN: Rekall – an Ableton Live project management companion application

https://rekall.machinelies.eu
5•iamsaitam•3h ago•0 comments

Show HN: What US households pay for electricity and gas, by state, since 2001

https://energy-maps.com
3•ebaumer•3h ago•1 comments

Show HN: iPhone app takes simultaneous images from 2 lenses, fuses into 1 photo

https://photosynthesis.camera
316•sajomes•3d ago•291 comments

Show HN: Insect species in 3D, generated from code (no model files)

https://insect-world.pages.dev/en/
3•XR843•3h ago•0 comments

Show HN: MintPDF – HTML/Markdown to PDF API with an MCP Server

https://mintpdf.dev
3•Stackedboost•3h ago•0 comments

Show HN: Write.md – A free, open-source, themeable Markdown editor for macOS

https://writemd.app/
97•danielbilekq•1d ago•76 comments

Show HN: Eigshow Interactive Web App

https://eigshow-app.web.app/
3•cecinuga•3h ago•0 comments

Show HN: Hallucinote, integrating Ableton and Claude Code

https://github.com/brookstalley/hallucinote
3•brookst•3h ago•0 comments

Show HN: I took the calculator away from 50 LLMs and graded the arithmetic

https://github.com/DmitriGoloubentsev/LLM-Tests
6•NatalijaAAD•4h 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)