Standard escape codes are prefixed with Escape:
- Ctrl-Key:
^[ - Octal:
\033 - Unicode:
\u001b - Hexadecimal:
\x1B - Decimal:
27
| package main | |
| import ( | |
| "fmt" | |
| "reflect" | |
| ) | |
| type Animal interface { | |
| MakeSound() string | |
| } |
In /etc/default/grub, modify:
noibrs noibpb nopti nospectre_v2 nospectre_v1 l1tf=off nospec_store_bypass_disable no_stf_barrier mds=off tsx=on tsx_async_abort=off mitigations=off
Then sudo update-grub
from https:// make-linux-fast-again.com/ This domain does not seem to be maintained any longer.
| package main | |
| import ( | |
| "fmt" | |
| "reflect" | |
| ) | |
| type Animal interface { | |
| MakeSound() string | |
| } |