Sergei Korolev

Results 7 comments of Sergei Korolev
trafficstars

@ArdenIvanov Found problem: `importResolvers` directory name in the source. `importResolvers` directory name after running `yarn compile`. But `ImportResolvers` in the vsix (from marketplace). Looks like publication error.

> `main.cpp` — an entry point that ties everything together Shouldn't the file have a unique name? In the case when several projects are transpiled into one directory with overwriting?

You can't disable `CtrlOrCmd+R` in a web browser environment. Also, I think this is bad idea. Maybe attach to `window.onbeforeunload` when something not saved and unattach after save? ```js window.onbeforeunload...

> `https://xod.io/ide/#proj=https%3A%2F%2Fexample.com%2Ffoo.xodball` — open the xodball published at https://example.com/foo.xodball Looks like attack vector. Potential cross site scripting (though, don't know how to use). Also, browser's `fetch` will download file only...

@nkrkv I think it's not a big problem in Electron, but in the browser with user's cookies (if no CORS/CSP checks): Imagine user that share links like this: [check this](https://xod.io/ide/#proj=http%3A%2F%2Fbank.example.com%2Fwithdraw%3Faccount%3DAlice%26amount%3D1000000%26for%3DBob%26foo.xodball)...

> If you'd like to try to make it an official Fedora package sometime, I'd cheer you on, and I'm sure a lot of people would be super grateful! Sorry,...

@saml-dev Working on android! Tested snippet: ```typescript // Get paths in folder if (this.settings.jsFolder != '') { const { files } = await this.app.vault.adapter.list(this.settings.jsFolder); const scripts = files.filter((f) => f.endsWith('.js'));...