Tips

Error Handling

Posted on:

Some of the biggest things that bug me as a user of software is how they handle errors. Apple has been known for silently handling errors and not telling users that something went wrong, this is bad. Another example of bad user handling is how Git Kraken handles theirs, they […]

Tips

Code Style Tips

Posted on:

When you write if/else statements please put your else block on a new line not on the same line. The following doesn’t work with certain editor for code block collapsing. Do the following instead. OR The second way allows those of us who use code collapse features inside of editors […]