frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: zkGolf – Competitive optimization of formally verified circuits

https://zk.golf/
52•rot256•13h ago•6 comments

Show HN: Inkwell – An RSS reader for e-ink devices

https://kendal.codeberg.page/inkwell/
44•imkendal•13h ago•5 comments

Show HN: Pieces – Social network for people

https://try.piecesof.me/
39•domo__knows•1d ago•34 comments

Show HN: Imagent – agentic image/video/speech generation

https://github.com/unliftedq/imagent
3•unliftedq•1h ago•0 comments

Show HN: Gitstock–Transform you GitHub commit history into K-line and animations

https://gitstock.org/
17•dares2573•2d ago•3 comments

Show HN: Bedtimeforkids let kids learn while entertain

https://bedtimeforkids.vercel.app
2•dutay05•1h ago•0 comments

Show HN: I built a declarative layout engine for SVG, Canvas, WebGL

https://github.com/carnworkstudios/boxwood
3•bonzai2carn•1h ago•0 comments

Show HN: ctx – Search the coding agent history already on your machine

https://github.com/ctxrs/ctx
29•luca-ctx•13h ago•9 comments

Show HN: CLI tool for detecting non-exact code duplication with embedding models

https://github.com/rafal-qa/slopo
78•rkochanowski•15h ago•35 comments

Show HN: Dabs spawns dumb agents in boxes for free

https://github.com/jjmerino/dabs
2•jjmerino•1h ago•0 comments

Show HN: CLI that helps AI agents avoid vulnerable dependencies

https://github.com/clidey/deptrust
11•modelorona•1d ago•1 comments

Show HN: I made a tool that prevents websites from tracking you

https://github.com/alex-w-developer/GetBlocked
13•sudo_cowsay•5h ago•4 comments

Show HN: Qwicut – A Desktop App to Turn Any Selection into Intelligence

https://www.qwicut.com
2•yukidkwlbn•1h ago•0 comments

Show HN: A graph paper generator that renders vector PDFs in the browser

https://freegraphpaper.net/
97•lam_hg94•15h ago•23 comments

Show HN: PriceProbe – zero-dependency competitor price tracker in Python

https://github.com/willylam2222-bot/priceprobe
4•l2602591158•4h ago•0 comments

Show HN: I measured the half-life of 41,301 Show HN launches. It's 7 hours

https://jonno.nz/posts/your-show-hn-dies-in-7-hours/
23•jonnonz•17h ago•4 comments

Show HN: Claudoro, Pomodoro timer embedded in the Claude Code statusline

https://github.com/emson/claudoro
45•emson•1d ago•33 comments

Show HN: ZeroFS – A log-structured filesystem for S3

https://www.zerofs.net/
118•Eikon•15h ago•52 comments

Show HN: Bramble – Local-first password manager

https://github.com/flythenimbus/bramble
55•MegagramEnjoyer•9h ago•8 comments

Show HN: I built an open-source alternative to Claude Cowork

https://github.com/valmishq/valmis
29•wayneshng•16h ago•6 comments

Show HN: Capcat – CLI/TUI to Archive Articles as Markdown and HTML (FOSS)

https://capcat.org/
4•stayux•6h ago•0 comments

Show HN: Autonomous Home Services Businesses

https://rainslice.ai
4•edgware674•5h ago•2 comments

Show HN: Mirrors – test AI agent changes by replaying production traces

https://www.runmirrors.com/
5•aisinghal•6h ago•0 comments

Show HN: Declaw Arena – a CTF-style challenge to break an AI agent in a microVM

https://declaw.ai/arena
7•ShivamNayak11•7h ago•0 comments

Show HN: Drop Flap Boards for All

https://dropflapboard.com
2•PaybackTony•4h ago•0 comments

Show HN: 4isX – A game to make the target from four digits

https://4isx.akhdan.dev/
2•akhdanfadh•4h ago•0 comments

Show HN: Document to Excel Converter

https://www.docupipe.ai/tools/pdf-to-excel
2•uri_merhav•5h ago•0 comments

Show HN: Cyclearchive.com – search vintage cycling magazines

https://cyclearchive.com/search/
21•alastairr•5d ago•6 comments

Show HN: Mail Memories – A desktop app to rescue photos from Gmail

https://mailmemories.com
100•ltiger•15h ago•48 comments

Show HN: Fonts.Free

https://fonts.free/
3•nadermx•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)