Denys Otrishko

Results 38 comments of Denys Otrishko

@nechaido I think it's not appropriate to call them as such, even though third-party implementation should comply with some of them. Because they still are format specific to the js...

Also, I'd recommend using https://github.com/mcollina/autocannon or https://github.com/giltene/wrk2. You may find useful any flame graph visualization tool (e.g. https://github.com/mapbox/flamebearer or even simple v8s v8/tools/profview/index.html).

Also, it doesn't seem to detect tab-input, for example the time I was watching twitch stream was logged as afk.

@johan-bjareholt But clearly if you're watching videos or twitch streams it should be logged as activity and not afk. I've checked the actual bucket of the web watcher and it...

@ErikBjare Hm, do I understand it correctly that basically we need to change `filterAfk` handling in here https://github.com/ActivityWatch/aw-webui/blob/master/src/queries.js#L38 to not exclude `audible` events? But based on `aw-core/aw_transform/` there is no...

@ErikBjare Oh, well, I did [too](https://github.com/ActivityWatch/aw-core/pull/66), lol =) I should've said about that... Anyways feel free to checkout my version too) Also I've run my tests on your version and...

> I'm not familiar with how GH packages work, Oh, this is not for [GitHub packages](https://github.com/features/packages) but for installation from GitHub directly like `npm install github:bcherny/json-schema-to-typescript` (see https://docs.npmjs.com/cli/install or https://stackoverflow.com/questions/17509669/how-to-install-an-npm-package-from-github-directly)....

@bcherny yes it will run, though not after the install has completed but as a part of installing `json-schema-to-typescript` package right after all dependencies of `json-schema-to-typescript` were installed but before...

worker_threads doesn't support native addons as of 11.9.0 [ "Native addons are not supported yet."](https://nodejs.org/api/worker_threads.html#worker_threads_class_worker) therefore it won't be possible to `require('argon2')` in them as npm `argon2` module is just...

Refs: https://github.com/nodejs/node/pull/26175