Skip to content

Instantly share code, notes, and snippets.

View JamesWoolfenden's full-sized avatar
💭
plans, lots of plans

James Woolfenden JamesWoolfenden

💭
plans, lots of plans
View GitHub Profile
trigger:
- main
pool:
vmImage: ubuntu-latest
steps:
- script: curl -s -k https://api.github.com/repos/bridgecrewio/yor/releases/latest | jq '.assets[] | select(.name | contains("linux_386")) | select(.content_type | contains("gzip")) | .browser_download_url' -r | awk '{print "curl -L -k " $0 " -o yor.tar.gz"}' | sh
- script: sudo tar -xf yor.tar.gz -C /usr/bin/
- script: rm yor.tar.gz
@JamesWoolfenden
JamesWoolfenden / pricing.py
Created May 25, 2021 09:12
example of using the aws pricing api
import boto3
import json
from pkg_resources import resource_filename
product_filters = [
{'Type': 'TERM_MATCH',
'Field': 'volumeType',
'Value': 'General Purpose'}
]
@JamesWoolfenden
JamesWoolfenden / termtosvg_aehmh7cl.svg
Last active January 21, 2021 11:23
run-pre-commit
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
// Load the AWS SDK for Node.js
var AWS = require('aws-sdk');
// Set the region
AWS.config.update({ region: 'eu-west-1' });
// Create S3 service object
var s3 = new AWS.S3({ apiVersion: '2006-03-01' });
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@JamesWoolfenden
JamesWoolfenden / git-tag-delete-local-and-remote.sh
Created November 10, 2019 11:30 — forked from mobilemind/git-tag-delete-local-and-remote.sh
how to delete a git tag locally and remote
# delete local tag '12345'
git tag -d 12345
# delete remote tag '12345' (eg, GitHub version too)
git push origin :refs/tags/12345
# alternative approach
git push --delete origin tagName
git tag -d tagName
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.