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
| const multer = require('multer'); | |
| const multerS3 = require('multer-s3'); | |
| const uuid = require('uuid'); | |
| const AWS = require('aws-sdk'); | |
| const sharp = require('sharp'); | |
| AWS.config.update({ | |
| accessKeyId: process.env.AWS_ACCESS, | |
| secretAccessKey: process.env.AWS_SECRET_KEY | |
| }); |
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
| import React, { Component } from 'react'; | |
| import {TouchableOpacity, Image,StyleSheet,Dimensions, View, Text, Animated, Easing, PanResponder, Platform } from 'react-native'; | |
| import { Ionicons } from '@expo/vector-icons'; | |
| import { MapView } from 'expo'; | |
| import DateTimePicker from 'react-native-modal-datetime-picker'; | |
| const { width, height } = Dimensions.get('window'); | |
| const ASPECT_RATIO = width / height; | |
| const LATITUDE_DELTA = 0.006339428281933124; | |
| const LONGITUDE_DELTA = LATITUDE_DELTA * ASPECT_RATIO; |
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 main | |
| import ( | |
| "io" | |
| "os" | |
| "strings" | |
| //"fmt" | |
| "bytes" | |
| ) |