One Paragraph of project description goes here
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.
const fs = require('fs'); | |
function readHarFile(filePath) { | |
fs.readFile(filePath, 'utf8', (err, data) => { | |
if (err) { | |
console.error('Error reading the file:', err); | |
return; | |
} | |
const harData = JSON.parse(data); | |
analyzeHarData(harData); |
const moment = require('moment'); | |
var startDate = moment('2019-03-12'); | |
var endDate = moment('2019-05-04'); | |
var result = []; | |
var endOfMonth; | |
if (endDate.isBefore(startDate)) { | |
throw "End date must be greated than start date." | |
} | |
while (startDate.isBefore(endDate)) { |
const moment = require('moment'); | |
let startDate = moment('2019-03-12'); | |
let endDate = moment('2019-05-04'); | |
let result = []; | |
if (endDate.isBefore(startDate)) { | |
throw "End date must be greated than start date." | |
} | |
while (startDate.isBefore(endDate)) { | |
let endOfWeek = startDate.clone().endOf('week').format("YYYY-MM-DD") |
{ | |
"Version": "2008-10-17", | |
"Id": "S3PolicyId1", | |
"Statement": [ | |
{ | |
"Sid": "IPAllow", | |
"Effect": "Allow", | |
"Principal": { | |
"AWS": "*" | |
}, |
$ gcloud container clusters create --cluster-version=1.9.7-gke.6 my-cluster --num-nodes 3 --zone us-central1-a | |
Creating cluster my-cluster...done. | |
kubeconfig entry generated for my-cluster. | |
NAME LOCATION MASTER_VERSION MASTER_IP MACHINE_TYPE NODE_VERSION NUM_NODES STATUS | |
my-cluster us-central1-a 1.9.7-gke.6 35.232.228.130 n1-standard-1 1.9.7-gke.6 3 RUNNING | |
$ kubectl create clusterrolebinding kubeless-cluster-admin --clusterrole=cluster-admin --user=<your gcp user-id> | |
clusterrolebinding.rbac.authorization.k8s.io "kubeless-cluster-admin" created | |
$ export RELEASE=$(curl -s https://api.github.com/repos/kubeless/kubeless/releases/latest | grep tag_name | cut -d '"' -f 4) |
# EDITOR=nano sudo visudo | |
# Change the following line: (:i to insert + esc to go back + :w to save + :q to quit) | |
# Defaults env_reset | |
# to: | |
# Defaults env_reset,timestamp_timeout=960 # in minutes | |
export PATH=$PATH:. | |
# export PATH=$PATH:/usr/bin |
#!/usr/bin/env bash | |
git branch -r | grep -v '\->' | while read remote; do git branch --track "${remote#origin/}" "$remote"; done | |
git fetch --all | |
git pull --all |
var AWS = require('aws-sdk'); | |
var dynamodb = new AWS.DynamoDB({ apiVersion: '2012-08-10' }); | |
var docClient = new AWS.DynamoDB.DocumentClient() | |
var params = { | |
TableName: "mytable", | |
FilterExpression: "#schedule_type = :schedule_type_val", | |
ExpressionAttributeNames: { | |
"#schedule_type": "schedule_type", | |
}, | |
// we can narrow the returned result - still does a full-scan |