umairmaratab.hashnode.devZsh: The Ultimate Shell for Power UsersZsh, short for Z Shell, is an advanced shell and command-line interpreter for Unix-like operating systems. It is an extended version of the Bourne shell (sh) with additional features and improvements. It is popular for its features like Auto-completi...Jun 20, 2023·3 min read
umairmaratab.hashnode.devBoosting Performance and Efficiency: The Power of JIT Compilation ExplainedA JIT (Just-In-Time) compiler is a type of compiler that dynamically translates and compiles sections of code at runtime, typically during the execution of a computer program. You have already used it because when you open a browser you run a Just in...May 30, 2023·2 min read
umairmaratab.hashnode.devPython Code Style Guide: Write readable codecode is read much more often than it is written. You must make your code readable so when someone else or you after a month sees your code you know what it's doing. Style Guides Indentation Use 4 spaces per indentation level. Example when calling t...May 25, 2023·4 min read
umairmaratab.hashnode.devAccelerate Your Data Science Projects with Google ColabGoogle Colab is a cloud-based environment that allows you to run your code on powerful virtual machines. If you don't have a powerful machine with a good GPU Google Colab is the solution. Requirements You just need a Google account. Setup If you have...May 24, 2023·2 min read
umairmaratab.hashnode.devMaximizing Security Insights with NmapNmap, short for network scanner is a network scanning and exploration tool which is used by ethical hackers to analyze the network. It provides a wide range of scanning techniques, including port scanning, version detection, OS fingerprinting, and mo...May 23, 2023·3 min read