I hereby claim:
- I am scottschreckengaust on github.
- I am scottschrecken (https://keybase.io/scottschrecken) on keybase.
- I have a public key ASDfxF4fbhLl-vj8q_u7pWXQEmDAiS3Ffb23xKcOwLDc1Qo
To claim this, I am signing this object:
# https://docs.aws.amazon.com/bedrock/latest/userguide/models-supported.html | |
data "aws_bedrock_foundation_models" "models" {} | |
output "model_ids" { | |
description = "The Bedrock Foundation Models" | |
value = data.aws_bedrock_foundation_models.models.model_summaries[*].model_id | |
} | |
variable "default_foundation_model" { | |
type = string | |
description = "The default foundation model to use" | |
nullable = false |
{"@level":"info","@message":"Terraform version: 1.9.8","@timestamp":"2024-12-10T03:27:29.374458-08:00"} | |
{"@level":"debug","@message":"using github.com/hashicorp/go-tfe v1.58.0","@timestamp":"2024-12-10T03:27:29.374615-08:00"} | |
{"@level":"debug","@message":"using github.com/hashicorp/hcl/v2 v2.20.0","@timestamp":"2024-12-10T03:27:29.374625-08:00"} | |
{"@level":"debug","@message":"using github.com/hashicorp/terraform-svchost v0.1.1","@timestamp":"2024-12-10T03:27:29.374631-08:00"} | |
{"@level":"debug","@message":"using github.com/zclconf/go-cty v1.14.4","@timestamp":"2024-12-10T03:27:29.374636-08:00"} | |
{"@level":"info","@message":"Go runtime version: go1.22.7","@timestamp":"2024-12-10T03:27:29.374640-08:00"} | |
{"@level":"info","@message":"CLI args: []string{\"/opt/homebrew/Cellar/tfenv/3.0.0/versions/1.9.8/terraform\", \"apply\", \"-var=region=us-west-2\", \"-auto-approve\"}","@timestamp":"2024-12-10T03:27:29.374648-08:00"} | |
{"@level":"trace","@message":"Stdout is a terminal of width 158","@timestamp":"2024-12-10T03:27:29 |
#!/bin/sh | |
set -e | |
# Get the process | |
FULL_COMMAND="$(sed -n l "/proc/1/cmdline" | sed -e 's/\\$//g' | tr -d '\n' | sed -e 's/\$$//g' | sed -e 's/\\000/ /g' | sed -e 's/ *$//g' | head -1)" | |
# Look for the process | |
pgrep --full "$FULL_COMMAND" 2> /dev/null > /dev/null; | |
exit ${?}; |
#!/bin/sh | |
# Installation looks like this: | |
# nodeenv --node=20.16.0 --python-virtual; | |
# Install nodeenv if not present | |
which nodeenv || pipenv install --dev nodeenv; | |
# If asking for a specific version just try to install it... | |
# Otherwise, get the latest and install it unless it is already installed |
#!/usr/bin/env python | |
"""\ | |
Deletes non-empty AWS S3 Buckets | |
WARNING: VERY DESTRUCTIVE | |
Usage: myscript.py your_bucket_name | |
""" | |
import sys | |
import boto3 |
--- | |
AWSTemplateFormatVersion: "2010-09-09" | |
Resources: | |
Topic: | |
Type: "AWS::SNS::Topic" | |
Metadata: | |
cfn_nag: | |
rules_to_suppress: | |
- id: "W47" |
// ==UserScript== | |
// @name A Test | |
// @namespace com.github | |
// @version 0.0.0 | |
// @description A Test | |
// @author Scott Schreckengaust <[email protected]> | |
// @match http://*/* | |
// @match https://*/* | |
// @grant none | |
// @antifeature |
################################################################################ | |
# This will minimize a repository to only the current commit: | |
################################################################################ | |
export ORIGIN_URL=$(git remote get-url origin); \ | |
export COMMIT=$(git rev-parse HEAD); \ | |
rm -rf .git; \ | |
git init .; \ | |
git remote add origin ${ORIGIN_URL}; \ | |
git fetch origin ${COMMIT} --depth 1; \ | |
git reset --mixed ${COMMIT}; \ |
I hereby claim:
To claim this, I am signing this object:
// Convert Excel dates into JS date objects | |
// | |
// @param excelDate {Number} | |
// @return {Date} | |
function getJsDateFromExcel(excelDate) { | |
// JavaScript dates can be constructed by passing milliseconds | |
// since the Unix epoch (January 1, 1970) example: new Date(12312512312); |