frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

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

https://snapdrop.me
63•Capira•10h ago•31 comments

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

https://github.com/arnegiacomo/fugleramme
2281•arnemunthekaas•2d ago•256 comments

Show HN: Share your AI Setup, Learn from others

https://mysetup.ai/
207•steveybrown•17h ago•119 comments

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

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

Show HN: Free Tournament Bracket Maker and Generator

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

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

https://skillbay.sh/
22•skeptrune•14h ago•16 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•3h ago•0 comments

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

https://github.com/lovablelabs/oj
11•h1fra•9h ago•1 comments

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

https://flat.social
94•pawelwentpawel•17h ago•52 comments

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

https://github.com/jub0t/Concat
3•calanus•3h ago•0 comments

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

https://jinx.fyi
2•SubmersibleZoom•3h ago•0 comments

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

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

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

https://www.aclif.ai/
31•chris_marino•14h ago•16 comments

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

https://github.com/Tombert/office365_flake
5•tombert•10h ago•3 comments

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

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

Show HN: Free game to destroy any web page

https://page-rage.com/
4•alexreardon•9h ago•0 comments

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

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

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

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

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

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

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

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

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

https://papereffects.site
5•AhmedDionic•8h ago•1 comments

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

https://stale.jock.pl/
78•joozio•1d ago•46 comments

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

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

Show HN: AI crawler honeypot – logs every agent that requests it

https://ai-crawler-honeypot-697299601273.europe-west2.run.app/
3•djp1122222•9h ago•0 comments

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

https://inflightsimulator.com
438•rkotcher•3d ago•205 comments

Show HN: Radio – a shared workspace for your agents and teammates

https://radio.plasma.ai/
3•eswhang•10h ago•0 comments

Show HN: Composing domain-specific harness on Python in 10 mins

https://cayu.dev/walkthrough/
3•zamir_akimbekov•10h ago•0 comments

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

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

Show HN: Vim-like, hyper-efficient, LLM power tool - 20-80k tokens not 350k+

https://easiest.ai/
2•skhameneh•10h ago•0 comments

Show HN: HSL-Noise – A noise generator mapped to the HSL color space

https://hsl-noise.mitpit.com/
2•MitPitt•10h 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)