This file contains 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 | |
# Digital speech decoder setup script for DNF-based systems | |
# Sandro Kalatozishvili (c) 2024 (For scientific purposes only) | |
# socat udp4-listen:7355,reuseaddr,fork - | padsp -- dsd -i - -o /dev/dsp | |
BASE_PATH=$(pwd -P)/$(dirname "$0") | |
WORK_PATH="$BASE_PATH/dsd_setup" | |
WORK_OS=$(uname) | |
ITPP_SOURCE="http://sourceforge.net/projects/itpp/files/latest/download?source=files" |
This file contains 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 | |
# SDR++ and tetra-demodulator setup script for DNF-based systems | |
# Sandro Kalatozishvili (c) 2024 (For scientific purposes only) | |
BASE_PATH=$(pwd -P)/$(dirname "$0") | |
WORK_PATH="$BASE_PATH/sdrpp_setup" | |
WORK_OS=$(uname) | |
SDRPLUSPLUS_REPO="https://github.com/AlexandreRouma/SDRPlusPlus" | |
TETRA_DEMOD_REPO="https://github.com/cropinghigh/sdrpp-tetra-demodulator" |
This file contains 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
2B 3D 4C 29 4B D9 07 2C C8 C1 C9 14 2E 0D 9F 82 | |
28 A0 B6 FA 44 FC 1F C7 09 C3 7D 9F 80 0B 36 8B | |
4F A3 3D E5 E1 F3 0E 22 35 11 08 46 1E EE CC 27 | |
FE 3F F1 88 27 E1 A7 FE E4 7F A8 A6 91 33 5D 78 | |
4A 89 9E 44 BF EB 02 54 4F FD 4C 8F FE 01 47 43 | |
BE D5 68 99 01 90 5F B5 53 90 81 E9 A9 A4 6C 8D | |
DB 20 FD 3B 76 24 E0 AA 38 6B 13 2B E6 11 02 C4 | |
B3 A5 2E 75 3F CB E1 CC 50 17 2E FE 6B B0 AA A7 | |
43 64 2B 18 02 1D 0B 01 83 F4 5C 54 97 EA 54 0E | |
E0 22 0B D3 A9 D9 75 B1 E4 E5 4C 12 C2 50 E0 19 |
This file contains 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 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 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 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 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 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 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> |
NewerOlder