One Paragraph of project description goes here
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.
| import { | |
| S3Client, | |
| paginateListObjectsV2, | |
| GetObjectCommand, | |
| } from '@aws-sdk/client-s3'; | |
| import { createWriteStream } from 'node:fs'; | |
| import { mkdir } from 'node:fs/promises'; | |
| const createDirectory = async (newPath, existingPath) => { | |
| try { |
| locals { | |
| kubeconfig_file = "${path.module}/kubeconfig" | |
| } | |
| provider "local" {} | |
| # provider "kubernetes" { | |
| # config_path = local.kubeconfig_file | |
| # } |
| <html lang="en"> | |
| <head> | |
| <style type="text/css"> | |
| body { | |
| background-color: #000; | |
| color: #fff; | |
| } | |
| body.light { | |
| background-color: #fff; |
| #!/bin/bash | |
| # Generate a `:something-intensifies:` Slack emoji, given a reasonable image | |
| # input. I recommend grabbing an emoji from https://emojipedia.org/ | |
| set -euo pipefail | |
| # Number of frames of shaking | |
| count=10 | |
| # Max pixels to move while shaking |