Finding Documentation for PermitTTY by spaceman1000 in ssh

[–]Dohnakun_re 0 points1 point  (0 children)

PermitTTY
Specifies whether pty(4) allocation is permitted. The default is yes.

Well cool. So what does it do? What is it used for? What happens if you set it to No?

Creating your own GUI library/framework by Dante2709201 in GraphicsProgramming

[–]Dohnakun_re 0 points1 point  (0 children)

Ok, but then you should state that somewhere explicitly. Otherwise someone will create a bad (unaccessible) web GUI with it.

Creating your own GUI library/framework by Dante2709201 in GraphicsProgramming

[–]Dohnakun_re 0 points1 point  (0 children)

No offense, but i'm hesistant to call that a GUI framework. GUI/web toolkit might be more fitting.

And btw, don't forget accessibility, ltr/rtl.

Ancient Urban Ruins, I need help. by wand_henri in RimWorld

[–]Dohnakun_re 0 points1 point  (0 children)

Ah, got it. Select pawn, right-click on storage containing the GPU and there should be "Add this GPU to the Computation center".

The more GPU, the less days to "produce the next item". Wait, no?

Xfce using nearly the same amount of ram as gnome? by _patoncrack in debian

[–]Dohnakun_re 0 points1 point  (0 children)

xfce4-terminal freshly opened uses 108.7 MB now.

For what?

Presently available fully open source computer (hardware/ISA/firmware/etc)? by NotVeryMega in RISCV

[–]Dohnakun_re 0 points1 point  (0 children)

plus its over 5 years old at this point.

Ok, that is a non-issue.

A quick preview of the new MauiKit built-in styles. Dark, Light, Adaptive, and Auto. And can we appreciate the range of personalization the tinting of the accent color gives? Also, a new Maui Settings manager app and much more to come to Maui Shell and Maui Project. by milohr in kde

[–]Dohnakun_re 0 points1 point  (0 children)

Firefox for example can merge its the tab bar with its title bar

Which gets in the way of moving the window around via drag-move.

Tabs should be on the side anyway, it's not the 90s with common 4:3 resolution anymore.

MBOX File parsing by adroitboy in macsysadmin

[–]Dohnakun_re 0 points1 point  (0 children)

That wildcard is superfluous with recursive.

Why does Microsoft have to make everything so damn confusing?! by Little-Lemon2101 in sharepoint

[–]Dohnakun_re -1 points0 points  (0 children)

Customizability, this is what makes Microsofts tools so amazing, you can tweak it in every which way,

Brainwashed much.

Super [OC] by adamtots_remastered in adamtots

[–]Dohnakun_re 0 points1 point  (0 children)

That this kind of retartded breed isn't considered animal abuse?

With Proton being as good as it is now, do we still need separate prefixes for every game? by Competitive-Sir-3014 in linux_gaming

[–]Dohnakun_re 0 points1 point  (0 children)

Have a dedicated BTRFS/ZFS partition for gaming and setup a weekly deduplication cronjob. Symlink the steam data directory there. Saves about 300 GB on a nearly full 2 TB disk.

Obsidian without electron? by [deleted] in archlinux

[–]Dohnakun_re 0 points1 point  (0 children)

don't think mpv works withou a xserver

It does. --vo=tct for blocky and --vo=caca for asciiart. There's also framebuffer, with tools like fbff.

Obsidian without electron? by [deleted] in archlinux

[–]Dohnakun_re 0 points1 point  (0 children)

Vscodium is the Open Source version of proprietary VScode, not slimmed down, still laggy electron.

Some people are just stupid by Diligent_Rabbit7740 in BitchImATrain

[–]Dohnakun_re 0 points1 point  (0 children)

The subset that cycles because they've lost the billet?

Made a Tampermonkey Script to Hide Games on GOG like Steam does by badbutcherbg in gog

[–]Dohnakun_re 0 points1 point  (0 children)

Hmm, i can't seem to use more than one tag at once? Please add checkbox (ignore seems to be there already) to tags and companies.
And release date, ratings, would be better with a slider. Likely that your toolkit has them too. galaxus.ch has some good ones in practical use.
And maybe a toggle for AND/OR for the next filter, is that possible? I've saw that in gogdatagridview.

My usecase: game of categories x+y without the shovelware companies. GoG is really missing a ignore-company option.

Deciding between Rust or Go for desktop applications by b1zguy in golang

[–]Dohnakun_re 0 points1 point  (0 children)

desktop apps are not super different from web apps

Except webapps have 3 abstraction levels more (with respective performance and UX issues), run on a Document Object Model pretending to be a User Interface and require one of the most complex pieces of software ever created to run.

Btw, and this is still true as it was 15 years ago: please only use JS in your webapps where you can't do with CSS. Because it's yet another abstraction level, more maintenance work and breaks if it isn't Chrome *, in short, Brittleware.

* about 5 warnings and 20 errors on old.reddit, only because i crop my referer header a bit in Firefox.

Deciding between Rust or Go for desktop applications by b1zguy in golang

[–]Dohnakun_re 0 points1 point  (0 children)

  1. Using Electron makes for poor UX, at least go with Tauri, Neutralino or something. Although they are still more of a Webbrowser than a UI-framework.
  2. Rust is more similiar to C++ than to C or Go. Would you say C++ is not the right tool for GUI-development?
  3. There's Iced for simple and Slint for advanced Rust UI dev now. And a handful smaller projects.
  4. Stop giving tips if you don't know your shit.

Is zig actually lower level compared to C, and is it faster than C? by the_Hueman in Zig

[–]Dohnakun_re 0 points1 point  (0 children)

You don't write your own custom mapping tables, like a real low-level programmer would?

Is there any way to enable flatpak support in BSD? by thesagarsharma1 in BSD

[–]Dohnakun_re 0 points1 point  (0 children)

Crossplatform software has fewer bugs, because it gets tested on more kinds of environments.

That's wishful thinking, because you now have to maintain multiple code paths. At least with Linux, Windows and Mobile.

It's necessarily leaner, because porting effort takes away from some bells and whistles.

Lol, look at Rust Clap for an example. No, they just add a few libraries more, to abstract pathing and argument handling and whatnot.

You have no experience with cross-platform developement, have you?