Skip to content

Instantly share code, notes, and snippets.

View dah33's full-sized avatar

Dan Houghton dah33

View GitHub Profile
@felipou
felipou / decrypt_dbeaver.py
Last active July 2, 2024 14:56
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
@m-thomson
m-thomson / airtable-to-csv.php
Last active March 13, 2021 11:33
Dump airtable contents to CSV
<?php
/*
* Totally simple way to dump an Airtable to CSV.
* Uses https://github.com/sleiman/airtable-php
*/
// When true, first field is the row number (starting with 1)
define("NUMBER_OUTPUT_ROWS", true);