Amish Mittal (fliptrail)
Online Handles: fliptrail
Aboard World Dream, Hong Kong
Freshman Year
Computer Science and Engineering - B.Tech
Indian Institute of Technology Patna (IIT Patna)
New Delhi, India
Machine learning/Deep learning
Drones (UAVs)
Probabilistic/Random Algorithms
NodeJS and database performance and scalability
How gullible are we?
Fandom spread and outreach
Network/ Server Assign Operation
Source: http://www.seovisor.com
or is it ???
news_${ user._id }
example: news_d7wbJaQoMKhcuzWAX
for every user
URL: localhost:3000/newsfeed/news_LhWuzaojZPbEw3Ny5
This won't be necessary
User Relations Collection
based like the current User Subscription model
{
"_id" : "Djc3G7TNoaBQthedW",
"following" : "FDG6GigmTGkaZ8cfT",
"follower" : "CqkJoboStxtJFs9je",
"_updatedAt" : ISODate("2019-07-03T09:19:18.374Z")
}The 2 parameters - change in sequencing
const query = {
_hidden: {
$ne: true,
},
rid: roomId,
ts: {
$lt: timestamp,
},
};
return this.find(query, options);let query = {
_hidden: {
$ne: true,
},
$or: following,
ts: {
$lt: timestamp,
},
};$or: following
Array which contains all the people followed
query = {
_hidden: {
$ne: true,
},
$and: [
{ $or: following },
{ $or: listOfAccessibleRoomsObject },
],
ts: {
$lt: timestamp,
},
};Based on time, sender and channel currently
socialprototype.viasatconnect.com/