- cross-posted to:
- memes@lemmy.ml
- cross-posted to:
- memes@lemmy.ml
The 2024 animated movie Flow was done entirely in Blender. It is an incredible movie, highly recommend.
Blender was also used a bit in Everything Everywhere All At Once
Running FOSS on closed source systems. Classic.
It’a a start! Makes the switch much easier.
No. You either go full Stallman and inject Gentoo directly into your aorta, or you might as well be deep throating Satya Nutella while bouncing on Tim Apple’s lap. Filthy casual.
Running Linux on closed source hardware. Classic.
I bet you aren’t even using your own open RISC-V based SBC, with fully open-source peripherals. Is your computer monitor even running an open-source firmware or are you just a FOSS poser?
Using computers with closed source biology. Classic.
I bet you haven’t even engineered your own DNA-II, fully-sequenced, libre-licensed microbiome with open source biochemical pathways. Are your eyes even running an open-source neural firmware, or are you just a FOSS poser?
Using biology on closed source chemistry. Classic. I bet you didn’t even roll your own proton mass or bother configuring your own valence shells. Are you even running your own coulomb law policies, or are you just a FOSS poser?
I don’t have a witty reply, but these kinds of threads were the best part of reddit. So glad to have shitposters like you all here on Lemmy.
Using computers with closed source biology. Classic.
Hey now, biology is pretty definitively open source. Every generation produces small patches of varying quality (mutations) and for most organisms the source is freely distributed to create new builds (reproduction). I mean if no one is downloading your genetic repo that’s largely a you problem (natural selection) not a biology problem.
The documentation fucking sucks tho,
Yeah, but the interpreter is pretty universal, if sometimes buggy.
Hot take: I hate when software just extracts an executable.
Fucking install it so that it’s registered with the software updater and uninstaller. Don’t make me remember that I have to go hunting in the folder to delete this one app.Some people prefer it.
I maintain a small piece of Windows software and originally just provided an installer, but I received enough requests for it that now when I publish releases I provide both an installer and a zipped portable build.
This is the way!
Having no package manager be like:
- You don’t need an uninstaller if deleting the folder suffices
- You don’t want some software to update.
I know I don’t NEED an uninstaller. I want to use the uninstaller I already have for all my other apps.
Let me have a consistent user experience.
Automatically figure out the right spot for the app resources and set the appropriate file permissions.
Show up in the list of installed applications, so I can sort them by size, if I’m running out of space.
Don’t make me jump through hoops or know the magical directory I need to put it in, in order to have it show up in the start menu or app drawer.
Assuming you are on Windows, the proper install method is to run
winget install -e --id BlenderFoundation.Blender
Cool, that doesn’t help because I don’t actually want blender.
I’m commenting on how much I hate when software is provided as just a portable executable.
I know that a lot of the time they’re also provided as flatpaks or debs or in snap or windows app store, or Apple app store, etc.
But I’m talking about doing the thing that is being described in the image: unpacking a portable executable.
Kind of a moot point since most windows programs don’t have a centralized hub for updates either, even when “properly installed” in program files.
Not really moot, no.
A portable executable can have neither of those things. It also won’t show up in the start menu app list.
With an installer, it’ll at least show up in the uninstaller, with an install size that I can see when I’m looking to uninstall things, and it’ll at least show up in the app list.
But they could also package it through the app store where you get all that plus centralized update management.
But I’d be happy with just having it show up in the app list and uninstaller.It absolutely can, I have several portable apps with self updating ability built in, when I use them it prompts me if I want to update or not, I personally appreciate that in certain cases.
I do dislike when they throw config files all over the place, so cleanup becomes very messy if I need to remove something.
Again tho, natively on windows there isn’t a great way to do that anyway, the windows store sucks and not many will use the package managers via cmd either.
I’m gonna be a bit rude here because you’re not reading what I wrote.
I did not say that such apps cannot be updated, I said that they’re not updated through a central update manager. So I don’t give a flying fuck if you implemented your own custom app updater in your app because that’s clearly and explicitly not what I’m talking about.
I also don’t give a fuck about throwing config files all over the place, since a) the uninstall script takes care of that and b) this doesn’t have to be specific to windows. Having an installer doesn’t mean that configs must be thrown everywhere. Afaict
apt-get
isn’t throwing files everywhere.Again I don’t really give a fuck about windows, but saying it hat it’s not possible because people don’t use the tool that makes it possible is fucking inane bullshit. Idk why you think the windows store “sucks” and I don’t really give a fuck, it works fine as a user, even if I don’t personally use it.
Lmao alright bud, there’s really no reason to get so worked up about this.
I did read what you wrote, just gave alternate aspects of the conversation from my viewpoint, that’s generally how discussions work.
I find it a bit funny you say the windows store is fine yet haven’t/don’t use it, not sure how you can talk about it’s functionality from a point of ignorance so strongly.
I understand your viewpoint and even agreed, simply also stating I appreciate portable applications, some things they can implement that mitigate the need for a centralized update location, and some of the downsides I’ve come across while using them (that do play into your point, that a centralized way of managing them is cleaner if implented properly)
If it’s good software for a larger program it will execute an install program that does register it. Other stuff should go in a specific folder so you can review what’s there.
AppImage is absolute chaos. Like, there’s an entire application floating on my desktop and it doesn’t have an icon, doesn’t appear in my list of apps, doesn’t update and has its own copy of libraries that are on my system, but aren’t managed or updated.
It’s even better when I can’t find a program that I thought I had installed. I go on the internet, find the site, and realise it’s appimage. I download the file just to find I already had it, and it was in my downloads directory.
Just package your program properly FFS.
I just got blender after having last looked at it ten years ago. It looks so much better! I had an easy time finding stuff. If you tried it in the past and are afraid of how ugly it was it is worth another shot. Also look up the doughnut tutorial.
Oh it’s free so it lacks features
Exactly! And every proprietary software is by definition perfect cause it is subject to the forces of the open market. Subway eat fresh and freeze, scumbag!
Can’t wait to live in Snow Crash
If you don’t count professional software, nowadays it’s actually the opposite. Very often in proprietary software there are features removed with no alternative provided by developers, or there’s one but actually it has nothing to do with what you actually want.
And sometimes the one feature you need requires the Enterprise version with a $4799 yearly subscription.
deleted by creator
I’d like to make it like that for my projects, but I don’t use windows so I can’t do well with packaging them. And sometimes when I try it runs in the computer, but then doesn’t run in other computers because of missing dlls or some other things.
Anyone have good idea how to make it easy. Using windows VM is such a hassle to install and such just for tiny programs I make.
Make them in a portable language. Something like Java for example. Or you can write in rust and compile for each target.
It’s in rust. Problem is the gtk part, it has to be installed in the system, which makes it run there. But how do I distribute the program without having everyone install gtk on their computer. In Linux it’s just a dependency so it’s not a problem, for windows I can’t seem to make it work.
Edit: also, I need gtk because people around me who uses windows aren’t going to use CLI program at all.
Oof GTK is probably one of the worst dependencies you can try and port to Windows.
What I’ve done in the past is use something like Onno Setup which can call a script during install.
Or, and this is new to me, use the Official tools to build a package for windows on whatever Linux distro you are on. From what I’m reading, it should package GTK with it.
Edit: also, I need gtk because people around me who uses windows aren’t going to use CLI program at all.
If that’s the reason - maybe you can use TUI instead? In Windows, it’d open a CMD window which your users will be able to use. Not as pretty as actual GUI, but easier for Windows users to use than a CLI.
Another option is to use one of the numerous Rust-native GUI libraries (like iced or Druid, to name a few). None of them are as big as GTK/QT - but they are easier to get running on Windows.
Bravo. Truly an exceptional meme.
Me running Godot on a new computer yesterday
Upvoted for the “The Founder” reference.
As the software gods intended.
Hope your third-party antivirus is fully updated
Just as unhealthy as the food hes eating in the image so it works for me.
If only it was that easy on Linux
It’s literally how Blender is distributed. Get archive, extract wherever, run
blender
.One command line away?
If I have to go into DOS to do something a normal user wants to do, the GUI OS is a failure.
The fact you called it DOS feels like you are just rage-bait trolling… lol
No, I call any command-line interface that runs from an internal drive “DOS”. I do mean the term somewhat generically as a Disk Operating System.
I think “CLI” would be a better word choice. DOS is a more specific term.
You are also able to install Linux distros that are primarily GUI based, or even install individual GUI interfaces for things you need.
Then you should stop doing that. Even if you are running modern Windows, there’s no DOS in it to be seen, even though command interpreter (
cmd.exe
) is very close to what was typically used in DOS (MS-DOS, PC-DOS, DR-DOS, etc.) -COMMAND.COM
. You are probably aware that the built-in commands there are actually very similar or the same as in MS-DOS. That’s because Microsoft didn’t want to make them different, probably mostly for compatibility reasons. There’s of course also PowerShell and Bash (and other Linux shells) if you run WSL (Windows Subsystem for Linux).And these command interpreters are always (on NT Windows at least) opened in a terminal application, typically the older Console Host or the newer Windows Terminal.
What are you talking about? There’s no DOS in Linux, and I am not sure what the hell would that even mean.
I right click to extract my zips on linux. Sure I can also go into cli to do it but you can have both
If I can’t script it because someone insists on GUI, it’s a failure.
You got downvoted by the Linux fanboys, but it’s not wrong. Linux has a big issue with approachability… And one of the biggest reasons is that average Windows users think you need to be some sort of 1337 hackerman to even boot it, because it still relies on the terminal.
For those who know it, it’s easier. But for those who don’t, it feels like needing to learn hieroglyphs just to boot your programs. If Linux truly wants to become the default OS, it needs to be approachable to the average user. And the average user doesn’t even know how to access their email if the Chrome desktop icon moves.
I ran Linux Mint for close to a year and never used the terminal. It’s not 2000 anymore
You don’t really need to use any command-line interface or commands if you are running beginner-friendly Linux distro (Linux Mint, Zorin OS, etc.). Well, maybe except when things go very bad, but that’s very rare if you use your system like average user.
“Your AppImage, Sir.”
deleted by creator
Yeah, on linux you have to right click, open properties and give it permission to run. So much harder
Properties is a strange name for a terminal
Yea, I’d expect it to be named “propertty”
You missed the /s
You can do exactly that with blender on linux