Kirsten explains the motivating factors behind why we moved to Agile in 2010 following the realisation that our biggest pain points were the same reasons why the Agile manifesto was conceived.
Words from the studio
Whether it's tech, Agile, design or updates on our latest project work, you'll find it all here.
Code Kata: simple sorting methods – Bubble Sort
Bubble sort, is a simple sorting algorithm that repeatedly steps through the list to be sorted, compares each pair of adjacent items and swaps them if they are in the wrong order. The pass through the list is repeated until no swaps are needed, which indicates that the list is sorted. Kata Write a program … Continued