Skip to main content

Pair Programming

Pair programming is one of the most important methodologies to develop software. Over the years it has been seen how it works and how it increases the productivity and efficiency of developers with this kind of software development. However, in some cases, the programmers resist the idea of working with other people due to not being familiar with this methodology, but when there has been proof of its effectiveness, it is easier to the developers to adopt this way of working.

Resultado de imagen para pair programming gif
Image taken of Google

Now we will talk about the main points to get an excellent dynamic of pair programming and how not to die trying.

  • Share everything. It will be a good experience if you and your peer try to share your ideas. Principally, this can help you to create more efficient and stronger code. 
  • Enhance your skills. Another important point is that you and your partner change roles continuously. Practicing this activity is important because it can enhance your programming skills.
  • Don't hit people. You should work with your peer making sure you are being respectful with each other and also respect each other's times. 
  • Leave your negative thoughts elsewhere. You shouldn't underestimate your work and your ideas. Working in pairs is an activity where you will have to share your ideas and respect the ideas of your other peer. 
  • Clean the code.  You should always try to clean your code and make it legible so your partner can have a better understanding of it. 
  • Work with egolessness.  Working with your partner with neither prejudice nor ego will have  a better impact on your projects.
These points could be the main difference between working in a terrific way or in a poor way. It is highly possible that you have many problems working in this way, but after some hours and projects you could get used to work in this form. 

Reference

William, L. & Kessler, R. (2000). AlI I really need to know about pair programming I learned in kindergartenCommunications of the ACM109–114. 

Comments

Popular posts from this blog

Language as the “Ultimate Weapon”

The novel of 1984 is one of my favorite book because it reflect a future that can be possible in this time. In the book we read so many reference about the reality, language, war, peace, ignorance and other importante topics that currently they continue causing important repercussion in our days. Besides, George Orwell mention us what type of weapons use the government to stop the opposition and how they control the reality through the telescreen and their message to all society.  In Language as the "Ultimate Weapon" tell us an analysis about the novel of George Orwell: 1984. Without a doubt the language take an importante role in a fiction 1984, however nowadays too. It possible that the governments don't try to control our language or try to create a new weapon through of the language, but it could be kindred to the programming languages. In this blog I don't make an analysis or an opinion about the novel 1984, but I want to make a reflection about programmin...

Roots of Lisp

Lisp is part of the construction of Clojure and the programming language that it took as a reference scheme. So it is important to know which are the roots of Lisp because we will know how and why the instruction were build and for what propose.  Firstly, we will talk about the seven primitive operators. These operators work to modify lists or to convert symbols in lists. They are called primitive for their easy way to convert symbols or lists and to create new result which are more suitable. However, this not the only advantages of a functional programming language as Lisp. We can create functions that after we could detonate for specific aplicables. It is unbelievable how Lisp works, for example, creating new functions with singular seven primitive operators could be a complex activity but in some cases the only limitation is our creativity of creating new functions.  The eval functions is another great examples of how we can create a complex function with only ...

About Clojure

In this podcast we listen to Rich Hickey, the creator of Clojure, talking about which were the main characteristics about it. Clojure is an important tool and programming language because it is a dynamic program language for JVM. This advantage allows Clojure to be adaptable for any host platform, concurrency, functional and based on Lisp. Although Lisp is a simple and elegant programming language, it is not known due to that it is studied individually, contrary to what we would think about this language.  Even with these particularities, Clojure keeps being a great tool to program in. For example, we can create programs that  are writing programs, we can handle a high level of function abstraction and we can benefit from its access to all Java libraries. It could be complicate coding everything with list but in Clojure, we also have data structures as vectors and maps. Clojure looks like a simple program in contrast to Java and its syntax, although the abstraction of Clo...