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 | |
$myself = 'garvin'; | |
$compare = 'andih'; | |
# Usage: | |
# - wget a URL like this: | |
# http://www.imdb.com/list/export?list_id=ratings&author_id=ur0555872 (garvin) | |
# - save it as imdb_ratings_XXX.csv (see below when it gets called) | |
# - do the same with the CSV of the second user you want to compare with | |
# - enter the proper user names/file names at the bottom of this file |
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
CREATE TABLE serendipity_spamblocklog ( | |
timestamp int(10) default null, | |
type varchar(255), | |
reason text, | |
entry_id int(10) not null default '0', | |
author varchar(80), | |
email varchar(200), | |
url varchar(200), | |
useragent varchar(255), | |
ip varchar(15), |
NewerOlder