Goodbye Reddit, Hello Lemmy

  • 0 Posts
  • 9 Comments
Joined 9 months ago
cake
Cake day: January 6th, 2024

help-circle

  • ZeldaFreak@lemmy.worldtoGaming@lemmy.worldThe worst of both worlds
    link
    fedilink
    English
    arrow-up
    15
    arrow-down
    9
    ·
    1 month ago

    I mean my Minecraft Skin isn’t a normal skin and during early adventure, I slap that on, what I find. Also hats (from a mod).

    Most people are laughing but I think it could get good, if they do it right. They actors need to reflect the wide playerbase. Jason Momoa could be the old school vanilla survival player, that played up to the early release version. The boy could be a modern MP minigame server player. Jack Black could be the Griefer/Anarchie player.

    There is potential to make it good but they could easily screw this up. Minecraft is a game without a story and the only story Minecraft has, is from the players (and viewers of Minecraft YouTubers, without poiting out a specific one, due to obvious regional differences. I mean would you know a German Minecraft YouTuber and get the references?) and their memories. Without that, I don’t see how this can get good.


  • It really depends. Whitespaces are something most languages don’t care. The only people who care are enforcing style guides. Level 2 is the same but there it start to get more critical, because can you be sure that it makes no difference? Level 3 is critical. While it can help to eliminate code that probably didn’t caused the problem, it makes a difference. In code review this can make a difference. If a specific Hex number is well known, like of example 0x4711 and someone changes it to 18193 or even Binary, information to the programmer gets hidden. And even in style this makes a difference. When you have a flag Enum, the thing to use is binary or bit shift, because both is readable. Decimal is readable to a certain point. 4 bytes is fine but at the 5th I don’t know them by heart and can’t even spot them. Level 4 is irrelevant, when its on top of the file and bothering to hide it, is not necessary. Also this can be relevant. For example a while ago at our company we had code that needed to work with .NET 2 and we had parts with .NET 4 and at some point, new files had the using for LINQ, that isn’t available in .NET 2. This happened a lot.

    The best solution is to have options and let the person using it decide. What I’m missing is to add my own ignore list. For example with our XML files, we have a date in them. The XML Class is badly written, because instead of having one date attribute for the first node, we have them on all. This is pretty irrelevant to show in a diff, because its not even used. Rewriting the Class is a big task, because its a core feature and can break everything, when one thing is missed.


  • When you know how rockets and jet engines work, because someone explained it to you but nobody explained how car works, people might just apply that knowledge to cars.

    People expect that others are born with knowledge or that it magically appears in their brains. Its not that op is retarded, its his parents that forgot to teach his son some basic stuff. When I see memes with how bad the current generation is, they forget its not the fault of the generation, its the fault of the parents. When they don’t teach their children that, how should they do it?


  • ZeldaFreak@lemmy.worldtoMicroblog Memes@lemmy.worldScript kiddies
    link
    fedilink
    English
    arrow-up
    4
    arrow-down
    1
    ·
    8 months ago

    Making an installation script that will work for all, or even most, OSs and processor architectures can be a lot of work. Are you paying the devs to do it?

    I do pay for my software, even when its free, when I like the software and the devs. But if the devs/community think they are something better, then no. I had some where they refused a install script and said something along the lines that if you can’t get it running with the docs, you shouldn’t host the software. Yeah I don’t like such devs. Also when they have enough time to write a documentation, they have enough time to write a script. I even had one project, where the dev refused a correction in the docs, even though it was faulty.

    Also you don’t need to write a script for every system. You start with the most used ones. I mean just for testing I would get insane, when I have to repeat some steps over and over. At our company I do write scripts for some things that drive me insane. First I got told, it works this way, this costs too much time to do and it doesn’t sell more software. I just did it and now they thank me for that. Even just an internal tool that I wrote for myself, after I drove insane doing stuff manually, now also customers get.

    I don’t speak about software where you pull via git, install some prerequisites and run a script. Not shipping prerequisites can have a legal reason and git pull is just a different way of downloading. It also works to download the tagged source code, instead of cloning but this requires more explanation to less skilled users.

    Also with docker I came across some projects where they really butchered it. A docker compose file is my preferred way. I have my file + .env and it works for most containers I come across. It looks clean and feels clean. Running one command for creating a user is a understandable step, to avoid default users.

    When you like to hammer in a lot of commands into a shell to install something, do it. I prefer my clean, simple and straight forward install scripts. I don’t need a installation doc that goes over every customization that you can make. I want a setup that works for most users and after that, I can dig around every customization there is, to optimize a software how I want it. Not everything is needed right at start and a default value that most users will use, is enough for the start.

    Good thing that there is a ton of software and I can pick the ones where I like their philosophy and support them. That is what I do.



  • ZeldaFreak@lemmy.worldtoMicroblog Memes@lemmy.worldScript kiddies
    link
    fedilink
    English
    arrow-up
    15
    arrow-down
    38
    ·
    8 months ago

    I hate when the installation takes like 20 steps. Never heard of an installation script and a interactive installation? I’ve installed far more complex software, that gets this but your shitty programm can’t do it?

    And they wonder why nearly nobody uses Linux. In Windows nearly all software comes as an executable. Imagine offering a software under windows, where you need to do the setup manually in a shell.


  • I program like I learned it? I use my German QWERTZ layout. A lot of keys are different, yes, but I grew up with this layout and I’m used to it. Imagine giving me a US QWERTY layout and I would misstype every time. I even hate it when Windows swtiches my keyboard layout, even though I removed the shortcuts to it and I misstype constantly. Heck even Visual Studio switched my shortcuts and it sucked.

    After some time I realized that (Game) Devs suck, because they forget that other layouts exist. Its not a big deal, but at some point I realized that the Chats on T, Y, U makes much more sense on a QWERTY Layout. Also Markdown with ` kinda sucks. For a codeblock, I need to hold shift and press the key that is left of backspace 3 times and then one space, because when I press it once, nothing happens but pressing it a second time, 2 appear. Pressing space let it appear directly. Or I type 4 and remove one.

    But this it what I’m used to. And if I ever would work outside Germany, I will bring my own QWERTZ keyboard and require them to install the German Keyboard. I don’t need a German UI. I have all programming related software in English, because its easier to google stuff.