TimHambourger

Results 7 issues of TimHambourger

- Support specifying individual margins (top/bottom/left/right) on Windows, w/ same options for units as on iOS (pt (default), in, cm, and mm). - Support Windows-specific `percentScale` property (0 - 100)....

Stack: .NET v4.5.2 EntityFramework v6.1.3 LinqKit v1.1.8 In EF, you can compose IQueryables using Contains(...) and the resulting IQueryable will execute in a single Db hit. E.g.: ```cs var query...

### Platforms affected Android, iOS, Windows. My organization hit this one in production in a highly visible (to the end user) setting. So I've gone ahead and fixed the 3...

bug
platform: android
platform: ios
platform: windows

I noticed this while submitting #413. If you add the following test to [ast-sync.js](https://github.com/xtuc/webassemblyjs/blob/master/packages/wasm-edit/test/ast-sync.js), it will fail: ```diff diff --git a/packages/wasm-edit/test/ast-sync.js b/packages/wasm-edit/test/ast-sync.js index 58be237..b0b4da1 100644 --- a/packages/wasm-edit/test/ast-sync.js +++ b/packages/wasm-edit/test/ast-sync.js @@...

### Description Because of the `assertNotIdentifier` calls in [wasm-gen/lib/encoder/index.js](https://github.com/xtuc/webassemblyjs/blob/master/packages/wasm-gen/src/encoder/index.js), editing, say, a module export name can throw with the default decode options. ### Steps to repro Start with input WASM...

bug
pkg: wasm-gen

Currently, `write()` writes everything as a `Blob`. On iOS and Android, [cordova-plugin-file converts `Blob`s to `ArrayBuffer`s](https://github.com/apache/cordova-plugin-file/blob/master/www/FileWriter.js#L99), which the iOS/Android platforms then convert to base64 for transfer to the native layer....