Join Notes

A batch of the best highlights from what Tristan's read, .

It does not seem appropriate for these political values to skew scientific discourse in this manner.

A Tapestry of Values

Kevin C. Elliott

Subscript functionality can be defined within a class, struct, or enum, or declared within a protocol as a requirement. To do this, we can define subscript (which is a reserved keyword that activates the required functionality) with input parameters and an output type: subscript(row: Int, column: Int) -> GridPosition This subscript definition works like a computed property, where get can be defined to allow you to access values through subscript and set can be defined to assign values using subscript:

Swift Cookbook

Keith Moon and Chris Barker

We want to structure our systems so that we muck with as little as possible when we update them with new or changed features. In an ideal system, we incorporate new features by extending the system, not by making modifications to existing code.

Clean Code

Robert C. Martin

...catch up on these, and many more highlights