Skip to content

Instantly share code, notes, and snippets.

View shubham23471's full-sized avatar

Shubham Shakya shubham23471

View GitHub Profile
@shubham23471
shubham23471 / chmodCheatSheet.md
Created July 30, 2020 04:31 — forked from juanarbol/chmodCheatSheet.md
Chmod cheat sheet

Chmod codes cheat sheet

How to use chmod codes in UNIX:

  1. There are three types of permisions in files and folders in unix
    1. Read (r)
    2. Write (w)
    3. Execute (x)
  2. And, there is a clasificacion of users called UGO (explained bellow):
  3. U ~> User (usually, you)
@shubham23471
shubham23471 / python-logging.md
Created August 24, 2019 10:31 — forked from mariocj89/python-logging.md
Understanding logging in Python

Logging trees

Introduction

When applications are running in production, they become black boxes that need to be traced and monitored. One of the simplest, yet main, ways to do so is logging. Logging allows us - at the time we develop our software - to instruct the program to emit information while the system is running that will be useful for us and our sysadmins.