Skip to content

Instantly share code, notes, and snippets.

View chulanovskyi-bs's full-sized avatar
πŸ’­
πŸ§˜β€β™‚οΈ

chulanovskyi-bs chulanovskyi-bs

πŸ’­
πŸ§˜β€β™‚οΈ
  • Binary Studio
  • Lviv, Ukraine
View GitHub Profile
@parmentf
parmentf / GitCommitEmoji.md
Last active June 17, 2025 18:20
Git Commit message Emoji

Inspired by dannyfritz/commit-message-emoji

See also gitmoji.

Commit type Emoji
Initial commit πŸŽ‰ :tada:
Version tag πŸ”– :bookmark:
New feature ✨ :sparkles:
Bugfix πŸ› :bug:
@felipou
felipou / decrypt_dbeaver.py
Last active February 11, 2025 10:48
DBeaver password decryption script - for newer versions of DBeaver
# https://stackoverflow.com/questions/39928401/recover-db-password-stored-in-my-dbeaver-connection
# requires pycryptodome lib (pip install pycryptodome)
import sys
import base64
import os
import json
from Crypto.Cipher import AES