Types of graphs used in Math and Statistics - Statistics How To
Understanding AUC - ROC Curve - Towards Data Science
Machine Learning Concepts - Amazon Machine Learning
// Run N workers in a WaitGroup until they complete | |
package main | |
import ( | |
"flag" | |
"fmt" | |
"os" | |
"sync" |
AWSTemplateFormatVersion: "2010-09-09" | |
Transform: AWS::Serverless-2016-10-31 | |
Parameters: | |
BucketName: | |
Description: "Region-specific assets S3 bucket name (e.g. ee-assets-prod-us-east-1)" | |
Type: String | |
Default: "cf-templates-1xnac3rwgtxo7-us-west-2" | |
EBSVolumeSize: | |
Description: "Size of EBS Volume (in GB)" | |
Type: Number |
<template> | |
<div> | |
<b-container> | |
<b-row align-h="center"> | |
<div v-if="!signedIn"> | |
<b-button variant="success" @click="signIn">Sign in with Cognito</b-button> | |
</div> | |
<div v-if="signedIn"> | |
<h4>Welcome, {{ username }}!</h4> | |
<b-button variant="danger" @click="signOut">Sign out</b-button> |
const getCellValue = (tr, idx) => tr.children[idx].innerText || tr.children[idx].textContent; | |
const comparer = (idx, asc) => (a, b) => ((v1, v2) => | |
v1 !== '' && v2 !== '' && !isNaN(v1) && !isNaN(v2) ? v1 - v2 : v1.toString().localeCompare(v2) | |
)(getCellValue(asc ? a : b, idx), getCellValue(asc ? b : a, idx)); | |
// do the work... | |
document.querySelectorAll('th').forEach(th => th.addEventListener('click', (() => { | |
const table = th.closest('table'); | |
Array.from(table.querySelectorAll('tr:nth-child(n+2)')) | |
.sort(comparer(Array.from(th.parentNode.children).indexOf(th), this.asc = !this.asc)) | |
.forEach(tr => table.appendChild(tr) ); |
#!/usr/bin/env python3 | |
""" | |
generate server.pem: | |
openssl req -new -x509 -keyout server.pem -out server.pem -days 365 -nodes | |
""" | |
from http.server import HTTPServer, SimpleHTTPRequestHandler | |
import ssl |
import datetime | |
import boto3 | |
MAX_BACKUPS = 3 | |
dynamo = boto3.client('dynamodb') | |
def lambda_handler(event, context): |
tap "aws/tap" | |
tap "buo/cask-upgrade" | |
tap "cjbassi/gotop" | |
tap "garethr/kubeval" | |
tap "homebrew/bundle" | |
tap "homebrew/cask" | |
tap "homebrew/cask-fonts" | |
tap "homebrew/cask-versions" | |
tap "homebrew/core" | |
tap "homebrew/services" |
import boto3 | |
import json | |
from botocore.vendored import requests | |
def lambda_handler(event, context): | |
kms_client = boto3.client('kms') | |
ssm_client = boto3.client('ssm') |
package main | |
import ( | |
"runtime" | |
"time" | |
) | |
func main() { | |
n := runtime.NumCPU() | |
runtime.GOMAXPROCS(n) |