Skip to content

Instantly share code, notes, and snippets.

View piercemorris's full-sized avatar

Pierce James Morris piercemorris

  • Nottingham, UK
  • 08:33 (UTC +09:00)
View GitHub Profile
import { parse } from 'parse-multipart-data'
import { APIGatewayEvent, Callback, Context } from 'aws-lambda'
import { TextractClient, DetectDocumentTextCommand } from "@aws-sdk/client-textract";
const client = new TextractClient({ region: "eu-west-2" });
type Formdata = {
name: string,
data: Buffer
}

City Tours With Friends

Privacy Policy of City Tours With Friends

Privacy Policy Effective date: January 29, 2020

ity Tours With Friends ("us", "we", or "our") operates the ity Tours With Friends mobile application (the "Service").

This page informs you of our policies regarding the collection, use, and disclosure of personal data when you use our Service and the choices you have associated with that data. Our Privacy Policy for Gym Workout Progress Tracker is created with the help of the Free Privacy Policy Generator.

@piercemorris
piercemorris / support.txt
Created October 11, 2019 19:08
Support for Gym Workout Progress Tracker
If you require any support within the app please email:
pierce.morris1998@gmail.com

Gym Workout Progress Tracker

Privacy Policy of Gym Workout Progress Tracker

Privacy Policy Effective date: September 09, 2019

Gym Workout Progress Tracker ("us", "we", or "our") operates the Gym Workout Progress Tracker mobile application (the "Service").

This page informs you of our policies regarding the collection, use, and disclosure of personal data when you use our Service and the choices you have associated with that data. Our Privacy Policy for Gym Workout Progress Tracker is created with the help of the Free Privacy Policy Generator.

@piercemorris
piercemorris / githubUserCards.jsx
Created May 22, 2017 10:58
Adds users from Github to a card form
const Card = (props) => {
return (
<div>
<img width="75" src={props.avatar_url} />
<div style={{display: 'inline-block', marginLeft: 10}}>
<div style={{fontSize: '1.25em', fontWeight: 'bold'}}>{props.name}</div>
<div>{props.company}</div>
</div>
</div>
);
@piercemorris
piercemorris / increment.jsx
Created May 21, 2017 16:20
Introduction to React components & properties
class Button extends React.Component {
handleClick = () => {
this.props.onClickFunction(this.props.incrementValue);
};
render () {
return (
<button onClick={this.handleClick}>
+{this.props.incrementValue}
@piercemorris
piercemorris / noughts&crosses.py
Created May 9, 2017 15:39
Simple noughts and crosses game in Python. Can be vastly improved.
#tic tac toe game --- player vs player
import sys
class Game:
def __init__(self):
self.board = [[0, 0, 0] for i in range(0, 3)]
self.coord = [0, 0]
self.player_one = True
@piercemorris
piercemorris / singleTweet.json
Created March 8, 2017 13:53
singleTweet.json
[
{
"selected" : false,
"frame" : "{{0, 0}, {268, 275}}",
"class" : "View",
"nodes" : [
{
"selected" : false,
"frame" : "{{6, 7}, {256, 49}}",
"class" : "Label",
@piercemorris
piercemorris / uiTweet.json
Created March 1, 2017 17:56
uiTweet.json
[
{
"selected" : false,
"frame" : "{{0, 0}, {240, 240}}",
"class" : "View",
"nodes" : [
{
"selected" : false,
"frame" : "{{6, 6}, {228, 49}}",
"class" : "Label",
@piercemorris
piercemorris / singleTweet.py
Created March 1, 2017 11:27
singleTweet.py
import ui
import twitter
import console
import pathlib
import os
#if sendTweet button pressed
def sendTweet(sender):
#retrieve text from text field