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
route53domains:RegisterDomain | |
route53domains:RenewDomain | |
route53domains:TransferDomain | |
ec2:ModifyReservedInstances | |
ec2:PurchaseHostReservation | |
ec2:PurchaseReservedInstancesOffering | |
ec2:PurchaseScheduledInstances | |
rds:PurchaseReservedDBInstancesOffering | |
dynamodb:PurchaseReservedCapacityOfferings | |
s3:PutObjectRetention |
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 pyautogui, time, sys, os, win32api, win32gui, win32con, datetime, pyHook, pythoncom | |
from optparse import OptionParser | |
''' | |
Python Automated Actions Script by Ian Mckay | |
Version 0.1 - 20151217 | |
''' | |
pyautogui.PAUSE = 0 | |
pyautogui.FAILSAFE = True |
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
access-analyzer:CreateAnalyzer | |
access-analyzer:GetAnalyzer | |
access-analyzer:TagResource | |
access-analyzer:UntagResource | |
acm:AddTagsToCertificate | |
acm:ImportCertificate | |
acm:RemoveTagsFromCertificate | |
acm:RequestCertificate | |
acm-pca:CreateCertificateAuthority | |
acm-pca:TagCertificateAuthority |
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
SecurityHubStandardsConfigurationStackSet: | |
DependsOn: | |
- SecurityStackSet | |
Condition: IsDelegationComplete | |
Type: AWS::CloudFormation::StackSet | |
Properties: | |
StackSetName: securityhub-standards | |
PermissionModel: SERVICE_MANAGED | |
CallAs: DELEGATED_ADMIN | |
Capabilities: |
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
<html> | |
<body> | |
<canvas id="canvas" width="320" height="320"></canvas> | |
<div style="display:none;"> | |
<img id="source" src="test.png"> | |
</div> | |
<script> | |
var canvas = document.getElementById("canvas"); | |
var ctx = canvas.getContext('2d'); |
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
""" | |
Python Bot Player | |
iann0036 2014 | |
http://www.miniclip.com/games/simon-says/en/#t-c-f-C | |
""" | |
import ImageGrab | |
import os | |
import time | |
import win32api, win32con |
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
for region in `aws ec2 describe-regions --output text | cut -f4` | |
do | |
aws s3 cp lambda/app.zip s3://ianmckay-$region/APPLICATION/app.zip --acl public-read | |
aws s3 cp template.yml s3://ianmckay-$region/APPLICATION/template.yml --acl public-read | |
done |
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 node | |
const request = require('request'); | |
const aws4 = require('aws4'); | |
const AWS = require('aws-sdk'); | |
let chain = new AWS.CredentialProviderChain(); | |
chain.resolve((err, awscreds) => { | |
let awsreq = aws4.sign({ | |
service: 'sts', |
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
tag-history | |
payment-gateway | |
diode | |
hailstone | |
silverwire | |
archipelago | |
penny | |
panama | |
mamsg | |
gondolin |
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 ubuntu:latest | |
RUN apt-get update \ | |
&& apt-get install -y python3-pip python3-dev \ | |
&& cd /usr/local/bin \ | |
&& ln -s /usr/bin/python3 python \ | |
&& pip3 install --upgrade pip | |
RUN pip3 install numpy | |
RUN pip3 install scipy |
NewerOlder