[ create a new paste ] login | about

spamalot

Name:
Email:
Site/Blog:
Location:
Default language:
Favorite languages: APL, J, K, Q
About: Sir Spam-A-lot

Saved pastes by spamalot:

C++, pasted on Oct 24:
1
2
3
4
5
#include <iostream>
using namespace std;

int main(){
    printf("Stop spamming!!!");
...
view (7 lines, 1 line of output)
PHP, pasted on Oct 18:
1
2
3
4
5
<?php for ($i = 0; $i < 18; $i++) {
  $from_date = strtotime($i." months ago");
  $to_date = strtotime(($i+1)." months ago");
	  echo(date("Y-m", $from_date). "-01\n".date("Y-m", $to_date)."-01\n\n") ;
} ?>
view (5 lines, 54 lines of output)
PHP, pasted on Oct 18:
1
2
3
4
<?php for ($i = 0; $i < 18; $i++) {
  $from_date = strtotime($i." months ago");
	  echo(date("Y-m", $from_date). "\n") ;
} ?>
view (4 lines, 18 lines of output)
Perl, pasted on Nov 10:
1
2
3
4
package RT::Interface::Email::Filter::SpamAssassin;

our $VERSION = .95;
our $statERR;
...
view (211 lines, 1 comment)