",
- "
We have 3 official chat rooms:
",
+ "
We have 4 official chat rooms:
",
"
",
- " - Free Code Camp - a friendly place where you can hang out and chat
",
- " - Help - the best place to get help from your fellow campers
",
- " - LetsPair - the best room to find a fellow campers to pair program with
",
+ " - Free Code Camp - a friendly place where you can hang out and chat
",
+ " - Help - the best place to get help from your fellow campers
",
+ " - LetsPair - the best room to find fellow campers to pair program with using Screen Hero
",
+ " - TeamViewer - the best room to find fellow campers who use Linux and pair with using Team Viewer
",
"
",
"
We also have language-specific chat rooms:
",
"
",
- " - Arabic
",
- " - Chinese
",
- " - Dutch
",
- " - French
",
- " - German
",
- " - Portugues
",
- " - Russian
",
- " - Spanish
",
+ " - Arabic
",
+ " - Chinese
",
+ " - Dutch
",
+ " - French
",
+ " - German
",
+ " - Portugues
",
+ " - Russian
",
+ " - Spanish
",
"
",
"
",
"
If you think we should add a chat room, please message @quincylarson in Gitter.
",
diff --git a/server/boot/randomAPIs.js b/server/boot/randomAPIs.js
index 35e892d376..987a488d86 100644
--- a/server/boot/randomAPIs.js
+++ b/server/boot/randomAPIs.js
@@ -28,10 +28,8 @@ module.exports = function(app) {
router.get('/nonprofits-form', nonprofitsForm);
router.get('/our-sponsors', sponsors);
router.get('/jobs-form', jobsForm);
- router.get('/submit-cat-photo', catPhotoSubmit);
router.get('/unsubscribe/:email', unsubscribe);
router.get('/unsubscribed', unsubscribed);
- router.get('/cats.json', getCats);
app.use(router);
@@ -364,26 +362,4 @@ module.exports = function(app) {
}
);
}
-
- function getCats(req, res) {
- res.send(
- [
- {
- 'name': 'cute',
- 'imageLink': 'https://encrypted-tbn3.gstatic.com/images' +
- '?q=tbn:ANd9GcRaP1ecF2jerISkdhjr4R9yM9-8ClUy-TA36MnDiFBukd5IvEME0g'
- },
- {
- 'name': 'grumpy',
- 'imageLink': 'http://cdn.grumpycats.com/wp-content/uploads/' +
- '2012/09/GC-Gravatar-copy.png'
- },
- {
- 'name': 'mischievous',
- 'imageLink': 'http://www.kittenspet.com/wp-content' +
- '/uploads/2012/08/cat_with_funny_face_3-200x200.jpg'
- }
- ]
- );
- }
};