est.social on üks paljudest sõltumatutest Mastodoni serveritest, mida saab fediversumis osalemiseks kasutada.
est.social on mõeldud Eestis üldkasutatavaks Mastodoni serveriks. est.social is meant to be a general use Mastodon server for Estonia.

Administraator:

Serveri statistika:

90
aktiivsed kasutajad

#gui

1 postitusega1 osalejaga0 postitust täna
Jätkatud lõim

Schönen guten Morgen,

Was ist der „cd“ Befehl und wozu dient er?

„cd“ steht für „change directory“, was auf Deutsch „Verzeichnis wechseln“ bedeutet.

Stellen Sie sich vor, Ihr Computer ist ein großes Haus mit vielen Zimmern. Der „cd“-Befehl ist wie ein magischer Schlüssel, der Ihnen erlaubt, von einem Zimmer (Verzeichnis) in ein anderes zu wechseln oder zu gehen.

#Terminal #Gui #Linux #opensource
#freiheit #lernCLI

Jätkatud lõim

Die Nutzung eines Linux Terminals bringt im Vergleich zu grafischen Benutzeroberflächen (GUIs) zahlreiche Vorteile mit sich. Es ist nicht nur effizienter, sondern auch schneller. Oft dauert es eine Weile, bis ich durch alle Ordner navigiert bin, nur um dann festzustellen, dass die Datei, die ich ändern möchte, in der GUI nicht bearbeitet werden kann. In solchen Fällen zeigt das Terminal seinen klaren Vorteil. Wenn ich Änderungen an meinem System vornehmen möchte, erfolgt dies meistens über das Terminal anstatt über die GUI. Im Terminal kann ich die gleichen Aufgaben ausführen, die ich auch in der GUI erledigen würde, jedoch präziser, ressourcenschonender und effizienter. Zudem kann ich Automatisierungen verwenden und habe die Möglichkeit, mein System besser zu verstehen. Genau aus diesem letzten Grund ist es wichtig, sich mit dem Terminal auseinanderzusetzen.

#FreeBSD will not ever break into the real desktop market at any time because their core developers did not learn to hack monitors or offer better #GUI options. I think they're still stuck in 1999?

I'm using the latest version of FreeBSD. I tried installing xorg/xfce/slim...

And even when I put efi_max_resolution="1080p" and those two oddball exec settings referencing gop set 0; gop set 2 into /boot/loader.conf FreeBSD still DOESN'T WORK on a modern HDMI monitor using an older PC.

How is this my fault, again -- guys? Get a brain.

Instead I'm stuck with the very low resolution of 640x480. I hate that resolution. It's so... 1990.

Whichever high priest in the European or American BSD camp that is keeping their code this way is a total asshole. No one can work with that.

Sure, I could use DragonflyBSD or something else. But I don't want to waste my time experimenting with their exclusive version (and likely those people are making use of a different package manger than the one I'm used to, already).

So yeah, FreeBSD is more or less *permanently* a headless or server OS thanks to their treatment of users in this way.

A new version (0.7.3.0) of nodgui, a simple GUI library for Common Lisp, has been released: this is a feature release.

From the NEWS file:
- [new feature]
- added virtual keyboard widget;
- added label spinbox widget;
- [pixel-buffer] added multitexture polygon rendering;
- added function to manipulate tags in canvas items (add/remove tags and find items by tags)
- added `grid-implicit', a function that fill the next available row with widgets in a single call, without specify columns.
- [improvements]
-Enable use of `asdf:test-system`, thanks fosskers!
- [bugfix]
- fixed regression: restored support for TGA bitmap file format
- removed 'eval-when' around ~+2pi+~ definition to prevent error when compiling code, without loading the source (thanks to the person that reported this issue!).

Nodgui is copylefted free software released under LLGPL license.

- web page
autistici.org/interzona/nodgui

- source repository
codeberg.org/cage/nodgui/

Bye!
C.

www.autistici.orgnodguiCage's website

I need to keep up with my favourite #linux #blog @omgubuntu

I saw that Gnome has a new website, it looks great, and their software looks beautiful.

We are so spoiled in the Linux community to have such amazing projects - the kernel, software, OSes #GUI... all of it!

What I don't get is the amount and level of people's rage at something they are getting for free. I can't contribute to fix, so I just move to something else that works for me and try again later.

gnome.org/

www.gnome.orgGNOMEAn easy and elegant way to use your computer

Spent the last 6 hours trying to get a hello world equivalent gui window with a button on rust under windows.

This task which one might think is simple ended up taking literal hours and still hasn't been achieved because: the tutorials for gtk on windows and rust suggest putting msys2 bin directory on the path. This causes rust to fail to build correctly because it uses the wrong gcc and linkers.
Afterwards I managed it by using the appropriate environment variables.
But then I found out the dynamically linked libarries weren't found. I tried getting a way to copy them but it turned out to be too much work so I just moved the executable to the same dir.
Only to find out that gtk4 has no accessibility on Windows. Not bad accessibility, not accessibility that needs to be turned on. No. Accessibility. At all.
So then I decided to try Qt, which wants me to create an account to get an installer. Absolute no.
Got the 1.5gb sources and trying now to get an off-line installer out of it.

To get a fucking window with a button in it.

I don't think it's unreasonable for me to say this state of affairs is complete bullshit, and that most people with a normal level of motivation would have found plenty of opportunities to have given up. I still might.

(Not using NWG because tying the data to the GUI elements is non-trivial, it seems to require copying a lot and using twice the memory.)

Any sugestion on learning to make gui, as in code them, while not using JS or web tools?

Like a simple "this is how you push pixels to the framebuffer in a couple of lines of code" and "this is how you catch mouse/keyboard events" guide.

I want to learn how to do it low level. But it would be easier to get going with a good guide on where to even start.

Keeping data in sync while avoiding event listener loops in #Java #JavaSwing is a huge pain in the butt.

One mistake could create a bug where the right combination of user actions will make the GUI become inconsistent with the real state of the program, or worse, freeze and consume 100% CPU! Yikes.

I've heard that immediate-mode #GUI doesn't suffer from this problem. Certainly seems tempting. But it does rather infamously suffer from poor performance (e.g. #React), so… 🤔

Today, in my search for a way to create GUI applications without suffering, I have looked into Pascal, which seemed like a nice language with a mature environment for this purpose. :gutkato:

Playing around with the language, I ran into an odd error: Pascal allows one to set boundaries for an array, and each boundary may be specified using a constant one has declared earlier. However, this doesn’t work if a type is declared for said constant. :gutkato_scivola:

After some time spent searching, I found a forum thread where the issue is explained thusly:

e.g. using a typed constant allows you to actually change the value of the constant.

Object Pascal offers two different sorts of consts: ‘proper’ consts that are constant (as you might expect), and typed consts that are initialized variables. Naming the latter sort ‘const’ is a frequent source of confusion for newcomers to Pascal, but it was introduced by Borland, and FPC preserves the same syntax for compatibility with Delphi.

So in this language, which has separate declarations for constants and variables, there is a non-obvious way to disguise the latter as the former, for historical reasons. If that’s any indication of what one may expect from the rest of Pascal…

… there’s no way! There’s just no way to make a GUI application without suffering, is there?! :gutkato_ploras:

#lang_en #GUI #Pascal #programming
www.lazarus-ide.orgLazarus HomepageLazarus is a professional open-source cross platform IDE powered by Free Pascal
Vastatud lõimes

@Natanox @djvdq I do agree in that regard as in that a lot of #FLOSS doesn't do good #UI & #UX but I've yet to see an issue that wasn't already covered well-enough (even for #GnuPG / #GPG there's #Kleopatra as a nice #GUI!) to the point that even on #Windows or #macOS you'd have to use a #CLI tool for that...

In fact, they don't give a s**t about tje underlying OS. Most don't even care if they use #Firefox or #Chrome and #Google or #DuckDuckGo.

  • All they want is get shit done! And these.folks are eadily helped with a hands-on on a good #Linux dostro and maybe preinstalling some #RemoteSupport tool like #Dayon where one can help them if there ever was a need to do anything...
#YouTube - https://www.youtube.com/@SwitchedtoLinux

#Odysee - https://odysee.com/@switchedtolinux:0

#Rumble - https://rumble.com/c/SwitchedToLinux

#Bitchute - https://www.bitchute.com/channel/uf9hzD216LX0

!!! NOTE !!! Switched To Linux is, “written by a broad spectrum computer consultant to help people learn more about the Linux platform.” This account is a supporter of @switchedtolinux and provides convenience posts of thumbnails art, videos and streams.

«Posts may contain hashtags as content may pertain to many distributions and/or related material/topics. Posts may be reposted, boosted, shared, etc. by bots and/or other accounts and are done so at the discretion of the bots/accounts that perform those actions. This account is not responsible for the action(s) of those bots and/or accounts. Therefore, Offended Discretion is advised.»

#SwitchedToLinux #Linux #Windows #Mac #AltTech #FOSS #YouTube #Odysee #Rumble #BitChute #Locals #DLive #Twitch #LinuxMint #LinuxMintDebianEdition #LMDE #Ubuntu #Debian #KDE #MXLinux #Arch #PopOS #MXLinux #Zorin #RedHat #Solaris #Cinnamon #MATE #XFCE #Gnome #Plasma #GUI #Desktop #KDE #Laptop #FactCheckTrue #Fediverse #Fedi22 #Fedi23 #Fedi24 #Firefox #Brave