this post was submitted on 18 Sep 2024
12 points (92.9% liked)

Linux

47341 readers
1364 users here now

From Wikipedia, the free encyclopedia

Linux is a family of open source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991 by Linus Torvalds. Linux is typically packaged in a Linux distribution (or distro for short).

Distributions include the Linux kernel and supporting system software and libraries, many of which are provided by the GNU Project. Many Linux distributions use the word "Linux" in their name, but the Free Software Foundation uses the name GNU/Linux to emphasize the importance of GNU software, causing some controversy.

Rules

Related Communities

Community icon by Alpár-Etele Méder, licensed under CC BY 3.0

founded 5 years ago
MODERATORS
 

So I've done a bunch of application development in windows in C# and Java, and while Java stuff is pretty similar in Linux with Swing I'm not as confident in C# there (not too familiar with Mono), but I also want to diversify a bit too. Any recommendations?

top 9 comments
sorted by: hot top controversial new old
[–] [email protected] 1 points 1 day ago (1 children)

If it makes sense for your software, please consider giving it a web interface and turning it into a localhost-only web-service.

[–] [email protected] 3 points 1 day ago (1 children)

Not averse to the idea, but why so? What's the advantage?

[–] [email protected] 1 points 18 hours ago

Good separation between business logic and UI without effort, cross-platform UI in any language, possibility to turn it into a web-accessible service in the future, great choice of UI frameworks and battle-tested components if you decide to go for a web framework and language.

As an example of a successful software that followed this approach: Synchthing. All versions run a local web service in the background. The Desktop version just opens a browser on the index page. The Android version is a native app that calls the exposed REST API on localhost, bypassing the web UI.

As an example of a much more complex software, albeit not FOSS: EasyEDA. It's a web software, but it also comes as a desktop app (which I never tried) which I assume is not much more than a frame for the web view.

My recommendation: write the UI with React on Vite in TypeScript, and write the business logic in your general purpose language of choice (mine would usually be C#).

[–] [email protected] 3 points 1 day ago (1 children)

Didn't .net core depreciate the older .net framework stuff, and by extension Mono, and the target you should be looking at going forward is the new .net core stuff?

(I'm more a janitor than a mechanic, so my understanding of what framework is or isn't dead this week is probably lacking, but I recall seeing an awful lot of chatter going on about that.)

[–] [email protected] 2 points 1 day ago* (last edited 14 hours ago)

Yes, you are right.

The old stuff, now no longer supported, is:

  • .NET Framework up to and incl version 4.8
  • Runtimes distributed as part of Windows
  • Mono is a Linux Runtime used for compatibility

The new stuff:

  • .NET Core, up to and incl 3, more recent versions are named .NET from version 5 onwards (to prevent mixing it up with the old Framework)
  • Is completely cross-platform, natively
  • I don't know about desktop specific graphical stuff but that probably depends on the specific library
[–] [email protected] 5 points 1 day ago (2 children)

JetBrains Rider is probably the best C# IDE for Linux, and MS ported .NET server stuff a while ago.

I’m not sure about C# GUI toolkits on Linux. WPF isn’t there, and I’m not sure how mature Maui is on Linux.

[–] [email protected] 2 points 21 hours ago

Maui has zero Linux support. I don't believe there are any plans for it, either.

However, Avalonia is fully supported, and is almost a drop in replacement for WPF.

[–] [email protected] 1 points 1 day ago

Yeah outside of Java I'm wondering if I might have to start learning some OpenGL/Vulkan stuff for graphics.

[–] [email protected] 6 points 1 day ago

If u wanna go with c# then use something like gtk# or cross platform gui lib like Avalonia