Jakob Aarøe Dam

Results 16 comments of Jakob Aarøe Dam

Thanks for the clarification.

I added the polyfills, but still have a small issue in IE11. In IE11 the dialog is centered, i.e., transform(-50%,-50%), after the dialog is zoomed. So it jumps back to...

Workaround: find the matching value in the options, and assign that to the ng-model: https://codepen.io/jakobadam/pen/rvjRRg?editors=1010

Just to follow up. `Dapper.Contrib` is useless with postgres. There are several casing bugs: For instance in `InsertAsync`, in https://github.com/DapperLib/Dapper.Contrib/blob/main/src/Dapper.Contrib/SqlMapperExtensions.Async.cs#L496 Here `sb.Append(property.Name);` adds the pk without taking casing into considerations.

Hi The chunk number is used to resume downloads. Since the client currently only uses one connection and sends chunks in sequence, they are just appended to one destination file...

I think you can handle data in any encoding by using Django's handle_raw_input method. https://docs.djangoproject.com/en/dev/topics/http/file-uploads/