How to document code
Documentation is secondary to good design. Well-designed code needs less documentation; it already expresses important ideas using the features of […]
Documentation is secondary to good design. Well-designed code needs less documentation; it already expresses important ideas using the features of […]
Creating objects can sometimes be very expensive and lead to performance bottlenecks. A straightforward solution is to avoid recreating objects
Over the last few days we have been investigating making simple grids simpler to create, especially from code. These grids
We turned 1 yesterday, at least we did on paper. We were busy some time before that, but our official
The layered grid is a very generic type of grid. It allows you to stack a bunch of grids –
We have used grids in 3D space in a variety of ways before. Mostly, these come down to mapping a
Today I implemented a custom grid that is useful for 1D structures such as the spiral above. Although an array
Applications running on iOS cannot generate and dynamically execute code – that means no JIT (just-in-time) compiled code can run
A grid coloring is a way to assign a color to each cell in a grid. Here we will only