Russell Mora

Results 8 issues of Russell Mora

I have code that works fine except when resuming a download where all the file is downloaded. I.e. I see something like this returned from the observable returned by DownloadFromMTDFile:...

### Pandas version checks - [X] I have checked that this issue has not already been reported. - [X] I have confirmed this bug exists on the [latest version](https://pandas.pydata.org/docs/whatsnew/index.html) of...

Bug
Indexing

To implement atomic writes/puts, you need to write to a temporary file (non-atomic operation) and then rename the temporary file to the destination in a single (atomic) operation. Since rename...

### Description Our org recently added alembic-postgresql-enum to our code-base, but we have legacy enums with camel-case names, which caused a very specific error just sql that renames the enum...

Generating a migration like ``` op.sync_enum_values( enum_schema='public', enum_name='CamelCase', new_values=['active', 'passive', 'banned'], affected_columns=[TableReference(table_schema='public', table_name='users', column_name='status')], enum_values_to_rename=[], ) ``` Will produce an error like below when running `alembic upgrade heads` ``` op.sync_enum_values(...

Implements a subset of the functionality, support for packages.config files in the upgrade command. Also extended the tests to test the new code. I did not see any value in...

Very simply, when I call Install-ChocolateyPackage with a URL to download, I'd like to also pass to it a System.Net.ICredentials to the call so that I can use a download...

Up For Grabs
Priority - Low
Hacktoberfest
3 - Review
Enhancement

With a PGTrigger definition of ``` insert_subscriber_info_last_modified = PGTrigger( schema="public", signature="insert_true_parent", definition=f""" BEFORE INSERT on "Interfaces" FOR EACH ROW EXECUTE PROCEDURE proc_update_true_parent(); """, on_entity=f'"Interfaces"' ) ``` I get the following...