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 argparse | |
import asyncio | |
import colored | |
import serial | |
from serial.tools import list_ports | |
import sys | |
import uuid | |
import websockets | |
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
#include <Stepper.h> | |
const int steps_per_revolution = 200; | |
const int step_pin = 3; | |
const int direction_pin = 4; | |
const int end_stop_pin = 5; | |
const int steps_per_motion = steps_per_revolution / 2; | |
const int motor_speed = 50; | |
const int led_pin = 13; |
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
terraform { | |
backend "s3" { | |
bucket = "synthetic-loadtest-stacks" | |
key = "synthetic-loadtest/mail_dumpster" | |
region = "us-east-1" | |
workspace_key_prefix = "terraform-state" | |
} | |
} | |
data "terraform_remote_state" "vpc" { |
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
from stack.step import KlaviyoStackTerraformStep | |
class MailDumpsterStep(KlaviyoStackTerraformStep): | |
STEP_NAME = 'mail_dumpster' | |
MODULE_NAME = 'mail_dumpster' | |
def __init__(self, stack): | |
self.stack = stack | |
super(MailDumpsterStep, self).__init__( |
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
add_provider | |
date_time_between | |
ipv4 | |
numerify | |
random_digit_not_null | |
street_suffix | |
address | |
date_time_between_dates | |
ipv6 | |
opera |