Jonathan

Results 292 comments of Jonathan

@ryanhamilton I cannot find your commit to qStudio for PRQL syntax highlighting.

Thanks, but I feel like this should have just have worked without me having to find out how enable it manually myself. I think it should have done this for...

Yes, under "States" I find a diamond shape that I move into the diagram and then under "General" I move a line, or under "Classes" I move a association or...

The application is intended to serve as a playground for the user to fiddle around and experiment with some code, it is not intended to be a IDE and hence...

Users can import packages by placing the packages in their `~/.local/lib/python3.12/site-packages` directory.

By setting the `PYTHONPATH` environment variable which augments Python's default search path for module it appears that I can indeed import modules from `~/.local/lib/python3.12/site-packages`. I noted that there are other...

Perhaps I could use `flatpak-spawn` with the `--host` option to spawn the Python process on the host but that would require the the addition of a permission then all code...

But `get_magic_name` is not defined in the PRQL script because it is a user-defined function (UDF) that has been created on the database server using the `CREATE FUNCTION` SQL statement...

I suppose it would look like this: ```sql SELECT *, get_magic_name(name) AS magic_name FROM animals ```

I think this is tricky to use. You cannot just declare an line s-string like: ```elm from animals derive { magic_name = s"get_magic_name" name } ``` because you get the...