elite deal seaker is closed

Gun related chat that doesn't fit in another forum

elite deal seaker is closed

Postby LarryFlew on Sat Jun 15, 2013 4:43 pm

Appears that one of my favorites has given up the fight.
If you're having second thoughts you're two ahead of most Democrats
User avatar
LarryFlew
 
Posts: 5136 [View]
Joined: Fri Jun 19, 2009 7:37 am
Location: Hamburg, MN - CZ fan - Class of 66 - USAF 66-70 - NRA life since 1970

Re: elite deal seaker is closed

Postby FJ540 on Sat Jun 15, 2013 4:46 pm

Never even heard of it. Was this a store?
User avatar
FJ540
 
Posts: 6836 [View]
Joined: Fri Nov 20, 2009 5:44 pm
Location: Rock Ridge

Re: elite deal seaker is closed

Postby Hoot on Sat Jun 15, 2013 8:08 pm

FJ540 wrote:Never even heard of it. Was this a store?


That's too bad but every time I tried to use it to find a good deal, it never did me as well as beating the Google bush.
It was a meta search engine for different firearms related forum "Market Place" type listings. Fortunately, Ammo Seek is still alive and well.

Hoot
Last edited by Hoot on Sat Jun 15, 2013 10:48 pm, edited 1 time in total.
In Theory, there is no difference between theory and practice. In Practice, there is.
User avatar
Hoot
 
Posts: 283 [View]
Joined: Wed Feb 27, 2013 6:51 am
Location: St. Boni

Re: elite deal seaker is closed

Postby river_boater on Sat Jun 15, 2013 10:14 pm

That's too bad. I used it to find watch deals. I even bought one from the site owner.
river_boater
 
Posts: 539 [View]
Joined: Mon Dec 19, 2011 9:02 pm
Location: W. St. Paul

Re: elite deal seaker is closed

Postby Hoot on Sat Jun 15, 2013 10:46 pm

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
In Theory, there is no difference between theory and practice. In Practice, there is.
User avatar
Hoot
 
Posts: 283 [View]
Joined: Wed Feb 27, 2013 6:51 am
Location: St. Boni

Re: elite deal seaker is closed

Postby river_boater on Sat Jun 15, 2013 11:50 pm

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


He had it set up to crawl watch forums, paintball forums, gun forums, aquarium forums, car and computer forums, and some others I can't remember.

He posted the source for the site, maybe somebody will resurrect it.
river_boater
 
Posts: 539 [View]
Joined: Mon Dec 19, 2011 9:02 pm
Location: W. St. Paul

Re: elite deal seaker is closed

Postby northernbird on Mon Jun 17, 2013 11:47 am

river_boater wrote:He posted the source for the site, maybe somebody will resurrect it.


Anyone happen to have that source?
northernbird
 
Posts: 90 [View]
Joined: Wed Dec 26, 2012 3:28 pm
Location: North Metro

Re: elite deal seaker is closed

Postby Evad on Mon Jun 17, 2013 12:01 pm

Evad
 
Posts: 1054 [View]
Joined: Sun Oct 28, 2012 9:21 am

Re: elite deal seaker is closed

Postby jspace on Tue Jun 18, 2013 7:34 pm

Ew, Perl.
I could give it a go though. Just need some persuasion in the form of a 6 pack :D
jspace
 
Posts: 158 [View]
Joined: Sat Jun 04, 2011 7:42 pm

Re: elite deal seaker is closed

Postby XDM45 on Wed Jun 19, 2013 1:01 am

jspace wrote:Ew, Perl.
I could give it a go though. Just need some persuasion in the form of a 6 pack :D


Port it over (if possible, and if not, rewrite it) to Ruby On Rails. (Ruby = Language and Rails = Framework). I'm not a programmer or developer, but even I know Perl sucks. There are MUCH better languages these days than Perl.
Gnothi Seauton
User avatar
XDM45
 
Posts: 2904 [View]
Joined: Fri Mar 09, 2012 8:01 am
Location: Minneapolis/Saint Paul, MN

Re: elite deal seaker is closed

Postby jspace on Wed Jun 19, 2013 5:35 pm

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.
jspace
 
Posts: 158 [View]
Joined: Sat Jun 04, 2011 7:42 pm

Re: elite deal seaker is closed

Postby XDM45 on Wed Jun 19, 2013 6:44 pm

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.


Ouch. That IS ugly. I see what you mean. Looks like a total re-write is needed in a new language. If you're interested, check out one of the support channels on the freenode IRC network. /join #perl and start there I guess. There's also a Rub channel, many actually.
Gnothi Seauton
User avatar
XDM45
 
Posts: 2904 [View]
Joined: Fri Mar 09, 2012 8:01 am
Location: Minneapolis/Saint Paul, MN

Re: elite deal seaker is closed

Postby jspace on Wed Jun 19, 2013 8:20 pm

Well, I need to eat my words. It basically runs as-is. Still don't know what the "official" schema is, but nothing seems broken. I also don't have the spider thing running automatically.
Code: Select all
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;

Also, it looks like someone has already made a better version. http://elitedealseeker.blogspot.com/2011/01/another-copycat-site.html
Enough thread drift for now.
Attachments
upload.PNG
jspace
 
Posts: 158 [View]
Joined: Sat Jun 04, 2011 7:42 pm

Re: elite deal seaker is closed

Postby SamM on Thu Jun 20, 2013 10:28 am

Wish I had time to do this. I could rewrite it with my eyes closed but I'm in the middle of so many projects right now I'd never get it done. If anyone wants to tackle it and has questions or needs help let me know, I've been a programmer for 30 years and have experience in a couple dozen languages. If I can find 10 minutes I'll grab that source tree and take a look at it, really shouldn't be a difficult app to build.
SamM
 
Posts: 34 [View]
Joined: Sat Mar 30, 2013 1:40 pm

Re: elite deal seaker is closed

Postby LarryFlew on Thu Jun 20, 2013 12:46 pm

jspace wrote:Also, it looks like someone has already made a better version. http://elitedealseeker.blogspot.com/2011/01/another-copycat-site.html


Too bad they didn't do the guns and other items, just the watch section.
If you're having second thoughts you're two ahead of most Democrats
User avatar
LarryFlew
 
Posts: 5136 [View]
Joined: Fri Jun 19, 2009 7:37 am
Location: Hamburg, MN - CZ fan - Class of 66 - USAF 66-70 - NRA life since 1970

Next

Return to General Gun Chat

Who is online

Users browsing this forum: No registered users and 55 guests

cron