Adam Eisenreich

Results 125 comments of Adam Eisenreich

I too find the documentation around sending emails with the service account. ```ts import { google } from 'googleapis'; class MailProvider { private gmail = google.gmail({ version: 'v1', auth: new...

@Liero That could be theoretically done using [with](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/with) keyword, but it is not recommended. And there is a problem that, there are non-ambiguous creators/operators. `combineLatest` is one example. I would...

@rraziel For the long term, this should work https://github.com/cdr/code-server. Stripped down VSCode would work wonders...

Indeed, here is another PDF with annotations problem: [Faktura - ISCOD.pdf](https://github.com/VadimDez/ng2-pdf-viewer/files/7600888/Faktura.-.ISCOD.pdf)

Indeed, please, it is very annoying :( The vanilla pdf.js does not do this

I will happily convert v3 to a typesafe version, but I could not find the branch 😁 PS: Found it, began the work 😊

The typescript rewrite is quite hard without major changes to the codebase. There is a lot of `Object.assign(this, ...)` and a lot of sharing of the `this` "variable". I would...

I have a few questions for now: * `Formidable.js:409` - variable `results` is created and returned via emitter from this function, but it is never referenced and thus could not...

> * Correct , https://github.com/node-formidable/formidable/blob/64f32c2d5486918b2b8afdc2c6cc994d5f9a4a61/src/Formidable.js#L442 > add this line back > * A plugin does not really return , instead it attaches properties to the formidable instance (this._parser = parser;)...

> Converting to Typescript is already a huge task. You refactoring the code at the same time reduces the likelihood of this PR being merged fast. Because it creates opportunity...