This is the rendered collections of notes by me, Lex Toumbourou.
You can find the source on the GitHub project.
The notes are collecting using my interpretation of the Zettelkasten method.
More
You can find the source on the GitHub project.
The notes are collecting using my interpretation of the Zettelkasten method.
More
-
-
CAP Theorem
Also known as Brewer's theorem, after computer scientist Eric Brewer, is the assertion that a distributed data store can't provide 3 of the following capabilities …
-
-
Unit tests
An automated test which verifies a single unit of behaviour, runs quickly and in isolation
-
-
Software Entropy
Refers to phenemona that as a project increases in size, ability to add new features and progress decreases.
References:
- [[Unit Testing Principles, Practices and Patterns …
-
Test Coverage Metrics
Metrics that answer the question : how much of our code is executed by our tests?
-
-
Multiple Interitance
Multiple interitance refers to an object that inheritants from multiple parents. In Lua, this can be acheived by using Metatables with a metamethod
__index
which …