Damian Grzanka

Results 11 comments of Damian Grzanka

The multiplication error can be fixed with following regex ```replace(/\\cdot(\S)/g, '\\cdot $1')```.

Also weird behavior after an assignment in another equation Every equation is compiled to ``return 20`` ```js const nerdamer = require("nerdamer"); nerdamer.convertFromLaTeX("x=20"); const weird = [ "x+20", "x*20", "x-20", "x^{20}",...

@Hemantr05 @awesomedeba10 Example throws an error because this image no longer exists, but it is specified in the example. If you remove the second link, it should work ;) https://upload.wikimedia.org/wikipedia/commons/e/e8/FseeG2QeLXo.jpg

Yeap, I tried this library in the past and it was working as expected, but now where the time has come to do something useful with it suddenly I stopped...

I would like to implement it, I found [article](https://jsoverson.medium.com/bypassing-captchas-with-headless-chrome-93f294518337) that explains how to do it, puppeteer, from scratch. But that solution requires injecting a response from the captcha solver directly...

I am trying to code something more 'advanced' than just injecting token every time when captcha is encountered. And currently I am struggling to wait for any of two elements....

Here is my dirty version of captcha resolver, https://gist.github.com/magicaltoast/1fe097b92272aad8a972a52fe87968c2 . I got stuck because there is no good voice to speech model for node, I currently I have not enough...

@ctaity That would be cool, I would suggest implementing a captcha resolver as an interface rather than hardcoding calls to 2captcha, to give people the ability to add new providers...