Skip to content

Instantly share code, notes, and snippets.

View cebem1nt's full-sized avatar
:bowtie:
I enjoy

Mint cebem1nt

:bowtie:
I enjoy
View GitHub Profile
@themagicalmammal
themagicalmammal / Optimizations_Artix.md
Last active July 20, 2025 23:57
Set of optimizations, I use on my Artix Setup
@mostafabahri
mostafabahri / decrypt.py
Last active March 17, 2025 13:26
Fernet encryption example with password
#!/usr/bin/env python3
from cryptography.fernet import Fernet
from kdf import derive_key
passphrase = b"hunter2"
f = Fernet(derive_key(passphrase))
with open('encrypted.txt', 'rb') as file:
encrypted = file.read() # binary read