by El Ahmad | Aug 11, 2022 | Python
What is itertools? Itertools is a Python module that used to iterate iterables using for-loop. As according to Python official itertools – Functions creating iterators for efficient looping It is useful to construct different of sequences using iterators....
by El Ahmad | Aug 8, 2022 | Python
What is os.path.join Python module There will be time the need to get information or execute on local directories and file. Task like read and connect to database is one of the example that commonly used to create a function using os.path.join() module. A project read...
by El Ahmad | Jul 19, 2022 | extra, Tmux
My Tmux setting # changing prefix from 'Ctrl+b' to 'Ctrl+a' unbind C-b set-option -g prefix C-a bind-key C-a send-prefix # start with window 1 (instead of 0) set -g base-index 1 # start with pane 1 set -g pane-base-index 1 # screen mode set -g...