frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: My receipt printer prints an original artwork every morning

https://github.com/matt-w-horn/morningprint
10•spectraldrift•4h ago•4 comments

Show HN: ClickBench Playground – a playground for 110 database systems

https://benchmark.clickhouse.com/playground/
17•zX41ZdbW•5h ago•4 comments

Show HN: Simple algorithm and color space to generate diverse skin tones

https://toneyalexander.github.io/inclusive-color-space/
600•automatoney•1d ago•98 comments

Show HN: HUD, an open-source minimal terminal UI for ClaudeCode, Codex, OpenCode

https://github.com/adrida/hud-mode
11•adam_rida•8h ago•1 comments

Show HN: An AI agent that trades inside limits you set, starting on paper

https://quantsignals.xyz/fst
13•henryzhangpku•11h ago•4 comments

Show HN: Diffing Binary Files

https://withkord.com/diff
13•wennyyustalim•7h ago•5 comments

Show HN: Capy – A Git-style platform for managing your team's secrets

https://github.com/capysc/capy-cli
11•cvince•4h ago•13 comments

Show HN: Modern Browsers Don't Need the Cookie Anymore

https://kuber.studio/cookie/
13•kuberwastaken•11h ago•12 comments

Show HN: DrakeAI – expense tracker you log by voice or text, no bank sync

https://drakeai.app/
2•a_protsyuk•5h ago•0 comments

Show HN: Greenlight – Preflight Scanner for App Store and Google Play

https://github.com/RevylAI/greenlight
2•ethanzhoucool•5h ago•0 comments

Show HN: Arxid – keyed, non-enumerable ID obfuscation

https://github.com/lucasolopes/arxid
4•byolopes•9h ago•0 comments

Show HN: Spltty – a Markdown-based personal finance CLI built with Claude

https://tdiniz.dev/thoughts/building-a-personal-finance-tracker-with-claude
7•thiagovsdiniz•5h ago•2 comments

Show HN: Learning Nix with LabCraft

https://www.labcraft.dev/
5•anandsuresh•5h ago•0 comments

Show HN: Maple-Preview – Ternary 20B MoE running at 120 tok/s on a iPhone

https://deepgrove.ai/maple-preview
161•edwardbzhang•1d ago•49 comments

Show HN: GetPageSpeed Amplify, a compatible replacement for Nginx Amplify

https://amplify.getpagespeed.com/
3•dvershinin•5h ago•0 comments

Show HN: Ocean – All your team's agent sessions in one place

https://ocean.mosaic.inc/
5•electrodisk•5h ago•1 comments

Show HN: SIMD Viterbi Decoder in Rust

https://github.com/brian-armstrong/fec
60•brian-armstrong•1d ago•11 comments

Show HN: Stripekit – Terraform-style declarative config for your Stripe account

https://stripe.rafael.ltd/
2•rafgg•6h ago•0 comments

Show HN: I automated California Property tax reduction claim process

https://saveproptax.com
2•atifnayeem•6h ago•0 comments

Show HN: AI agents gives its worst answers when you're overwhelmed

https://github.com/softcane/human-state-skills
2•pradeep1177•6h ago•0 comments

Show HN: Summarize any page into a pod episode

https://thedaily.fm/docs/page-to-pod
3•carimura•6h ago•1 comments

Show HN: What's Your AI Debt Score? Roast My Code – No AI, Just Regex

3•piggydev•6h ago•0 comments

Show HN: Lucidos, a local AI OS that keeps the apps you describe running

https://github.com/lucidos-dev/lucidos
4•kennethtiller•6h ago•1 comments

Show HN: Twocal – Calendar sync that verifies both sides actually agree

https://twocal.app/
4•gsudarkoff•9h ago•0 comments

Show HN: LiminalML – Study ML or SWE at interview depth, grounded in your resume

https://liminalml.com
3•OliverPerrin•6h ago•1 comments

Show HN: ZeroCloudPDF Sign

https://zerocloudpdf.com/sign-pdf
3•HozeKan•6h ago•3 comments

Show HN: Fine-tune an 8B model on a 4 GB laptop GPU

https://github.com/MakazhanAlpamys/Soup
132•MakazhanAlpamys•1d ago•28 comments

Show HN: BoundaryBench – benchmarking coding agents under real sandbox policy

https://github.com/boundary-bench/boundary-bench
2•_orcaman_•6h ago•0 comments

Show HN: Voca – Most AI tutors wander. I built one that follows a curriculum

https://vocalessons.com/
2•amreldessoukiad•6h ago•1 comments

Show HN: Cool Concepts

https://mkornreich.me/projects/coolconcepts/
2•enjoyyourlife•6h 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)