This repository contains two versions of a script that merges multiple Docker images into a single image by layering them on top of each other. It supports both local and Docker Hub images and provides options to reverse the layer order, disable cache when building, and output a Dockerfile instead of creating the merged image.
This is regarding the DarkReader snippet which is used to recolor and restyle the main
fullscreen-for-googletasks.com.
This code uses so many absolute selectors which are unnecessary.
by @zod
This gist contains a Python script that generates a transcript or summary of a YouTube video. It fetches video information, transcribes the audio using the Whisper ASR model, and generates a summary using the OpenAI language model.
- Fetch YouTube video information (title, description, channel title, etc.)
- Transcribe video audio
- Generate a summary of the video transcript
- Save output as a markdown file
| #!/bin/bash | |
| set -e | |
| # get_nvm.sh | |
| # by zudsniper@github | |
| # & ChatGPT 3.5 | |
| # ------------------- | |
| # `VERSION` 2.0.0 | |
| # | |
| ########################## | |
| # `SOURCES` | |
| #!/bin/bash | |
| set -e | |
| # get_gh.sh | |
| # by zudsniper@github | |
| # ------------------- | |
| YES_FLAG="$1" | |
| sudo apt install -y gnupg2; |
If you're looking into automating transactions in your Steam Account using Steam Bots, you most likely will need to:
- Have TOTP ("MFA" or "2FA") enabled via Steam Authenticator (Steam Guard)
- Have in hands both
shared secretandidentity secret
Having Steam Guard enabled for your Steam Account ensures that there will be no holds on transactions such as trades. Having the shared and identity secrets are necessary for complete autonomy of your Steam Bot, meaning it won't require any human interaction from you.
There is a tremendous lack of information about all of this as Steam does not provide official support for implementing Steam Bots. The information available in this guide was gathered through lots of blood and sweat hard research, reverse eng
| #!/bin/bash | |
| # by zudsniper@github | |
| # ANSI COLOR ENVIRONMENT VARS | |
| export A_RESTORE='\033[0m' | |
| export A_RESET='\033[0m' | |
| export A_BOLD='\033[1m' | |
| export A_UNDERLINE='\033[4m' |
| #!/bin/bash | |
| # .ansi_colors.sh | |
| # -------------- | |
| # @zudsniper | |
| # some ansi colors as bash variables | |
| # ----------------------------- # | |
| ## ANSI COLOR ENVIRONMENT VARS | |
| export A_RESTORE='\033[0m' |
