This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* This snippet shows a PHP neat trick: build a file into memory without use the filesystem. | |
*/ | |
$fp = fopen('php://memory', 'rw'); // open an in-memory handler | |
for ($i = 0; $i < 100; ++$i) { // write some data to handler | |
fwrite($fp, $i."\n"); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/************************************************************************************************* | |
* Simple Google Apps script for removing GMail messages | |
* | |
* Rationale: If you've got hundreds of thousands of e-mails (automated error reports in my case) | |
* filling up your account's quota and there's too many of them creating huge threads so | |
* GMail GUI, IMAP or anything else cannot handle this removal. | |
* | |
* Usage: Set up your query and run this script using a trigger every 5/10 minutes - it took days | |
* for my Inbox to be finally free from the crap. | |
*************************************************************************************************/ |