Уровень 0 · материалов: 3
В кластер входят документы, описывающие технические методы преобразования данных в определенный формат кодирования, и не входят документы, не затрагивающие механизмы представления информации.
Общие признаки: способы представления данных, алгоритмы кодирования и декодирования, обработка символов
Группа выше: Кодирование, энтропия и целостность данных
Смысл: The main idea is to explain the theoretical foundation of Unicode and the mechanical process of UTF-8 encoding and decoding, while providing a concrete implementation for languages like VBScript that do not support it natively.
A technical guide explaining the theory of Unicode and UTF-8 with practical VBScript implementations for encoding and decoding text.
Смысл: The text provides a technical guide on how to interface a PC with a GSM modem using Delphi to send and receive SMS messages, focusing specifically on the challenges of character encoding for non-Latin alphabets.
A technical tutorial on using Delphi and AT commands to send and receive SMS messages via a USB GSM modem, including a solution for Cyrillic text encoding.
Смысл: The main idea is to use Base64 encoding for all input data in database queries to neutralize SQL injection and XSS by removing special characters, trading off performance and storage for simplicity in security implementation.
The author proposes using Base64 encoding for input data in SQL queries as a simple, universal way to prevent SQL injection and XSS by eliminating special characters.