| Original Letter | Look-Alike(s) |
|---|---|
| a | а ạ ą ä à á ą |
| c | с ƈ ċ |
| d | ԁ ɗ |
| e | е ẹ ė é è |
| g | ġ |
| h | һ |
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
| #!/bin/bash | |
| if [ ! -f /root/slic_table ]; then | |
| cat /sys/firmware/acpi/tables/SLIC > /root/slic_table | |
| echo "Wrote SLIC to /root/slic_table" | |
| fi | |
| UUID=$(dmidecode | grep -A8 'System Information' | grep -i UUID | awk '{print $2}') | |
| SERIAL=$(dmidecode | grep -A8 'System Information' | grep -i 'serial number' | awk '{print$3}') | |
| PRODUCT=$(dmidecode | grep -A8 'System Information' | grep -i "Product Name" | sed "s/^.*Product Name: //") |
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
| using System; | |
| using Towel; | |
| using static Towel.Syntax; | |
| namespace ConsoleApp1 | |
| { | |
| class Program | |
| { | |
| static void Main() | |
| { |
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
| using System; | |
| namespace Example | |
| { | |
| class Program | |
| { | |
| static void Main() | |
| { | |
| For (10..5) | |
| ( |
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
| const CANCEL = Symbol(); | |
| class CancellationToken { | |
| constructor() { | |
| this.cancelled = false; | |
| } | |
| throwIfCancelled() { | |
| if (this.isCancelled()) { |