How to extract text from an image using JavaScript

Many note-taking apps nowadays offer to take a picture of a document and turn it into text. I was curious how it works and decided to dig a little deeper to see what exactly was going on there.
A collection of 12 posts
Many note-taking apps nowadays offer to take a picture of a document and turn it into text. I was curious how it works and decided to dig a little deeper to see what exactly was going on there.
Recently on Facebook David Smooke (the CEO of Hackernoon) posted an article in which he listed 2018’s Top Tech Stories. He also mentioned that if someone wished to make a similar list about say _JavaScript_ he would be happy to...
Manually restarting the application’s process after each change to our codebase can be exhausting and frustrating. One brilliant developer eventually said: enough! and decided to put an end to this with a very simple package - Nodemon.
Logging is undoubtedly one of the most important parts of our application. Now, console is a very powerful tool, yes, but what if we wanted to log not only to console but also to a file?
Usually, the machine that executes our code has limited resources. Doing everything at once might not only hurt but can also hang our process and make it stop responding altogether.