Skip to content

Instantly share code, notes, and snippets.

View Sillians's full-sized avatar
🥢
luna

Basil Ihuoma Sillians

🥢
luna
View GitHub Profile
@ibraheem4
ibraheem4 / postgres-brew.md
Last active July 27, 2026 07:20
Installing Postgres via Brew (OSX)

Installing Postgres via Brew

Pre-Reqs

Brew Package Manager

In your command-line run the following commands:

  1. brew doctor
  2. brew update
@mariocj89
mariocj89 / python-logging.md
Last active June 25, 2026 07:57
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.