Gary Oberbrunner

Results 99 issues of Gary Oberbrunner

It would be great if Editly could support [OFX](openeffects.org) video effects, perhaps using the [TuttleOFX](https://github.com/tuttleofx/TuttleOFX) command-line client or some other OFX host library.

enhancement

It seems githack.com does not work with git lfs. Here's a test repo (not mine) with an LFS file: https://github.com/Schoonology/git-lfs-test - the file `binary.jpg` is stored with LFS. If I...

Could you document the expected display transform (is it sRGB always?) and source interpretation (linear or sRGB or some other space?) Without that info, the color values are a bit...

It seems [U+2714] "heavy check mark", or ✔, does not appear in the Hack font. It's used by some web tools e.g. `jest` for unit testing Javascript.

Character Set
Contribute!

### What happened? Logseq auto-closes parens, brackets and braces, which is nice. Typing the left one auto-adds the right one, leaves the cursor between them. Then later when the user...

editor:autocomplete

I'm using 5ff4819 on Mac, Python 3.6.4. I have a simple example structured like this: ``` . `-- app |-- __init__.py (empty) |-- extensions.py (defines a single function, foo()) `--...

bug

See https://github.com/firebase/functions-samples/blob/7eb43734bb88fb9ba9e859ae558f72b185377f28/stripe/functions/index.js#L61 In that line, `paymentMethod.customer` returned from `stripe.paymentMethods.retrieve()` may be a string, null, or a `Customer` object. The code should treat each of those cases separately when creating the...

https://github.com/firebase/functions-samples/blob/5614dd71cddbe27512b41d662cc51d8d25f2a562/stripe/public/javascript/app.js#L275 In `formatAmount` it converts `amount` to a string using `.toFixed(2)`, and then tries to pass that string to `Intl.NumberFormat().format()`, but that function only accepts numbers. I just convert it...

In `pyobj_to_variant`, in tools.py, it converts python objects to Godot Variants. Unfortunately there is no case in there for a python dict or even a python array. You get a...

I had a memory corruption problem in my app, so I tried turning on Application Verifier using Windows gflags (https://docs.microsoft.com/en-us/windows-hardware/drivers/debugger/gflags-overview) to see where the corruption was happening. But doing that...