Skip to content

Instantly share code, notes, and snippets.

View progressify's full-sized avatar
🇮🇹

Antonio Porcelli progressify

🇮🇹
View GitHub Profile
@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!