frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: An e-ink frame that hears birds and draws them as 1800s illustrations

https://github.com/arnegiacomo/fugleramme
2299•arnemunthekaas•3d ago•255 comments

Show HN: Snapdrop: Instantly share files between devices. No setup, no signup

https://snapdrop.me
86•Capira•16h ago•41 comments

Show HN: Share your AI Setup, Learn from others

https://mysetup.ai/
221•steveybrown•1d ago•124 comments

Show HN: Attar – Compile React apps to native machine code

https://attar.dev/
5•ifdotpy•4h ago•0 comments

Show HN: Craigslist for agent skills, curated by a human

https://skillbay.sh/
24•skeptrune•20h ago•17 comments

Show HN: I built a new version of my fun spatial 3D online meeting app

https://flat.social
96•pawelwentpawel•1d ago•52 comments

Show HN: OJ – A drop-in replacement for Vite in Rust

https://github.com/lovablelabs/oj
13•h1fra•16h ago•1 comments

Show HN: Aclif – Agent CLI framework: one grammar, canonical names across SaaS

https://www.aclif.ai/
32•chris_marino•20h ago•16 comments

Show HN: Free game to destroy any web page

https://page-rage.com/
11•alexreardon•15h ago•5 comments

Show HN: Navier-Stokes Visualized as 1kB i386 demos

https://juandecos.github.io/TurboZip/vortex.html
36•chaostaco•4d ago•3 comments

Show HN: Microsoft Office running with Wine on Linux with no virtualization

https://github.com/Tombert/office365_flake
6•tombert•16h ago•4 comments

Show HN: I built a PDF accessibility checker that is cross platform

https://github.com/visionably/outloud
3•yashbhatnagar•8h ago•1 comments

Show HN: AttaLambda: a language where types and data are made of untyped lambdas

https://attalambda.com
44•kserrec•3d ago•7 comments

Show HN: Continuity – project state your AI sessions can't silently contradict

https://github.com/vikcena01/ai-continuity-plugin
3•vikcena01•9h ago•0 comments

Show HN: Free Tournament Bracket Maker and Generator

https://snapbracket.com/
3•littlelight•9h ago•0 comments

Show HN: Hacking a $20 4G wireless hotspot into a texting device

https://bkovac.github.io/modem-thing/
205•bobili1234•3d ago•36 comments

Show HN: Free GitHub Action that scans PR diffs for malicious code, not quality

https://github.com/marketplace/actions/vigil-pr-scanner
2•arsalsajjad•10h ago•0 comments

Show HN: How Stale Is Your AI? Release age and training cutoff for 20 models

https://stale.jock.pl/
79•joozio•2d ago•47 comments

Show HN: Concat: the open-source CapCut replacement.

https://github.com/jub0t/Concat
4•calanus•10h ago•2 comments

Show HN: Jinx – a link shortener you host free on GitHub Pages

https://jinx.fyi
6•SubmersibleZoom•10h ago•1 comments

Show HN: An open Add/Search evaluation framework for agent memory

https://agentmemoryleaderboard.ai/
2•IreneAI•10h ago•0 comments

Show HN: I made a flight simulator, except you're just a passenger

https://inflightsimulator.com
440•rkotcher•4d ago•205 comments

Show HN: Capsule – Single-file web apps that save their data into SQLite

https://withcapsule.app/
376•bashtian•2d ago•166 comments

Show HN: AutoBot – live voice control for long-running AI work

https://github.com/demeyer1/Autobot
18•demeyer1•20h ago•3 comments

Show HN: Cactus Needle 3: 8-29MB automation models can match DeepSeek V4 Flash

https://cactuscompute.com/needle
5•HenryNdubuaku•13h ago•0 comments

Show HN: Redis City – Explore how Redis works in an interactive 3D model

https://poltora.dev/redis
185•poltora•5d ago•27 comments

Show HN: Restarted – a 2026 remake of the classic 2015 startup generator

https://restarted.io/
25•zxcvbn4038•3d ago•9 comments

Show HN: Scry, programmable internet search w/ congestion pricing

https://scry.io/
3•Xyra•14h ago•0 comments

Show HN: Pizza Bot – An inbox for AI agents that work in the background

https://github.com/pizza-bot-app/pizza-bot
59•jd_•2d ago•33 comments

Show HN: I made a browser tool that creates newspaper and book text match cuts

https://papereffects.site
5•AhmedDionic•14h 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)