Skip to content

Instantly share code, notes, and snippets.

View chungquantin's full-sized avatar
:shipit:
Extreme learning

Tin Chung chungquantin

:shipit:
Extreme learning
View GitHub Profile
@chungquantin
chungquantin / postgres.md
Created June 19, 2022 07:25 — forked from phortuin/postgres.md
Set up postgres + database on MacOS (M1)

Based on this blogpost.

Install with Homebrew:

$ brew install postgresql

Run server:

@chungquantin
chungquantin / decorators.py
Created June 5, 2022 18:07 — forked from dzhou/decorators.py
useful python decorator utils
#!/usr/bin/env python
#
import os
import time
import thread
import warnings
import signal
import traceback
from threading import Timer