JustGeek.dev Tech, simplified.

OpenSSL Commands for Everyday Use

OpenSSL is a powerful open-source toolkit that implements the SSL and TLS protocols. Whether you’re a system administrator, developer, or security professional, these essential OpenSSL commands will help you manage certificates and secure connections effectively. 1. Decoding and Examining Certificates View Certificate Details This command deco... Read more

All about core dumps

Understanding Core Dumps in Linux A core dump is a snapshot of a program’s state at the moment it crashes, containing the complete contents of its allocated memory. This valuable debugging tool helps developers identify and fix program failures by providing detailed information about the program’s state at the time of the crash. What is a Core... Read more

What is PIP

PIP (Python Package Installer) is the standard package manager for Python that enables you to install and manage additional libraries and dependencies that aren’t part of the Python Standard Library. It allows you to access thousands of packages created by the Python community. Instead of writing complex code from scratch, you can leverage exist... Read more