Spyke

Replies

cat

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

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

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.

linux

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 😅

git

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.