Skip to content

Instantly share code, notes, and snippets.

View ginnyfahs's full-sized avatar

Ginny Fahs ginnyfahs

  • San Francisco, CA
View GitHub Profile
@ginnyfahs
ginnyfahs / gist:f6a2cd565261e7f412a53957de940a79
Last active February 1, 2018 04:00
Draft of Eats Alexa Script
'use strict';
const Alexa = require('alexa-sdk');
const APP_ID = 'amzn1.ask.skill.1d801d3b-5ade-4725-b91f-a98c61d99466'; // TODO replace with your app ID (OPTIONAL).
let speechOutput;
let reprompt;
const welcomeOutput = "Welcome to Uber Eats! Let’s get rolling on a new order. You can choose from any of your past three orders. Would you like to order from Italian Homemade Company, Pancho Villa Taqueria, or Little Kite?"
@ginnyfahs
ginnyfahs / Fixing typos on Podfile for React Native Maps - iOS
Created October 15, 2017 01:37
Fixing typos on Podfile for React Native Maps - iOS
# You Podfile should look similar to this file. React Native currently does not support use_frameworks!
source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '8.0'
# Change 'AirMapsExplorer' to match the target in your Xcode project.
target 'AirMapsExplorer' do
rn_path = '../node_modules/react-native'
pod 'Yoga', path: "#{rn_path}/ReactCommon/yoga/Yoga.podspec"
@ginnyfahs
ginnyfahs / gist:0b4d9780e559d632614ffbb1e3bfac9a
Last active September 22, 2017 20:31
MapPage for ReactNative/GoogleMaps
/**
* Sample React Native App
* https://github.com/facebook/react-native
* @flow
*/
import React, { Component } from 'react';
import {
AppRegistry,
StyleSheet,