How much did i screw up?
https://news.ycombinator.com/item?id=12052897i know there are alot of programmers on this board, so tell me me how on a scale of 1 to 10 how much of a moron i am for using node.js and mongodb to do the following: scrape 8 different social outlet / portfolio apis sync the the scraped data with 3 different post model schemas as well as a user model using a key store database mongodb all of that wrapped in promise library to avoid callbacks. scrape data live and based on certian queries, save, sync etc. everything wrapped in promises and i dont even know what will happen if two users run the same query async. why would i ever use node.js instead of something like python or ruby or whatever and just split the stuff into threads instead of having to deal with retarded javascript async??
the only reason i did it is because javascript was the first thing i learned besides some c++ or whatever in a few semesters of college.
should i be using a normal synchronous language like c# or java or something?