What needs to be done in order for BBB to be able to stream to Icecast:
- Get Freeswitch source
- Install dev dependencies
- Compile with mod_shout support
- Copy compiled modules to FreeSwitch directory
//// CALL AN API | |
callAPI() { | |
// FIXME: get cached token? | |
AuthService.app.acquireTokenSilent(['https://apim-teamsoftware-cus-authtest-dev.azure-api.net/authtest']).then(token => | |
const url = 'https://apim-teamsoftware-cus-authtest-dev.azure-api.net/authtest/api/HttpTriggerCSharp2' | |
return this.fetch(token, url).then(res => console.log(res)) | |
) |
--- ext/openssl/ossl_pkey_ec.c | |
+++ ext/openssl/ossl_pkey_ec.c | |
@@ -757,8 +757,10 @@ static VALUE ossl_ec_group_initialize(int argc, VALUE *argv, VALUE self) | |
method = EC_GFp_mont_method(); | |
} else if (id == s_GFp_nist) { | |
method = EC_GFp_nist_method(); | |
+#if !defined(OPENSSl_NO_EC2M) | |
} else if (id == s_GF2m_simple) { | |
method = EC_GF2m_simple_method(); | |
+#endif |
// Farm ventilation control | |
// Rev. 2013-07-18 | |
// by Futureless (Arduino forum) | |
// Changelog: | |
// - 2013-07-18: | |
// Reduced fan loop delay time to 30sec | |
// Added delays between fan turn offs (supposedly to reduce EMI during turn off) | |
// Reduced moving average 15 > 7 | |
// - 2013-07-07: Initial production release |
class String | |
# Map of latin chars and their representations as unicode chars. | |
LATIN_MAP = { | |
"A" => %w[À Á Â Ã Å Ą Ā], | |
"a" => %w[à á â ã å ą ả ã ạ ă ắ ằ ẳ ẵ ặ â ấ ầ ẩ ẫ ậ ā], | |
"AE" => %w[Ä Æ Ǽ], | |
"ae" => %w[ä æ ǽ], | |
"C" => %w[Ç Č Ć Ĉ], | |
"c" => %w[ç č ć ĉ], |