Pair programming is an agile software development technique in which two programmers work together at one workstation. One, the driver, types in code while the other, the observer (or navigator), reviews each line of code as it is typed in. The two p…
By using ssh, you can share a tmux session, making pair programming much easier. We'll learn how to share a tmux session with another user. For one developer: tmux new-session -s pair For the other developer: tmux ls # list all the session tmux a -t…
作者Alistair Cockburn, Crystal Clear的7个成功要素,写得挺好. 敏捷方法的关注点,大家可以参考,太激动所以转载了. 原文:http://www.informit.com/articles/article.aspx?p=345009 Property 1. Frequent Delivery The single most important property of any project, large or small, agile or not, is that…
Did you ever have the feeling that adding people doesn't help in software development? Did you ever think about the reason? And do you have any idea to make a change? Traditional software engineering emphasizes on division of work by modules, values…
Trigger a Build whenever a change occurs. it can help us reduce assumptions on a projecvt by rebuilding software whenever a change occurs in a version control system. The value of CI: Reduce risks Defects are detected and fixed sooner Health of softw…