See how a minor change to your commit message style can make you a better programmer.
Format: <type>(<scope>): <subject>
<scope> is optional
| # TCP port to bind to | |
| # Change to a high/odd port if this server is exposed to the internet directly | |
| Port 22 | |
| # Bind to all interfaces (change to specific interface if needed) | |
| ListenAddress 0.0.0.0 | |
| # Force SSHv2 Protocol | |
| Protocol 2 |
| // Quick-and-dirty parametric LEGO-compatible | |
| // bricks in OpenSCAD. | |
| // LEGO(R) is a trademark of the LEGO Group. | |
| // References: | |
| // * http://www.robertcailliau.eu/Lego/Dimensions/zMeasurements-en.xhtml | |
| // * http://nicjasno.com/forum/viewtopic.php?t=653 | |
| // Create (w*2,h*2) LEGO-compatible blocks. | |
| two_by_two(1,2); |