I hereby claim:
- I am toughrogrammer on github.
- I am toughrogrammer (https://keybase.io/toughrogrammer) on keybase.
- I have a public key ASDMMD5kopedlkTU5g1bYowSvR9NKesYXdCtvauo-Ro_swo
To claim this, I am signing this object:
| test |
I hereby claim:
To claim this, I am signing this object:
| const axios = require('axios'); | |
| const COGNITIVE_SERVICE_ENDPOINT ='https://southeastasia.api.cognitive.microsoft.com/face/v1.0'; | |
| const API_KEY = process.env.COGNITIVE_SERVICE_API_KEY; | |
| module.exports = async function (context, req) { | |
| const faceListName = req.query.name; | |
| const addFaceListAPIEndpoint = COGNITIVE_SERVICE_ENDPOINT | |
| + '/facelists/' + faceListName; |
| <!DOCTYPE HTML> | |
| <html> | |
| <head> | |
| <meta charset="utf-8"> | |
| <meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
| <title>Demo Page</title> | |
| <meta name="viewport" content="width=device-width, initial-scale=1"> | |
| <link href="https://fonts.googleapis.com/css?family=Lato:300,400,700" rel="stylesheet"> |
| activation-1.1.jar | |
| aopalliance-1.0.jar | |
| apacheds-i18n-2.0.0-M15.jar | |
| apacheds-kerberos-codec-2.0.0-M15.jar | |
| api-asn1-api-1.0.0-M20.jar | |
| api-util-1.0.0-M20.jar | |
| asm-3.2.jar | |
| avro-1.7.4.jar | |
| commons-beanutils-1.7.0.jar | |
| commons-beanutils-core-1.8.0.jar |
| // System.Void Rotator::CustomMethod1() | |
| extern Il2CppClass* Debug_t1368543263_il2cpp_TypeInfo_var; | |
| extern Il2CppCodeGenString* _stringLiteral832176282; | |
| extern const uint32_t Rotator_CustomMethod1_m2970092419_MetadataUsageId; | |
| extern "C" void Rotator_CustomMethod1_m2970092419 (Rotator_t3375904803 * __this, const MethodInfo* method) | |
| { | |
| static bool s_Il2CppMethodInitialized; | |
| if (!s_Il2CppMethodInitialized) | |
| { | |
| il2cpp_codegen_initialize_method (Rotator_CustomMethod1_m2970092419_MetadataUsageId); |
| <dict> | |
| <key>files</key> | |
| <dict> | |
| <key>Base.lproj/LaunchScreen.storyboardc/01J-lp-oVM-view-Ze5-6b-2t3.nib</key> | |
| <data> | |
| uKqSihu+75MESaWMTb7RS7jAqhs= | |
| </data> | |
| <key>Base.lproj/LaunchScreen.storyboardc/Info.plist</key> | |
| <data> | |
| n2t8gsDpfE6XkhG31p7IQJRxTxU= |
| void *libz = dlopen("/usr/lib/libz.dylib", RTLD_LAZY); | |
| int (*deflate)(z_streamp, int) = (int (*)(z_streamp, int))dlsym(libz, "deflate"); |
| <activity class=“.MainActivity” android:label="@string/app_name"> | |
| <intent-filter> | |
| <action android:name="android.intent.action.MAIN"/> | |
| <category android:name="android.intent.category.LAUNCHER"/> | |
| </intent-filter> | |
| </activity> |
| from app import api_root | |
| from flask_restful import Resource, marshal_with, fields | |
| class IPField(fields.Raw): | |
| def format(self, value): | |
| parts = value.split('.') | |
| parts[1] = '***' | |
| return '.'.join(parts) |