How to use:
./wordle.sh
Or try the unlimit mode:
| #!/bin/bash | |
| # | |
| # Written by Chris Arceneaux | |
| # GitHub: https://github.com/carceneaux | |
| # Email: [email protected] | |
| # Website: http://arsano.ninja | |
| # | |
| # Note: This code is a stop-gap to erase Job Artifacts for a project. I HIGHLY recommend you leverage | |
| # "artifacts:expire_in" in your .gitlab-ci.yml | |
| # | 
| # Don't print a new line at the start of the prompt | |
| add_newline = false | |
| # Replace the "❯" symbol in the prompt with "➜" | |
| [character] # The name of the module we are configuring is "character" | |
| symbol = "➜" # The "symbol" segment is being set to "➜" | |
| error_symbol = "✗" | |
| use_symbol_for_status = true | |
| # Disable the package module, hiding it from the prompt completely | 
| apiVersion: apps/v1 | |
| kind: Deployment | |
| metadata: | |
| name: myapp | |
| spec: | |
| selector: | |
| matchLabels: | |
| app: myapp | |
| template: | |
| metadata: | 
| from click import command, option, Option, UsageError | |
| class MutuallyExclusiveOption(Option): | |
| def __init__(self, *args, **kwargs): | |
| self.mutually_exclusive = set(kwargs.pop('mutually_exclusive', [])) | |
| help = kwargs.get('help', '') | |
| if self.mutually_exclusive: | |
| ex_str = ', '.join(self.mutually_exclusive) | |
| kwargs['help'] = help + ( | |
| ' NOTE: This argument is mutually exclusive with ' | 
Git sees every file in your working copy as one of three things:
Ignored files are usually build artifacts and machine generated files that can be derived from your repository source or should otherwise not be committed. Some common examples are: