Gardner Bickford

Results 87 comments of Gardner Bickford

From the Facebook documentation: https://developers.facebook.com/docs/videos/live-video/getting-started#creating #### Video Format: * We accept video in maximum 720p (1280 x 720) resolution at 30 frames per second, with 1 key frame every 2...

Lossless encoding using YUV in h264: https://stackoverflow.com/questions/6701805/h264-lossless-coding/18506577#18506577 An audio modem library written in go: https://github.com/wiless/gocomm

@ToniChaz you can test out #140 by installing the latest commit from github: `npm install --save-dev github:RealOrangeOne/react-native-mock#master`

It would be easier to create a `MockLDProvider` in TypeScript if `LDFlagSet` was exported from `launchdarkly-react-client-sdk/lib/context`

nginx can rate limit request: ``` limit_req_zone global zone=img:1m rate=2r/s; server { listen 80; server_name example.com; location ^~ /img/ { limit_req zone=img burst=20; proxy_pass http://img:8080/; } ```

This issue ultimately prevented me from using the software. I ended up converting everything to webp in a preprocessing batch job.

If you came here looking for a workaround then you can use something like this: ```javascript import React, { useEffect, useState } from "react"; import { useAuthenticator } from '@aws-amplify/ui-react';...

The npmjs.com documentation encourages users to use node-fetch but doesn't specify which version. How can we update that documentation? Note: using `whatwg-fetch` is a viable workaround.

I onboard people at work. This issue confuses people and ultimately causes people to uninstall the extension.

Thanks for re-opening this. I was immediately suspicious of a privacy oriented chat app requiring camera and mic permissions. When it refused to launch without access to my sdcard I...