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 | |
# This source is part of "XAction" project | |
# 2024-2025 Sun Dro ([email protected]) | |
# NOTE: Modify following variables to match your UE5 installation | |
# These paths are default and can be overridden with command line | |
# options or with the project.ini file from the same directory | |
UE5_PATH="/opt/ue5/UnrealEngine" | |
PROJECTS_DIR="/opt/ue5/projects" | |
PACKAGES_DIR="/opt/ue5/packages" |
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
77 51 33 25 C3 E6 D3 F1 0F C2 1F C3 F2 34 00 D0 | |
F4 E0 37 0F 77 2D CA 64 10 24 A6 EE 6A F5 DF A6 | |
F7 39 9B 12 7A CD 74 D6 7A A9 18 9D 84 89 D8 50 | |
8C 66 4E 48 64 B3 99 5B 16 9C A2 87 F0 2D 8F 85 | |
C0 CE B1 BC 03 55 25 11 C2 3C DF FC C3 F2 7E 85 | |
E1 65 76 46 EB A9 17 C2 C9 5D E1 0C E6 6B F7 27 | |
3B F4 9D 02 5D 3F 85 A0 99 4C 83 3E C0 84 29 14 | |
3B 3E A1 13 C0 B5 F1 14 CA 10 23 42 9B A7 C6 E6 | |
01 74 9B A3 00 C4 53 31 7D C7 33 2B 33 90 06 36 | |
19 9E 0D 51 AF E7 A5 E4 09 54 E7 3C 77 C8 75 A5 |
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
/*! | |
* @file xdb/xdb.c | |
* | |
* 2015-2022 Sun Dro ([email protected]) | |
* | |
* @brief Implementation of the XDB file parser | |
* Using: https://github.com/kala13x/libxutils | |
*/ | |
#include <xutils/xstd.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
/*! | |
* @file pcap2ts.c | |
* | |
* 2015-2022 Sun Dro ([email protected]) | |
* | |
* @brief Extract MPEGTS payload from PCAP file. | |
* Usage: pcap2ts <input> <output> <verbose> | |
* Example: pcap2ts dump.pcap payload.ts 1 | |
* | |
* Compile command: |
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
/*! | |
* @file libxutils/examples/xtop.c | |
* | |
* This source is part of "libxutils" project | |
* 2015-2022 Sun Dro ([email protected]) | |
* | |
* @brief Implementation of advanced system monitor based on the xUtils. | |
* Collect and monitor network, memory and CPU statistics in one window. | |
*/ |
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
/*! | |
* @file libxutils/examples/xhttp.c | |
* | |
* This source is part of "libxutils" project | |
* 2015-2020 Sun Dro ([email protected]) | |
* | |
* @brief Example file for working with the HTTP request/responses. | |
* Send costum HTTP request, analyze headers, download content, etc. | |
*/ |
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
/*! | |
* @file libxutils/examples/statcov.c | |
* | |
* 2020-2021 Sun Dro ([email protected]) | |
* | |
* @brief Parse and print COVID-19 case | |
* statistics from https://stopcov.ge/ | |
*/ | |
#include <xutils/xstd.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
/*! | |
* @file libxutils/examples/events.c | |
* | |
* This source is part of "libxutils" project | |
* 2015-2020 Sun Dro ([email protected]) | |
* | |
* @brief Implementation of high performance event based non-blocking echo server. | |
* The xUtils library will use poll() or epoll() depending on the operating system. | |
*/ |
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
/* | |
* upwork/singles/chat_server.cpp | |
* | |
* 2021 (c) Sun Dro ([email protected]) | |
* | |
* EPOLL based high performance chat server with subscribe pattern | |
* Compile: g++ -g -O2 -Wall chat_server.cpp -o chat_server -lpthread | |
*/ | |
#include <stdio.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
/* | |
* lagint.c | |
* 2019-2020 Sun Dro ([email protected]) | |
* | |
* Calculate Lagrange interpolated polynomials and | |
* displays the coefficient of each polynomials | |
*/ | |
#include <stdio.h> | |
#include <errno.h> |
NewerOlder