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
| [aaaaaaa](https://localhost:8443/fashionwalker.html?page-to-buy=true) |
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
| CREATE EXTERNAL TABLE IF NOT EXISTS cloudfront_logs ( | |
| request_date STRING, | |
| request_time STRING, | |
| x_edge_location STRING, | |
| sc_bytes INT, | |
| client_ip STRING, | |
| cs_method STRING, | |
| cs_host STRING, | |
| cs_uri_stem STRING, | |
| sc_status STRING, |
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 patterns = []; | |
| function preparePermutationRecursively({ values, arr, depth = 0, maxDepth }) { | |
| if (depth >= maxDepth) { | |
| patterns.push(arr); | |
| return; | |
| } | |
| for (let i = 0; i < values.length; i ++) { | |
| preparePermutationRecursively({ | |
| values, |
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 Chromy = require('chromy'); | |
| async function main() { | |
| const chromy = new Chromy({ | |
| visible: false, | |
| // '--ignore-certificate-errors' not working when visible = false | |
| chromeFlags: ['--proxy-server=127.0.0.1:8081', '--ignore-certificate-errors'] | |
| }); | |
| await chromy.blockUrls(['*.png', '*.jpg', '*.jpeg', '*.gif']); |
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 Rx from 'rxjs'; | |
| import {combineEpics} from 'redux-observable'; | |
| import {startLoading, endLoading, displayFlashErrorMessage} from '../actions/app-actions'; | |
| const debug = require('debug')('some-app:epics:app-epics'); | |
| const startLoadingEpic = (action$) => | |
| action$ | |
| .filter(action => /.+REQUEST$/.test(action.type)) |
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
| // npm install graphql graphql-tools graphql-subscriptions | |
| const graphql = require('graphql'); | |
| const tools = require('graphql-tools'); | |
| const {PubSub, SubscriptionManager} = require('graphql-subscriptions'); | |
| const companies = [ | |
| { | |
| id: 1, | |
| name: 'A company' |
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
| // npm install graphql graphql-tools graphql-subscriptions | |
| const graphql = require('graphql'); | |
| const tools = require('graphql-tools'); | |
| const {PubSub, SubscriptionManager} = require('graphql-subscriptions'); | |
| const companies = [ | |
| { | |
| id: 1, | |
| name: 'A company' |
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 graphql = require('graphql'); | |
| const tools = require('graphql-tools'); | |
| const companies = [ | |
| { | |
| id: 1, | |
| name: 'A company' | |
| }, | |
| { | |
| id: 2, |
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
| { | |
| "Version": "2012-10-17", | |
| "Statement": [ | |
| { | |
| "Effect": "Allow", | |
| "Action": [ | |
| "iam:CreateVirtualMFADevice", | |
| "iam:EnableMFADevice", | |
| "iam:ResyncMFADevice", | |
| "iam:DeleteVirtualMFADevice" |
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
| { | |
| "Version": "2012-10-17", | |
| "Statement": [ | |
| { | |
| "Effect": "Deny", | |
| "Action": [ | |
| "ec2:*" | |
| ], | |
| "Resource": [ | |
| "arn:aws:ec2:ap-northeast-1::instance/i-003c6a05a4978046a", |
NewerOlder