I hereby claim:
- I am ivankatliarchuk on github.
- I am ivankat (https://keybase.io/ivankat) on keybase.
- I have a public key ASCs6_5-hESvQ9fPRHAd1rXUGvQNxAoBowZFKUvwX0rlRwo
To claim this, I am signing this object:
| #!/usr/bin/python | |
| # -*- coding: utf-8 -*- | |
| ''' | |
| AWS S3 Gzip compression utility | |
| Author: Dmitriy Sukharev | |
| Modified: 2013-09-11 | |
| ------- | |
| Synchronizes directory with gzipped content of Amazon S3 bucket with local |
| #!/bin/bash | |
| # | |
| # Install specific version of a Homebrew formula | |
| # | |
| # Usage: brewv.sh formula_name desired_version | |
| # | |
| # Notes: | |
| # - this will unshallow your brew repo copy. It might take some time the first time | |
| # you call this script | |
| # - it will uninstall (instead of unlink) all your other versions of the formula. |
| version: '3.7' | |
| networks: | |
| traefik: | |
| external: true | |
| volumes: | |
| db_data: | |
| secrets: |
| version: '3' | |
| # Variables to fill in: | |
| # Line 23: <LETSENCRYPT_MAIL_ADDRESS> - your mail address for contact with Let's Encrypt | |
| # Line 36: <TRAEFIK_DASHBOARD_ADMIN_PASSWORD> - MD5 hash of your password (use http://www.htaccesstools.com/htpasswd-generator/) | |
| # Line 54: <POSTGRES_PASSWORD> - the password for the postgres db. Use the same during mastodon:setup! | |
| # Lines 31, 85, 109: <DOMAIN> - e.g. social.yourdomain.com (Must have an A record pointing to your box' IP) (AAAA for IPv6 ;) | |
| services: | |
| traefik: |
I hereby claim:
To claim this, I am signing this object:
Tutorial and tips for GitHub Actions workflows
| package rds | |
| import ( | |
| log "log/slog" | |
| ) | |
| func Process(input string) string { | |
| log.Info("process") | |
| return input | |
| } |
| package main | |
| import ( | |
| "bytes" | |
| "testing" | |
| log "github.com/sirupsen/logrus" | |
| "github.com/stretchr/testify/assert" | |
| ) |
| package main | |
| package endpoint | |
| import ( | |
| "encoding/base64" | |
| "io" | |
| "testing" | |
| "crypto/rand" |
| package main | |
| import ( | |
| "github.com/aws/aws-sdk-go/aws" | |
| "github.com/aws/aws-sdk-go/aws/session" | |
| "net/http" | |
| "net/url" | |
| ) |