this post was submitted on 22 Nov 2025
11 points (100.0% liked)
Software recommendations
1322 readers
5 users here now
Do you want to know the best program to do something? Ask it here and discover the best options to choose between. Do not be shy
Anyone can ask for products by making a post. There are no posts because I think people think that they can not post but they can now
Want to get recommendations to non-software topics? Go to Recommendations
rules: instance rules
founded 2 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
You can use multiple sheets in a workbook or multiple layers in an image editor to get a third dimension in existing 2D data editors. I've done some weird things like pack numeric data into RGB pixel values when I needed to annotate an image with a couple bytes of data per pixel in irregularly shaped regions...
If Minecraft is an actually serious possible solution to what you're doing, maybe a world editor for it would be useful? I don't know what's popular now (been OOTL for too many years) but people used to make custom maps in MCEdit; some of the 3D brush tools and such might be useful depending on what you're doing?
Can you provide more details on what you're trying to do?
Minecraft is not a serious solution. I could get it to work but it would be terribly uncomfortable to read and edit, almost certainly worse than layered 2D spreadsheets.
Currently i'm making a constructed language and trying to work out what all the possible syllables are given the fairly simple syllable structure. There are tools specifically for this, but there have been other times when a 3D spreadsheet would have been very helpful even if i can't still remember what problem i had.
Another example, also for constructed languages, is tables of conjugations and declensions in fusional languages. That is, a language where a single prefix or suffix indicates a specific case, person, number, etc. and there are a bunch of these that need to be mapped out.
Hmm. I see. I'm not aware of something that I think would be particularly good for that which already exists, but it's the kind of thing that sounds like it might be possible to hack together quickly with an HTML table, contenteditable (or input tags), a few buttons/select tags/etc, a bit of JavaScript, and maybe
python3 -m http.serveror a Python script using tornado depending on what was needed exactly... but maybe I've been in web programming land too long.