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 subprocess | |
import argparse | |
import json | |
# Must be executed from within a git repo. | |
def main(): | |
parser = argparse.ArgumentParser(description='Clone a GitHub issue.') | |
parser.add_argument('issue_number', type=int, help='The issue number to clone.') | |
args = parser.parse_args() |
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 dataclasses import dataclass, asdict | |
from random import randint | |
from typing import Literal, Dict, List | |
from faker import Faker | |
@dataclass | |
class Record: | |
user_name: str |
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
#!/usr/bin/env zsh | |
# Array of command names | |
sdk_commands=( | |
GetObjectCommand | |
) | |
# Client name | |
client=s3 |