All pictures and GIMP projects

This commit is contained in:
DarkCat09 2023-01-18 16:35:35 +04:00
parent 64d3925c36
commit 7004df99ea
41 changed files with 92 additions and 0 deletions

BIN
alnum/table_bin.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 30 KiB

13
alnum/table_bin.txt Normal file
View file

@ -0,0 +1,13 @@
0000000 0 0001010 A 0010100 K 0011110 U
0000001 1 0001011 B 0010101 L 0011111 V
0000010 2 0001100 C 0010110 M 0100000 W
0000011 3 0001101 D 0010111 N 0100001 X
0000100 4 0001110 E 0011000 O 0100010 Y
0000101 5 0001111 F 0011001 P 0100011 Z
0000110 6 0010000 G 0011010 Q 0100100
0000111 7 0010001 H 0011011 R 0100101 $
0001000 8 0010010 I 0011100 S 0100110 %
0001001 9 0010011 J 0011101 T 0100111 *

BIN
alnum/table_bin.xcf Normal file

Binary file not shown.

BIN
alnum/table_dec.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 26 KiB

13
alnum/table_dec.txt Normal file
View file

@ -0,0 +1,13 @@
0 0 10 A 20 K 30 U
1 1 11 B 21 L 31 V
2 2 12 C 22 M 32 W
3 3 13 D 23 N 33 X
4 4 14 E 24 O 34 Y
5 5 15 F 25 P 35 Z
6 6 16 G 26 Q 36
7 7 17 H 27 R 37 $
8 8 18 I 28 S 38 %
9 9 19 J 29 T 39 *

BIN
alnum/table_dec.xcf Normal file

Binary file not shown.

22
alnum/write_table.py Executable file
View file

@ -0,0 +1,22 @@
#!/usr/bin/env python3
import string
ROWS = 10
SYM = string.digits + string.ascii_uppercase + ' $%*+-./:'
LEN = len(SYM)
#NAME = 'table_bin.txt'
NAME = 'table_dec.txt'
with open(NAME, 'wt', encoding='utf-8') as f:
f.write('\n\n')
for row in range(ROWS):
f.write(' ')
for col in range(LEN // ROWS):
i = 10 * col + row
if (i >= LEN):
continue
#f.write(f'{i:07b} {SYM[i]} ')
f.write(f'{i} {SYM[i]} ')
f.write('\n')
f.write('\n')