revise to have both screen hero and team viewer pair programming sections
This commit is contained in:
@ -29,16 +29,46 @@ exports.jqueryExercises = function(req, res) {
|
||||
|
||||
exports.programmerInterviewQuestionsApp = function(req, res) {
|
||||
res.render('programmer-interview-questions-app', {
|
||||
title: 'programmer-interview-questions-app'
|
||||
title: 'Programmer Interview Questions App'
|
||||
});
|
||||
}
|
||||
|
||||
exports.textBasedAdventureTutorial = function(req, res) {
|
||||
res.render('text-based-adventure-tutorial-app', {
|
||||
title: 'text-based-adventure-tutorial-app'
|
||||
exports.pairProgramWithTeamViewer = function(req, res) {
|
||||
res.render('pair-program-with-team-viewer', {
|
||||
title: 'Challenge: Pair Program with Team Viewer',
|
||||
name: "Pair Program with Team Viewer",
|
||||
video: '',
|
||||
time: 30,
|
||||
steps: ["In the spirit of keeping Free Code Camp 100% free, we've created directions for using a totally free pair programming tool called Team Viewer. It's not as user-friendly as Screen Hero, but it gets the job done (and works on Linux!).",
|
||||
"Go to <a href='http://www.teamviewer.com/en/index.aspx' target='_blank'>http://www.teamviewer.com/en/index.aspx</a> and download Team Viewer. Be sure not to download the beta version, which isn't compatible with the current stable version everyone else will be using.",
|
||||
"Install it and launch it",
|
||||
"Go to the chat room and ask if anyone wants to pair program with you on a CoderByte challenge.",
|
||||
"If someone is interested, they will be your \"pair\" - the person you pair programming with.",
|
||||
"<strong>First, you will pair program on your pair's computer.</strong> Ask your pair for his or her Team Viewer ID and password.",
|
||||
"Enter this id, and then password, to start the session.",
|
||||
"Once the Team Viewer session starts, look at the the top of the screen. You will see 6 buttons. If you hover your cursor over the buttons, they will slide down so that you can read them. Click the audio/video button. This will allow you to turn on Voice Over IP and unmute your microphone, opening up your voice channel.",
|
||||
"Note that you can now control your pair's keyboard and mouse, enabling you to step in and code yourself on your pair's computer when desired",
|
||||
"Now you can click the X to end the pair programming session.",
|
||||
"<strong>Next, you will pair program on your computer.</strong> Copy your Team Viewer ID and paste it into the private chat, so that your pair can use it to connect with you.",
|
||||
"You will need to share your randomly generated password with your pair as well.",
|
||||
"Once your pair connects, you will see a Team Viewer side menu. ",
|
||||
"Click the audio button that drops down.",
|
||||
"Click the headset icon and choose Voice over IP",
|
||||
"Click the microphone button to unmute your microphone. Once your pair does the same, you two will have an open voice channel.",
|
||||
"Now you can click the X to end the pair programming session.",
|
||||
"Now it's time to tackle CoderByte.",
|
||||
"Create a CoderByte account at <a href='http://coderbyte.com/sl/' target='_blank'>http://coderbyte.com/sl/</a>",
|
||||
"Now go to <a href='http://coderbyte.com/CodingArea/Challenges/#easyChals' target='_blank'>http://coderbyte.com/CodingArea/Challenges/#easyChals</a> and start working through Coderbyte's easy algorithm scripting challenges using JavaScript.",
|
||||
"When you are finished pair programming, click the X to end the session.",
|
||||
"Congratulations! You have completed your first pair programming session.",
|
||||
"You should pair program with different Code Campers until you've completed all the Easy, Medium and Hard CoderByte challenges. This is a big time investment, but the JavaScript practice you'll get, along with the scripting and algorithm experience, are well worth it!",
|
||||
"You can complete CoderByte problems while you continue to work through Free Code Camp's challenges.",
|
||||
"Be sure to pair program on these challenges, and remember to apply the RSAP methodology.",
|
||||
"Click the button below to return to the Pair Programming challenge, then mark it complete."],
|
||||
cc: req.user.challengesHash
|
||||
|
||||
});
|
||||
}
|
||||
|
||||
exports.about = function(req, res) {
|
||||
res.render('about', {
|
||||
title: 'Who We Are'
|
||||
|
Reference in New Issue
Block a user