frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Show HN: Codala, a social network built on scanning barcodes

https://play.google.com/store/apps/details?id=com.hsynkrkye.codala&hl=en
46•hsynkrkye•4d ago•21 comments

Show HN: Revise – An AI Editor for Documents

https://revise.io
64•artursapek•16h ago•59 comments

Show HN: AgentVerse – Open social network for AI agents (Mar 2026)

https://nickakre.github.io/agentverse-social/
3•nickakre•4h ago•1 comments

Show HN: Atomic – Self-hosted, semantically-connected personal knowledge base

https://github.com/kenforthewin/atomic
136•kenforthewin•1d ago•21 comments

Show HN: Quillium, Git for Writers

https://quillium.bryanhu.com/
5•thatxliner•5h ago•0 comments

Show HN: Time Keep – Location timezones, timers, alarms, countdowns in one place

24•jmbuilds•3d ago•8 comments

Show HN: Refrax – my Arc Browser replacement I made from scratch

https://refrax.website/
4•kageroumado•7h ago•3 comments

Show HN: Oku – One tab to filter out noise from feeds and content sources

https://oku.io
18•oan•3d ago•6 comments

Show HN: Playra

https://playra-app.vercel.app/
2•Allenboyy•8h ago•0 comments

Show HN: We built a terminal-only Bluesky / AT Proto client written in Fortran

https://github.com/FormerLab/fortransky
142•FormerLabFred•2d ago•81 comments

Show HN: OpenFOIA – local-first FOIA toolkit with entity graphs

https://github.com/JordanCoin/openfoia
5•jordancj•12h ago•0 comments

Show HN: Termcraft – Terminal-first 2D sandbox survival in Rust

https://github.com/pagel-s/termcraft
132•sebosch•1d ago•24 comments

Show HN: Sonar – A tiny CLI to see and kill whatever's running on localhost

https://github.com/RasKrebs/sonar
193•raskrebs•2d ago•80 comments

Show HN: Foundations of Music (FoM)

https://bookerapp.replit.app/book/fom
2•ersinesen•10h ago•0 comments

Show HN: A BOINC project where AI designs and runs experiments autonomously

https://axiom.heliex.net
6•Pyhelix•11h ago•0 comments

Show HN: AgentMeet – Free, open-source platform for agent-to-agent work

https://www.agentmeet.net/
6•matanrak•11h ago•0 comments

Show HN: MAGA or Not? Political alignment scores for people and companies

https://magaornot.ai
5•rcar1046•12h ago•3 comments

Show HN: I replaced every function in a codebase with English – it still works

https://tril.cc
5•kulesh•17h ago•5 comments

Show HN: Passport Globe (See where your passport takes you)

https://hariharan.uno/globe
17•hariharan_uno•1d ago•16 comments

Show HN: Threejs 3D wireframe stylizing tool – Generate infinite variations

https://github.com/Lywald/Wireframed.js
3•ycosynot•12h ago•0 comments

Show HN: Three new Kitten TTS models – smallest less than 25MB

https://github.com/KittenML/KittenTTS
553•rohan_joshi•3d ago•179 comments

Show HN: Duplicate 3 layers in a 24B LLM, logical deduction .22→.76. No training

https://github.com/alainnothere/llm-circuit-finder
262•xlayn•4d ago•81 comments

Show HN: AI SDLC Scaffold, repo template for AI-assisted software development

https://github.com/pangon/ai-sdlc-scaffold/
26•pangon•1d ago•11 comments

Show HN: Red Grid Link – peer-to-peer team tracking over Bluetooth, no servers

https://github.com/RedGridTactical/RedGridLink
52•redgridtactical•2d ago•30 comments

Show HN: Plot-Hole.com a daily movie puzzle I made

https://www.plot-hole.com/
2•captaincrunch•5h ago•1 comments

Show HN: I built an open-source MCP server that parses game save files

https://github.com/joshsymonds/savecraft.gg
11•Veraticus•15h ago•5 comments

Show HN: A C/C++ IDE written in C from scratch with zero dependencies

https://giovannicarlino04.itch.io/icarus
9•giovannicar04•9h ago•0 comments

Show HN: AgentVerse – Open social network for AI agents (Mar 2026)

https://nickakre.github.io/agentverse-social/
4•nickakre•17h ago•1 comments

Show HN: We mapped 122K carbon removal researchers using OpenAlex/ORCID/OpenClaw

https://captaindrawdown.com/cdr-researcher-census/
3•dpaessler•17h ago•0 comments

Show HN: 20 years of Hacker News discussions, clustered and visualized

https://app.lenzy.ai/projects/prj_public_01KKKENH0W0JEFHETN74AYDD87/reports/rpt_01KKKENH0W0JEFHET...
7•BohdanPetryshyn•19h ago•7 comments
Open in hackernews

Show HN: MMORPG prototype inspired by World of Warcraft

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

Comments

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