An Introduction

Sunday, February 07 2016 code-gardening

Code Gardening is the practice of making small improvements as you see them while you are working, even if they are not directly connected to the feature or defect you’re currently addressing.

Read more »

Helper Methods

Sunday, February 21 2016 code-gardening

Create helper methods to capture key concepts, even if they are only one line. Giving these concepts a meaningful name helps people reason about the rest of the code.

Read more »

Use Standard Library Features

Sunday, February 28 2016 code-gardening

Objects and methods in the standard libraries doesn’t need to be written nor debugged.

Read more »