bruce965

joined 2 years ago
[–] bruce965@lemmy.ml 40 points 3 months ago* (last edited 3 months ago) (20 children)

None, I use Docker for Linux, and Proton (Heroic) for Windows.

But if I had to pick a virtual machine: libvirt with virt-manager as a frontend, which uses KVM for virtualization.

[–] bruce965@lemmy.ml 7 points 4 months ago (2 children)

I might be mistaken, but I think Codeberg is the official public Forgejo instance.

[–] bruce965@lemmy.ml 1 points 4 months ago

Fair enough, I agree with most of the things you said. The one I got is made of aluminum and doesn't feel cheap/thin at all, I guess they have both cheap and "professional" options. Personally I wasn't looking for something really unique, just for something that had a decent performance for a laptop and works well with Linux. I searched around and this model ticked all my most important boxes.

I don't know whether Clevo engineers throught about Linux when they designed the device or not, but I can say after configuring it properly, it works without any flaws.

As for buying straight from China, I consider the idea, but at the time I didn't find a way to buy it for cheaper than buying from a reseller. I'm in Europe, perhaps in the US or in Asia it would be different.

[–] bruce965@lemmy.ml 9 points 4 months ago (3 children)

What is it that you don't like about Clevo chassis? I bought one a few years ago and I love it. It's elegant and sturdy in my opinion. It's also easily serviceable, so what's to complain about it?

[–] bruce965@lemmy.ml 1 points 5 months ago (1 children)

That's very likely the case, but I'd say it makes little difference: any self-hosted application supporting web technology is also a desktop application.

[–] bruce965@lemmy.ml 2 points 5 months ago (3 children)

I've never had the chance to work with the RAW format, but I think Photoprism should handle it transparently. Depending on your area of knowledge, the setup might feel a bit convoluted though.

[–] bruce965@lemmy.ml 4 points 5 months ago (8 children)

So... this is going to be a debloated lightweight distro (or just a DE?) with official support for not-so-fresh hardware? I don't fully understand.

[–] bruce965@lemmy.ml 19 points 7 months ago* (last edited 7 months ago)

Yes, you can develop in .NET on VSCode and the debugger works on Linux too.

There is a Docker version of SQL Server which funnily enough is equivalent to the enterprise version (rather than limited like SQL Express). You can use it for free as long as it's for development purposes only.

There is no SQL Management Studio though.

One option would be to use PostgreSQL instead. Entity Framework makes it almost free to replace the database anyways (unless you are doing some db-specific things).

There are some other minor annoyances or missing features, it might bother you; but depending on how you are used to work, you might not even notice. But, hey! you are on Linux now, you get all the benefits of a UNIX operating system, it will be worth it for sure, right? (Yes, imho)


As for gaming, I only do light gaming so I probably don't count. I use Heroic Launcher and it works wonderfully out of the box 50% of the time, the remaining 50% you can probably make it work as good as on Windows if you are persistent enough.

Oh, and sometimes some games run better on Linux than on Windows, but I would say most of the time they run a bit worse.

[–] bruce965@lemmy.ml 2 points 7 months ago* (last edited 7 months ago)

I work as a professional developer in .NET on Windows, and in my free time I develop in .NET on Linux as a hobby.

Unfortunately I would say the .NET development experience on Linux (with VSCode) is slightly inferior compared to on Windows (with Visual Studio).

For instance there is no support for SourceLink during development, only during debug. And on VSCode the "go to definition" to third party assemblies works only for one level deep, whilst on Visual Studio it works for any depth level.

It is certainly still a great experience on Linux, but not «better than Windows» in my opinion. If you have any recommendations to improve it please share, I would be very grateful.

[–] bruce965@lemmy.ml 2 points 7 months ago

Ah I get what you mean, I used to share your same view. I used to think that the MIT license was more free than GPL for the reasons you mentioned.

When Google started working on Fuchsia OS and they said it will be MIT license, I started to get worried that smart products producers would start using it instead of Linux. Then they wouldn't need to release the source code to customers as the software would no longer be GPL.

The difference is that MIT gives more freedom to the producers, while GPL gives more freedom to the consumers.

Personally, my sympathy goes to consumers, not producers, thus I understood why people say GPL is more free than say Apache or MIT.

Licenses such as MIT, Apache, MPL, etc... are a double-edged sword. 😬

[–] bruce965@lemmy.ml 2 points 7 months ago (2 children)

As far as I understand, you only have to make your changes to the code available to users of your software. You are free to make any modifications as long as you keep them to yourself and don't share the binaries (or access the service, in case of AGPL) with anyone. I might be mistaken, though.

[–] bruce965@lemmy.ml 22 points 9 months ago (2 children)

I work professionally from Windows, and as a hobby from Linux. My tool of choice for coding in .NET is Visual Studio Code (not FOSS, but there is a FOSS version which is just a bit more limited). It's not as complete as Visual Studio, but it's much faster, it has all the basic tools including a debugger, and it's much more customizable.

Also if you have never done it before, you might love dotnet watch which works with any IDE and lets you make realtime changes to your code while the application is already running.

As for UI, my personal choice is deploying a static website on localhost through Kestrel (it's less than 100 lines of code for a fully configured one), and then let the user's browser take care of showing the UI. You could use Blazor if you really want to use C# all the way, but my personal recommendation is to stick to web technologies such as TypeScript and React (using either Parcel or Vite to build your project). Making your UI web-friendly also makes your app cloud-ready, in case tomorrow you will decide that's something you need.

Finally, you can now deploy .NET apps as a single self-contained executable on all major platforms. But as already recommended by other users, I would keep adopting a web-first approach and go for Docker, and eventually Kubernetes. It's a lot of work to understand it properly though, so perhaps you can start studying this topic another day in the future.

Feel free to ask me anything if you have questions.

view more: ‹ prev next ›