• 0 Posts
  • 24 Comments
Joined 1 year ago
cake
Cake day: June 16th, 2023

help-circle
  • Turkish middle school, high school, and university exams are very serious.

    Basically everyone takes the same set of long exams (with a few additions you can add to your standard exam sets, for specialized schools) and when the results come out, you are compared to all other students in the nation.

    Like, think global leaderboards.

    The best universities will outright reject you if your ranking isn’t high enough.

    It’s very intense and cut-throat; so much so that - when I was a young’un growing up in Turkey - I just opted to try my hand at the SATs instead. Ended up going to school abroad.

    The SATs were so easy, compared to the exam prep we did in our Turkish classes, it almost felt like a joke. Though, college tuition costs definitely made sure I wasn’t the one with the last laugh.














  • Nope, was added to dot Net after the fact. Normally you declare each type by hand, e.g.

    ArrayList<int> myCoolList = new ArrayList<int>();

    vs

    var myCoolList = new ArrayList<int>();

    The second example is why the keyword was added, but now imagine you have a function call returning an unknown type, and then things will start to get super funky.

    E.g.

    var myCoolBook = BuildBookData(input);

    …one step forward and then the same step back 😂 (disclaimer: I do actually like C#, though)