Explore >> Select a destination


You are here

lenholgate.com
| | blog.cleancoder.com
4.5 parsecs away

Travel
| | [AI summary] Robert C. Martin recounts the history and architecture of his 1984 Craft Dispatch System, drawing parallels between its microservice-like design and modern software engineering practices.
| | 8thlight.com
4.3 parsecs away

Travel
| | [AI summary] The article by Robert C. Martin (Uncle Bob) discusses the strategic use of mock objects in software testing, advocating for a balanced approach where mocks are used sparingly across architectural boundaries to improve test speed and isolation while avoiding design damage.
| | blog.cleancoder.com
4.4 parsecs away

Travel
| | [AI summary] Robert C. Martin argues that mocking should be used sparingly, written manually, and only across significant architectural boundaries to balance test speed, reliability, and good software design.
| | blog.sylver.dev
26.7 parsecs away

Travel
| As we saw in the opening post, SQLite stores metadata about tables in a special "schema table" starting on page 1. We've been reading records from this table to list the tables in the current database, but before we can start evaluating SQL queries a...