Oliver Mannion

Results 233 comments of Oliver Mannion

Graph with the `ui.input(input)` call statement (note the crash state in the bottom right with no outgoing transition): ![graph deadlocked](https://github.com/user-attachments/assets/3904120c-c618-4f78-9206-652fb35c564d) Vs the graph with `ui.history.append(input)` which doesn't deadlock - all...

It happens when downloading via a browser like chrome, which sets the `com.apple.quarantine` flag. If the [quarantine flag](https://en.wikipedia.org/wiki/Gatekeeper_%28macOS%29#Quarantine) is set Gatekeeper will expect the app to have been [signed and...

My apologies I missed the unanswered questions 🤦 and thank you @mikavilpas for offering to finish this! would be great to get this merged

NB: Etag appears to be based on the content of the github response and stable across time for the same set of response values.

I can see the Neovim lsp client sends the exit notification [here](https://github.com/neovim/neovim/blob/d8cd15e8d67d76a327b5ffa75d54a23dc05b58c9/runtime/lua/vim/lsp/client.lua#L845). The [exit notification](https://microsoft.github.io/language-server-protocol/specifications/lsp/3.17/specification/#exit) tells the server process to stop. But it looks like this [isn't happening](https://github.com/ebkalderon/tower-lsp/issues/424).

Nice idea. I'd need to figure out how to integrate calling `vscode.vscode.executeDocumentRenameProvider` from within the vscode extension when a code action is triggered. At the moment code actions are handled...

The `Table '"foobar"' does not exist` occurs for me even when its not a temporary table, eg: ```python import pandas as pd import snowflake.connector.pandas_tools cur.execute("create or replace table foobar (id...

Ah so there's a [`quote_identifiers` argument](https://docs.snowflake.com/en/developer-guide/python-connector/python-connector-api#write_pandas:~:text=PUT%20command.-,quote_identifiers,-If%20False%2C%20prevents): > If False, prevents the connector from [putting double quotes around identifiers](https://docs.snowflake.com/en/sql-reference/identifiers-syntax) before sending the identifiers to the server. By default, the connector puts...

Which editor are you running? Could you share the warnings you see?