This file contains hidden or 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
name: Remote Dispatch Action | |
on: [ repository_dispatch, workflow_dispatch ] | |
jobs: | |
update-version: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Event Information |
This file contains hidden or 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
name: Container Build CICD | |
on: | |
push: | |
branches: | |
- 'main' | |
env: | |
REGISTRY: ghcr.io | |
IMAGE_NAME: org/container-name |
This file contains hidden or 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 python | |
##### THIS IS A DESTRUCTIVE SCRIPT - USE WITH CAUTION OR SET DryRun=True | |
import datetime | |
import sys | |
import boto3 | |
# Set these two variables before running: |
This file contains hidden or 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
AWSTemplateFormatVersion: '2010-09-09' | |
Description: 'Simple CloudFront distribution with an S3 origin' | |
Parameters: | |
S3BucketName: | |
Type: String | |
Description: The name for the S3 bucket - must be unique across all of AWS | |
AllowedPattern: '^[a-z0-9]{5,40}$' | |
Resources: |
This file contains hidden or 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 python:3 | |
ADD helloworld.py / | |
RUN pip install flask | |
RUN pip install flask_restful | |
EXPOSE 80 | |
CMD [ "python", "./helloworld.py"] |
This file contains hidden or 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 python3 | |
import os | |
import requests | |
from fastapi import FastAPI | |
from typing import Optional | |
from pydantic import BaseModel | |
app = FastAPI() |
This file contains hidden or 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
#!/bin/bash | |
jq --slurp --raw-input --raw-output \ | |
'split("\n") | .[1:] | map(split(",")) | | |
map({"id": .[0], | |
"fname": .[1], | |
"lname": .[2], | |
"email": .[3], | |
"ipv4": .[5]})' \ | |
mock_data.csv > mock_data.json |
This file contains hidden or 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
#!/bin/bash | |
set -e | |
## -------------------------------------------------------------- | |
## OKAY - but simple | |
## The script has a proper shebang line and has been | |
## chmod to 755 so it can be executed. |
This file contains hidden or 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 python3 | |
import io | |
import re | |
def convert(file_name): | |
# Open csv file | |
file_name="new_mock_data" | |
csv = io.open(file_name + ".csv", mode="w", encoding="utf-8") |
This file contains hidden or 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 python3 | |
# How to run a bash command from within a python3 script. | |
## ----------------------------------------------------------- | |
## BAD | |
## This solution looks good but is a bad practice. as os.system | |
## and os.spawn are older and being replaced. This may not work |