FJ540 wrote:Never even heard of it. Was this a store?
river_boater wrote:That's too bad. I used it to find watch deals. I even bought one from the site owner.
Hoot wrote:river_boater wrote:That's too bad. I used it to find watch deals. I even bought one from the site owner.
You're kidding? I didn't realize you could search other markets besides firearms. I still have the bookmark in my Guns/Sources/ folder and yeah, it's a "404" now.
Hoot
river_boater wrote:He posted the source for the site, maybe somebody will resurrect it.
jspace wrote:Ew, Perl.
I could give it a go though. Just need some persuasion in the form of a 6 pack
mysql> describe eds_links;
+----------+--------------+------+-----+---------+-------+
| Field | Type | Null | Key | Default | Extra |
+----------+--------------+------+-----+---------+-------+
| url | varchar(256) | NO | PRI | | |
| title | varchar(128) | YES | | NULL | |
| sitename | varchar(128) | YES | | NULL | |
| category | varchar(32) | YES | MUL | NULL | |
| time | int(11) | YES | MUL | NULL | |
+----------+--------------+------+-----+---------+-------+
5 rows in set (0.00 sec)
SHOW CREATE TABLE <table>;
jspace wrote:Yeah, I don't know Perl (or Ruby, Python, PHP, or anything really) so porting it would be difficult.
What's really hard is that the code is poorly (mainly not at all) commented and the database schema isn't defined. The readme says this:
- Code: Select all
mysql> describe eds_links;
+----------+--------------+------+-----+---------+-------+
| Field | Type | Null | Key | Default | Extra |
+----------+--------------+------+-----+---------+-------+
| url | varchar(256) | NO | PRI | | |
| title | varchar(128) | YES | | NULL | |
| sitename | varchar(128) | YES | | NULL | |
| category | varchar(32) | YES | MUL | NULL | |
| time | int(11) | YES | MUL | NULL | |
+----------+--------------+------+-----+---------+-------+
5 rows in set (0.00 sec)
Which doesn't help, because I have no idea what category & time are keyed to. I did learn that the correct command to use is
- Code: Select all
SHOW CREATE TABLE <table>;
So that's cool.
For those who don't speak nerd & tldr;
It's hard because something breaks & has to be figgered out. Don't hold your breath for anyone to bring this back.
CREATE TABLE `eds_links` (
`url` varchar(256) COLLATE utf8_bin NOT NULL,
`title` varchar(128) COLLATE utf8_bin DEFAULT NULL,
`sitename` varchar(128) COLLATE utf8_bin DEFAULT NULL,
`category` varchar(32) COLLATE utf8_bin DEFAULT NULL,
`time` int(11) DEFAULT NULL,
PRIMARY KEY (`url`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
jspace wrote:Also, it looks like someone has already made a better version. http://elitedealseeker.blogspot.com/2011/01/another-copycat-site.html
Users browsing this forum: No registered users and 55 guests