Commit for Gitea

This commit is contained in:
DuOtto
2026-04-28 12:14:58 +02:00
parent 225ecc2e17
commit a12182baa2
116 changed files with 2630 additions and 381 deletions
View File
+9
View File
@@ -0,0 +1,9 @@
{
"type": "PDFContainer",
"sources": [
{
"contenttype": "PDF",
"source": "warhammer40000_core&key_quickstartguide_eng_24.09-s2afk26smk.pdf"
}
]
}
+1
View File
@@ -0,0 +1 @@
FuckThisShit.txtFuckThisShit.txtFuckThisShit.txtFuckThisShit.txtFuckThisShit.txt
Binary file not shown.

After

Width:  |  Height:  |  Size: 2.0 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 688 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 782 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 615 KiB

View File
View File
+163
View File
@@ -0,0 +1,163 @@
{
"version": 1,
"cameras": [
{
"index": 0,
"pxWidth": 2048,
"pxHeight": 1536,
"camera_matrix": [
[
1637.301826012801,
0.0,
1115.6922895709363
],
[
0.0,
1637.3016923198538,
660.417851928144
],
[
0.0,
0.0,
1.0
]
],
"distortion_coefficients": [
[
0.1880726328811075,
-0.3711284739403174,
-0.019390902558209716,
0.009835323140375036,
0.42533165931899103
]
],
"rotation_matrix_world_to_camera": [
[
1.0,
0.0,
0.0
],
[
0.0,
1.0,
0.0
],
[
0.0,
0.0,
1.0
]
],
"translation_vector_world_to_camera": [
[
0.0
],
[
0.0
],
[
0.0
]
],
"camera_projection_matrix": [
[
1637.301826012801,
0.0,
1115.6922895709363,
0.0
],
[
0.0,
1637.3016923198538,
660.417851928144,
0.0
],
[
0.0,
0.0,
1.0,
0.0
]
]
},
{
"index": 3,
"pxWidth": 2048,
"pxHeight": 1536,
"camera_matrix": [
[
1629.3953951276987,
0.0,
946.5260213900043
],
[
0.0,
1608.3790414523598,
656.5060407239171
],
[
0.0,
0.0,
1.0
]
],
"distortion_coefficients": [
[
0.19251720938106318,
-0.21522629593789278,
-0.02730155124857322,
-0.03890715094594556,
0.21680710398239586
]
],
"rotation_matrix_world_to_camera": [
[
0.08276206632981453,
-0.8544623995610863,
0.5128785900319194
],
[
0.720047607579738,
0.40706667659536877,
0.5619859105211598
],
[
-0.6889716127646442,
0.3227858865283794,
0.6489432858598454
]
],
"translation_vector_world_to_camera": [
[
-176.11272583763233
],
[
-564.9970879948509
],
[
471.9913794371197
]
],
"camera_projection_matrix": [
[
-517.2774297117204,
-1086.7318582180455,
1449.923719330272,
159794.8580057718
],
[
705.7954552118755,
866.628395475963,
1329.9215473279708,
-598864.2830424493
],
[
-0.6889716127646442,
0.3227858865283794,
0.6489432858598454,
471.9913794371197
]
]
}
]
}
+8
View File
@@ -0,0 +1,8 @@
import socket, struct, time
sock = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)
sock.sendto(
struct.pack("<4sBIQB", b"HAND", 1, 123, int(time.time()*1000), 0),
("127.0.0.1", 9000)
)
print("sent")