diff --git a/config/passport.js b/config/passport.js index 197bbfb0f6..a2cc694e33 100644 --- a/config/passport.js +++ b/config/passport.js @@ -67,7 +67,7 @@ passport.use(new FacebookStrategy(secrets.facebook, function(req, accessToken, r user.tokens.push({ kind: 'facebook', accessToken: accessToken }); user.profile.name = user.profile.name || profile.displayName; user.profile.gender = user.profile.gender || profile._json.gender; - user.profile.picture = user.profile.picture || 'https://graph.facebook.com/' + profile.id + '/picture?type=large'; + user.profile.picture = user.profile.picture || 'https://s3.amazonaws.com/freecodecamp/favicons/apple-touch-icon-180x180.png'; user.save(function(err) { req.flash('info', { msg: 'Facebook account has been linked.' }); done(err, user); diff --git a/controllers/resources.js b/controllers/resources.js index 63a9cd1e0f..9a95f26eca 100644 --- a/controllers/resources.js +++ b/controllers/resources.js @@ -38,7 +38,6 @@ module.exports = { debug('User err: ', err); next(err); } - console.log('user count', users.length); Challenge.find({}, function (err, challenges) { if (err) { debug('User err: ', err); diff --git a/controllers/user.js b/controllers/user.js index 569f418e33..cbdcc03d0b 100644 --- a/controllers/user.js +++ b/controllers/user.js @@ -106,7 +106,8 @@ exports.postEmailSignup = function(req, res, next) { email: req.body.email.trim(), password: req.body.password, profile : { - username: req.body.username.trim() + username: req.body.username.trim(), + picture: 'https://s3.amazonaws.com/freecodecamp/favicons/apple-touch-icon-180x180.png' } }); diff --git a/models/Story.js b/models/Story.js index 76d95471a5..59a455b63d 100644 --- a/models/Story.js +++ b/models/Story.js @@ -41,11 +41,6 @@ var storySchema = new mongoose.Schema({ } }); -storySchema.pre('save', function(next) { - console.log('pre save test'); - next(); -}); - module.exports = mongoose.model('Story', storySchema); /* diff --git a/public/js/main.js b/public/js/main.js index 22c2f0751c..64a90ce2d2 100644 --- a/public/js/main.js +++ b/public/js/main.js @@ -143,8 +143,6 @@ $(document).ready(function() { .done(function (data, textStatus, xhr) { $('#storyRank').text(data.rank); }); - } else { - console.log('Can\'t upvote because you\'ve already upvoted'); } }; $('#upvote').on('click', upvoteHandler); @@ -154,7 +152,6 @@ $(document).ready(function() { var link = $('#story-url').val(); var headline = $('#story-title').val(); var description = $('#description-box').val(); - console.log(link, headline, description); var userDataForUpvote = { upVotedBy: user._id, upVotedByUsername: user.profile.username @@ -193,7 +190,6 @@ $(document).ready(function() { var commentSubmitButtonHandler = function commentSubmitButtonHandler() { $('comment-button').unbind('click'); var data = $('#comment-box').val(); - console.log('comment clicked'); $('#comment-button').attr('disabled', 'disabled'); $.post('/stories/comment/', diff --git a/seed_data/seed.js b/seed_data/seed.js index cbf537efa9..662ce46063 100644 --- a/seed_data/seed.js +++ b/seed_data/seed.js @@ -1,8 +1,6 @@ require('dotenv').load(); var Challenge = require('../models/Challenge.js'), Bonfire = require('../models/Bonfire.js'), - Comment = require('../models/Comment.js'), - Story = require('../models/Story.js'), Courseware = require('../models/Courseware.js'), mongoose = require('mongoose'), secrets = require('../config/secrets'), @@ -15,7 +13,7 @@ var Challenge = require('../models/Challenge.js'), mongoose.connect(secrets.db); var counter = 0; -var offerings = 5; +var offerings = 3; var CompletionMonitor = function() { counter++; @@ -78,37 +76,3 @@ Courseware.remove({}, function(err, data) { }); console.log('coursewares'); }); - -Story.remove({}, function(err, data) { - if (err) { - console.error(err); - } else { - console.log('Deleted ', data); - } - Story.create(stories, function(err, data) { - if (err) { - console.log(err); - } else { - console.log('Saved ', data); - } - CompletionMonitor(); - }); - console.log('stories'); -}); - -Comment.remove({}, function(err, data) { - if (err) { - console.error(err); - } else { - console.log('Deleted ', data); - } - Comment.create(comments, function(err, data) { - if (err) { - console.log(err); - } else { - console.log('Saved ', data); - } - CompletionMonitor(); - }); - console.log('stories'); -}); \ No newline at end of file diff --git a/seed_data/stories.json b/seed_data/stories.json deleted file mode 100644 index b16ac0d19b..0000000000 --- a/seed_data/stories.json +++ /dev/null @@ -1,3082 +0,0 @@ -[ - { - "headline": "Learn to Code and Become a Software Engineer | Free Code Camp", - "link": "http://www.freecodecamp.com", - "description": "The website we're building these \"forums\" for!", - "author": { - "username": "terakilobyte", - "userId": "54f6262394f355ce1d969d9f", - "picture": "https://pbs.twimg.com/profile_images/2563218307/67rpczkpeyo1xem5vto3.gif" - }, - "storyLink": "learn to code and become a software engineer free code camp", - "image": "", - "comments": [ - ], - "upVotes": [ - { - "upVotedByUsername": "terakilobyte", - "upVotedBy": "54f6262394f355ce1d969d9f" - } - ], - "rank": 1, - "timePosted": 1425806926395.0 - }, - { - "headline": "Learn to Code and Become a Software Engineer | Free Code Camp", - "link": "http://www.freecodecamp.com", - "description": "The website we're building these \"forums\" for!", - "author": { - "username": "terakilobyte", - "userId": "54f6262394f355ce1d969d9f", - "picture": "https://pbs.twimg.com/profile_images/2563218307/67rpczkpeyo1xem5vto3.gif" - }, - "storyLink": "learn to code and become a software engineer free code camp", - "image": "", - "comments": [ - ], - "upVotes": [ - { - "upVotedByUsername": "terakilobyte", - "upVotedBy": "54f6262394f355ce1d969d9f" - } - ], - "rank": 1, - "timePosted": 1425806926395.0 - }, - { - "headline": "Learn to Code and Become a Software Engineer | Free Code Camp", - "link": "http://www.freecodecamp.com", - "description": "The website we're building these \"forums\" for!", - "author": { - "username": "terakilobyte", - "userId": "54f6262394f355ce1d969d9f", - "picture": "https://pbs.twimg.com/profile_images/2563218307/67rpczkpeyo1xem5vto3.gif" - }, - "storyLink": "learn to code and become a software engineer free code camp", - "image": "", - "comments": [ - ], - "upVotes": [ - { - "upVotedByUsername": "terakilobyte", - "upVotedBy": "54f6262394f355ce1d969d9f" - } - ], - "rank": 1, - "timePosted": 1425806926395.0 - }, - { - "headline": "Learn to Code and Become a Software Engineer | Free Code Camp", - "link": "http://www.freecodecamp.com", - "description": "The website we're building these \"forums\" for!", - "author": { - "username": "terakilobyte", - "userId": "54f6262394f355ce1d969d9f", - "picture": "https://pbs.twimg.com/profile_images/2563218307/67rpczkpeyo1xem5vto3.gif" - }, - "storyLink": "learn to code and become a software engineer free code camp", - "image": "", - "comments": [ - ], - "upVotes": [ - { - "upVotedByUsername": "terakilobyte", - "upVotedBy": "54f6262394f355ce1d969d9f" - } - ], - "rank": 1, - "timePosted": 1425806926395.0 - }, - { - "headline": "Learn to Code and Become a Software Engineer | Free Code Camp", - "link": "http://www.freecodecamp.com", - "description": "The website we're building these \"forums\" for!", - "author": { - "username": "terakilobyte", - "userId": "54f6262394f355ce1d969d9f", - "picture": "https://pbs.twimg.com/profile_images/2563218307/67rpczkpeyo1xem5vto3.gif" - }, - "storyLink": "learn to code and become a software engineer free code camp", - "image": "", - "comments": [ - ], - "upVotes": [ - { - "upVotedByUsername": "terakilobyte", - "upVotedBy": "54f6262394f355ce1d969d9f" - } - ], - "rank": 1, - "timePosted": 1425806926395.0 - }, - { - "headline": "Learn to Code and Become a Software Engineer | Free Code Camp", - "link": "http://www.freecodecamp.com", - "description": "The website we're building these \"forums\" for!", - "author": { - "username": "terakilobyte", - "userId": "54f6262394f355ce1d969d9f", - "picture": "https://pbs.twimg.com/profile_images/2563218307/67rpczkpeyo1xem5vto3.gif" - }, - "storyLink": "learn to code and become a software engineer free code camp", - "image": "", - "comments": [ - ], - "upVotes": [ - { - "upVotedByUsername": "terakilobyte", - "upVotedBy": "54f6262394f355ce1d969d9f" - } - ], - "rank": 1, - "timePosted": 1425806926395.0 - }, - { - "headline": "Learn to Code and Become a Software Engineer | Free Code Camp", - "link": "http://www.freecodecamp.com", - "description": "The website we're building these \"forums\" for!", - "author": { - "username": "terakilobyte", - "userId": "54f6262394f355ce1d969d9f", - "picture": "https://pbs.twimg.com/profile_images/2563218307/67rpczkpeyo1xem5vto3.gif" - }, - "storyLink": "learn to code and become a software engineer free code camp", - "image": "", - "comments": [ - ], - "upVotes": [ - { - "upVotedByUsername": "terakilobyte", - "upVotedBy": "54f6262394f355ce1d969d9f" - } - ], - "rank": 1, - "timePosted": 1425806926395.0 - }, - { - "headline": "Learn to Code and Become a Software Engineer | Free Code Camp", - "link": "http://www.freecodecamp.com", - "description": "The website we're building these \"forums\" for!", - "author": { - "username": "terakilobyte", - "userId": "54f6262394f355ce1d969d9f", - "picture": "https://pbs.twimg.com/profile_images/2563218307/67rpczkpeyo1xem5vto3.gif" - }, - "storyLink": "learn to code and become a software engineer free code camp", - "image": "", - "comments": [ - ], - "upVotes": [ - { - "upVotedByUsername": "terakilobyte", - "upVotedBy": "54f6262394f355ce1d969d9f" - } - ], - "rank": 1, - "timePosted": 1425806926395.0 - }, - { - "headline": "Learn to Code and Become a Software Engineer | Free Code Camp", - "link": "http://www.freecodecamp.com", - "description": "The website we're building these \"forums\" for!", - "author": { - "username": "terakilobyte", - "userId": "54f6262394f355ce1d969d9f", - "picture": "https://pbs.twimg.com/profile_images/2563218307/67rpczkpeyo1xem5vto3.gif" - }, - "storyLink": "learn to code and become a software engineer free code camp", - "image": "", - "comments": [ - ], - "upVotes": [ - { - "upVotedByUsername": "terakilobyte", - "upVotedBy": "54f6262394f355ce1d969d9f" - } - ], - "rank": 1, - "timePosted": 1425806926395.0 - }, - { - "headline": "Learn to Code and Become a Software Engineer | Free Code Camp", - "link": "http://www.freecodecamp.com", - "description": "The website we're building these \"forums\" for!", - "author": { - "username": "terakilobyte", - "userId": "54f6262394f355ce1d969d9f", - "picture": "https://pbs.twimg.com/profile_images/2563218307/67rpczkpeyo1xem5vto3.gif" - }, - "storyLink": "learn to code and become a software engineer free code camp", - "image": "", - "comments": [ - ], - "upVotes": [ - { - "upVotedByUsername": "terakilobyte", - "upVotedBy": "54f6262394f355ce1d969d9f" - } - ], - "rank": 1, - "timePosted": 1425806926395.0 - }, - { - "headline": "Learn to Code and Become a Software Engineer | Free Code Camp", - "link": "http://www.freecodecamp.com", - "description": "The website we're building these \"forums\" for!", - "author": { - "username": "terakilobyte", - "userId": "54f6262394f355ce1d969d9f", - "picture": "https://pbs.twimg.com/profile_images/2563218307/67rpczkpeyo1xem5vto3.gif" - }, - "storyLink": "learn to code and become a software engineer free code camp", - "image": "", - "comments": [ - ], - "upVotes": [ - { - "upVotedByUsername": "terakilobyte", - "upVotedBy": "54f6262394f355ce1d969d9f" - } - ], - "rank": 1, - "timePosted": 1425806926395.0 - }, - { - "headline": "Learn to Code and Become a Software Engineer | Free Code Camp", - "link": "http://www.freecodecamp.com", - "description": "The website we're building these \"forums\" for!", - "author": { - "username": "terakilobyte", - "userId": "54f6262394f355ce1d969d9f", - "picture": "https://pbs.twimg.com/profile_images/2563218307/67rpczkpeyo1xem5vto3.gif" - }, - "storyLink": "learn to code and become a software engineer free code camp", - "image": "", - "comments": [ - ], - "upVotes": [ - { - "upVotedByUsername": "terakilobyte", - "upVotedBy": "54f6262394f355ce1d969d9f" - } - ], - "rank": 1, - "timePosted": 1425806926395.0 - }, - { - "headline": "Learn to Code and Become a Software Engineer | Free Code Camp", - "link": "http://www.freecodecamp.com", - "description": "The website we're building these \"forums\" for!", - "author": { - "username": "terakilobyte", - "userId": "54f6262394f355ce1d969d9f", - "picture": "https://pbs.twimg.com/profile_images/2563218307/67rpczkpeyo1xem5vto3.gif" - }, - "storyLink": "learn to code and become a software engineer free code camp", - "image": "", - "comments": [ - ], - "upVotes": [ - { - "upVotedByUsername": "terakilobyte", - "upVotedBy": "54f6262394f355ce1d969d9f" - } - ], - "rank": 1, - "timePosted": 1425806926395.0 - }, - { - "headline": "Learn to Code and Become a Software Engineer | Free Code Camp", - "link": "http://www.freecodecamp.com", - "description": "The website we're building these \"forums\" for!", - "author": { - "username": "terakilobyte", - "userId": "54f6262394f355ce1d969d9f", - "picture": "https://pbs.twimg.com/profile_images/2563218307/67rpczkpeyo1xem5vto3.gif" - }, - "storyLink": "learn to code and become a software engineer free code camp", - "image": "", - "comments": [ - ], - "upVotes": [ - { - "upVotedByUsername": "terakilobyte", - "upVotedBy": "54f6262394f355ce1d969d9f" - } - ], - "rank": 1, - "timePosted": 1425806926395.0 - }, - { - "headline": "Learn to Code and Become a Software Engineer | Free Code Camp", - "link": "http://www.freecodecamp.com", - "description": "The website we're building these \"forums\" for!", - "author": { - "username": "terakilobyte", - "userId": "54f6262394f355ce1d969d9f", - "picture": "https://pbs.twimg.com/profile_images/2563218307/67rpczkpeyo1xem5vto3.gif" - }, - "storyLink": "learn to code and become a software engineer free code camp", - "image": "", - "comments": [ - ], - "upVotes": [ - { - "upVotedByUsername": "terakilobyte", - "upVotedBy": "54f6262394f355ce1d969d9f" - } - ], - "rank": 1, - "timePosted": 1425806926395.0 - }, - { - "headline": "Learn to Code and Become a Software Engineer | Free Code Camp", - "link": "http://www.freecodecamp.com", - "description": "The website we're building these \"forums\" for!", - "author": { - "username": "terakilobyte", - "userId": "54f6262394f355ce1d969d9f", - "picture": "https://pbs.twimg.com/profile_images/2563218307/67rpczkpeyo1xem5vto3.gif" - }, - "storyLink": "learn to code and become a software engineer free code camp", - "image": "", - "comments": [ - ], - "upVotes": [ - { - "upVotedByUsername": "terakilobyte", - "upVotedBy": "54f6262394f355ce1d969d9f" - } - ], - "rank": 1, - "timePosted": 1425806926395.0 - }, - { - "headline": "Learn to Code and Become a Software Engineer | Free Code Camp", - "link": "http://www.freecodecamp.com", - "description": "The website we're building these \"forums\" for!", - "author": { - "username": "terakilobyte", - "userId": "54f6262394f355ce1d969d9f", - "picture": "https://pbs.twimg.com/profile_images/2563218307/67rpczkpeyo1xem5vto3.gif" - }, - "storyLink": "learn to code and become a software engineer free code camp", - "image": "", - "comments": [ - ], - "upVotes": [ - { - "upVotedByUsername": "terakilobyte", - "upVotedBy": "54f6262394f355ce1d969d9f" - } - ], - "rank": 1, - "timePosted": 1425806926395.0 - }, - { - "headline": "Learn to Code and Become a Software Engineer | Free Code Camp", - "link": "http://www.freecodecamp.com", - "description": "The website we're building these \"forums\" for!", - "author": { - "username": "terakilobyte", - "userId": "54f6262394f355ce1d969d9f", - "picture": "https://pbs.twimg.com/profile_images/2563218307/67rpczkpeyo1xem5vto3.gif" - }, - "storyLink": "learn to code and become a software engineer free code camp", - "image": "", - "comments": [ - ], - "upVotes": [ - { - "upVotedByUsername": "terakilobyte", - "upVotedBy": "54f6262394f355ce1d969d9f" - } - ], - "rank": 1, - "timePosted": 1425806926395.0 - }, - { - "headline": "Learn to Code and Become a Software Engineer | Free Code Camp", - "link": "http://www.freecodecamp.com", - "description": "The website we're building these \"forums\" for!", - "author": { - "username": "terakilobyte", - "userId": "54f6262394f355ce1d969d9f", - "picture": "https://pbs.twimg.com/profile_images/2563218307/67rpczkpeyo1xem5vto3.gif" - }, - "storyLink": "learn to code and become a software engineer free code camp", - "image": "", - "comments": [ - ], - "upVotes": [ - { - "upVotedByUsername": "terakilobyte", - "upVotedBy": "54f6262394f355ce1d969d9f" - } - ], - "rank": 1, - "timePosted": 1425806926395.0 - }, - { - "headline": "Learn to Code and Become a Software Engineer | Free Code Camp", - "link": "http://www.freecodecamp.com", - "description": "The website we're building these \"forums\" for!", - "author": { - "username": "terakilobyte", - "userId": "54f6262394f355ce1d969d9f", - "picture": "https://pbs.twimg.com/profile_images/2563218307/67rpczkpeyo1xem5vto3.gif" - }, - "storyLink": "learn to code and become a software engineer free code camp", - "image": "", - "comments": [ - ], - "upVotes": [ - { - "upVotedByUsername": "terakilobyte", - "upVotedBy": "54f6262394f355ce1d969d9f" - } - ], - "rank": 1, - "timePosted": 1425806926395.0 - }, - { - "headline": "Learn to Code and Become a Software Engineer | Free Code Camp", - "link": "http://www.freecodecamp.com", - "description": "The website we're building these \"forums\" for!", - "author": { - "username": "terakilobyte", - "userId": "54f6262394f355ce1d969d9f", - "picture": "https://pbs.twimg.com/profile_images/2563218307/67rpczkpeyo1xem5vto3.gif" - }, - "storyLink": "learn to code and become a software engineer free code camp", - "image": "", - "comments": [ - ], - "upVotes": [ - { - "upVotedByUsername": "terakilobyte", - "upVotedBy": "54f6262394f355ce1d969d9f" - } - ], - "rank": 1, - "timePosted": 1425806926395.0 - }, - { - "headline": "Learn to Code and Become a Software Engineer | Free Code Camp", - "link": "http://www.freecodecamp.com", - "description": "The website we're building these \"forums\" for!", - "author": { - "username": "terakilobyte", - "userId": "54f6262394f355ce1d969d9f", - "picture": "https://pbs.twimg.com/profile_images/2563218307/67rpczkpeyo1xem5vto3.gif" - }, - "storyLink": "learn to code and become a software engineer free code camp", - "image": "", - "comments": [ - ], - "upVotes": [ - { - "upVotedByUsername": "terakilobyte", - "upVotedBy": "54f6262394f355ce1d969d9f" - } - ], - "rank": 1, - "timePosted": 1425806926395.0 - }, - { - "headline": "Learn to Code and Become a Software Engineer | Free Code Camp", - "link": "http://www.freecodecamp.com", - "description": "The website we're building these \"forums\" for!", - "author": { - "username": "terakilobyte", - "userId": "54f6262394f355ce1d969d9f", - "picture": "https://pbs.twimg.com/profile_images/2563218307/67rpczkpeyo1xem5vto3.gif" - }, - "storyLink": "learn to code and become a software engineer free code camp", - "image": "", - "comments": [ - ], - "upVotes": [ - { - "upVotedByUsername": "terakilobyte", - "upVotedBy": "54f6262394f355ce1d969d9f" - } - ], - "rank": 1, - "timePosted": 1425806926395.0 - }, - { - "headline": "Learn to Code and Become a Software Engineer | Free Code Camp", - "link": "http://www.freecodecamp.com", - "description": "The website we're building these \"forums\" for!", - "author": { - "username": "terakilobyte", - "userId": "54f6262394f355ce1d969d9f", - "picture": "https://pbs.twimg.com/profile_images/2563218307/67rpczkpeyo1xem5vto3.gif" - }, - "storyLink": "learn to code and become a software engineer free code camp", - "image": "", - "comments": [ - ], - "upVotes": [ - { - "upVotedByUsername": "terakilobyte", - "upVotedBy": "54f6262394f355ce1d969d9f" - } - ], - "rank": 1, - "timePosted": 1425806926395.0 - }, - { - "headline": "Learn to Code and Become a Software Engineer | Free Code Camp", - "link": "http://www.freecodecamp.com", - "description": "The website we're building these \"forums\" for!", - "author": { - "username": "terakilobyte", - "userId": "54f6262394f355ce1d969d9f", - "picture": "https://pbs.twimg.com/profile_images/2563218307/67rpczkpeyo1xem5vto3.gif" - }, - "storyLink": "learn to code and become a software engineer free code camp", - "image": "", - "comments": [ - ], - "upVotes": [ - { - "upVotedByUsername": "terakilobyte", - "upVotedBy": "54f6262394f355ce1d969d9f" - } - ], - "rank": 1, - "timePosted": 1425806926395.0 - }, - { - "headline": "Learn to Code and Become a Software Engineer | Free Code Camp", - "link": "http://www.freecodecamp.com", - "description": "The website we're building these \"forums\" for!", - "author": { - "username": "terakilobyte", - "userId": "54f6262394f355ce1d969d9f", - "picture": "https://pbs.twimg.com/profile_images/2563218307/67rpczkpeyo1xem5vto3.gif" - }, - "storyLink": "learn to code and become a software engineer free code camp", - "image": "", - "comments": [ - ], - "upVotes": [ - { - "upVotedByUsername": "terakilobyte", - "upVotedBy": "54f6262394f355ce1d969d9f" - } - ], - "rank": 1, - "timePosted": 1425806926395.0 - }, - { - "headline": "Learn to Code and Become a Software Engineer | Free Code Camp", - "link": "http://www.freecodecamp.com", - "description": "The website we're building these \"forums\" for!", - "author": { - "username": "terakilobyte", - "userId": "54f6262394f355ce1d969d9f", - "picture": "https://pbs.twimg.com/profile_images/2563218307/67rpczkpeyo1xem5vto3.gif" - }, - "storyLink": "learn to code and become a software engineer free code camp", - "image": "", - "comments": [ - ], - "upVotes": [ - { - "upVotedByUsername": "terakilobyte", - "upVotedBy": "54f6262394f355ce1d969d9f" - } - ], - "rank": 1, - "timePosted": 1425806926395.0 - }, - { - "headline": "Learn to Code and Become a Software Engineer | Free Code Camp", - "link": "http://www.freecodecamp.com", - "description": "The website we're building these \"forums\" for!", - "author": { - "username": "terakilobyte", - "userId": "54f6262394f355ce1d969d9f", - "picture": "https://pbs.twimg.com/profile_images/2563218307/67rpczkpeyo1xem5vto3.gif" - }, - "storyLink": "learn to code and become a software engineer free code camp", - "image": "", - "comments": [ - ], - "upVotes": [ - { - "upVotedByUsername": "terakilobyte", - "upVotedBy": "54f6262394f355ce1d969d9f" - } - ], - "rank": 1, - "timePosted": 1425806926395.0 - }, - { - "headline": "Learn to Code and Become a Software Engineer | Free Code Camp", - "link": "http://www.freecodecamp.com", - "description": "The website we're building these \"forums\" for!", - "author": { - "username": "terakilobyte", - "userId": "54f6262394f355ce1d969d9f", - "picture": "https://pbs.twimg.com/profile_images/2563218307/67rpczkpeyo1xem5vto3.gif" - }, - "storyLink": "learn to code and become a software engineer free code camp", - "image": "", - "comments": [ - ], - "upVotes": [ - { - "upVotedByUsername": "terakilobyte", - "upVotedBy": "54f6262394f355ce1d969d9f" - } - ], - "rank": 1, - "timePosted": 1425806926395.0 - }, - { - "headline": "Learn to Code and Become a Software Engineer | Free Code Camp", - "link": "http://www.freecodecamp.com", - "description": "The website we're building these \"forums\" for!", - "author": { - "username": "terakilobyte", - "userId": "54f6262394f355ce1d969d9f", - "picture": "https://pbs.twimg.com/profile_images/2563218307/67rpczkpeyo1xem5vto3.gif" - }, - "storyLink": "learn to code and become a software engineer free code camp", - "image": "", - "comments": [ - ], - "upVotes": [ - { - "upVotedByUsername": "terakilobyte", - "upVotedBy": "54f6262394f355ce1d969d9f" - } - ], - "rank": 1, - "timePosted": 1425806926395.0 - }, - { - "headline": "Learn to Code and Become a Software Engineer | Free Code Camp", - "link": "http://www.freecodecamp.com", - "description": "The website we're building these \"forums\" for!", - "author": { - "username": "terakilobyte", - "userId": "54f6262394f355ce1d969d9f", - "picture": "https://pbs.twimg.com/profile_images/2563218307/67rpczkpeyo1xem5vto3.gif" - }, - "storyLink": "learn to code and become a software engineer free code camp", - "image": "", - "comments": [ - ], - "upVotes": [ - { - "upVotedByUsername": "terakilobyte", - "upVotedBy": "54f6262394f355ce1d969d9f" - } - ], - "rank": 1, - "timePosted": 1425806926395.0 - }, - { - "headline": "Learn to Code and Become a Software Engineer | Free Code Camp", - "link": "http://www.freecodecamp.com", - "description": "The website we're building these \"forums\" for!", - "author": { - "username": "terakilobyte", - "userId": "54f6262394f355ce1d969d9f", - "picture": "https://pbs.twimg.com/profile_images/2563218307/67rpczkpeyo1xem5vto3.gif" - }, - "storyLink": "learn to code and become a software engineer free code camp", - "image": "", - "comments": [ - ], - "upVotes": [ - { - "upVotedByUsername": "terakilobyte", - "upVotedBy": "54f6262394f355ce1d969d9f" - } - ], - "rank": 1, - "timePosted": 1425806926395.0 - }, - { - "headline": "Learn to Code and Become a Software Engineer | Free Code Camp", - "link": "http://www.freecodecamp.com", - "description": "The website we're building these \"forums\" for!", - "author": { - "username": "terakilobyte", - "userId": "54f6262394f355ce1d969d9f", - "picture": "https://pbs.twimg.com/profile_images/2563218307/67rpczkpeyo1xem5vto3.gif" - }, - "storyLink": "learn to code and become a software engineer free code camp", - "image": "", - "comments": [ - ], - "upVotes": [ - { - "upVotedByUsername": "terakilobyte", - "upVotedBy": "54f6262394f355ce1d969d9f" - } - ], - "rank": 1, - "timePosted": 1425806926395.0 - }, - { - "headline": "Learn to Code and Become a Software Engineer | Free Code Camp", - "link": "http://www.freecodecamp.com", - "description": "The website we're building these \"forums\" for!", - "author": { - "username": "terakilobyte", - "userId": "54f6262394f355ce1d969d9f", - "picture": "https://pbs.twimg.com/profile_images/2563218307/67rpczkpeyo1xem5vto3.gif" - }, - "storyLink": "learn to code and become a software engineer free code camp", - "image": "", - "comments": [ - ], - "upVotes": [ - { - "upVotedByUsername": "terakilobyte", - "upVotedBy": "54f6262394f355ce1d969d9f" - } - ], - "rank": 1, - "timePosted": 1425806926395.0 - }, - { - "headline": "Learn to Code and Become a Software Engineer | Free Code Camp", - "link": "http://www.freecodecamp.com", - "description": "The website we're building these \"forums\" for!", - "author": { - "username": "terakilobyte", - "userId": "54f6262394f355ce1d969d9f", - "picture": "https://pbs.twimg.com/profile_images/2563218307/67rpczkpeyo1xem5vto3.gif" - }, - "storyLink": "learn to code and become a software engineer free code camp", - "image": "", - "comments": [ - ], - "upVotes": [ - { - "upVotedByUsername": "terakilobyte", - "upVotedBy": "54f6262394f355ce1d969d9f" - } - ], - "rank": 1, - "timePosted": 1425806926395.0 - }, - { - "headline": "Learn to Code and Become a Software Engineer | Free Code Camp", - "link": "http://www.freecodecamp.com", - "description": "The website we're building these \"forums\" for!", - "author": { - "username": "terakilobyte", - "userId": "54f6262394f355ce1d969d9f", - "picture": "https://pbs.twimg.com/profile_images/2563218307/67rpczkpeyo1xem5vto3.gif" - }, - "storyLink": "learn to code and become a software engineer free code camp", - "image": "", - "comments": [ - ], - "upVotes": [ - { - "upVotedByUsername": "terakilobyte", - "upVotedBy": "54f6262394f355ce1d969d9f" - } - ], - "rank": 1, - "timePosted": 1425806926395.0 - }, - { - "headline": "Learn to Code and Become a Software Engineer | Free Code Camp", - "link": "http://www.freecodecamp.com", - "description": "The website we're building these \"forums\" for!", - "author": { - "username": "terakilobyte", - "userId": "54f6262394f355ce1d969d9f", - "picture": "https://pbs.twimg.com/profile_images/2563218307/67rpczkpeyo1xem5vto3.gif" - }, - "storyLink": "learn to code and become a software engineer free code camp", - "image": "", - "comments": [ - ], - "upVotes": [ - { - "upVotedByUsername": "terakilobyte", - "upVotedBy": "54f6262394f355ce1d969d9f" - } - ], - "rank": 1, - "timePosted": 1425806926395.0 - }, - { - "headline": "Learn to Code and Become a Software Engineer | Free Code Camp", - "link": "http://www.freecodecamp.com", - "description": "The website we're building these \"forums\" for!", - "author": { - "username": "terakilobyte", - "userId": "54f6262394f355ce1d969d9f", - "picture": "https://pbs.twimg.com/profile_images/2563218307/67rpczkpeyo1xem5vto3.gif" - }, - "storyLink": "learn to code and become a software engineer free code camp", - "image": "", - "comments": [ - ], - "upVotes": [ - { - "upVotedByUsername": "terakilobyte", - "upVotedBy": "54f6262394f355ce1d969d9f" - } - ], - "rank": 1, - "timePosted": 1425806926395.0 - }, - { - "headline": "Learn to Code and Become a Software Engineer | Free Code Camp", - "link": "http://www.freecodecamp.com", - "description": "The website we're building these \"forums\" for!", - "author": { - "username": "terakilobyte", - "userId": "54f6262394f355ce1d969d9f", - "picture": "https://pbs.twimg.com/profile_images/2563218307/67rpczkpeyo1xem5vto3.gif" - }, - "storyLink": "learn to code and become a software engineer free code camp", - "image": "", - "comments": [ - ], - "upVotes": [ - { - "upVotedByUsername": "terakilobyte", - "upVotedBy": "54f6262394f355ce1d969d9f" - } - ], - "rank": 1, - "timePosted": 1425806926395.0 - }, - { - "headline": "Learn to Code and Become a Software Engineer | Free Code Camp", - "link": "http://www.freecodecamp.com", - "description": "The website we're building these \"forums\" for!", - "author": { - "username": "terakilobyte", - "userId": "54f6262394f355ce1d969d9f", - "picture": "https://pbs.twimg.com/profile_images/2563218307/67rpczkpeyo1xem5vto3.gif" - }, - "storyLink": "learn to code and become a software engineer free code camp", - "image": "", - "comments": [ - ], - "upVotes": [ - { - "upVotedByUsername": "terakilobyte", - "upVotedBy": "54f6262394f355ce1d969d9f" - } - ], - "rank": 1, - "timePosted": 1425806926395.0 - }, - { - "headline": "Learn to Code and Become a Software Engineer | Free Code Camp", - "link": "http://www.freecodecamp.com", - "description": "The website we're building these \"forums\" for!", - "author": { - "username": "terakilobyte", - "userId": "54f6262394f355ce1d969d9f", - "picture": "https://pbs.twimg.com/profile_images/2563218307/67rpczkpeyo1xem5vto3.gif" - }, - "storyLink": "learn to code and become a software engineer free code camp", - "image": "", - "comments": [ - ], - "upVotes": [ - { - "upVotedByUsername": "terakilobyte", - "upVotedBy": "54f6262394f355ce1d969d9f" - } - ], - "rank": 1, - "timePosted": 1425806926395.0 - }, - { - "headline": "Learn to Code and Become a Software Engineer | Free Code Camp", - "link": "http://www.freecodecamp.com", - "description": "The website we're building these \"forums\" for!", - "author": { - "username": "terakilobyte", - "userId": "54f6262394f355ce1d969d9f", - "picture": "https://pbs.twimg.com/profile_images/2563218307/67rpczkpeyo1xem5vto3.gif" - }, - "storyLink": "learn to code and become a software engineer free code camp", - "image": "", - "comments": [ - ], - "upVotes": [ - { - "upVotedByUsername": "terakilobyte", - "upVotedBy": "54f6262394f355ce1d969d9f" - } - ], - "rank": 1, - "timePosted": 1425806926395.0 - }, - { - "headline": "Learn to Code and Become a Software Engineer | Free Code Camp", - "link": "http://www.freecodecamp.com", - "description": "The website we're building these \"forums\" for!", - "author": { - "username": "terakilobyte", - "userId": "54f6262394f355ce1d969d9f", - "picture": "https://pbs.twimg.com/profile_images/2563218307/67rpczkpeyo1xem5vto3.gif" - }, - "storyLink": "learn to code and become a software engineer free code camp", - "image": "", - "comments": [ - ], - "upVotes": [ - { - "upVotedByUsername": "terakilobyte", - "upVotedBy": "54f6262394f355ce1d969d9f" - } - ], - "rank": 1, - "timePosted": 1425806926395.0 - }, - { - "headline": "Learn to Code and Become a Software Engineer | Free Code Camp", - "link": "http://www.freecodecamp.com", - "description": "The website we're building these \"forums\" for!", - "author": { - "username": "terakilobyte", - "userId": "54f6262394f355ce1d969d9f", - "picture": "https://pbs.twimg.com/profile_images/2563218307/67rpczkpeyo1xem5vto3.gif" - }, - "storyLink": "learn to code and become a software engineer free code camp", - "image": "", - "comments": [ - ], - "upVotes": [ - { - "upVotedByUsername": "terakilobyte", - "upVotedBy": "54f6262394f355ce1d969d9f" - } - ], - "rank": 1, - "timePosted": 1425806926395.0 - }, - { - "headline": "Learn to Code and Become a Software Engineer | Free Code Camp", - "link": "http://www.freecodecamp.com", - "description": "The website we're building these \"forums\" for!", - "author": { - "username": "terakilobyte", - "userId": "54f6262394f355ce1d969d9f", - "picture": "https://pbs.twimg.com/profile_images/2563218307/67rpczkpeyo1xem5vto3.gif" - }, - "storyLink": "learn to code and become a software engineer free code camp", - "image": "", - "comments": [ - ], - "upVotes": [ - { - "upVotedByUsername": "terakilobyte", - "upVotedBy": "54f6262394f355ce1d969d9f" - } - ], - "rank": 1, - "timePosted": 1425806926395.0 - }, - { - "headline": "Learn to Code and Become a Software Engineer | Free Code Camp", - "link": "http://www.freecodecamp.com", - "description": "The website we're building these \"forums\" for!", - "author": { - "username": "terakilobyte", - "userId": "54f6262394f355ce1d969d9f", - "picture": "https://pbs.twimg.com/profile_images/2563218307/67rpczkpeyo1xem5vto3.gif" - }, - "storyLink": "learn to code and become a software engineer free code camp", - "image": "", - "comments": [ - ], - "upVotes": [ - { - "upVotedByUsername": "terakilobyte", - "upVotedBy": "54f6262394f355ce1d969d9f" - } - ], - "rank": 1, - "timePosted": 1425806926395.0 - }, - { - "headline": "Learn to Code and Become a Software Engineer | Free Code Camp", - "link": "http://www.freecodecamp.com", - "description": "The website we're building these \"forums\" for!", - "author": { - "username": "terakilobyte", - "userId": "54f6262394f355ce1d969d9f", - "picture": "https://pbs.twimg.com/profile_images/2563218307/67rpczkpeyo1xem5vto3.gif" - }, - "storyLink": "learn to code and become a software engineer free code camp", - "image": "", - "comments": [ - ], - "upVotes": [ - { - "upVotedByUsername": "terakilobyte", - "upVotedBy": "54f6262394f355ce1d969d9f" - } - ], - "rank": 1, - "timePosted": 1425806926395.0 - }, - { - "headline": "Learn to Code and Become a Software Engineer | Free Code Camp", - "link": "http://www.freecodecamp.com", - "description": "The website we're building these \"forums\" for!", - "author": { - "username": "terakilobyte", - "userId": "54f6262394f355ce1d969d9f", - "picture": "https://pbs.twimg.com/profile_images/2563218307/67rpczkpeyo1xem5vto3.gif" - }, - "storyLink": "learn to code and become a software engineer free code camp", - "image": "", - "comments": [ - ], - "upVotes": [ - { - "upVotedByUsername": "terakilobyte", - "upVotedBy": "54f6262394f355ce1d969d9f" - } - ], - "rank": 1, - "timePosted": 1425806926395.0 - }, - { - "headline": "Learn to Code and Become a Software Engineer | Free Code Camp", - "link": "http://www.freecodecamp.com", - "description": "The website we're building these \"forums\" for!", - "author": { - "username": "terakilobyte", - "userId": "54f6262394f355ce1d969d9f", - "picture": "https://pbs.twimg.com/profile_images/2563218307/67rpczkpeyo1xem5vto3.gif" - }, - "storyLink": "learn to code and become a software engineer free code camp", - "image": "", - "comments": [ - ], - "upVotes": [ - { - "upVotedByUsername": "terakilobyte", - "upVotedBy": "54f6262394f355ce1d969d9f" - } - ], - "rank": 1, - "timePosted": 1425806926395.0 - }, - { - "headline": "Learn to Code and Become a Software Engineer | Free Code Camp", - "link": "http://www.freecodecamp.com", - "description": "The website we're building these \"forums\" for!", - "author": { - "username": "terakilobyte", - "userId": "54f6262394f355ce1d969d9f", - "picture": "https://pbs.twimg.com/profile_images/2563218307/67rpczkpeyo1xem5vto3.gif" - }, - "storyLink": "learn to code and become a software engineer free code camp", - "image": "", - "comments": [ - ], - "upVotes": [ - { - "upVotedByUsername": "terakilobyte", - "upVotedBy": "54f6262394f355ce1d969d9f" - } - ], - "rank": 1, - "timePosted": 1425806926395.0 - }, - { - "headline": "Learn to Code and Become a Software Engineer | Free Code Camp", - "link": "http://www.freecodecamp.com", - "description": "The website we're building these \"forums\" for!", - "author": { - "username": "terakilobyte", - "userId": "54f6262394f355ce1d969d9f", - "picture": "https://pbs.twimg.com/profile_images/2563218307/67rpczkpeyo1xem5vto3.gif" - }, - "storyLink": "learn to code and become a software engineer free code camp", - "image": "", - "comments": [ - ], - "upVotes": [ - { - "upVotedByUsername": "terakilobyte", - "upVotedBy": "54f6262394f355ce1d969d9f" - } - ], - "rank": 1, - "timePosted": 1425806926395.0 - }, - { - "headline": "Learn to Code and Become a Software Engineer | Free Code Camp", - "link": "http://www.freecodecamp.com", - "description": "The website we're building these \"forums\" for!", - "author": { - "username": "terakilobyte", - "userId": "54f6262394f355ce1d969d9f", - "picture": "https://pbs.twimg.com/profile_images/2563218307/67rpczkpeyo1xem5vto3.gif" - }, - "storyLink": "learn to code and become a software engineer free code camp", - "image": "", - "comments": [ - ], - "upVotes": [ - { - "upVotedByUsername": "terakilobyte", - "upVotedBy": "54f6262394f355ce1d969d9f" - } - ], - "rank": 1, - "timePosted": 1425806926395.0 - }, - { - "headline": "Learn to Code and Become a Software Engineer | Free Code Camp", - "link": "http://www.freecodecamp.com", - "description": "The website we're building these \"forums\" for!", - "author": { - "username": "terakilobyte", - "userId": "54f6262394f355ce1d969d9f", - "picture": "https://pbs.twimg.com/profile_images/2563218307/67rpczkpeyo1xem5vto3.gif" - }, - "storyLink": "learn to code and become a software engineer free code camp", - "image": "", - "comments": [ - ], - "upVotes": [ - { - "upVotedByUsername": "terakilobyte", - "upVotedBy": "54f6262394f355ce1d969d9f" - } - ], - "rank": 1, - "timePosted": 1425806926395.0 - }, - { - "headline": "Learn to Code and Become a Software Engineer | Free Code Camp", - "link": "http://www.freecodecamp.com", - "description": "The website we're building these \"forums\" for!", - "author": { - "username": "terakilobyte", - "userId": "54f6262394f355ce1d969d9f", - "picture": "https://pbs.twimg.com/profile_images/2563218307/67rpczkpeyo1xem5vto3.gif" - }, - "storyLink": "learn to code and become a software engineer free code camp", - "image": "", - "comments": [ - ], - "upVotes": [ - { - "upVotedByUsername": "terakilobyte", - "upVotedBy": "54f6262394f355ce1d969d9f" - } - ], - "rank": 1, - "timePosted": 1425806926395.0 - }, - { - "headline": "Learn to Code and Become a Software Engineer | Free Code Camp", - "link": "http://www.freecodecamp.com", - "description": "The website we're building these \"forums\" for!", - "author": { - "username": "terakilobyte", - "userId": "54f6262394f355ce1d969d9f", - "picture": "https://pbs.twimg.com/profile_images/2563218307/67rpczkpeyo1xem5vto3.gif" - }, - "storyLink": "learn to code and become a software engineer free code camp", - "image": "", - "comments": [ - ], - "upVotes": [ - { - "upVotedByUsername": "terakilobyte", - "upVotedBy": "54f6262394f355ce1d969d9f" - } - ], - "rank": 1, - "timePosted": 1425806926395.0 - }, - { - "headline": "Learn to Code and Become a Software Engineer | Free Code Camp", - "link": "http://www.freecodecamp.com", - "description": "The website we're building these \"forums\" for!", - "author": { - "username": "terakilobyte", - "userId": "54f6262394f355ce1d969d9f", - "picture": "https://pbs.twimg.com/profile_images/2563218307/67rpczkpeyo1xem5vto3.gif" - }, - "storyLink": "learn to code and become a software engineer free code camp", - "image": "", - "comments": [ - ], - "upVotes": [ - { - "upVotedByUsername": "terakilobyte", - "upVotedBy": "54f6262394f355ce1d969d9f" - } - ], - "rank": 1, - "timePosted": 1425806926395.0 - }, - { - "headline": "Learn to Code and Become a Software Engineer | Free Code Camp", - "link": "http://www.freecodecamp.com", - "description": "The website we're building these \"forums\" for!", - "author": { - "username": "terakilobyte", - "userId": "54f6262394f355ce1d969d9f", - "picture": "https://pbs.twimg.com/profile_images/2563218307/67rpczkpeyo1xem5vto3.gif" - }, - "storyLink": "learn to code and become a software engineer free code camp", - "image": "", - "comments": [ - ], - "upVotes": [ - { - "upVotedByUsername": "terakilobyte", - "upVotedBy": "54f6262394f355ce1d969d9f" - } - ], - "rank": 1, - "timePosted": 1425806926395.0 - }, - { - "headline": "Learn to Code and Become a Software Engineer | Free Code Camp", - "link": "http://www.freecodecamp.com", - "description": "The website we're building these \"forums\" for!", - "author": { - "username": "terakilobyte", - "userId": "54f6262394f355ce1d969d9f", - "picture": "https://pbs.twimg.com/profile_images/2563218307/67rpczkpeyo1xem5vto3.gif" - }, - "storyLink": "learn to code and become a software engineer free code camp", - "image": "", - "comments": [ - ], - "upVotes": [ - { - "upVotedByUsername": "terakilobyte", - "upVotedBy": "54f6262394f355ce1d969d9f" - } - ], - "rank": 1, - "timePosted": 1425806926395.0 - }, - { - "headline": "Learn to Code and Become a Software Engineer | Free Code Camp", - "link": "http://www.freecodecamp.com", - "description": "The website we're building these \"forums\" for!", - "author": { - "username": "terakilobyte", - "userId": "54f6262394f355ce1d969d9f", - "picture": "https://pbs.twimg.com/profile_images/2563218307/67rpczkpeyo1xem5vto3.gif" - }, - "storyLink": "learn to code and become a software engineer free code camp", - "image": "", - "comments": [ - ], - "upVotes": [ - { - "upVotedByUsername": "terakilobyte", - "upVotedBy": "54f6262394f355ce1d969d9f" - } - ], - "rank": 1, - "timePosted": 1425806926395.0 - }, - { - "headline": "Learn to Code and Become a Software Engineer | Free Code Camp", - "link": "http://www.freecodecamp.com", - "description": "The website we're building these \"forums\" for!", - "author": { - "username": "terakilobyte", - "userId": "54f6262394f355ce1d969d9f", - "picture": "https://pbs.twimg.com/profile_images/2563218307/67rpczkpeyo1xem5vto3.gif" - }, - "storyLink": "learn to code and become a software engineer free code camp", - "image": "", - "comments": [ - ], - "upVotes": [ - { - "upVotedByUsername": "terakilobyte", - "upVotedBy": "54f6262394f355ce1d969d9f" - } - ], - "rank": 1, - "timePosted": 1425806926395.0 - }, - { - "headline": "Learn to Code and Become a Software Engineer | Free Code Camp", - "link": "http://www.freecodecamp.com", - "description": "The website we're building these \"forums\" for!", - "author": { - "username": "terakilobyte", - "userId": "54f6262394f355ce1d969d9f", - "picture": "https://pbs.twimg.com/profile_images/2563218307/67rpczkpeyo1xem5vto3.gif" - }, - "storyLink": "learn to code and become a software engineer free code camp", - "image": "", - "comments": [ - ], - "upVotes": [ - { - "upVotedByUsername": "terakilobyte", - "upVotedBy": "54f6262394f355ce1d969d9f" - } - ], - "rank": 1, - "timePosted": 1425806926395.0 - }, - { - "headline": "Learn to Code and Become a Software Engineer | Free Code Camp", - "link": "http://www.freecodecamp.com", - "description": "The website we're building these \"forums\" for!", - "author": { - "username": "terakilobyte", - "userId": "54f6262394f355ce1d969d9f", - "picture": "https://pbs.twimg.com/profile_images/2563218307/67rpczkpeyo1xem5vto3.gif" - }, - "storyLink": "learn to code and become a software engineer free code camp", - "image": "", - "comments": [ - ], - "upVotes": [ - { - "upVotedByUsername": "terakilobyte", - "upVotedBy": "54f6262394f355ce1d969d9f" - } - ], - "rank": 1, - "timePosted": 1425806926395.0 - }, - { - "headline": "Learn to Code and Become a Software Engineer | Free Code Camp", - "link": "http://www.freecodecamp.com", - "description": "The website we're building these \"forums\" for!", - "author": { - "username": "terakilobyte", - "userId": "54f6262394f355ce1d969d9f", - "picture": "https://pbs.twimg.com/profile_images/2563218307/67rpczkpeyo1xem5vto3.gif" - }, - "storyLink": "learn to code and become a software engineer free code camp", - "image": "", - "comments": [ - ], - "upVotes": [ - { - "upVotedByUsername": "terakilobyte", - "upVotedBy": "54f6262394f355ce1d969d9f" - } - ], - "rank": 1, - "timePosted": 1425806926395.0 - }, - { - "headline": "Learn to Code and Become a Software Engineer | Free Code Camp", - "link": "http://www.freecodecamp.com", - "description": "The website we're building these \"forums\" for!", - "author": { - "username": "terakilobyte", - "userId": "54f6262394f355ce1d969d9f", - "picture": "https://pbs.twimg.com/profile_images/2563218307/67rpczkpeyo1xem5vto3.gif" - }, - "storyLink": "learn to code and become a software engineer free code camp", - "image": "", - "comments": [ - ], - "upVotes": [ - { - "upVotedByUsername": "terakilobyte", - "upVotedBy": "54f6262394f355ce1d969d9f" - } - ], - "rank": 1, - "timePosted": 1425806926395.0 - }, - { - "headline": "Learn to Code and Become a Software Engineer | Free Code Camp", - "link": "http://www.freecodecamp.com", - "description": "The website we're building these \"forums\" for!", - "author": { - "username": "terakilobyte", - "userId": "54f6262394f355ce1d969d9f", - "picture": "https://pbs.twimg.com/profile_images/2563218307/67rpczkpeyo1xem5vto3.gif" - }, - "storyLink": "learn to code and become a software engineer free code camp", - "image": "", - "comments": [ - ], - "upVotes": [ - { - "upVotedByUsername": "terakilobyte", - "upVotedBy": "54f6262394f355ce1d969d9f" - } - ], - "rank": 1, - "timePosted": 1425806926395.0 - }, - { - "headline": "Learn to Code and Become a Software Engineer | Free Code Camp", - "link": "http://www.freecodecamp.com", - "description": "The website we're building these \"forums\" for!", - "author": { - "username": "terakilobyte", - "userId": "54f6262394f355ce1d969d9f", - "picture": "https://pbs.twimg.com/profile_images/2563218307/67rpczkpeyo1xem5vto3.gif" - }, - "storyLink": "learn to code and become a software engineer free code camp", - "image": "", - "comments": [ - ], - "upVotes": [ - { - "upVotedByUsername": "terakilobyte", - "upVotedBy": "54f6262394f355ce1d969d9f" - } - ], - "rank": 1, - "timePosted": 1425806926395.0 - }, - { - "headline": "Learn to Code and Become a Software Engineer | Free Code Camp", - "link": "http://www.freecodecamp.com", - "description": "The website we're building these \"forums\" for!", - "author": { - "username": "terakilobyte", - "userId": "54f6262394f355ce1d969d9f", - "picture": "https://pbs.twimg.com/profile_images/2563218307/67rpczkpeyo1xem5vto3.gif" - }, - "storyLink": "learn to code and become a software engineer free code camp", - "image": "", - "comments": [ - ], - "upVotes": [ - { - "upVotedByUsername": "terakilobyte", - "upVotedBy": "54f6262394f355ce1d969d9f" - } - ], - "rank": 1, - "timePosted": 1425806926395.0 - }, - { - "headline": "Learn to Code and Become a Software Engineer | Free Code Camp", - "link": "http://www.freecodecamp.com", - "description": "The website we're building these \"forums\" for!", - "author": { - "username": "terakilobyte", - "userId": "54f6262394f355ce1d969d9f", - "picture": "https://pbs.twimg.com/profile_images/2563218307/67rpczkpeyo1xem5vto3.gif" - }, - "storyLink": "learn to code and become a software engineer free code camp", - "image": "", - "comments": [ - ], - "upVotes": [ - { - "upVotedByUsername": "terakilobyte", - "upVotedBy": "54f6262394f355ce1d969d9f" - } - ], - "rank": 1, - "timePosted": 1425806926395.0 - }, - { - "headline": "Learn to Code and Become a Software Engineer | Free Code Camp", - "link": "http://www.freecodecamp.com", - "description": "The website we're building these \"forums\" for!", - "author": { - "username": "terakilobyte", - "userId": "54f6262394f355ce1d969d9f", - "picture": "https://pbs.twimg.com/profile_images/2563218307/67rpczkpeyo1xem5vto3.gif" - }, - "storyLink": "learn to code and become a software engineer free code camp", - "image": "", - "comments": [ - ], - "upVotes": [ - { - "upVotedByUsername": "terakilobyte", - "upVotedBy": "54f6262394f355ce1d969d9f" - } - ], - "rank": 1, - "timePosted": 1425806926395.0 - }, - { - "headline": "Learn to Code and Become a Software Engineer | Free Code Camp", - "link": "http://www.freecodecamp.com", - "description": "The website we're building these \"forums\" for!", - "author": { - "username": "terakilobyte", - "userId": "54f6262394f355ce1d969d9f", - "picture": "https://pbs.twimg.com/profile_images/2563218307/67rpczkpeyo1xem5vto3.gif" - }, - "storyLink": "learn to code and become a software engineer free code camp", - "image": "", - "comments": [ - ], - "upVotes": [ - { - "upVotedByUsername": "terakilobyte", - "upVotedBy": "54f6262394f355ce1d969d9f" - } - ], - "rank": 1, - "timePosted": 1425806926395.0 - }, - { - "headline": "Learn to Code and Become a Software Engineer | Free Code Camp", - "link": "http://www.freecodecamp.com", - "description": "The website we're building these \"forums\" for!", - "author": { - "username": "terakilobyte", - "userId": "54f6262394f355ce1d969d9f", - "picture": "https://pbs.twimg.com/profile_images/2563218307/67rpczkpeyo1xem5vto3.gif" - }, - "storyLink": "learn to code and become a software engineer free code camp", - "image": "", - "comments": [ - ], - "upVotes": [ - { - "upVotedByUsername": "terakilobyte", - "upVotedBy": "54f6262394f355ce1d969d9f" - } - ], - "rank": 1, - "timePosted": 1425806926395.0 - }, - { - "headline": "Learn to Code and Become a Software Engineer | Free Code Camp", - "link": "http://www.freecodecamp.com", - "description": "The website we're building these \"forums\" for!", - "author": { - "username": "terakilobyte", - "userId": "54f6262394f355ce1d969d9f", - "picture": "https://pbs.twimg.com/profile_images/2563218307/67rpczkpeyo1xem5vto3.gif" - }, - "storyLink": "learn to code and become a software engineer free code camp", - "image": "", - "comments": [ - ], - "upVotes": [ - { - "upVotedByUsername": "terakilobyte", - "upVotedBy": "54f6262394f355ce1d969d9f" - } - ], - "rank": 1, - "timePosted": 1425806926395.0 - }, - { - "headline": "Learn to Code and Become a Software Engineer | Free Code Camp", - "link": "http://www.freecodecamp.com", - "description": "The website we're building these \"forums\" for!", - "author": { - "username": "terakilobyte", - "userId": "54f6262394f355ce1d969d9f", - "picture": "https://pbs.twimg.com/profile_images/2563218307/67rpczkpeyo1xem5vto3.gif" - }, - "storyLink": "learn to code and become a software engineer free code camp", - "image": "", - "comments": [ - ], - "upVotes": [ - { - "upVotedByUsername": "terakilobyte", - "upVotedBy": "54f6262394f355ce1d969d9f" - } - ], - "rank": 1, - "timePosted": 1425806926395.0 - }, - { - "headline": "Learn to Code and Become a Software Engineer | Free Code Camp", - "link": "http://www.freecodecamp.com", - "description": "The website we're building these \"forums\" for!", - "author": { - "username": "terakilobyte", - "userId": "54f6262394f355ce1d969d9f", - "picture": "https://pbs.twimg.com/profile_images/2563218307/67rpczkpeyo1xem5vto3.gif" - }, - "storyLink": "learn to code and become a software engineer free code camp", - "image": "", - "comments": [ - ], - "upVotes": [ - { - "upVotedByUsername": "terakilobyte", - "upVotedBy": "54f6262394f355ce1d969d9f" - } - ], - "rank": 1, - "timePosted": 1425806926395.0 - }, - { - "headline": "Learn to Code and Become a Software Engineer | Free Code Camp", - "link": "http://www.freecodecamp.com", - "description": "The website we're building these \"forums\" for!", - "author": { - "username": "terakilobyte", - "userId": "54f6262394f355ce1d969d9f", - "picture": "https://pbs.twimg.com/profile_images/2563218307/67rpczkpeyo1xem5vto3.gif" - }, - "storyLink": "learn to code and become a software engineer free code camp", - "image": "", - "comments": [ - ], - "upVotes": [ - { - "upVotedByUsername": "terakilobyte", - "upVotedBy": "54f6262394f355ce1d969d9f" - } - ], - "rank": 1, - "timePosted": 1425806926395.0 - }, - { - "headline": "Learn to Code and Become a Software Engineer | Free Code Camp", - "link": "http://www.freecodecamp.com", - "description": "The website we're building these \"forums\" for!", - "author": { - "username": "terakilobyte", - "userId": "54f6262394f355ce1d969d9f", - "picture": "https://pbs.twimg.com/profile_images/2563218307/67rpczkpeyo1xem5vto3.gif" - }, - "storyLink": "learn to code and become a software engineer free code camp", - "image": "", - "comments": [ - ], - "upVotes": [ - { - "upVotedByUsername": "terakilobyte", - "upVotedBy": "54f6262394f355ce1d969d9f" - } - ], - "rank": 1, - "timePosted": 1425806926395.0 - }, - { - "headline": "Learn to Code and Become a Software Engineer | Free Code Camp", - "link": "http://www.freecodecamp.com", - "description": "The website we're building these \"forums\" for!", - "author": { - "username": "terakilobyte", - "userId": "54f6262394f355ce1d969d9f", - "picture": "https://pbs.twimg.com/profile_images/2563218307/67rpczkpeyo1xem5vto3.gif" - }, - "storyLink": "learn to code and become a software engineer free code camp", - "image": "", - "comments": [ - ], - "upVotes": [ - { - "upVotedByUsername": "terakilobyte", - "upVotedBy": "54f6262394f355ce1d969d9f" - } - ], - "rank": 1, - "timePosted": 1425806926395.0 - }, - { - "headline": "Learn to Code and Become a Software Engineer | Free Code Camp", - "link": "http://www.freecodecamp.com", - "description": "The website we're building these \"forums\" for!", - "author": { - "username": "terakilobyte", - "userId": "54f6262394f355ce1d969d9f", - "picture": "https://pbs.twimg.com/profile_images/2563218307/67rpczkpeyo1xem5vto3.gif" - }, - "storyLink": "learn to code and become a software engineer free code camp", - "image": "", - "comments": [ - ], - "upVotes": [ - { - "upVotedByUsername": "terakilobyte", - "upVotedBy": "54f6262394f355ce1d969d9f" - } - ], - "rank": 1, - "timePosted": 1425806926395.0 - }, - { - "headline": "Learn to Code and Become a Software Engineer | Free Code Camp", - "link": "http://www.freecodecamp.com", - "description": "The website we're building these \"forums\" for!", - "author": { - "username": "terakilobyte", - "userId": "54f6262394f355ce1d969d9f", - "picture": "https://pbs.twimg.com/profile_images/2563218307/67rpczkpeyo1xem5vto3.gif" - }, - "storyLink": "learn to code and become a software engineer free code camp", - "image": "", - "comments": [ - ], - "upVotes": [ - { - "upVotedByUsername": "terakilobyte", - "upVotedBy": "54f6262394f355ce1d969d9f" - } - ], - "rank": 1, - "timePosted": 1425806926395.0 - }, - { - "headline": "Learn to Code and Become a Software Engineer | Free Code Camp", - "link": "http://www.freecodecamp.com", - "description": "The website we're building these \"forums\" for!", - "author": { - "username": "terakilobyte", - "userId": "54f6262394f355ce1d969d9f", - "picture": "https://pbs.twimg.com/profile_images/2563218307/67rpczkpeyo1xem5vto3.gif" - }, - "storyLink": "learn to code and become a software engineer free code camp", - "image": "", - "comments": [ - ], - "upVotes": [ - { - "upVotedByUsername": "terakilobyte", - "upVotedBy": "54f6262394f355ce1d969d9f" - } - ], - "rank": 1, - "timePosted": 1425806926395.0 - }, - { - "headline": "Learn to Code and Become a Software Engineer | Free Code Camp", - "link": "http://www.freecodecamp.com", - "description": "The website we're building these \"forums\" for!", - "author": { - "username": "terakilobyte", - "userId": "54f6262394f355ce1d969d9f", - "picture": "https://pbs.twimg.com/profile_images/2563218307/67rpczkpeyo1xem5vto3.gif" - }, - "storyLink": "learn to code and become a software engineer free code camp", - "image": "", - "comments": [ - ], - "upVotes": [ - { - "upVotedByUsername": "terakilobyte", - "upVotedBy": "54f6262394f355ce1d969d9f" - } - ], - "rank": 1, - "timePosted": 1425806926395.0 - }, - { - "headline": "Learn to Code and Become a Software Engineer | Free Code Camp", - "link": "http://www.freecodecamp.com", - "description": "The website we're building these \"forums\" for!", - "author": { - "username": "terakilobyte", - "userId": "54f6262394f355ce1d969d9f", - "picture": "https://pbs.twimg.com/profile_images/2563218307/67rpczkpeyo1xem5vto3.gif" - }, - "storyLink": "learn to code and become a software engineer free code camp", - "image": "", - "comments": [ - ], - "upVotes": [ - { - "upVotedByUsername": "terakilobyte", - "upVotedBy": "54f6262394f355ce1d969d9f" - } - ], - "rank": 1, - "timePosted": 1425806926395.0 - }, - { - "headline": "Learn to Code and Become a Software Engineer | Free Code Camp", - "link": "http://www.freecodecamp.com", - "description": "The website we're building these \"forums\" for!", - "author": { - "username": "terakilobyte", - "userId": "54f6262394f355ce1d969d9f", - "picture": "https://pbs.twimg.com/profile_images/2563218307/67rpczkpeyo1xem5vto3.gif" - }, - "storyLink": "learn to code and become a software engineer free code camp", - "image": "", - "comments": [ - ], - "upVotes": [ - { - "upVotedByUsername": "terakilobyte", - "upVotedBy": "54f6262394f355ce1d969d9f" - } - ], - "rank": 1, - "timePosted": 1425806926395.0 - }, - { - "headline": "Learn to Code and Become a Software Engineer | Free Code Camp", - "link": "http://www.freecodecamp.com", - "description": "The website we're building these \"forums\" for!", - "author": { - "username": "terakilobyte", - "userId": "54f6262394f355ce1d969d9f", - "picture": "https://pbs.twimg.com/profile_images/2563218307/67rpczkpeyo1xem5vto3.gif" - }, - "storyLink": "learn to code and become a software engineer free code camp", - "image": "", - "comments": [ - ], - "upVotes": [ - { - "upVotedByUsername": "terakilobyte", - "upVotedBy": "54f6262394f355ce1d969d9f" - } - ], - "rank": 1, - "timePosted": 1425806926395.0 - }, - { - "headline": "Learn to Code and Become a Software Engineer | Free Code Camp", - "link": "http://www.freecodecamp.com", - "description": "The website we're building these \"forums\" for!", - "author": { - "username": "terakilobyte", - "userId": "54f6262394f355ce1d969d9f", - "picture": "https://pbs.twimg.com/profile_images/2563218307/67rpczkpeyo1xem5vto3.gif" - }, - "storyLink": "learn to code and become a software engineer free code camp", - "image": "", - "comments": [ - ], - "upVotes": [ - { - "upVotedByUsername": "terakilobyte", - "upVotedBy": "54f6262394f355ce1d969d9f" - } - ], - "rank": 1, - "timePosted": 1425806926395.0 - }, - { - "headline": "Learn to Code and Become a Software Engineer | Free Code Camp", - "link": "http://www.freecodecamp.com", - "description": "The website we're building these \"forums\" for!", - "author": { - "username": "terakilobyte", - "userId": "54f6262394f355ce1d969d9f", - "picture": "https://pbs.twimg.com/profile_images/2563218307/67rpczkpeyo1xem5vto3.gif" - }, - "storyLink": "learn to code and become a software engineer free code camp", - "image": "", - "comments": [ - ], - "upVotes": [ - { - "upVotedByUsername": "terakilobyte", - "upVotedBy": "54f6262394f355ce1d969d9f" - } - ], - "rank": 1, - "timePosted": 1425806926395.0 - }, - { - "headline": "Learn to Code and Become a Software Engineer | Free Code Camp", - "link": "http://www.freecodecamp.com", - "description": "The website we're building these \"forums\" for!", - "author": { - "username": "terakilobyte", - "userId": "54f6262394f355ce1d969d9f", - "picture": "https://pbs.twimg.com/profile_images/2563218307/67rpczkpeyo1xem5vto3.gif" - }, - "storyLink": "learn to code and become a software engineer free code camp", - "image": "", - "comments": [ - ], - "upVotes": [ - { - "upVotedByUsername": "terakilobyte", - "upVotedBy": "54f6262394f355ce1d969d9f" - } - ], - "rank": 1, - "timePosted": 1425806926395.0 - }, - { - "headline": "Learn to Code and Become a Software Engineer | Free Code Camp", - "link": "http://www.freecodecamp.com", - "description": "The website we're building these \"forums\" for!", - "author": { - "username": "terakilobyte", - "userId": "54f6262394f355ce1d969d9f", - "picture": "https://pbs.twimg.com/profile_images/2563218307/67rpczkpeyo1xem5vto3.gif" - }, - "storyLink": "learn to code and become a software engineer free code camp", - "image": "", - "comments": [ - ], - "upVotes": [ - { - "upVotedByUsername": "terakilobyte", - "upVotedBy": "54f6262394f355ce1d969d9f" - } - ], - "rank": 1, - "timePosted": 1425806926395.0 - }, - { - "headline": "Learn to Code and Become a Software Engineer | Free Code Camp", - "link": "http://www.freecodecamp.com", - "description": "The website we're building these \"forums\" for!", - "author": { - "username": "terakilobyte", - "userId": "54f6262394f355ce1d969d9f", - "picture": "https://pbs.twimg.com/profile_images/2563218307/67rpczkpeyo1xem5vto3.gif" - }, - "storyLink": "learn to code and become a software engineer free code camp", - "image": "", - "comments": [ - ], - "upVotes": [ - { - "upVotedByUsername": "terakilobyte", - "upVotedBy": "54f6262394f355ce1d969d9f" - } - ], - "rank": 1, - "timePosted": 1425806926395.0 - }, - { - "headline": "Learn to Code and Become a Software Engineer | Free Code Camp", - "link": "http://www.freecodecamp.com", - "description": "The website we're building these \"forums\" for!", - "author": { - "username": "terakilobyte", - "userId": "54f6262394f355ce1d969d9f", - "picture": "https://pbs.twimg.com/profile_images/2563218307/67rpczkpeyo1xem5vto3.gif" - }, - "storyLink": "learn to code and become a software engineer free code camp", - "image": "", - "comments": [ - ], - "upVotes": [ - { - "upVotedByUsername": "terakilobyte", - "upVotedBy": "54f6262394f355ce1d969d9f" - } - ], - "rank": 1, - "timePosted": 1425806926395.0 - }, - { - "headline": "Learn to Code and Become a Software Engineer | Free Code Camp", - "link": "http://www.freecodecamp.com", - "description": "The website we're building these \"forums\" for!", - "author": { - "username": "terakilobyte", - "userId": "54f6262394f355ce1d969d9f", - "picture": "https://pbs.twimg.com/profile_images/2563218307/67rpczkpeyo1xem5vto3.gif" - }, - "storyLink": "learn to code and become a software engineer free code camp", - "image": "", - "comments": [ - ], - "upVotes": [ - { - "upVotedByUsername": "terakilobyte", - "upVotedBy": "54f6262394f355ce1d969d9f" - } - ], - "rank": 1, - "timePosted": 1425806926395.0 - }, - { - "headline": "Learn to Code and Become a Software Engineer | Free Code Camp", - "link": "http://www.freecodecamp.com", - "description": "The website we're building these \"forums\" for!", - "author": { - "username": "terakilobyte", - "userId": "54f6262394f355ce1d969d9f", - "picture": "https://pbs.twimg.com/profile_images/2563218307/67rpczkpeyo1xem5vto3.gif" - }, - "storyLink": "learn to code and become a software engineer free code camp", - "image": "", - "comments": [ - ], - "upVotes": [ - { - "upVotedByUsername": "terakilobyte", - "upVotedBy": "54f6262394f355ce1d969d9f" - } - ], - "rank": 1, - "timePosted": 1425806926395.0 - }, - { - "headline": "Learn to Code and Become a Software Engineer | Free Code Camp", - "link": "http://www.freecodecamp.com", - "description": "The website we're building these \"forums\" for!", - "author": { - "username": "terakilobyte", - "userId": "54f6262394f355ce1d969d9f", - "picture": "https://pbs.twimg.com/profile_images/2563218307/67rpczkpeyo1xem5vto3.gif" - }, - "storyLink": "learn to code and become a software engineer free code camp", - "image": "", - "comments": [ - ], - "upVotes": [ - { - "upVotedByUsername": "terakilobyte", - "upVotedBy": "54f6262394f355ce1d969d9f" - } - ], - "rank": 1, - "timePosted": 1425806926395.0 - }, - { - "headline": "Learn to Code and Become a Software Engineer | Free Code Camp", - "link": "http://www.freecodecamp.com", - "description": "The website we're building these \"forums\" for!", - "author": { - "username": "terakilobyte", - "userId": "54f6262394f355ce1d969d9f", - "picture": "https://pbs.twimg.com/profile_images/2563218307/67rpczkpeyo1xem5vto3.gif" - }, - "storyLink": "learn to code and become a software engineer free code camp", - "image": "", - "comments": [ - ], - "upVotes": [ - { - "upVotedByUsername": "terakilobyte", - "upVotedBy": "54f6262394f355ce1d969d9f" - } - ], - "rank": 1, - "timePosted": 1425806926395.0 - }, - { - "headline": "Learn to Code and Become a Software Engineer | Free Code Camp", - "link": "http://www.freecodecamp.com", - "description": "The website we're building these \"forums\" for!", - "author": { - "username": "terakilobyte", - "userId": "54f6262394f355ce1d969d9f", - "picture": "https://pbs.twimg.com/profile_images/2563218307/67rpczkpeyo1xem5vto3.gif" - }, - "storyLink": "learn to code and become a software engineer free code camp", - "image": "", - "comments": [ - ], - "upVotes": [ - { - "upVotedByUsername": "terakilobyte", - "upVotedBy": "54f6262394f355ce1d969d9f" - } - ], - "rank": 1, - "timePosted": 1425806926395.0 - }, - { - "headline": "Learn to Code and Become a Software Engineer | Free Code Camp", - "link": "http://www.freecodecamp.com", - "description": "The website we're building these \"forums\" for!", - "author": { - "username": "terakilobyte", - "userId": "54f6262394f355ce1d969d9f", - "picture": "https://pbs.twimg.com/profile_images/2563218307/67rpczkpeyo1xem5vto3.gif" - }, - "storyLink": "learn to code and become a software engineer free code camp", - "image": "", - "comments": [ - ], - "upVotes": [ - { - "upVotedByUsername": "terakilobyte", - "upVotedBy": "54f6262394f355ce1d969d9f" - } - ], - "rank": 1, - "timePosted": 1425806926395.0 - }, - { - "headline": "Learn to Code and Become a Software Engineer | Free Code Camp", - "link": "http://www.freecodecamp.com", - "description": "The website we're building these \"forums\" for!", - "author": { - "username": "terakilobyte", - "userId": "54f6262394f355ce1d969d9f", - "picture": "https://pbs.twimg.com/profile_images/2563218307/67rpczkpeyo1xem5vto3.gif" - }, - "storyLink": "learn to code and become a software engineer free code camp", - "image": "", - "comments": [ - ], - "upVotes": [ - { - "upVotedByUsername": "terakilobyte", - "upVotedBy": "54f6262394f355ce1d969d9f" - } - ], - "rank": 1, - "timePosted": 1425806926395.0 - }, - { - "headline": "Learn to Code and Become a Software Engineer | Free Code Camp", - "link": "http://www.freecodecamp.com", - "description": "The website we're building these \"forums\" for!", - "author": { - "username": "terakilobyte", - "userId": "54f6262394f355ce1d969d9f", - "picture": "https://pbs.twimg.com/profile_images/2563218307/67rpczkpeyo1xem5vto3.gif" - }, - "storyLink": "learn to code and become a software engineer free code camp", - "image": "", - "comments": [ - ], - "upVotes": [ - { - "upVotedByUsername": "terakilobyte", - "upVotedBy": "54f6262394f355ce1d969d9f" - } - ], - "rank": 1, - "timePosted": 1425806926395.0 - }, - { - "headline": "Learn to Code and Become a Software Engineer | Free Code Camp", - "link": "http://www.freecodecamp.com", - "description": "The website we're building these \"forums\" for!", - "author": { - "username": "terakilobyte", - "userId": "54f6262394f355ce1d969d9f", - "picture": "https://pbs.twimg.com/profile_images/2563218307/67rpczkpeyo1xem5vto3.gif" - }, - "storyLink": "learn to code and become a software engineer free code camp", - "image": "", - "comments": [ - ], - "upVotes": [ - { - "upVotedByUsername": "terakilobyte", - "upVotedBy": "54f6262394f355ce1d969d9f" - } - ], - "rank": 1, - "timePosted": 1425806926395.0 - }, - { - "headline": "Learn to Code and Become a Software Engineer | Free Code Camp", - "link": "http://www.freecodecamp.com", - "description": "The website we're building these \"forums\" for!", - "author": { - "username": "terakilobyte", - "userId": "54f6262394f355ce1d969d9f", - "picture": "https://pbs.twimg.com/profile_images/2563218307/67rpczkpeyo1xem5vto3.gif" - }, - "storyLink": "learn to code and become a software engineer free code camp", - "image": "", - "comments": [ - ], - "upVotes": [ - { - "upVotedByUsername": "terakilobyte", - "upVotedBy": "54f6262394f355ce1d969d9f" - } - ], - "rank": 1, - "timePosted": 1425806926395.0 - }, - { - "headline": "Learn to Code and Become a Software Engineer | Free Code Camp", - "link": "http://www.freecodecamp.com", - "description": "The website we're building these \"forums\" for!", - "author": { - "username": "terakilobyte", - "userId": "54f6262394f355ce1d969d9f", - "picture": "https://pbs.twimg.com/profile_images/2563218307/67rpczkpeyo1xem5vto3.gif" - }, - "storyLink": "learn to code and become a software engineer free code camp", - "image": "", - "comments": [ - ], - "upVotes": [ - { - "upVotedByUsername": "terakilobyte", - "upVotedBy": "54f6262394f355ce1d969d9f" - } - ], - "rank": 1, - "timePosted": 1425806926395.0 - }, - { - "headline": "Learn to Code and Become a Software Engineer | Free Code Camp", - "link": "http://www.freecodecamp.com", - "description": "The website we're building these \"forums\" for!", - "author": { - "username": "terakilobyte", - "userId": "54f6262394f355ce1d969d9f", - "picture": "https://pbs.twimg.com/profile_images/2563218307/67rpczkpeyo1xem5vto3.gif" - }, - "storyLink": "learn to code and become a software engineer free code camp", - "image": "", - "comments": [ - ], - "upVotes": [ - { - "upVotedByUsername": "terakilobyte", - "upVotedBy": "54f6262394f355ce1d969d9f" - } - ], - "rank": 1, - "timePosted": 1425806926395.0 - }, - { - "headline": "Learn to Code and Become a Software Engineer | Free Code Camp", - "link": "http://www.freecodecamp.com", - "description": "The website we're building these \"forums\" for!", - "author": { - "username": "terakilobyte", - "userId": "54f6262394f355ce1d969d9f", - "picture": "https://pbs.twimg.com/profile_images/2563218307/67rpczkpeyo1xem5vto3.gif" - }, - "storyLink": "learn to code and become a software engineer free code camp", - "image": "", - "comments": [ - ], - "upVotes": [ - { - "upVotedByUsername": "terakilobyte", - "upVotedBy": "54f6262394f355ce1d969d9f" - } - ], - "rank": 1, - "timePosted": 1425806926395.0 - }, - { - "headline": "Learn to Code and Become a Software Engineer | Free Code Camp", - "link": "http://www.freecodecamp.com", - "description": "The website we're building these \"forums\" for!", - "author": { - "username": "terakilobyte", - "userId": "54f6262394f355ce1d969d9f", - "picture": "https://pbs.twimg.com/profile_images/2563218307/67rpczkpeyo1xem5vto3.gif" - }, - "storyLink": "learn to code and become a software engineer free code camp", - "image": "", - "comments": [ - ], - "upVotes": [ - { - "upVotedByUsername": "terakilobyte", - "upVotedBy": "54f6262394f355ce1d969d9f" - } - ], - "rank": 1, - "timePosted": 1425806926395.0 - }, - { - "headline": "Learn to Code and Become a Software Engineer | Free Code Camp", - "link": "http://www.freecodecamp.com", - "description": "The website we're building these \"forums\" for!", - "author": { - "username": "terakilobyte", - "userId": "54f6262394f355ce1d969d9f", - "picture": "https://pbs.twimg.com/profile_images/2563218307/67rpczkpeyo1xem5vto3.gif" - }, - "storyLink": "learn to code and become a software engineer free code camp", - "image": "", - "comments": [ - ], - "upVotes": [ - { - "upVotedByUsername": "terakilobyte", - "upVotedBy": "54f6262394f355ce1d969d9f" - } - ], - "rank": 1, - "timePosted": 1425806926395.0 - }, - { - "headline": "Learn to Code and Become a Software Engineer | Free Code Camp", - "link": "http://www.freecodecamp.com", - "description": "The website we're building these \"forums\" for!", - "author": { - "username": "terakilobyte", - "userId": "54f6262394f355ce1d969d9f", - "picture": "https://pbs.twimg.com/profile_images/2563218307/67rpczkpeyo1xem5vto3.gif" - }, - "storyLink": "learn to code and become a software engineer free code camp", - "image": "", - "comments": [ - ], - "upVotes": [ - { - "upVotedByUsername": "terakilobyte", - "upVotedBy": "54f6262394f355ce1d969d9f" - } - ], - "rank": 1, - "timePosted": 1425806926395.0 - }, - { - "headline": "Learn to Code and Become a Software Engineer | Free Code Camp", - "link": "http://www.freecodecamp.com", - "description": "The website we're building these \"forums\" for!", - "author": { - "username": "terakilobyte", - "userId": "54f6262394f355ce1d969d9f", - "picture": "https://pbs.twimg.com/profile_images/2563218307/67rpczkpeyo1xem5vto3.gif" - }, - "storyLink": "learn to code and become a software engineer free code camp", - "image": "", - "comments": [ - ], - "upVotes": [ - { - "upVotedByUsername": "terakilobyte", - "upVotedBy": "54f6262394f355ce1d969d9f" - } - ], - "rank": 1, - "timePosted": 1425806926395.0 - }, - { - "headline": "Learn to Code and Become a Software Engineer | Free Code Camp", - "link": "http://www.freecodecamp.com", - "description": "The website we're building these \"forums\" for!", - "author": { - "username": "terakilobyte", - "userId": "54f6262394f355ce1d969d9f", - "picture": "https://pbs.twimg.com/profile_images/2563218307/67rpczkpeyo1xem5vto3.gif" - }, - "storyLink": "learn to code and become a software engineer free code camp", - "image": "", - "comments": [ - ], - "upVotes": [ - { - "upVotedByUsername": "terakilobyte", - "upVotedBy": "54f6262394f355ce1d969d9f" - } - ], - "rank": 1, - "timePosted": 1425806926395.0 - }, - { - "headline": "Learn to Code and Become a Software Engineer | Free Code Camp", - "link": "http://www.freecodecamp.com", - "description": "The website we're building these \"forums\" for!", - "author": { - "username": "terakilobyte", - "userId": "54f6262394f355ce1d969d9f", - "picture": "https://pbs.twimg.com/profile_images/2563218307/67rpczkpeyo1xem5vto3.gif" - }, - "storyLink": "learn to code and become a software engineer free code camp", - "image": "", - "comments": [ - ], - "upVotes": [ - { - "upVotedByUsername": "terakilobyte", - "upVotedBy": "54f6262394f355ce1d969d9f" - } - ], - "rank": 1, - "timePosted": 1425806926395.0 - }, - { - "headline": "Learn to Code and Become a Software Engineer | Free Code Camp", - "link": "http://www.freecodecamp.com", - "description": "The website we're building these \"forums\" for!", - "author": { - "username": "terakilobyte", - "userId": "54f6262394f355ce1d969d9f", - "picture": "https://pbs.twimg.com/profile_images/2563218307/67rpczkpeyo1xem5vto3.gif" - }, - "storyLink": "learn to code and become a software engineer free code camp", - "image": "", - "comments": [ - ], - "upVotes": [ - { - "upVotedByUsername": "terakilobyte", - "upVotedBy": "54f6262394f355ce1d969d9f" - } - ], - "rank": 1, - "timePosted": 1425806926395.0 - }, - { - "headline": "Learn to Code and Become a Software Engineer | Free Code Camp", - "link": "http://www.freecodecamp.com", - "description": "The website we're building these \"forums\" for!", - "author": { - "username": "terakilobyte", - "userId": "54f6262394f355ce1d969d9f", - "picture": "https://pbs.twimg.com/profile_images/2563218307/67rpczkpeyo1xem5vto3.gif" - }, - "storyLink": "learn to code and become a software engineer free code camp", - "image": "", - "comments": [ - ], - "upVotes": [ - { - "upVotedByUsername": "terakilobyte", - "upVotedBy": "54f6262394f355ce1d969d9f" - } - ], - "rank": 1, - "timePosted": 1425806926395.0 - }, - { - "headline": "Learn to Code and Become a Software Engineer | Free Code Camp", - "link": "http://www.freecodecamp.com", - "description": "The website we're building these \"forums\" for!", - "author": { - "username": "terakilobyte", - "userId": "54f6262394f355ce1d969d9f", - "picture": "https://pbs.twimg.com/profile_images/2563218307/67rpczkpeyo1xem5vto3.gif" - }, - "storyLink": "learn to code and become a software engineer free code camp", - "image": "", - "comments": [ - ], - "upVotes": [ - { - "upVotedByUsername": "terakilobyte", - "upVotedBy": "54f6262394f355ce1d969d9f" - } - ], - "rank": 1, - "timePosted": 1425806926395.0 - }, - { - "headline": "Learn to Code and Become a Software Engineer | Free Code Camp", - "link": "http://www.freecodecamp.com", - "description": "The website we're building these \"forums\" for!", - "author": { - "username": "terakilobyte", - "userId": "54f6262394f355ce1d969d9f", - "picture": "https://pbs.twimg.com/profile_images/2563218307/67rpczkpeyo1xem5vto3.gif" - }, - "storyLink": "learn to code and become a software engineer free code camp", - "image": "", - "comments": [ - ], - "upVotes": [ - { - "upVotedByUsername": "terakilobyte", - "upVotedBy": "54f6262394f355ce1d969d9f" - } - ], - "rank": 1, - "timePosted": 1425806926395.0 - }, - { - "headline": "Learn to Code and Become a Software Engineer | Free Code Camp", - "link": "http://www.freecodecamp.com", - "description": "The website we're building these \"forums\" for!", - "author": { - "username": "terakilobyte", - "userId": "54f6262394f355ce1d969d9f", - "picture": "https://pbs.twimg.com/profile_images/2563218307/67rpczkpeyo1xem5vto3.gif" - }, - "storyLink": "learn to code and become a software engineer free code camp", - "image": "", - "comments": [ - ], - "upVotes": [ - { - "upVotedByUsername": "terakilobyte", - "upVotedBy": "54f6262394f355ce1d969d9f" - } - ], - "rank": 1, - "timePosted": 1425806926395.0 - }, - { - "headline": "Learn to Code and Become a Software Engineer | Free Code Camp", - "link": "http://www.freecodecamp.com", - "description": "The website we're building these \"forums\" for!", - "author": { - "username": "terakilobyte", - "userId": "54f6262394f355ce1d969d9f", - "picture": "https://pbs.twimg.com/profile_images/2563218307/67rpczkpeyo1xem5vto3.gif" - }, - "storyLink": "learn to code and become a software engineer free code camp", - "image": "", - "comments": [ - ], - "upVotes": [ - { - "upVotedByUsername": "terakilobyte", - "upVotedBy": "54f6262394f355ce1d969d9f" - } - ], - "rank": 1, - "timePosted": 1425806926395.0 - }, - { - "headline": "Learn to Code and Become a Software Engineer | Free Code Camp", - "link": "http://www.freecodecamp.com", - "description": "The website we're building these \"forums\" for!", - "author": { - "username": "terakilobyte", - "userId": "54f6262394f355ce1d969d9f", - "picture": "https://pbs.twimg.com/profile_images/2563218307/67rpczkpeyo1xem5vto3.gif" - }, - "storyLink": "learn to code and become a software engineer free code camp", - "image": "", - "comments": [ - ], - "upVotes": [ - { - "upVotedByUsername": "terakilobyte", - "upVotedBy": "54f6262394f355ce1d969d9f" - } - ], - "rank": 1, - "timePosted": 1425806926395.0 - }, - { - "headline": "Learn to Code and Become a Software Engineer | Free Code Camp", - "link": "http://www.freecodecamp.com", - "description": "The website we're building these \"forums\" for!", - "author": { - "username": "terakilobyte", - "userId": "54f6262394f355ce1d969d9f", - "picture": "https://pbs.twimg.com/profile_images/2563218307/67rpczkpeyo1xem5vto3.gif" - }, - "storyLink": "learn to code and become a software engineer free code camp", - "image": "", - "comments": [ - ], - "upVotes": [ - { - "upVotedByUsername": "terakilobyte", - "upVotedBy": "54f6262394f355ce1d969d9f" - } - ], - "rank": 1, - "timePosted": 1425806926395.0 - }, - { - "headline": "Learn to Code and Become a Software Engineer | Free Code Camp", - "link": "http://www.freecodecamp.com", - "description": "The website we're building these \"forums\" for!", - "author": { - "username": "terakilobyte", - "userId": "54f6262394f355ce1d969d9f", - "picture": "https://pbs.twimg.com/profile_images/2563218307/67rpczkpeyo1xem5vto3.gif" - }, - "storyLink": "learn to code and become a software engineer free code camp", - "image": "", - "comments": [ - ], - "upVotes": [ - { - "upVotedByUsername": "terakilobyte", - "upVotedBy": "54f6262394f355ce1d969d9f" - } - ], - "rank": 1, - "timePosted": 1425806926395.0 - }, - { - "headline": "Learn to Code and Become a Software Engineer | Free Code Camp", - "link": "http://www.freecodecamp.com", - "description": "The website we're building these \"forums\" for!", - "author": { - "username": "terakilobyte", - "userId": "54f6262394f355ce1d969d9f", - "picture": "https://pbs.twimg.com/profile_images/2563218307/67rpczkpeyo1xem5vto3.gif" - }, - "storyLink": "learn to code and become a software engineer free code camp", - "image": "", - "comments": [ - ], - "upVotes": [ - { - "upVotedByUsername": "terakilobyte", - "upVotedBy": "54f6262394f355ce1d969d9f" - } - ], - "rank": 1, - "timePosted": 1425806926395.0 - }, - { - "headline": "Learn to Code and Become a Software Engineer | Free Code Camp", - "link": "http://www.freecodecamp.com", - "description": "The website we're building these \"forums\" for!", - "author": { - "username": "terakilobyte", - "userId": "54f6262394f355ce1d969d9f", - "picture": "https://pbs.twimg.com/profile_images/2563218307/67rpczkpeyo1xem5vto3.gif" - }, - "storyLink": "learn to code and become a software engineer free code camp", - "image": "", - "comments": [ - ], - "upVotes": [ - { - "upVotedByUsername": "terakilobyte", - "upVotedBy": "54f6262394f355ce1d969d9f" - } - ], - "rank": 1, - "timePosted": 1425806926395.0 - }, - { - "headline": "Learn to Code and Become a Software Engineer | Free Code Camp", - "link": "http://www.freecodecamp.com", - "description": "The website we're building these \"forums\" for!", - "author": { - "username": "terakilobyte", - "userId": "54f6262394f355ce1d969d9f", - "picture": "https://pbs.twimg.com/profile_images/2563218307/67rpczkpeyo1xem5vto3.gif" - }, - "storyLink": "learn to code and become a software engineer free code camp", - "image": "", - "comments": [ - ], - "upVotes": [ - { - "upVotedByUsername": "terakilobyte", - "upVotedBy": "54f6262394f355ce1d969d9f" - } - ], - "rank": 1, - "timePosted": 1425806926395.0 - }, - { - "headline": "Learn to Code and Become a Software Engineer | Free Code Camp", - "link": "http://www.freecodecamp.com", - "description": "The website we're building these \"forums\" for!", - "author": { - "username": "terakilobyte", - "userId": "54f6262394f355ce1d969d9f", - "picture": "https://pbs.twimg.com/profile_images/2563218307/67rpczkpeyo1xem5vto3.gif" - }, - "storyLink": "learn to code and become a software engineer free code camp", - "image": "", - "comments": [ - ], - "upVotes": [ - { - "upVotedByUsername": "terakilobyte", - "upVotedBy": "54f6262394f355ce1d969d9f" - } - ], - "rank": 1, - "timePosted": 1425806926395.0 - }, - { - "headline": "Learn to Code and Become a Software Engineer | Free Code Camp", - "link": "http://www.freecodecamp.com", - "description": "The website we're building these \"forums\" for!", - "author": { - "username": "terakilobyte", - "userId": "54f6262394f355ce1d969d9f", - "picture": "https://pbs.twimg.com/profile_images/2563218307/67rpczkpeyo1xem5vto3.gif" - }, - "storyLink": "learn to code and become a software engineer free code camp", - "image": "", - "comments": [ - ], - "upVotes": [ - { - "upVotedByUsername": "terakilobyte", - "upVotedBy": "54f6262394f355ce1d969d9f" - } - ], - "rank": 1, - "timePosted": 1425806926395.0 - }, - { - "headline": "Learn to Code and Become a Software Engineer | Free Code Camp", - "link": "http://www.freecodecamp.com", - "description": "The website we're building these \"forums\" for!", - "author": { - "username": "terakilobyte", - "userId": "54f6262394f355ce1d969d9f", - "picture": "https://pbs.twimg.com/profile_images/2563218307/67rpczkpeyo1xem5vto3.gif" - }, - "storyLink": "learn to code and become a software engineer free code camp", - "image": "", - "comments": [ - ], - "upVotes": [ - { - "upVotedByUsername": "terakilobyte", - "upVotedBy": "54f6262394f355ce1d969d9f" - } - ], - "rank": 1, - "timePosted": 1425806926395.0 - }, - { - "headline": "Learn to Code and Become a Software Engineer | Free Code Camp", - "link": "http://www.freecodecamp.com", - "description": "The website we're building these \"forums\" for!", - "author": { - "username": "terakilobyte", - "userId": "54f6262394f355ce1d969d9f", - "picture": "https://pbs.twimg.com/profile_images/2563218307/67rpczkpeyo1xem5vto3.gif" - }, - "storyLink": "learn to code and become a software engineer free code camp", - "image": "", - "comments": [ - ], - "upVotes": [ - { - "upVotedByUsername": "terakilobyte", - "upVotedBy": "54f6262394f355ce1d969d9f" - } - ], - "rank": 1, - "timePosted": 1425806926395.0 - }, - { - "headline": "Learn to Code and Become a Software Engineer | Free Code Camp", - "link": "http://www.freecodecamp.com", - "description": "The website we're building these \"forums\" for!", - "author": { - "username": "terakilobyte", - "userId": "54f6262394f355ce1d969d9f", - "picture": "https://pbs.twimg.com/profile_images/2563218307/67rpczkpeyo1xem5vto3.gif" - }, - "storyLink": "learn to code and become a software engineer free code camp", - "image": "", - "comments": [ - ], - "upVotes": [ - { - "upVotedByUsername": "terakilobyte", - "upVotedBy": "54f6262394f355ce1d969d9f" - } - ], - "rank": 1, - "timePosted": 1425806926395.0 - }, - { - "headline": "Learn to Code and Become a Software Engineer | Free Code Camp", - "link": "http://www.freecodecamp.com", - "description": "The website we're building these \"forums\" for!", - "author": { - "username": "terakilobyte", - "userId": "54f6262394f355ce1d969d9f", - "picture": "https://pbs.twimg.com/profile_images/2563218307/67rpczkpeyo1xem5vto3.gif" - }, - "storyLink": "learn to code and become a software engineer free code camp", - "image": "", - "comments": [ - ], - "upVotes": [ - { - "upVotedByUsername": "terakilobyte", - "upVotedBy": "54f6262394f355ce1d969d9f" - } - ], - "rank": 1, - "timePosted": 1425806926395.0 - }, - { - "headline": "Learn to Code and Become a Software Engineer | Free Code Camp", - "link": "http://www.freecodecamp.com", - "description": "The website we're building these \"forums\" for!", - "author": { - "username": "terakilobyte", - "userId": "54f6262394f355ce1d969d9f", - "picture": "https://pbs.twimg.com/profile_images/2563218307/67rpczkpeyo1xem5vto3.gif" - }, - "storyLink": "learn to code and become a software engineer free code camp", - "image": "", - "comments": [ - ], - "upVotes": [ - { - "upVotedByUsername": "terakilobyte", - "upVotedBy": "54f6262394f355ce1d969d9f" - } - ], - "rank": 1, - "timePosted": 1425806926395.0 - }, - { - "headline": "Learn to Code and Become a Software Engineer | Free Code Camp", - "link": "http://www.freecodecamp.com", - "description": "The website we're building these \"forums\" for!", - "author": { - "username": "terakilobyte", - "userId": "54f6262394f355ce1d969d9f", - "picture": "https://pbs.twimg.com/profile_images/2563218307/67rpczkpeyo1xem5vto3.gif" - }, - "storyLink": "learn to code and become a software engineer free code camp", - "image": "", - "comments": [ - ], - "upVotes": [ - { - "upVotedByUsername": "terakilobyte", - "upVotedBy": "54f6262394f355ce1d969d9f" - } - ], - "rank": 1, - "timePosted": 1425806926395.0 - }, - { - "headline": "Learn to Code and Become a Software Engineer | Free Code Camp", - "link": "http://www.freecodecamp.com", - "description": "The website we're building these \"forums\" for!", - "author": { - "username": "terakilobyte", - "userId": "54f6262394f355ce1d969d9f", - "picture": "https://pbs.twimg.com/profile_images/2563218307/67rpczkpeyo1xem5vto3.gif" - }, - "storyLink": "learn to code and become a software engineer free code camp", - "image": "", - "comments": [ - ], - "upVotes": [ - { - "upVotedByUsername": "terakilobyte", - "upVotedBy": "54f6262394f355ce1d969d9f" - } - ], - "rank": 1, - "timePosted": 1425806926395.0 - }, - { - "headline": "Learn to Code and Become a Software Engineer | Free Code Camp", - "link": "http://www.freecodecamp.com", - "description": "The website we're building these \"forums\" for!", - "author": { - "username": "terakilobyte", - "userId": "54f6262394f355ce1d969d9f", - "picture": "https://pbs.twimg.com/profile_images/2563218307/67rpczkpeyo1xem5vto3.gif" - }, - "storyLink": "learn to code and become a software engineer free code camp", - "image": "", - "comments": [ - ], - "upVotes": [ - { - "upVotedByUsername": "terakilobyte", - "upVotedBy": "54f6262394f355ce1d969d9f" - } - ], - "rank": 1, - "timePosted": 1425806926395.0 - }, - { - "headline": "Learn to Code and Become a Software Engineer | Free Code Camp", - "link": "http://www.freecodecamp.com", - "description": "The website we're building these \"forums\" for!", - "author": { - "username": "terakilobyte", - "userId": "54f6262394f355ce1d969d9f", - "picture": "https://pbs.twimg.com/profile_images/2563218307/67rpczkpeyo1xem5vto3.gif" - }, - "storyLink": "learn to code and become a software engineer free code camp", - "image": "", - "comments": [ - ], - "upVotes": [ - { - "upVotedByUsername": "terakilobyte", - "upVotedBy": "54f6262394f355ce1d969d9f" - } - ], - "rank": 1, - "timePosted": 1425806926395.0 - }, - { - "headline": "Learn to Code and Become a Software Engineer | Free Code Camp", - "link": "http://www.freecodecamp.com", - "description": "The website we're building these \"forums\" for!", - "author": { - "username": "terakilobyte", - "userId": "54f6262394f355ce1d969d9f", - "picture": "https://pbs.twimg.com/profile_images/2563218307/67rpczkpeyo1xem5vto3.gif" - }, - "storyLink": "learn to code and become a software engineer free code camp", - "image": "", - "comments": [ - ], - "upVotes": [ - { - "upVotedByUsername": "terakilobyte", - "upVotedBy": "54f6262394f355ce1d969d9f" - } - ], - "rank": 1, - "timePosted": 1425806926395.0 - }, - { - "headline": "Learn to Code and Become a Software Engineer | Free Code Camp", - "link": "http://www.freecodecamp.com", - "description": "The website we're building these \"forums\" for!", - "author": { - "username": "terakilobyte", - "userId": "54f6262394f355ce1d969d9f", - "picture": "https://pbs.twimg.com/profile_images/2563218307/67rpczkpeyo1xem5vto3.gif" - }, - "storyLink": "learn to code and become a software engineer free code camp", - "image": "", - "comments": [ - ], - "upVotes": [ - { - "upVotedByUsername": "terakilobyte", - "upVotedBy": "54f6262394f355ce1d969d9f" - } - ], - "rank": 1, - "timePosted": 1425806926395.0 - }, - { - "headline": "Learn to Code and Become a Software Engineer | Free Code Camp", - "link": "http://www.freecodecamp.com", - "description": "The website we're building these \"forums\" for!", - "author": { - "username": "terakilobyte", - "userId": "54f6262394f355ce1d969d9f", - "picture": "https://pbs.twimg.com/profile_images/2563218307/67rpczkpeyo1xem5vto3.gif" - }, - "storyLink": "learn to code and become a software engineer free code camp", - "image": "", - "comments": [ - ], - "upVotes": [ - { - "upVotedByUsername": "terakilobyte", - "upVotedBy": "54f6262394f355ce1d969d9f" - } - ], - "rank": 1, - "timePosted": 1425806926395.0 - }, - { - "headline": "Learn to Code and Become a Software Engineer | Free Code Camp", - "link": "http://www.freecodecamp.com", - "description": "The website we're building these \"forums\" for!", - "author": { - "username": "terakilobyte", - "userId": "54f6262394f355ce1d969d9f", - "picture": "https://pbs.twimg.com/profile_images/2563218307/67rpczkpeyo1xem5vto3.gif" - }, - "storyLink": "learn to code and become a software engineer free code camp", - "image": "", - "comments": [ - ], - "upVotes": [ - { - "upVotedByUsername": "terakilobyte", - "upVotedBy": "54f6262394f355ce1d969d9f" - } - ], - "rank": 1, - "timePosted": 1425806926395.0 - }, - { - "headline": "Learn to Code and Become a Software Engineer | Free Code Camp", - "link": "http://www.freecodecamp.com", - "description": "The website we're building these \"forums\" for!", - "author": { - "username": "terakilobyte", - "userId": "54f6262394f355ce1d969d9f", - "picture": "https://pbs.twimg.com/profile_images/2563218307/67rpczkpeyo1xem5vto3.gif" - }, - "storyLink": "learn to code and become a software engineer free code camp", - "image": "", - "comments": [ - ], - "upVotes": [ - { - "upVotedByUsername": "terakilobyte", - "upVotedBy": "54f6262394f355ce1d969d9f" - } - ], - "rank": 1, - "timePosted": 1425806926395.0 - }, - { - "headline": "Learn to Code and Become a Software Engineer | Free Code Camp", - "link": "http://www.freecodecamp.com", - "description": "The website we're building these \"forums\" for!", - "author": { - "username": "terakilobyte", - "userId": "54f6262394f355ce1d969d9f", - "picture": "https://pbs.twimg.com/profile_images/2563218307/67rpczkpeyo1xem5vto3.gif" - }, - "storyLink": "learn to code and become a software engineer free code camp", - "image": "", - "comments": [ - ], - "upVotes": [ - { - "upVotedByUsername": "terakilobyte", - "upVotedBy": "54f6262394f355ce1d969d9f" - } - ], - "rank": 1, - "timePosted": 1425806926395.0 - }, - { - "headline": "Learn to Code and Become a Software Engineer | Free Code Camp", - "link": "http://www.freecodecamp.com", - "description": "The website we're building these \"forums\" for!", - "author": { - "username": "terakilobyte", - "userId": "54f6262394f355ce1d969d9f", - "picture": "https://pbs.twimg.com/profile_images/2563218307/67rpczkpeyo1xem5vto3.gif" - }, - "storyLink": "learn to code and become a software engineer free code camp", - "image": "", - "comments": [ - ], - "upVotes": [ - { - "upVotedByUsername": "terakilobyte", - "upVotedBy": "54f6262394f355ce1d969d9f" - } - ], - "rank": 1, - "timePosted": 1425806926395.0 - }, - { - "headline": "Learn to Code and Become a Software Engineer | Free Code Camp", - "link": "http://www.freecodecamp.com", - "description": "The website we're building these \"forums\" for!", - "author": { - "username": "terakilobyte", - "userId": "54f6262394f355ce1d969d9f", - "picture": "https://pbs.twimg.com/profile_images/2563218307/67rpczkpeyo1xem5vto3.gif" - }, - "storyLink": "learn to code and become a software engineer free code camp", - "image": "", - "comments": [ - ], - "upVotes": [ - { - "upVotedByUsername": "terakilobyte", - "upVotedBy": "54f6262394f355ce1d969d9f" - } - ], - "rank": 1, - "timePosted": 1425806926395.0 - } -] \ No newline at end of file diff --git a/views/stories/comments.jade b/views/stories/comments.jade index 83f9f9f75f..a7b488de60 100644 --- a/views/stories/comments.jade +++ b/views/stories/comments.jade @@ -14,7 +14,6 @@ type: 'GET', url: '/stories/comments/' + comment, error: function (xhr, textStatus, errorThrown) { - console.log('got error'); commentDetails = { error: true, body: 'There seems to be a problem fetching this comment.' @@ -22,7 +21,6 @@ }, success: function (data, textStatus, xhr) { commentDetails = data; - console.log(commentDetails.commentOn); var div = document.createElement('div'); $(div) .html( diff --git a/views/stories/preliminary-submit.jade b/views/stories/preliminary-submit.jade index 293445f2c5..d625b8c7ad 100644 --- a/views/stories/preliminary-submit.jade +++ b/views/stories/preliminary-submit.jade @@ -15,14 +15,12 @@ script. $('#story-url').on('keypress', function(e) { if (e.which === 13 || e === 13) { - console.log('enter pressed'); $('#preliminary-story-submit').click(); } }); var preliminaryStorySubmit = function preliminaryStorySubmit() { var storyURL = $('#story-url').val(); - console.log(storyURL); $('#preliminary-story-submit').attr('disabled', 'disabled'); $.post('/stories/preliminary', diff --git a/views/stories/search-stories.jade b/views/stories/search-stories.jade index 8a56a0664d..584c918561 100644 --- a/views/stories/search-stories.jade +++ b/views/stories/search-stories.jade @@ -21,7 +21,6 @@ script. }); function executeSearch() { $('#stories').empty(); - console.log('clicked or enter button'); var searchTerm = $('#searchArea').val(); var getLinkedName = function getLinkedName(name) { return name.toLowerCase().replace(/\s/g, '-'); @@ -33,7 +32,6 @@ script. } }) .fail(function (xhr, textStatus, errorThrown) { - console.log('failure'); }) .done(function (data, textStatus, xhr) { for (var i = 0; i < data.length; i++) {