Warning: preg_grep(): Compilation failed: quantifier does not follow a repeatable item at offset 152 in /var/www/tg-me/post.php on line 75 Библиотека тестировщика | QA, тестирование, quality assurance, manual testing, autotesting, ручное тестирование, автотесты | Telegram Webview: testerlib/3304 -
Grep ищет строки по шаблону в текстовых файлах. Звучит просто, а работает — мощно.
Как можно использовать:
➡️ Для поиска ошибок в логе:
grep "ERROR" application.log
➡️ Для поиска процессов по имени:
ps aux | grep "my_app"
➡️ Для рекурсивного поиска всех TODO в проекте (игнорируя регистр):
grep -ri "TODO" ./src
Какие флаги стоит знать:
📍-i — игнорирует регистр
📍-r — ищет во всех подпапках
📍 -n — показывает номер строки
Когда лог — это тысячи строк мусора, grep помогает быстро найти нужное. Меньше времени на ручной анализ — больше точности в баг-репорте и стабильности в продукте.
Grep ищет строки по шаблону в текстовых файлах. Звучит просто, а работает — мощно.
Как можно использовать:
➡️ Для поиска ошибок в логе:
grep "ERROR" application.log
➡️ Для поиска процессов по имени:
ps aux | grep "my_app"
➡️ Для рекурсивного поиска всех TODO в проекте (игнорируя регистр):
grep -ri "TODO" ./src
Какие флаги стоит знать:
📍-i — игнорирует регистр
📍-r — ищет во всех подпапках
📍 -n — показывает номер строки
Когда лог — это тысячи строк мусора, grep помогает быстро найти нужное. Меньше времени на ручной анализ — больше точности в баг-репорте и стабильности в продукте.
Telegram’s stand out feature is its encryption scheme that keeps messages and media secure in transit. The scheme is known as MTProto and is based on 256-bit AES encryption, RSA encryption, and Diffie-Hellman key exchange. The result of this complicated and technical-sounding jargon? A messaging service that claims to keep your data safe.Why do we say claims? When dealing with security, you always want to leave room for scrutiny, and a few cryptography experts have criticized the system. Overall, any level of encryption is better than none, but a level of discretion should always be observed with any online connected system, even Telegram.
Telegram auto-delete message, expiring invites, and more
elegram is updating its messaging app with options for auto-deleting messages, expiring invite links, and new unlimited groups, the company shared in a blog post. Much like Signal, Telegram received a burst of new users in the confusion over WhatsApp’s privacy policy and now the company is adopting features that were already part of its competitors’ apps, features which offer more security and privacy. Auto-deleting messages were already possible in Telegram’s encrypted Secret Chats, but this new update for iOS and Android adds the option to make messages disappear in any kind of chat. Auto-delete can be enabled inside of chats, and set to delete either 24 hours or seven days after messages are sent. Auto-delete won’t remove every message though; if a message was sent before the feature was turned on, it’ll stick around. Telegram’s competitors have had similar features: WhatsApp introduced a feature in 2020 and Signal has had disappearing messages since at least 2016.
Библиотека тестировщика | QA тестирование quality assurance manual testing autotesting ручное тестирование автотесты from us