David Wales

Results 49 comments of David Wales

From #2003: Given a parquet file with pathologically large (~2 GB) string values, generated as follows: ``` python import pyarrow as pa import pyarrow.parquet as pq arr = pa.array(["data"*(2**28)] *...

urwid might be getting closer to Windows support if this PR gets merged: https://github.com/urwid/urwid/pull/448 See also: https://github.com/urwid/urwid/issues/447

For inspiration, consider the macOS Character Viewer: https://nshipster.com/character-viewer/ It's like `Win+;`, but with an alternative power mode which lets you search for any Unicode character available on the system.

> Just "WindowsAzureActiveDirectoryIntegratedApp". I found that out by manually having created a resource and then importing it in Terraform. Not sure when this was added, but you can now specify...

I figured it out, but it could still be good to update the docs with an example. To add a certificate to an existing application I did the following: ```...

ADLSv2 storage supports requesting just blobs from a specific directory with the [get_paths()](https://learn.microsoft.com/en-us/python/api/azure-storage-file-datalake/azure.storage.filedatalake.filesystemclient?view=azure-python#azure-storage-filedatalake-filesystemclient-get-paths) method. This might benefit #388.

In PowerShell nvim C:\Users\example\Desktop\ ``` In PowerShell Core (7.4 in my case), Tab expansion autocompletes directories, but retains the tilde, and passes it unchanged in arguments. ``` nvim ~/Des -->...

I've hit something similar. I don't think recursion is the problem. Rather, bullets.vim seems to remove newlines if they are inserted by a macro. For example, with the following `.vimrc`:...

My feeling is that most CSV files _would_ have a header. Perhaps this line can be changed as follows: https://github.com/antonycourtney/tad/blob/ef52830f1560eadc0fbc58d2b887faef6e781f70/packages/reltab-duckdb/src/csvimport.ts#L64 ``` js const query = `CREATE OR REPLACE TABLE ${tableName}...