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 com.tests.xmlread | |
{ | |
import com.adobe.serialization.json.JSON; | |
import flash.display.Sprite; | |
import flash.events.Event; | |
import flash.net.URLLoader; | |
import flash.net.URLRequest; | |
/** | |
* ... |
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
// Starter Code: https://gist.github.com/eslachance/3349734a98d30011bb202f47342601d3#file-index_v12-js | |
const Discord = require("discord.js"); | |
const speech = require('@google-cloud/speech'); | |
const fs = require('fs'); | |
/* | |
DISCORD.JS VERSION 12 CODE | |
*/ | |
const client = new Discord.Client(); |
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
/* eslint-disable flowtype/require-valid-file-annotation, no-console, import/extensions */ | |
import nodeResolve from 'rollup-plugin-node-resolve'; | |
import replace from 'rollup-plugin-replace'; | |
import commonjs from 'rollup-plugin-commonjs'; | |
import babel from 'rollup-plugin-babel'; | |
import json from 'rollup-plugin-json'; | |
import { terser } from 'rollup-plugin-terser'; | |
import sourceMaps from 'rollup-plugin-sourcemaps'; | |
import pkg from './package.json'; |