Tyler Freeman
Tyler Freeman
For me, I had to add the Places API to my *Android* app key, not just the Maps API key like it says in the docs.
I was able to do this with the "Custom command" feature, but it would be nice if it was built in. For anyone wondering, here's how you do it: 1....
I'm also trying to write tests of my firebase functions, but it's giving me errors because (I'm assuming) it doesn't have admin credentials in the emulator. Is that what this...
Awesome. I did some preliminary work to convert them here: https://github.com/markusfisch/ShaderEditor/pull/40
Gists are a super easy API... don't even need to be signed in to post one, so it's literally one HTTP request. I used them for another project so I...
It worked for me, as long as I called preventDefault() and stopPropagation() from every drag start/stop event, not just onDrag: ``` export const PrimitiveTooltip: React.FunctionComponent = (props) => { const...
I also want the second idea "automatically set with the best value guessed from the recipient values, when replying." I think. However, I think that's almost a separate issue, so...
See https://github.com/square/okhttp/issues/8080
Oh I wish I had seen this earlier. I came up with a similar feature, but mine is a bit more generic: it can be pixel-based or color-based as well,...
Hmmm... I think I may have found the same issue. Here's my workaround: https://github.com/icereval/backbone-documentmodel/pull/25 Also includes a good test written if you want to check your solution. Here's an additional...