basaran
basaran
You can modify the EvalPrinter.py as such ``` if "Python" in syntax: output = EvalEvaluator.runPython(codeStr) elif "JavaScript" in syntax: output = EvalEvaluator.runJavaScript(codeStr) elif "HTML" in syntax: output = EvalEvaluator.runJavaScript(codeStr) elif...
I made some changes to identify the scope instead of the syntax, you can pull from here: https://github.com/basaran/Sublime-EvalPrinter You can also run the eval on an empty line to evaluate...
hi, I made a fork that works with straight.el and sent a PR. P.S Thank you for your contributions on reddit.
I'm the one who created the #4 but it seems the issue with the `MakeFile` is already fixed. However, when I tried to compile this on another server, I also...
hello, it seems to be working fine after switching the function names and taking out the `nabstime.h`. I can send a PR for you to test if it will help.
PR sent, thank you for your time. If you could add the `go get` instructions to the readme, that would be very helpful too. Makefile was not able to get...
hola, well I'm not sure :) You should try to compile locally first, and if you are using the fork from my repo, make sure you use pg13. Also, do...
I ran into the same issue during the sample project. If I rerun it passes along. ``` 2024-05-04 20:35:43 -0400 - dagster - ERROR - __ASSET_JOB - 2fb83681-ffb8-4cdb-bf98-7e43645a9525 - 1027389...
I was able to work around this with a custom connect function wrapping retry logic: ```python def connect_to_duckdb(database, max_retries=10, retry_delay=2): """ Attempts to connect to a DuckDB database with a...
@nobelsmith, I just use the `connect_to_duckdb` function above in an asset. Such as: ```python @asset( deps=["taxi_zones_file"] ) def taxi_zones(context): sql_query = f""" create or replace table zones as ( select...