• 0 Posts
  • 14 Comments
Joined 1 year ago
cake
Cake day: July 13th, 2023

help-circle


  • For windows you dont need to buy it, you can activate it using microsofts own tools, its on github (dont remember its name right now.)

    As for linux, i would recommend openSUSE Tumbleweed, it is fresh, and the best part about it is that whenever you update the system, it creates a snapshot, so if the update had some kind of undesired sideeffects, you can just startup the old version. (These snapshots only effect the system’s packages, your apps will keep their state iirc. My brother uses tumbleweed and he is very content with it.)


  • Even if you agree with something, you can play the ‘devils advocate’ and say what is wrong. You need to look at both sides.

    I for example despise Apple. But i gotta admit their phones are pretty good if you just want a smartphone. Or if everything you have is apple, then the ecosystem is really nice.

    Try to understand the other side, and be the opposing person. So these conversations can happen.








  • Absolutely agree with this one. Write down the problem and then the connections you made and the task that made you understand it.

    For me it was interfaces (c# in this context). Like when do you even need them. How could an interface even be an argument for a function??

    Then a problem came up, where a List or an Array could be a parameter in a function, but their length/count is not accessed the same way (still c#.) After this it clicked, that with interfaces you dont care whether it is a car or a cat, even a dog, if it can bark, it can be passed as a parameter into this function, and inside the function we only use these interfaced functions.