this post was submitted on 31 May 2026
14 points (85.0% liked)

No Stupid Questions

48304 readers
1554 users here now

No such thing. Ask away!

!nostupidquestions is a community dedicated to being helpful and answering each others' questions on various topics.

The rules for posting and commenting, besides the rules defined here for lemmy.world, are as follows:

Rules (interactive)


Rule 1- All posts must be legitimate questions. All post titles must include a question.

All posts must be legitimate questions, and all post titles must include a question. Questions that are joke or trolling questions, memes, song lyrics as title, etc. are not allowed here. See Rule 6 for all exceptions.



Rule 2- Your question subject cannot be illegal or NSFW material.

Your question subject cannot be illegal or NSFW material. You will be warned first, banned second.



Rule 3- Do not seek mental, medical and professional help here.

Do not seek mental, medical and professional help here. Breaking this rule will not get you or your post removed, but it will put you at risk, and possibly in danger.



Rule 4- No self promotion or upvote-farming of any kind.

That's it.



Rule 5- No baiting or sealioning or promoting an agenda.

Questions which, instead of being of an innocuous nature, are specifically intended (based on reports and in the opinion of our crack moderation team) to bait users into ideological wars on charged political topics will be removed and the authors warned - or banned - depending on severity.



Rule 6- Regarding META posts and joke questions.

Provided it is about the community itself, you may post non-question posts using the [META] tag on your post title.

On fridays, you are allowed to post meme and troll questions, on the condition that it's in text format only, and conforms with our other rules. These posts MUST include the [NSQ Friday] tag in their title.

If you post a serious question on friday and are looking only for legitimate answers, then please include the [Serious] tag on your post. Irrelevant replies will then be removed by moderators.



Rule 7- You can't intentionally annoy, mock, or harass other members.

If you intentionally annoy, mock, harass, or discriminate against any individual member, you will be removed.

Likewise, if you are a member, sympathiser or a resemblant of a movement that is known to largely hate, mock, discriminate against, and/or want to take lives of a group of people, and you were provably vocal about your hate, then you will be banned on sight.



Rule 8- All comments should try to stay relevant to their parent content.



Rule 9- Reposts from other platforms are not allowed.

Let everyone have their own content.



Rule 10- Majority of bots aren't allowed to participate here. This includes using AI responses and summaries.



Credits

Our breathtaking icon was bestowed upon us by @Cevilia!

The greatest banner of all time: by @TheOneWithTheHair!

founded 3 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
[–] Rivalarrival@lemmy.today 16 points 13 hours ago (3 children)

TUI. Text User Interface. Command line. Terminal. You interact with the application via the keyboard, rather than a mouse, touchscreen, trackpad, etc.

[–] sbeak@sopuli.xyz 2 points 6 hours ago

Just of note, TUI stands for terminal user interface, not text!

[–] spongebue@lemmy.world 9 points 13 hours ago

There's also voice user interfaces! I'm not sure if it goes by another name, but blind people have their own way of using a phone, plus there's a lot of voice control when driving or using Alexa and the like

[–] LoveEspresso@cafe.coffee-break.cc 3 points 13 hours ago (4 children)

Can literally everything be tui ?

[–] FuglyDuck@lemmy.world 8 points 11 hours ago (3 children)

Yup. though a lot of things are more effecient and easily understood with GUIs than command line interfaces. Imagine a volume slider. on the other hand there's a lot of things that are much more convenient in a terminal window.

sure. you can use amixer sset Master 50%

to set volume to 50%, but it's faster and more intuitive to use the GUI for it.

GUI: vs CLI:

[–] ComfortableRaspberry@feddit.org 3 points 10 hours ago* (last edited 10 hours ago)

but it's faster and more intuitive to use the GUI for it.

As someone with a tremor in both hands: sliders are assholes!

[–] oats@piefed.zip 1 points 7 hours ago

It literally takes me a longer time to move my hand over to the pointer and slide the little arrow to the volume controls than it takes me to tap the terminal button and give a short command. Point is moot for me personally though, as volume always stays mute :D

The good thing is, a proper operating system just let's you do what works for you. Obviously there is no one way that's best for everyone.

[–] Successful_Try543@feddit.org 1 points 8 hours ago

As you said, that's an example of a CLI, yet a TUI would be something different, e.g. like the non-graphical installer of your dear Linux distribution.

[–] ImgurRefugee114@reddthat.com 14 points 13 hours ago* (last edited 13 hours ago) (1 children)

No but many things can be. There's also a distinction between a CLI (command line interface, just running programs in a terminal) and TUIs (terminal user interface); like stuff built using ncurses which is a popular TUI library.

Things that need graphics don't work well as a TUI. For example, it would be pretty hard to make a 3d modelling application like Blender make sense in a terminal...

[–] cockmushroom@reddthat.com 3 points 13 hours ago (1 children)

Someone wrote a terminal that can render a 3d model of a cat as the cursor and rotate the contents of windows

[–] FuglyDuck@lemmy.world 3 points 11 hours ago (1 children)

there's OpenSCAD which uses a whonky scripting/programing language to build 3d models. You can do quite a bit in it, if know what you're doing- and the neat part is that the files, so they don't take a lot of space.

[–] joe_archer@lemmy.world 2 points 5 hours ago

I agree, the neat part is that the files.

[–] zloubida@sh.itjust.works 9 points 13 hours ago (2 children)

Yes technically. Practically some software would be objectively awful without a graphical interface, like image modification.

[–] cabbage@piefed.social 1 points 8 hours ago

ImageMagick is amazing for command line image manipulation, but the use case is of course different. It's great if you need to do the exact same operation to a bunch of pictures, such as rotating or rescaling.

[–] Rivalarrival@lemmy.today 2 points 12 hours ago (1 children)

Exactly. A TUI is not a replacement for a GUI where human interaction is essential to the process.

But, very few computer processes require direct human input. The overwhelming majority of individual operations are performed silently in the background. The presence of a TUI in an image modification program allows for certain operations to be performed automatically, in the background, without a human ever needing to be involved. I actually needed to do this, to add what was basically a watermark and a date stamp to a PDF document via an image modification program. Repeated 80-120 times a day, 6 days a week. A TUI allows for the tying together of a half dozen simple operations into a functional system.

[–] Successful_Try543@feddit.org 1 points 8 hours ago

Exactly. A TUI is not a replacement for a GUI where human interaction is essential to the process.

You're thinking of a CLI, a TUI allows for human interaction.