This file contains 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
[{"id":1,"first_name":"Katherine","last_name":"Boig","email":"[email protected]","gender":"Female","ip_address":"31.120.30.55"}, | |
{"id":2,"first_name":"Gabriela","last_name":"Glide","email":"[email protected]","gender":"Genderfluid","ip_address":"174.249.216.68"}, | |
{"id":3,"first_name":"Cory","last_name":"Matej","email":"[email protected]","gender":"Male","ip_address":"228.184.156.155"}, | |
{"id":4,"first_name":"Irena","last_name":"Davidi","email":"[email protected]","gender":"Female","ip_address":"62.136.62.233"}, | |
{"id":5,"first_name":"Pancho","last_name":"Frean","email":"[email protected]","gender":"Male","ip_address":"227.223.202.196"}, | |
{"id":6,"first_name":"Doretta","last_name":"Howitt","email":"[email protected]","gender":"Female","ip_address":"99.132.179.99"}, | |
{"id":7,"first_name":"Liz","last_name":"Freiburger","email":"[email protected]","gender":"Female","ip_address":"141.63.118.25"}, | |
{"id":8,"first_name":"Joane","last_name":"Purser","email":"[email protected]","gender":"Female","ip_add |
This file contains 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
{ | |
"projectId": 16640, | |
"terms": [ | |
{ | |
"id": "317cd8f9-d66c-4f2a-8774-63c612d99cd4", | |
"roleId": "732339e7-8e30-49d7-9198-cccf9451e221" | |
} | |
], | |
"task": { | |
"isTask": true, |
This file contains 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 json | |
import boto3 | |
import base64 | |
def lambda_handler(event, context): | |
eventBody = json.loads(json.dumps(event))['body'] | |
imageBase64 = json.loads(eventBody)['Image'] | |
This file contains 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
{ | |
"DocumentMetadata": { | |
"Pages": 1 | |
}, | |
"Blocks": [ | |
{ | |
"BlockType": "PAGE", | |
"Geometry": { | |
"BoundingBox": { | |
"Width": 1.0, |
This file contains 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 json | |
import boto3 | |
import base64 | |
def lambda_handler(event, context): | |
eventBody = json.loads(json.dumps(event))['body'] | |
imageBase64 = json.loads(eventBody)['Image'] | |
This file contains 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
{ | |
"status": 0, | |
"result": { | |
"size": 33, | |
"totalSize": 33, | |
"done": true, | |
"queryLocator": null, | |
"entityTypeName": "MetadataComponentDependency", | |
"records": [ | |
{ |
This file contains 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 fs = require('fs'); | |
const jsonServer = require('json-server'); | |
const express = require('express'); | |
const path = require('path'); | |
const enableDestroy = require('server-destroy'); | |
const PORT = process.env.PORT || 3000; | |
const MOCK_JWT = 'eyJhbGciOiJIUzUxMiJ9.eyJGUG0T42kApIiGnA'; | |
// Preprocess db.json |
This file contains 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
{ | |
"data": [{ | |
"title": "Motor", | |
"image": "/images/motor.png", | |
"content": "<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque efficitur sagittis vestibulum. Sed sit amet sem vel justo rutrum porta. Duis a laoreet dui, in sagittis nibh. In hac habitasse platea dictumst. Duis molestie diam in quam feugiat euismod. Nullam vestibulum porta condimentum. Phasellus fringilla nisi nec lacus sagittis laoreet. Vivamus ut magna vitae leo finibus viverra. Nullam et posuere neque. Mauris posuere sapien enim, eget placerat mi viverra nec.</p><p>Morbi consequat, tellus sed vehicula fringilla, elit justo vestibulum metus, eget sollicitudin odio augue sit amet velit. Sed eu ligula ut nulla aliquam maximus a eu orci. Integer ut sodales nisl. Sed et <a href='abc'.com>auctor</a> enim. Ut maximus ac arcu non tincidunt. Suspendisse et fermentum libero, in condimentum nisl. Phasellus mi nisl, dapibus in feugiat vestibulum, ultrices eu diam. Integer facilisis eget lorem in pulvinar. Etiam id urna id |
This file contains 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
{ | |
"data": [ | |
{ | |
"expression": "^[0-9]{6}-[0-9pPtTfF][0-9]{3}$", | |
"description":"Matches 123456-1234 | 123456-P234 | 123456-f234", | |
"type": "regEx" | |
}, | |
{ | |
"expression": "^[0-9]{1,3}$", | |
"description": "Matches 000..999", |
This file contains 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 { | |
Dimensions, | |
Image, | |
ListView, | |
PixelRatio, | |
StyleSheet, | |
Text, | |
View, | |
} from 'react-native'; |
NewerOlder