Lucas Bourneuf

Results 58 comments of Lucas Bourneuf

Hello ! I do not know why you closed that issue, nor what is the error you found. Can you provide the exact source code you used ?

Thank you for your feedback ! Oh, yes. By default, clingo module is used if available. That behavior is however quite unexpected. I should change that. Thanks for pointing this...

A simple solution is to apply [`os.path.realpath`](https://docs.python.org/3/library/os.path.html#os.path.realpath) on all watched folders. So, we end up with something like: ``` observer.schedule(event_handler, os.path.realpath(path)) ``` It could be by default in the library....

This probably should be fixed ; it is a detail that have its importance when someone is discovering the project. Copy-pastable working example is IMHO the most important feature. Also,...

Hi everyone ! This issue is relevant for us. We are working with RHEL9, and for security reasons we must stick with podman.

Neat. Now we can use `let` with `const` and `var` to ensure the automatic declaration is choosing the right one : ``` let name = "Luke"! // const const let...

We could add a `protect` keyword, allowing us to prevent deletion of some keywords. ``` protect print ! delete print ! // error: print is protected from deletion add print...

That way, you can prevent adding a name you don't want to see somewhere, like one-letter index variables ! `weakprotect i, j, k !`