| Value | Color |
|---|---|
| \e[0;30m | Black |
| \e[0;31m | Red |
| \e[0;32m | Green |
| \e[0;33m | Yellow |
| \e[0;34m | Blue |
| \e[0;35m | Purple |
| Name | Description |
|---|---|
aws-gate |
Better AWS SSM Session manager CLI client |
aws-ssm-tools |
Handy tools for AWS Systems Manager - ssm-session, ecs-session, ssm-ssh and ssm-tunnel |
gossm |
💻Interactive CLI tool that you can connect to ec2 using commands same as start-session, ssh in AWS SSM Session Manager |
quick_ssm |
Quickly connect to AWS servers from the cli. No GUI or ssh needed. |
ssm-helpers |
Help manage AWS systems manager with helpers |
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
| import requests | |
| import logging | |
| try: | |
| import http.client as http_client | |
| except ImportError: | |
| # Python 2 | |
| import httplib as http_client | |
| http_client.HTTPConnection.debuglevel = 1 |
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
| #!/usr/bin/env bash | |
| # Created by Randy Wallace (@Real Human Bot; https://hangops.slack.com/team/U4ZT6HSH5) | |
| # Taken from HangOps Slack and adopted for my needs (c) yz 21-Oct-2024 | |
| # Options documented at https://pkg.go.dev/github.com/hashicorp/terraform-json?tab=doc | |
| # Dev documentation: https://developer.hashicorp.com/terraform/internals/json-format#plan-representation | |
| # Also: https://developer.hashicorp.com/terraform/internals/machine-readable-ui | |
| cat - | jq -r ' | |
| # pull out changes only |
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
| # youtube-subs-to-opml.py -- Convert YouTube subscriptions exported | |
| # via Google Takeout into OPML | |
| # | |
| # See <https://www.reddit.com/r/youtube/comments/jqlks2/where_did_opml_export_go/gcdii2n/>. | |
| # 1. Go to youtube homepage | |
| # 2. Click top right icon, "Your Data in Youtube" | |
| # 3. Click "Show More" | |
| # 4. Click "Download Youtube data" | |
| # 5. This takes you to a similar screen as the other google takeout one, but only for youtube data. The subscription info here is more up to date. | |
| # |
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
| # HCL (Terraform >= 0.12.20) | |
| locals { | |
| combined_cardinal_directions = { | |
| northeast = "ne", | |
| northwest = "nw", | |
| southeast = "se", | |
| southwest = "sw", | |
| } | |
| aws_region_array = split("-", lower(var.aws_region_name)) |
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
| #!/usr/bin/env -S bash -c "docker run -p 8080:8080 -it --rm \$(docker build --progress plain -f \$0 . 2>&1 | tee /dev/stderr | grep -oP 'sha256:[0-9a-f]*')" | |
| # syntax = docker/dockerfile:1.4.0 | |
| FROM node:20 | |
| WORKDIR /root | |
| RUN npm install sqlite3 |
ℹ️ GH Gist: yermulnik/Telegram.yz.md
👉 Update this gist:
gh gist edit https://gist.github.com/yermulnik/5b1d412ca01630af4d06c2c1fadddc53 -f Telegram.yz.md README.mdStarting with v4.10.0 Telegram has stopped supporting Linux platforms
with glibc (GNU C Library) less than 2.29 (2.28?):
NewerOlder