frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: CUA-S1 – A System One Model for Computer Use

https://github.com/trycua/cua
8•frabonacci•3h ago•0 comments

Show HN: BreachScanner – Check if your email has been in data breaches

https://github.com/Aaronmike481/BreachScanner
2•thewalnut124•1h ago•3 comments

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

https://cactuscompute.com/needle
219•HenryNdubuaku•1d ago•90 comments

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

https://github.com/arnegiacomo/fugleramme
2343•arnemunthekaas•4d ago•259 comments

Show HN: I wrote a custom assembler for CHIP-8 in C++

https://github.com/Tackx/c8-ass
24•tack1234•2d ago•4 comments

Show HN: CrabBoss, radio automation software

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

Show HN: 3D map of which newsletters link to the same things

https://reletter.com/graph
2•drpancake•1h ago•0 comments

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

https://scry.io/
58•Xyra•1d ago•23 comments

Show HN: Seal – Letters and passwords that open for your family after you die

https://github.com/jasonepage/Seal
10•jpage2•14h ago•7 comments

Show HN: Ax-check.com – Can agents use your product?

https://www.ax-check.com/
33•0x63_Problems•2d ago•39 comments

Show HN: Jeff – A read-only CLI for semantic code review using Jev

https://github.com/Alurith/jeff
26•imalessandro•1d ago•4 comments

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

https://snapdrop.me
106•Capira•1d ago•48 comments

Show HN: Share your AI Setup, Learn from others

https://mysetup.ai/
237•steveybrown•2d ago•136 comments

Show HN: LiveWorld – Every 24/7 YouTube live camera on one globe

https://liveworld.info/
37•harisingh1612•18h ago•36 comments

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

https://bkovac.github.io/modem-thing/
208•bobili1234•4d ago•37 comments

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

https://skillbay.sh/
26•skeptrune•2d ago•18 comments

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

https://attalambda.com
47•kserrec•5d ago•7 comments

Show HN: Procedurally Generated Mineral Gems

https://gems.0x0000007a.com/
3•Dramatize•23h ago•0 comments

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

https://withcapsule.app/
377•bashtian•4d ago•167 comments

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

https://flat.social
97•pawelwentpawel•2d ago•52 comments

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

https://stale.jock.pl/
80•joozio•3d ago•49 comments

Show HN: Free game to destroy any web page

https://page-rage.com/
18•alexreardon•1d ago•7 comments

Show HN: An OSS Python dependency scanner for exploited, unmaintained packages

https://github.com/binuka200/package-doctor
3•binukajayaweera•18h ago•3 comments

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

https://www.aclif.ai/
34•chris_marino•2d ago•17 comments

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

https://github.com/Tombert/office365_flake
88•tombert•1d ago•84 comments

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

https://github.com/lovablelabs/oj
17•h1fra•1d ago•1 comments

Show HN: TypeSeer – on-device autocomplete for every text field on macOS

https://typeseer.com/
4•animateus•21h ago•1 comments

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

https://github.com/pizza-bot-app/pizza-bot
60•jd_•4d ago•36 comments

Show HN: Macros with a Behringer FCB1010 MIDI Pedalboard in macOS

https://github.com/JamesRyanATX/fcbnerd
85•fretlessjazz•4d ago•21 comments

Show HN: Go Implementation of Systemd Time

https://gitlab.com/allddd/go-systemd-time
4•allddd•23h 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)