Comment on
Rendering and Material Preview are two entirely different colours.
No idea but is it still the case if you disable all overlays (there is a button for that in the top menu bar of the 3D view)
Comment on
Rendering and Material Preview are two entirely different colours.
No idea but is it still the case if you disable all overlays (there is a button for that in the top menu bar of the 3D view)
Comment on
Rendering and Material Preview are two entirely different colours.
Reply in thread
Oh now I understand, the rendering is blue. Perhaps you should check if all textures are correctly setup and if the correct color space (RGBA / Non-color) is selected for different type of PBR Textures. Those things can be interpreted differently in render and preview.
But in the end I think you will have to try a loot of thing until you found it.
Comment on
Copilot can't exit vim
No one can exit vim. It's simply not possible.
There are even legends that the devil himself was onced tricked into opening vim and is stuck there since.
Comment on
Trump says 'we don't have to be there for NATO'
A good opportunity to remind, that the US was the only country ever to invoke article 5 and Europeans (even Ukraine) came to help...
Comment on
Someone Forked systemd Over Its New Birth Date Field
Forking is easy. Maintaining the fork is the hard part.
Comment on
🥺🤬😾
I have to ruin the joke but this is not really accurate.
Cat's are not thinking about "killing" when they have this look. It's the "play & snack mode" a very positive feeling for the cat. They don't have the idea that they might hurt or kill another living being in the process.
The real "kill mode" is when having a dispute with other cats (or cat like animals) that they identity not as a snack but as a cat like thing. And this look is much closer to the left picture.
Comment on
Is it safe to use the AUR again?
It's as safe as it always was and will be...
The concept of AUR is that you run other persons scripts on your device. That is by definition a very insecure thing to do.
Comment on
The Godot Mastodon Account accidentally created a meme template (pls have fun with it)
That's my take on it
Comment on
Lemmy is to Reddit as ____?____ is to YouTube.
Reply in thread
Well obviously... But as a German I must say there is no possibly to use PeerTube in any legally save way in Germany.
That is not the fault of PeerTube of course it's the fault of copyright mafia and German politics. Since PeerTube uses P2P to distribute load among all (which is extremely clever and should definitely not change), German law makes you responsible for anything you upload even if it's in a P2P manner. So if you just accidentally clicked on a video containing Copyright protected Material or illegal content, you are seen as contributor of this content with all consequences.
So imagine going to jail because you clicked the wrong video... This is as stupid as it sounds and needs to change. Sadly German public is not carrying about this enough. I hope PeerTube will become more popular one day so that people are confronted to this insane law more frequently.
Comment on
The dominance of cat content VS dog content on Lemmy reflects its current techie userbase
Meanwhile my cat after reading this theory...
Comment on
My boyfriend told me he was getting a Raspberry Pie delivered…
I assume she was excited about all the cool stuff you could make with it and found out it was actually just a cake... Would be disappointed too.
Comment on
D or d come on
I don't get it... "D" is a complete different character than "d" is.
It's like wondering why "file1" is not opened when I typed in "file2".
Comment on
Omegle has shutdown with a thoughtful farewell from the founder
Reply in thread
Ok, sounds like the standard claim for everything to me to be honest.
Comment on
AI software that generates ‘rage bait’ developed by Germany’s far-right AfD
Reply in thread
Yes... but how do we get this (basic) understanding to millions of people lacking it?
Comment on
Dutch government starts own Mastodon instance as reaction to the instability of Twitter
Reply in thread
If I understood this correct from my interpretation of the dutch server description this is an Instance for dutch government officials.
At least Germany also has such a mastodon instance too for quite a while now. So people on mastodon know that an account there is officially a government account. The BSI (German Office for cyber security) and other offices post there.
This is not an Instance for "normal people" to register on.
Comment on
Omegle has shutdown with a thoughtful farewell from the founder
Can someone explain in short what problem people had about Omegle?
Was it that you can say things (and show things) there to a random person without any good possibility to trace it back to you because it's anonymous and more "temporary" then something like Lemmy for example?
Or was it just a witch hunt without any real reasonable structure?
Comment on
Linux Switch advice?
My best advice is:
Don't listen too much about what strangers on the Internet say you should do or use.
Non of us has statistics to pull from. Mostly it's individual experience mixed with personal preferences. All that could be different for someone else. E.g. some people will have problems with Nvidia, other with AMD.
Stick to the basic and add fancy stuff later on.
Don't pick a distribution because of the Desktop environment. Or because someone said it has a nifty feature. People create new distros all the time just for fun and not because there would be a real reason for it. Looking on the release cycle would probably be the most basic decision you should take. Read about the differences between "rolling release" and "long time support" and decide base on you personal use case.
Have a backup strategy
This is nothing limited to Linux but since you are planing to switch your habits, there is a high possibility you will mess up at some point. Best would be you try to stimulate the worst case and look if you would be able to setup your system in a VM or something.
Don't be afraid to try things out
Especially when you know that your backup is working. There is not much you can lose. Don't be afraid of using Arch Linux e.g. just because someone on the Internet said it's just for pros or something.
So this last one is maybe just the consequences of all the above. But yeah I guess that's all I could say for now 😅
Comment on
When they have a new fancy feature in Intel CPU and you're an AMD fan
Not a Fan. I'm an enjoyer
Comment on
Can we use Github as free cloud storage?
If the question is really about "can", than the answer is definitely yes.
If it's about if you should, than it's a clear no. Because storing data in a GitHub Project is not the use case. Nothing in the protocols or the platform itself is optimized for that. Also GitHub could just pull the plug of your project if they ever feel that it is against their terms.
Comment on
The most underrated programming language: Pokémon Yellow
Reply in thread
I try to add something to the understand.
Especially in old games, the program code (what happens if you press a button, what happen if your health bar goes to zero...) is often handled in the same memory structure as the game data (sprites, your entered player name, you inventory...) If you glitch a function that should edit a memory block of game data (e.g. reduce the players money or rename a Pokémon) to do it's operation on a program code block instead, you can reprogram the game while you are playing it and even make it a different game.
A different famous example is Super Mario Land. If you glitch trough the level borders the game is displaying all kind of data (game data and program code) as level blocks that you can walk on. Some of those level blocks are distructable, which is setting this memory block to a different value. By carefully destructing the correct blocks, you can change things like how many life's you have. But if you hit a wrong block, the game will potentially crash because you changed the program code to something that doesn't make sense.