Ondrej Medek

Results 62 issues of Ondrej Medek

Error: `node_modules/7zip-bin/linux/x64/7za: Permission denied` ``` $ cd node_modules/7zip-bin/linux/x64/ $ ls -l -rw-rw-r-- 1 auser auser 1457384 May 23 18:15 7za ``` Maybe the npm package has been built without right...

_Disclaimer:_ I know the project is not actively maintained. Just filling the issue if anybody would continue with it. When I has enabled this extension, and DoJo AMD with a...

The Require Module Support works well for the dojo AMD loading. It works even for relative path `./MyModule`, but it fails for relative path to the parent dir `../MyModule` -...

bug
good first issue

Add `logId` (usually called logger name or category) to the format. E.g. as `{logger}` (same as in log4j PatternLayout). Note: https://github.com/megahertz/electron-log/blob/master/docs/format.md does not mention `{scope}` and maybe anything else is...

I would like to log just to one file in Electron, so I set in `main.js`: ```js const log = require("electron-log").create("main"); log.transports.file.fileName = "log.log"; log.transports.file.maxSize = 1024; ``` and preload.js...

Retry algorithm has several problems: * [x] Retry `delay(ms)` wait is not abortable by `this._options.signal` , see https://github.com/sindresorhus/ky/blob/2049affe2ca939f53350fb9b7354c3ff8d2e1c1f/source/core/Ky.ts#L228 * Check [sindresorhus/delay](https://github.com/sindresorhus/delay) 😉 * [ ] If `Retry-After` is 0, i.e....

bug
help wanted

Current backoff algorithm is `0.3 * (2 ** (retry - 1)) * 1000` that does not suit for all. E.g. I may like to change some coefficient or add a...

enhancement
help wanted

**Describe the feature** I use requests-oauth to issue requests to a service. If service detects invalid token, it responds with HTTP 401 and header `WWW-Authenticate: Bearer error="invalid_token", error_description="The access token...

Contributor Friendly
OAuth2-Client

Hi, I do not know FFT in depth. I just need a fast, open source inverse FFT implementation. I have tested 3 implementations: 1. Math.NET Fourier.Radix2Inverse : the slowest for...