Standard escape codes are prefixed with Escape
:
- Ctrl-Key:
^[
- Octal:
\033
- Unicode:
\u001b
- Hexadecimal:
\x1B
- Decimal:
27
#!/bin/bash | |
# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # | |
# # | |
# PlantUML Docker v1.1 # | |
# # | |
# Script to run a PlantUML in a Docker container. # | |
# # | |
# Author: Glauco Morais (https://git.io/JB8Z8) # | |
# License: MIT # |
#!/bin/bash | |
# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # | |
# # | |
# ShellColors v1.0 # | |
# # | |
# Define SGR constants to format bash scripts. # | |
# # | |
# Author: Glauco Morais (https://git.io/JB8nU) # | |
# License: MIT # |
# Moved to this repository: https://github.com/glaucomorais/docky |
declare namespace Phaser { | |
interface Scene { | |
dragonBone: dragonBones.phaser.plugin.DragonBonesScenePlugin; | |
} | |
namespace Loader { | |
interface LoaderPlugin { | |
dragonbone: ( |
I hereby claim:
To claim this, I am signing this object:
server { | |
charset utf-8; | |
listen 80; | |
server_name localhost; | |
root path-to-project/public; | |
index index.html index.php; | |
access_log path-to-project/storage/local/nginx.access.log; |
# Este unifica o estilo de código para diferentes editores e IDEs | |
# This unifies the coding style for differents editors and IDEs | |
# editorconfig.org | |
root = true | |
[*] | |
end_of_line = lf | |
charset = utf-8 | |
trim_trailing_whitespace = true |