Skip to content

Instantly share code, notes, and snippets.

View progressify's full-sized avatar
🇮🇹

Antonio Porcelli progressify

🇮🇹
View GitHub Profile
@progressify
progressify / build_android.sh
Created December 5, 2025 11:27
Build Android
#!/bin/bash
echo -e "\n🧹 Pulisco il progetto..."
flutter clean
echo -e "\n🏛️ Eseguo la build dell'Appbundle..."
flutter build appbundle
if [ $? -ne 0 ]; then
echo -e "❌ Build fallita."
@progressify
progressify / build_ios.sh
Created December 5, 2025 11:03
Build iOS
#!/bin/bash
# ----------- Configurazioni -----------
KEY_ID="<your-key-id-here>"
ISSUER_ID="<your-issuer-id-here>"
# -------------------------------------
echo -e "\n🧹 Pulisco il progetto..."
flutter clean
@progressify
progressify / app_version_checker.py
Last active November 25, 2025 10:58
Check latest app version release on Stores
import requests
from time import time
def get_ios_app_details(bundle_id, country='it'):
"""
Retrieve the version and details of an iOS app via the iTunes API. (No external dependencies required.)
:param bundle_id: The app's bundle ID (e.g., 'com.instagram.layout')
:param country: The store's country code (e.g., 'it' for Italy, 'us' for the USA)
@progressify
progressify / README.md
Last active December 27, 2021 11:22
Sono un appassionato di anime e vorrei vedere One Piece! Ho trovato tutti gli episodi, ma il sito non è fatto benissimo e si dovrebbero prelevare manualmente tutti i link, episodio per episodio. Ho deciso di fare un piccolo script in Python per prelevare automaticamente tutti i link al download in un determinato range (così da dividere anche gli…

Anime Streaming Link Catcher

Disclaimer: Il seguente gist è a solo scopo educativo. Ho realizzato (in meno di 5 minuti) questo script per puro divertimento. Mi dissocio da tutti i siti che fanno uso e diffondono materiale pirata.

Sono un appassionato di anime e vorrei vedere One Piece!

Ho trovato tutti gli episodi, ma il sito non è fatto benissimo e si dovrebbero prelevare manualmente tutti i link, episodio per episodio.

@progressify
progressify / backup.sql
Created November 6, 2020 11:27
Pure-FTPd, MySQL, Docker and Traefik 2
CREATE TABLE `ftpd` (
`User` varchar(30) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
`status` enum('0','1') COLLATE utf8_unicode_ci NOT NULL DEFAULT '1',
`Password` varchar(64) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
`Uid` varchar(11) COLLATE utf8_unicode_ci NOT NULL DEFAULT 'www-data',
`Gid` varchar(11) COLLATE utf8_unicode_ci NOT NULL DEFAULT 'www-data',
`Dir` varchar(250) COLLATE utf8_unicode_ci NOT NULL DEFAULT '/ftpdata',
`ULBandwidth` smallint(5) NOT NULL DEFAULT '0',
`DLBandwidth` smallint(5) NOT NULL DEFAULT '0',
`comment` tinytext COLLATE utf8_unicode_ci NOT NULL,
@progressify
progressify / virtualenv_alias.sh
Last active April 13, 2020 11:50 — forked from haridas/virtualenv_alias.sh
A Simple bash alias for python virtualenv. :)
# Python virtual env alias
alias mkenv='test -d myvenv && echo "Already exists" || python3 -m virtualenv -p python3 myvenv; activatenv'
alias activatenv='test -d myvenv && source ./myvenv/bin/activate || echo "No Virtualenv in the current folder"'
@progressify
progressify / README
Last active January 21, 2020 14:07
Paradox DB helper class in Python using pypyodbc
Tested on Windows 10 Pro (64bit)
Python version 3.7.4 (32bit)
Note for your mental sanity: the "Microsoft Paradox Driver" was at 32bit only and work ONLY with Python 32bit version!