Tag Node JS

Recover your old Grammarly Docs

I registered on Grammarly on 2016-05-11T12:49:14.000(I took the date from the API). Since then, Grammerly checked about 1.8M words I wrote which is more or less ~17 novels.

As a non-native English speaker, I generally use Grammarly to at least get rid of any typos.

Not all the checkings were made over Docs in the app since Grammarly has extensions and can check in many other places.

But in the app, I created around ~600 documents unfortunately, Grammarly does not support pagination, and it only...

View full article

Puppeteer tricks to write a bot/scrapper

I wrote a bot recently that does some actions after it authenticates with an account using puppeteer and it was incredibly easy.
In case you don't know what puppeteer does, well, it is simply a Node library to control Chromium or Chrome programmatically, now such a library can have many uses but I'll focus on what you need to know when writing a scrapper/bot.

The first thing to know is what kind of website you are dealing with, it is a traditional website or is more like a SPA type of website? A...

View full article