Looking at OpenNEM the values for pricing, particularly during the mid to late 2000s, don't seem correct.
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
| $ terraform plan | |
| module.data_aws_ssm_parameter_path_to_a_parameter.data.aws_ssm_parameter.path_to_a_parameter: Reading... | |
| Terraform used the selected providers to generate the following execution plan. Resource actions are indicated with the following symbols: | |
| + create | |
| <= read (data resources) | |
| Terraform planned the following actions, but then encountered a problem: |
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 alpine:3.13 | |
| RUN apk add --no-cache make | |
| COPY . /app | |
| WORKDIR /app | |
| RUN make path |
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
| # frozen_string_literal: true | |
| require 'csv' | |
| require 'fileutils' | |
| require 'open-uri' | |
| TEMP_DIRECTORY = 'tmp' | |
| # Create temp file |
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
| resource "aws_ecr_repository" "account_a" { | |
| name = var.ecr_name | |
| tags = local.tags | |
| } | |
| resource "aws_ecr_repository_policy" "account_a" { | |
| repository = aws_ecr_repository.this.name | |
| policy = data.aws_iam_policy_document.account_a.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
| # bastion-the-easy-way.sh | |
| # | |
| # Allowing you to easily bastion into a remote location! So nice! | |
| # | |
| # $ bastion path_to_target_key path_to_bastion_key target_ip_address bastion_ip_address target_user bastion_user | |
| function bastion { | |
| __message='Welcome to bastion the easy way!' | |
| ssh -f -i ${2:-$__bastion_key} -L 6969:${3:-$__target_ip_address}:22 ${6:-ec2-user}@${4:-$__bastion_address} echo $__message | |
| ssh -i ${1:-$__target_key} ${5:-ec2-user}@localhost -p 6969 -o "UserKnownHostsFile /dev/null" | |
| } |
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
| [ | |
| { | |
| "Comments": "Cross over suburb", | |
| "Contact": "131 388", | |
| "DB": "Ausgrid", | |
| "Pcode": "2121", | |
| "Quoting": "Y", | |
| "State": "New South Wales" | |
| }, | |
| { |
I hereby claim:
- I am jufemaiz on github.
- I am jufemaiz (https://keybase.io/jufemaiz) on keybase.
- I have a public key ASB-1QCzoC8jwVo-4WVzdQzqBqBRpka_DGTD5_6Z5u-wIAo
To claim this, I am signing this object:
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
| files: | |
| # Make the appropriate directories | |
| "/opt/elasticbeanstalk/hooks/appdeploy/pre/020_bootstrap.sh": | |
| mode: "000755" | |
| owner: root | |
| group: root | |
| content: | | |
| #!/usr/bin/env bash | |
| # /opt/elasticbeanstalk/hooks/appdeploy/pre/01a_bootstrap.sh |
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
| # Shamelessly ripped from Delayed::Job tasks | |
| # Ref: https://github.com/collectiveidea/delayed_job/blob/master/lib/delayed/tasks.rb | |
| namespace :jobs do | |
| namespace :container do | |
| desc 'Clear the delayed_job queue.' | |
| task clear: :environment do | |
| Delayed::Job.delete_all | |
| end | |
| desc 'Start a delayed_job worker.' |
NewerOlder