This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| license: mit |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| license: mit |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| license: mit |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| var request = require('superagent'); | |
| // https://docs.google.com/forms/d/<form-id>/edit | |
| var formId = 'YOUR_FORM_ID'; | |
| var fields = { | |
| size: 'entry.1721541334', | |
| sizeOther: 'entry.1721541334.other_option_response', | |
| email: 'entry.1414359800', | |
| mobile: 'entry.1534391001', |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| var request = require('superagent') | |
| const agent = require('superagent-bluebird-promise') | |
| var http = require('http') | |
| var fs = require('fs') | |
| var API_URL = 'https://api.chui.ai/v1' | |
| var apiKey = 'TRUEFACE_API_KEY' | |
| fs.readFile('myimg.jpg', function (err, file){ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| runtime: nodejs | |
| vm: true | |
| skip_files: | |
| - ^(.*/)?.*/node_modules/.*$ | |
| # [END app_yaml] | |
| # application: myapp-1 | |
| service: hello | |
| # module: service-nodejs |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "name": "node-gae-issue", | |
| "version": "0.0.1", | |
| "author": "Soravis Prakkamakul", | |
| "private": true, | |
| "main": "./build/bin/server", | |
| "scripts": { | |
| "eslint": "./node_modules/.bin/eslint --quiet **/**/*.js **/*.js **.js", | |
| "test": "mocha ./tests/**/*.spec.js --compilers js:babel-register", | |
| "test-cov": "nyc -r lcovonly mocha ./tests/**/*.spec.js --compilers js:babel-register", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package th.co.runnables.bblipayexample; | |
| import android.app.Activity; | |
| import android.net.Uri; | |
| import android.os.Build; | |
| import android.os.Bundle; | |
| import android.support.design.widget.FloatingActionButton; | |
| import android.support.design.widget.Snackbar; | |
| import android.support.v7.widget.Toolbar; | |
| import android.util.Log; |