Query your Linux operating system like a database

https://opensource.com/article/21/6/osquery-linux Linux offers a lot of commands to help users gather information about their host operating system: listing files or directories to check attributes; querying to see what packages are installed, processes are running, and services start at boot; or learning about the system’s hardware. Each command uses its own output format to list this …

Mein Konfig: экскурсия по dotfiles

https://habr.com/ru/post/563426/ Ввод, ОС, ФС, X11, MRA и MDA, Сеть, Jail, Демоны, MTA, MUA, WWW, PGP, IRC, st, tmux, cd, git, zsh, zsh completion, zsh history, ZLE, zsh prompt, zsh misc, less, grep, .zshenv, autoenv, .zprofile, t, Музыка, mpv, Картинки, Архивы, Feeds, Hjson, *tex*, File transfer, Games, БД, ЯП, Python, Go, C, redo, TAI64, Vim, tags, …

список из 10 максимально полезных GitHub-репозиториев

https://tproger.ru/news/opublikovan-spisok-iz-10-maksimalno-poleznyh-github-repozitoriev Он будет интересен как начинающим разработчикам, так и тем, кто готовится к интервью в крупнейших IT-компаниях. GitHub — крупнейшая площадка для хранения IT-проектов, доступная широкому кругу пользователей. Но из-за размеров площадки, зачастую бывает сложно найти на ней по-настоящему интересные проекты. Решить эту проблему вызвался Яш Тивари на платформе Hackernoon. Он составил топ-10 GitHub-страниц, на …

tinydb

TinyDB is a lightweight document oriented database optimized for your happiness 🙂 It’s written in pure Python and has no external dependencies. Example Code >>> from tinydb import TinyDB, Query >>> db = TinyDB(‘/path/to/db.json’) >>> db.insert({‘int’: 1, ‘char’: ‘a’}) >>> db.insert({‘int’: 1, ‘char’: ‘b’}) Query Language >>> User = Query() >>> # Search for a …