Greg Werbin
Greg Werbin
@ipsod you can install `ipykernel` in the virtualenv, then register the kernel with `python -m ipykernel install --user --name my-venv`. You will then be able to run `:IPython --kernel my-venv`....
This is because that isn't the correct way to pass an extension to Pandoc. The actual invocation would be ```shell pandoc --from markdown+markdown_in_html_blocks ``` rather than ```shell pandoc --from markdown...
> some researchers used BEAST for online changepoint detection Hi @zhaokg , this sounds very useful. Do you know if this has appeared in any published work yet? I would...
> Can you provide example output from Snowflake? ```none import snowflake.connector db = snowflake.connector.connect(...) curs = db.cursor() curs.execute("""select st_makepoint(45, -25)""") result = curs.fetchall()[0][0] assert result == '{\n "coordinates": [\n 4.500000000000000e+01,\n...
Thanks @martinfleis, I didn't realize that `shapely.from_geojson` was vectorized. Maybe this could be mentioned somewhere in the GeoPandas docs for the benefit of other clueless souls like me? As for...
I would appreciate this setting as well. Or at least provide a function o remove the marks, which can be key-mapped or triggered by `InsertLeave`.
I now have a Windows computer for work. Can I help?
@zimbatm Can do! I've actually become really accustomed to Powershell. Safe to assume CMD and PS aren't supported?
@seibert I'd be willing to help give this a shot. It looks like it'd just be a matter of parsing the signature like @mangecoeur said, which I guess would happen...
I was envisioning a new kwarg `signature`, and the developer would have to explicitly opt into signature checking with `jit(signature=True)`. That would also prevent any kind of new inference method...