title | category |
---|---|
Git config |
Git |
Ne pas oublier : l'aide en ligne de commande.
/* | |
* John Conway's Game of Life. | |
* | |
* This is written for POSIX, using Curses. Resizing of the terminal is not | |
* supported. | |
* | |
* By convention in this program, x is the horizontal coordinate and y is | |
* vertical. There correspond to the width and height respectively. | |
* The current generation number is illustrated when show_generation is set. | |
* |
#!/bin/bash | |
set -e | |
CH=latest | |
echo Installing Server 1 | |
k3sup install --user pi --ip 192.168.2.147 \ | |
--k3s-channel $CH \ | |
--cluster \ |
------------------------------------------------------------------------------ | |
| Dec | Oct | Hex | Binary | Asc | Description | | |
------------------------------------------------------------------------------ | |
| 0 | 0000 | 00 | 00000000 | NUL | Null char | | |
| 1 | 0001 | 01 | 00000001 | SOH | Start of Heading | | |
| 2 | 0002 | 02 | 00000010 | STX | Start of Text | | |
| 3 | 0003 | 03 | 00000011 | ETX | End of Text | | |
| 4 | 0004 | 04 | 00000100 | EOT | End of Transmission | | |
| 5 | 0005 | 05 | 00000101 | ENQ | Enquiry | | |
| 6 | 0006 | 06 | 00000110 | ACK | Acknowledgment | |