frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: Ballet – Workflow automation that writes integrations against any API

https://www.ballet.dev/
28•danielkimber•5h ago•5 comments

Show HN: Woxi - Open-source Mathematica / Wolfram Language reimplementation

https://woxi.ad-si.com
274•adius•19h ago•40 comments

Show HN: UTC Time - live clock, ISO 8601, Unix timestamp

https://utctime.app/
7•nadermx•1h ago•0 comments

Show HN: I asked Claude to write DDIA as a live comic

https://systemscomic.com/ddia/read
6•samuelxing•1h ago•0 comments

Show HN: Agent Memory Leaderboard – first public results for AI memory systems

https://agentmemoryleaderboard.ai/leaderboard/academic/textual
3•IreneAI•2h ago•0 comments

Show HN: Programmable timer web app (for gym workouts or stretching sessions)

https://timer.jotaen.net
24•jotaen•11h ago•8 comments

Show HN: Posts grew 6x since ChatGPT, but success rate remained relatively flat

https://www.orangecrumbs.com/stories/show-hn
5•oyster143•7h ago•1 comments

Show HN: Interspectr – automated interview prep generated from a job posting

https://interspectr.com/
2•ShinApekusay•4h ago•0 comments

Show HN: Decant – Understand how you spend tokens

https://github.com/dosu-ai/decant
10•devstein•7h ago•0 comments

Show HN: Tamron Lens Utility Alternative on Linux

https://github.com/yikerman/tamron-lens-control
80•xiaoyu2006•5d ago•8 comments

Show HN: Git-knife – Edit commit messages, authors, and dates like a spreadsheet

https://github.com/TheRealYT/git-knife
163•YonathanTesfaye•1d ago•101 comments

Show HN: Line9 – A Mermaid rendering engine with its own layout

https://line9.ai/diagram
84•jumpalongjim•6d ago•33 comments

Show HN: GreenTree – Cache test results by Git tree, not commit SHA

https://github.com/Reachpad/greentree
4•officezage•5h ago•0 comments

Show HN: ponzy.io, an online multiplayer trading game in the browser

https://ponzy.io
2•ponzy_io•5h ago•0 comments

Show HN: iPhone app takes simultaneous images from 2 lenses, fuses into 1 photo

https://photosynthesis.camera
323•sajomes•4d ago•300 comments

Show HN: Write.md – A free, open-source, themeable Markdown editor for macOS

https://writemd.app/
102•danielbilekq•1d ago•76 comments

Show HN: WindStrap – Bootstrap 5.3.8 to Tailwind CSS Using DeepSeek V4 Flash

https://github.com/rip747/windstrap
2•thrownaway561•6h ago•0 comments

Show HN: Ante, a coding agent in a single binary that runs offline

https://github.com/AntigmaLabs/ante
163•ubermon•2d ago•90 comments

Show HN: Smarter Shell History for Zsh

https://github.com/overflowy/zhist
11•overflowy•15h ago•5 comments

Show HN: Meteor shower, planet alignment, eclipse kit

https://lifesprites.com/share/0ACA25
8•jmtrevarton•15h ago•18 comments

Show HN: Seisin – a desktop app that turns your job search into analytics

https://getseisin.com
5•LudbaSH•13h ago•0 comments

Show HN: Needle2: 14MB agentic LLM for phones, wearables, smart home and robots

https://cactuscompute.com/needle
526•HenryNdubuaku•2d ago•178 comments

Show HN: Mcptoon – Token-efficient MCP CLI client

https://github.com/activeing123/mcptoon
72•mcptokensaver•2d ago•45 comments

Show HN: /show-me: agent skill for compact visual representations

https://www.humanlayer.com/blog/show-me-skill
7•dhorthy•13h ago•1 comments

Show HN: A website for exploring historical photographs of my city

https://yesterdays.maprva.org/
3•uneekname•14h ago•3 comments

Show HN: Capto – alerts when a background job goes quiet, with breadcrumbs

https://capto.run
3•johndory80•14h ago•1 comments

Show HN: Mooneva Cycle – Offline period tracker with no servers and no accounts

https://github.com/aradar46/Mooneva-Cycle-Private-Period-Tracker
3•aradar46•10h ago•0 comments

Show HN: KidScreen, a finite YouTube shelf chosen by parents

https://kidscreen.app
37•Tintly•17h ago•40 comments

Show HN: Voice driven murder mystery, Interview AI suspects with your voice

https://www.whodunnitai.com/
210•MrRowTheBoat•3d ago•89 comments

Show HN: Scroll through all 43252003274489856000 Rubik's Cube states

https://everycube.alen.is/
289•Alen123•2d ago•123 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)