Sebastiaan Dammann

Results 175 comments of Sebastiaan Dammann

Ah, I see it now. However, that linker script is introduced after the first exercise.

I was able to "resolve" this by doing it a [completely different way](https://md.ekstrandom.net/blog/2019/10/yubikey-ssh): - Download [wsl-ssh-pageant](https://github.com/benpye/wsl-ssh-pageant) - Add it to shell:startup as a shortcut: `wsl-ssh-pageant-amd64-gui.exe -systray -winssh ssh-pageant` - Set...

It is possible by adding a global event handler for the `dragstart` event, which bubbles up. ``` document.addEventListener('dragstart', function(ev) { if (ev.target.classList.contains('draggable')) { ev.dataTransfer.setData("text", null); } else { console.log('ignoring draggable');...

Would this (partially) mitigate [Cura/issues/#8321](https://github.com/Ultimaker/Cura/issues/8321)?

That works fine. Apologies, I must have overlooked it in the documentation.

This problems is somewhat larger, because the same happens with source maps. The source maps are generated, then after that the variables are injected in the code.

You might be able to use the excellent WebDriverManager.NET for this: https://github.com/rosolko/WebDriverManager.Net

I agree with @dernippel. It is common that the `0` file contains the most recent content. In *nix it is usual that the current file has no number at all...

If I understand you'd like to customize the lane configuration (Start/Stop/Continue). Do I understand it correctly?