Standard escape codes are prefixed with Escape:
- Ctrl-Key:
^[ - Octal:
\033 - Unicode:
\u001b - Hexadecimal:
\x1B - Decimal:
27
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <title>Mutation Observers</title> | |
| <meta name="viewport" content="width=device-width"> | |
| <link rel="stylesheet" href="../video-pages/main.css"> | |
| </head> | |
| <body> | |
| <header> |
| // Útil para filtros de Gutenberg como "allowed_block_types" | |
| archives | |
| audio | |
| button | |
| categories | |
| code | |
| column | |
| columns | |
| coverImage |
| <?php | |
| /* | |
| Plugin Name: Example Custom Post Types | |
| Plugin URI: https://deadhandmedia.com/ | |
| Description: Adds custom post types and taxonomies. | |
| Version: 1.0.0 | |
| Author: Tyler Smith | |
| Author URI: https://deadhandmedia.com/ | |
| License: GPL2 |
| #!/usr/bin/env bash | |
| # License: https://r15ch13.mit-license.org | |
| shopt -s nullglob | |
| lastgroup="" | |
| for g in `find /sys/kernel/iommu_groups/* -maxdepth 0 -type d | sort -V`; do | |
| for d in $g/devices/*; do | |
| if [ "${g##*/}" != "$lastgroup" ]; then | |
| echo -en "Group ${g##*/}:\t" | |
| else |