Wouter Van Schandevijl

Results 9 comments of Wouter Van Schandevijl

That works like a charm, thanks! I changed it to this Component for reusability :) ``` class RestartingTypist extends Component { state = {typing: true} done = () => {...

Another Authotkey user here! 😃 On my machine, Mehul's solution with the 1ms delay takes noticeably longer to actually insert some text. I found the following solution which inserts it...

The commit that fixed this issue in VSCode itself has as message: "Read synchronously from textarea" Is it possible that backspace does some stuff asynchronously? And if we turn that...

I was investigating this issue myself. We have code like the following ``` client.Query("SELECT id, name FROM Account WHERE name = '" + name + "'"); ``` So if name...

I didn't get any of these (https://github.com/handlebars-lang/handlebars.js/issues/1528) to work for me (using TypeScript and `"type": "module"`) Instead of updating the output manually, I created this PR 😀 If you'd like,...

I just went ahead and added it to the docs: https://github.com/handlebars-lang/docs/pull/165/files If you want it differently, just let me know :)

Documentation for the --esm cli option: https://github.com/handlebars-lang/handlebars.js/pull/2086 Also see: https://github.com/handlebars-lang/handlebars.js/issues/1528

That blog post link was added to the README 12 years ago. So I went back to the Mustache version of back then (v0.7.3) but I get about the same...

Okay, further experimentation 😀 Everything can be done in the build step and you just copy these two files: ``` COPY --from=build /usr/local/lib/lib_lightgbm.so /usr/local/lib/lib_lightgbm.so COPY --from=build /usr/lib/x86_64-linux-gnu/libgomp.so.1 /usr/lib/x86_64-linux-gnu/libgomp.so.1 ``` I...