• 13 Posts
  • 289 Comments
Joined 5 months ago
cake
Cake day: January 9th, 2026

help-circle
  • Maybe the problem is, that you try to learn and use everything at once. Rust is not easy and it has lot of stuff to learn and get good at. And compared to many languages, Rust has a few set of core features that makes it more complicated to understand and also you need to learn the basics before getting started. So just doing the exercises is not enough. My advice is to write simple programs with a focus of specific set of language features and what you want to accomplish, before doing the more advanced stuff.

    The difference to languages like C++ is, that Rust forces you to do the homework before running the program, not after. That is the reason why it looks to be “harder”, but I think this is one of the reasons why its so misunderstood. In example if you MUST think about all possible states, variables and errors in a program before it runs, then you have to put so much work for this. In the end, you did all the work and the program should theoretically better than if you did not have. Compare this to other languages, where you can run the program simply by ignoring errors, all states a program can be in and be done in short amount of time. That looks easy. But in reality you didn’t do all the work.







  • Germany here. Direct bank transfer is not a replacement for Steam Gift Cards I could buy in local stores. I would want to avoid bank transfer, credit cards or a third party service such as PayPal. My preferred way to buy games on Steam is going into a local shop, buy physical Steam Gift Card with cash from my hand and then rub the number, enter it in Steam to get money on my account. And there is nothing that can replace this workflow. Paysafe Cards were a thing in the past I used too, but I think they are no longer available as physical cards in Germany.














  • Python is designed as an easy language. Yet it is a fundemental important language in the IT, backbone of many Linux operating systems and servers. One could even say… a serious language.

    I personally wouldn’t care if a language is called “easy” or not. You should also look at what it is capable at its peak and where it is used most often, if it works for you. Pick the language that you think fits you the best. I wouldn’t call Zig as an easy language to get into, its still low level language.