Eugene Volynko

Results 66 comments of Eugene Volynko

Yes, it's possible. I realized that this project is not very promising. It has poor performance compared to Brave or Chrome.

@tcastelli What is the correct way to pull all the jobs from mongo and then resume them? I cannot simulate the `resumeOnRestart` behavior because there is no `job.resume()` method. Example:...

@jonaszuberbuehler I was able to solve this issue by switching to [agenda](https://www.npmjs.com/package/agenda). After server restart fetch all jobs using `agenda.jobs()` and then do ``` agenda.define(job.attrs.name, { priority: 10 }, yourCallback)...

@jonaszuberbuehler I totally agree, but I think this would be hard to implement because, on server restart, we need to find the callback provided. How? The old js context doesn't...

@jonaszuberbuehler I chose pulse because of this flag and it never worked for me, I was trying to make it work a few times. Tried a few last versions from...

I'm having the same issue in ``` "@tauri-apps/api": "^2" ``` With following code ```javascript import { Window } from '@tauri-apps/api/window' Window.getByLabel('main').then((window) => { if (window) { window.setCursorVisible(false) } }) ```