Skip to content

Instantly share code, notes, and snippets.

View morozov's full-sized avatar

Sergei Morozov morozov

View GitHub Profile
@stek29
stek29 / extract_telegram_macos.ipynb
Last active August 11, 2025 10:30
Extract Telegram messages from db_sqlite PostBox – made for Telegram for macOS, but should work with Telegram for iOS
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@aadmathijssen
aadmathijssen / pre-commit.sh
Last active July 8, 2021 19:15
phpcs pre-commit hook using the gitstaged filter
#!/bin/bash
#stash all changes except for the staged ones
git stash push --keep-index --include-untracked -m "phpcs pre-commit stash"
#run phpcs on the staged files and store the exit code
vendor/bin/phpcs --filter=gitstaged
result=$?
#restore to the previous configuration