Skip to content

Instantly share code, notes, and snippets.

View medeirosT's full-sized avatar

Tiago Roque Medeiros medeirosT

View GitHub Profile
@medeirosT
medeirosT / mkbhd.php
Last active September 27, 2024 19:54
Download MKBHD's Panel collection in PHP
<?php
/*
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
Version 2, December 2004
Copyright (C) 2024 < medeirost @ github>
Everyone is permitted to copy and distribute verbatim or modified
copies of this license document, and changing it is allowed as long
as the name is changed.
@medeirosT
medeirosT / get.php
Created July 15, 2024 00:44
Quick and Dirty fotoshare.co downloader script in php
<?php
function downloadFile($url) {
$fileName = basename(parse_url($url, PHP_URL_PATH));
$fileContent = file_get_contents($url);
if ($fileContent === false) {
echo "...Failed to download file from $url";
return false;