I hereby claim:
- I am echohtp on github.
- I am jasonschorr (https://keybase.io/jasonschorr) on keybase.
- I have a public key whose fingerprint is F3CF F75B 79C9 5D8F 136D 9FD0 8B3B DBC5 7800 0A39
To claim this, I am signing this object:
| import os | |
| import tweepy | |
| from flask import Flask | |
| # Authenticate to Twitter | |
| auth = tweepy.OAuthHandler("API KEY", "API SECRET") | |
| auth.set_access_token("TOKEN", "SECRET") | |
| # Create API object |
| import React, { Component } from 'react'; | |
| import withFirebaseAuth from 'react-with-firebase-auth' | |
| import * as firebase from 'firebase/app'; | |
| import 'firebase/auth'; | |
| import 'firebase/database'; | |
| import 'firebase/firestore'; | |
| import ProtectedApp from './components/ProtectedApp' | |
| const firebaseConfig = { | |
| apiKey: process.env.REACT_APP_API_KEY, |
| Command name argument expected. | |
| Available command groups for gcloud: | |
| AI and Machine Learning | |
| ai-platform Manage AI Platform jobs and models. | |
| ml Use Google Cloud machine learning capabilities. | |
| ml-engine Manage AI Platform jobs and models. | |
| API Platform and Ecosystems |
I hereby claim:
To claim this, I am signing this object:
| var Hapi = require(‘hapi’); | |
| var sOptions = { host: '0.0.0.0', port: parseInt(process.env.PORT, 10) || 3000}; | |
| var server = new Hapi.Server(); | |
| server.connection(sOptions); | |
| server.start() |