Skip to content

Instantly share code, notes, and snippets.

View haris1998-web's full-sized avatar
🏠
Working from home

Muhammad Haris Yousaf haris1998-web

🏠
Working from home
View GitHub Profile
@haris1998-web
haris1998-web / postgres-brew.md
Created May 1, 2024 09:43 — forked from ibraheem4/postgres-brew.md
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
@haris1998-web
haris1998-web / AESCipher.py
Created January 26, 2023 06:46
AESCipher with Cryptodome
## Install these packages
## pycryptodome==3.16.0
## pycryptodomex==3.16.0
import base64
import hashlib
from Cryptodome import Random
from Cryptodome.Cipher import AES