Search Results

0
votes

How to check for equals? (0 == i) or (i == 0)

You are right that placing the important component first helps readability, as readers tend to browse the left column primarily, and putting important information there helps ensure it will be noti …
9
votes

What are some funny loading statements to keep users amused?

Creating Time-Loop Inversion Field …
6
votes

How do you advance beyond being an ‘advanced’ programmer?

I don't see a mention of Functional Programming, or other paradigm shifts. While I haven't personally gone through the "Ah-ha!" that such a paradigm shift can give you, it makes sense that such a c …
8
votes

Do you prefer “if (var)” or “if (var != 0)”?

I would say that if you are comparing a true integer, then never do an implicit conversion to boolean, as it implies a different meaning to the variable. But then again that style is so pop …