Don’t be afraid of asking questions at your next meetup

Whenever I go to a meetup, presentation, etc. there is one thing that has always surprised me. People are afraid of saying that they don’t know something. What usually happens Usually at the beginning of a presentation the speaker will ask the audience if they have any experience in the topic that he is about…

Continue reading

Do you like the ternary operator?

In case you don’t know what the ternary operator is and want a thorough explanation you can read this article. If you want a quick refresher, the ternary operator (?) is a very compact way to do an assignment that depends on an if-else statement. For example string result = “”; if (DoSomething()){ result =…

Continue reading