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 python3 | |
| class Colors: | |
| CYAN = '\033[96m' | |
| MAGENTA = '\033[95m' | |
| BLUE = '\033[94m' | |
| GREEN = '\033[92m' | |
| YELLOW = '\033[93m' | |
| RED = '\033[91m' | |
| RESET = '\033[0m' |
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
| # Example | |
| # Update all symlinks that point to "foo" to now point to "baz" | |
| find . -lname foo -exec ln -sf baz {} \; |
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
| # Uncrustify 0.61 | |
| # | |
| # uncrustify config file | |
| # | |
| #newlines { Auto, LF, CR, CRLF } | |
| # The type of line endings | |
| input_tab_size = 4 | |
| # The original size of tabs in the input |
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
| additionalProperties: true | |
| default: {} | |
| description: This is the schema for an individual glossary item | |
| examples: | |
| - acronym: FOO | |
| description: foo | |
| links: | |
| - link: https://foo.com | |
| title: foo | |
| see: |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
| #include "ansi_color.h" | |
| /** | |
| * @name inColor | |
| * | |
| * @brief returns a string, ansi-formatted to be displayed in a particular | |
| * color & style in the console. | |
| * | |
| * @param content - string content to wrap in ansi formatting | |
| * @param foreground - text foreground color (default: kAnsiColorDefault) |
OlderNewer