• 0 Posts
  • 59 Comments
Joined 2 years ago
cake
Cake day: June 22nd, 2023

help-circle








  • Linux mint doesn’t require the terminal for almost anything. If it is required anywhere, there will be step-by-step instructions, but even then there is likely a better solution specifically for linux mint that doesn’t require the terminal.

    Use the software manager and update manager and you’re set. Don’t install applications from the terminal, it will be easier to let the manager applications keep track of it all.

    For super advanced stuff, sure, you might want the terminal, but you don’t need these things. If anything, it will be a good opportunity to learn.

    Get a USB, put linux mint on it and boot from it just to try out. It can run without being installed on your computer.










  • Yeah, a name should describe what it is or does, so if you have two turtles, and let’s say turtle1 wants to shit on turtle2’s lawn, you could name them shittingTurtle and victimTurtle. If the name alone tells you what its purpose is, that saves a lot of time for people looking at your code.

    Is_Turtle is not a bad variable name because it tells you it is a Boolean with “is” and that the Boolean tells you whether something is a turtle or not.

    Also, depending on the language, I suggest either camelCase or snake_case naming of variables. PascalCase is usually for defining classes or in case of C#, methods.