AWS: Match Design Ruleset Teams, balancing, etc...
{
"name": "",| import io | |
| import os | |
| from pathlib import Path | |
| from setuptools import find_packages, setup | |
| from setuptools.command.install import install | |
| from subprocess import call | |
| # Package meta-data | |
| NAME = 'your package name' |
| import requests | |
| import time | |
| import pandas as pd | |
| from json import dumps | |
| headers = { | |
| 'Content-Type': 'application/json', | |
| 'Api-Key': 'api key here' | |
| } |
| # Editors | |
| .vscode/ | |
| .idea/ | |
| # Vagrant | |
| .vagrant/ | |
| # Mac/OSX | |
| .DS_Store |
AWS: Match Design Ruleset Teams, balancing, etc...
{
"name": "",First, install Solaar to see the battery level on the taskbar
sudo apt-get install solaarTo remap the keys, install
sudo apt-get install xbindkeys xautomation| 'use strict'; | |
| const crypto = require('crypto'); | |
| const ENCRYPTION_KEY = process.env.ENCRYPTION_KEY; // Must be 256 bits (32 characters) | |
| const IV_LENGTH = 16; // For AES, this is always 16 | |
| function encrypt(text) { | |
| let iv = crypto.randomBytes(IV_LENGTH); | |
| let cipher = crypto.createCipheriv('aes-256-cbc', Buffer.from(ENCRYPTION_KEY), iv); |
| function logClass(target: any) { | |
| // save a reference to the original constructor | |
| var original = target; | |
| // a utility function to generate instances of a class | |
| function construct(constructor, args) { | |
| var c : any = function () { | |
| return constructor.apply(this, args); | |
| } |
| #!/bin/bash | |
| error_exit() | |
| { | |
| echo "$1" 1>&2 | |
| exit 1 | |
| } | |
| CODEBUILD_PROJECT_NAME=$1 |
| #!/bin/bash | |
| set -eo pipefail | |
| ## Mount this file in /docker-entrypoint-initaws.d so that localstack runs it | |
| ## as part of its entrypoint routine. | |
| echo 'Running AWS verify identity command. See: https://github.com/localstack/localstack/issues/339' | |
| aws ses verify-email-identity --email-address ${EMAIL_ADDRESS} --region ${AWS_REGION} --endpoint-url=http://localhost:4579 | |
| echo "Verified ${EMAIL_ADDRESS}" |
| FROM python:3.7 | |
| ENV PYTHONUNBUFFERED 1 | |
| RUN mkdir /code | |
| WORKDIR /code | |
| COPY . /code/ | |
| RUN pip install -r requirements-dev.txt |