Nazar Mokrynskyi

Results 386 comments of Nazar Mokrynskyi

One more instance in unplugging and plugging back in USB sound card (which is the only sound card in my system). Yet another instance is changing USB sound card's output...

Yes, but you can take value in pixels and divide by font size in pixels, getting `em`s

This will give font size of textarea, other font sizes of other elements are not interesting here: ``` javascript parseInt(getComputedStyle(textarea).fontSize) ``` Yes, it doesn't mean that height would scale correctly,...

I'm sorry, but even if you'll download it on demand, this is ***king crazy amount of data, IDE itself with lots of functionality have 312 MiB size. Even browser with...

@krasa, well, I'm on Linux x64)

First step was made by cd6d931, it brings interactive mode to installer

Probably, creating special bots for each scope would be better choice

Well, I'm using TypeScript 3.5.2 and it didn't work until I added declarations manually.

IntelliJ IDE doesn't offer any autocomplete and I'm using relatively strict mode in TypeScript, will share tsconfig.json a bit later.

My `tsconfig.json` looks like this: ``` { "compilerOptions": { "module": "commonjs", "target": "es6", "sourceMap": true, "forceConsistentCasingInFileNames": true, "noImplicitReturns": true, "moduleResolution": "node", "allowSyntheticDefaultImports": false, "sourceRoot": "src", "baseUrl": "src", "outDir": "dist", "strict":...