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
8bit/base.xcf Normal file

Binary file not shown.

BIN
8bit/format.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.9 KiB

BIN
8bit/format.xcf Normal file

Binary file not shown.

BIN
8bit/packets.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 16 KiB

BIN
8bit/packets.xcf Normal file

Binary file not shown.

BIN
8bit/qr1.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.1 KiB

BIN
8bit/reading.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

BIN
8bit/reading.xcf Normal file

Binary file not shown.

BIN
8bit/structure.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.1 KiB

BIN
8bit/structure.xcf Normal file

Binary file not shown.

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')

BIN
eci/assignment_num.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 322 KiB

BIN
eci/base.xcf Normal file

Binary file not shown.

23
eci/qr.svg Normal file

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 18 KiB

BIN
eci/structure.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

BIN
eci/structure.xcf Normal file

Binary file not shown.

BIN
kanji/neko.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 24 KiB

BIN
num1/base.xcf Normal file

Binary file not shown.

BIN
num1/qr2.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

BIN
num2/base.xcf Normal file

Binary file not shown.

BIN
num2/qr3.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.3 KiB

BIN
num2/reading.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 18 KiB

BIN
num2/reading.xcf Normal file

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

BIN
python.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 74 KiB

BIN
table/ascii.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 62 KiB

21
table/ascii.txt Normal file
View file

@ -0,0 +1,21 @@
0000000 NUL 0010000 DLE 0100000 0110000 0 1000000 @ 1010000 P 1100000 ` 1110000 p
0000001 SOH 0010001 DC1 0100001 ! 0110001 1 1000001 A 1010001 Q 1100001 a 1110001 q
0000010 STX 0010010 DC2 0100010 " 0110010 2 1000010 B 1010010 R 1100010 b 1110010 r
0000011 ETX 0010011 DC3 0100011 # 0110011 3 1000011 C 1010011 S 1100011 c 1110011 s
0000100 EOT 0010100 DC4 0100100 $ 0110100 4 1000100 D 1010100 T 1100100 d 1110100 t
0000101 ENQ 0010101 NAK 0100101 % 0110101 5 1000101 E 1010101 U 1100101 e 1110101 u
0000110 ACK 0010110 SYN 0100110 & 0110110 6 1000110 F 1010110 V 1100110 f 1110110 v
0000111 BEL 0010111 ETB 0100111 ' 0110111 7 1000111 G 1010111 W 1100111 g 1110111 w
0001000 BS 0011000 CAN 0101000 ( 0111000 8 1001000 H 1011000 X 1101000 h 1111000 x
0001001 HT 0011001 EM 0101001 ) 0111001 9 1001001 I 1011001 Y 1101001 i 1111001 y
0001010 LF 0011010 SUB 0101010 * 0111010 : 1001010 J 1011010 Z 1101010 j 1111010 z
0001011 VT 0011011 ESC 0101011 + 0111011 ; 1001011 K 1011011 [ 1101011 k 1111011 {
0001100 FF 0011100 FS 0101100 , 0111100 < 1001100 L 1011100 \ 1101100 l 1111100 |
0001101 CR 0011101 GS 0101101 - 0111101 = 1001101 M 1011101 ] 1101101 m 1111101 }
0001110 SO 0011110 RS 0101110 . 0111110 > 1001110 N 1011110 ^ 1101110 n 1111110 ~
0001111 SI 0011111 US 0101111 / 0111111 ? 1001111 O 1011111 _ 1101111 o 1111111 DEL

BIN
table/ascii.xcf Normal file

Binary file not shown.

BIN
table/masktbl.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 26 KiB

BIN
table/masktbl.xcf Normal file

Binary file not shown.

BIN
table/modetbl.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 19 KiB

BIN
table/modetbl.xcf Normal file

Binary file not shown.