This file contains 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
Verifying that +popigg is my blockchain ID. https://onename.com/popigg |
This file contains 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
{ | |
"actions": [ | |
{ | |
"description": "Default Welcome Intent", | |
"name": "MAIN", | |
"fulfillment": { | |
"conversationName": "myWebhook" | |
}, | |
"intent": { | |
"name": "actions.intent.MAIN" |
This file contains 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
const {actionssdk} = require('actions-on-google'); | |
const express = require('express'); | |
const bodyParser = require('body-parser'); | |
const rp = require('request-promise'); | |
// get this url from publish section in luis.ai | |
const LUIS_URL = '<YOUR LUIS URL>'; | |
const app = actionssdk({debug: true}); |
This file contains 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
import string | |
from nltk.metrics import * | |
import enchant | |
KEYWORD = 'agua' | |
NAMES = [] | |
LEV_DISTANCE = 2 | |
def permutations(start_word): |
This file contains 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
import Foundation | |
import aubio | |
class AubioHelper { | |
private let audioCapacity = 24000 | |
private let hop_size: uint_t = 1024 | |
private let win_size: uint_t = 4096 | |
private let buf_size: uint_t = 4096 | |
private let n_filters: uint_t = 40 |