Skip to content

Instantly share code, notes, and snippets.

View mzughbor's full-sized avatar
🎯
Focusing

Mahmoud Zuhgbor mzughbor

🎯
Focusing
View GitHub Profile
@h3ssan
h3ssan / JetBrains trial reset.md
Last active August 1, 2025 09:41
Reset all JetBrains products trial in Linux

In some cases, only these lines will work

for product in IntelliJIdea WebStorm DataGrip PhpStorm CLion PyCharm GoLand RubyMine; do
    rm -rf ~/.config/$product*/eval 2> /dev/null
    rm -rf ~/.config/JetBrains/$product*/eval 2> /dev/null
done

But if not, try these

@RyanBalfanz
RyanBalfanz / upload.py
Last active January 8, 2025 00:45
[Heroku] Direct to S3 File Uploads in Python
"""
Fix for some issues with the original code from Heroku:
https://devcenter.heroku.com/articles/s3-upload-python
This example is also designed for use with Django, not Flask as in the original.
"""
import base64
import hashlib
import hmac