This file contains hidden or 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 | |
| /* | |
| http://stackoverflow.com/a/11973533/99923 | |
| Well, just to show that it is in fact possible to write a POP3 server in PHP, here it is. The server does no authentication--or pretty much anything else. It just keep sending the same message over and over. But it works. Thunderbird was able to retrieve messages from it. Totally useless, but sort of cool. | |
| My setup is Apache 2 on Windows with PHP 5.2. | |
| */ | |
| // echo something so fopen() would return |
This file contains hidden or 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
| unit TargaImage; | |
| {************** | |
| * MIT License | |
| **************} | |
| interface | |
| uses | |
| WinApi.Windows, System.SysUtils, System.Classes, Vcl.Graphics, | |
| Vcl.Controls, Vcl.ClipBrd, System.AnsiStrings; |