Skip to the content.

Read: 04 - HTML Links, CSS Layout, JS Functions

Summary for some of the Duckett HTML book chapters:

Duckett HTML book

Chapter 15: “Layout”:

Summary for some Duckett JS book chapters:

Duckett JS book

Chapter 3 (first part): “Functions, Methods, and Objects”:


Summary for Article:

How does pair programming work?

Pair programming generally has two roles: the Driver and the Navigator.

  1. The Driver: is the programmer who is typing and the only one whose hands are on the keyboard. Handling the “mechanics” of coding, the Driver manages the text editor switching files, version control, and—of course writing—code.

  2. The Navigator: uses their words to guide the Driver but does not provide any direct input to the computer. The Navigator thinks about the big picture, what comes next, how an algorithm might be converted in to code, while scanning for typos or bugs. The Navigator might also utilize their computer as a second screen to look up solutions and documentation, but should not be writing any code.

Why pair program?

  1. Greater efficiency: when two people focus on the same code base, it is easier to catch mistakes in the making. When coming up with ideas and discussing solutions out loud, two programmers may come to a solution faster than one programmer on their own. Also, when the pair is stuck, both programmers can research the problem and reach a solution faster.

  2. Engaged collaboration: when two programmers focus on the same code, the experience is more engaging and both programmers are more focused than if they were working alone.

  3. Learning from fellow students: everyone has a different approach to problem solving; working with a teammate can expose developers to techniques they otherwise would not have thought of. If one developer has a unique approach to a specific problem, pair programming exposes the other developer to a new solution.

  4. Social skills: pair programming is great for improving social skills. Pair programming not only improves programming skills, but can also help programmers develop their interpersonal skills.

  5. Job interview readiness: for most roles, the ability to work with and learn from others and stellar communication skills are as (or more!) important to a company than specific technical skills. Pair programming strengthens all of those skills.

  6. Work environment readiness: many companies that utilize pair programing expect to train fresh hires from CS-degree programs on how they operate to actually deliver a product. Code Fellows graduates who are already familiar with how pairing works can hit the ground running at a new job, with one less hurdle to overcome.

for more details plz visit the website: The website