|  | 
02-27-2011, 09:06 PM
|  | Modulus, Ampeg, and Boss oh my! | | Join Date: Dec 2007 Location: Birmingham, AL | | | Question about the Hot Deals Page
Sign in to disble this ad
Is there a way to send an alert via email anytime a new thread is made here in Hot Deals? Just curious so maybe we can all get some insano deals quicker (or a quicker heads up) and not miss out on some! Thanks for any info! | 
02-27-2011, 09:26 PM
| | Registered User | | Join Date: Nov 2010 Location: Austin, TX | | | I also think thats a great idea
__________________
Bassists Who Drive Manual Club! #93
| 
02-27-2011, 09:28 PM
| | Registered User | | Join Date: Aug 2010 Location: Milford,MA | | | Subscribe to it under the Forum Tools box on the right, then opt for email alerts. | 
02-27-2011, 09:54 PM
|  | Registered User | | Join Date: Nov 2009 Location: Upstate, South Carolina | | | Won't doing that send us emails/updates each time a reply is posted to? Or will we only receive emails from new threads? | 
02-28-2011, 05:24 AM
| | | I couldn't find such a feature. I wish there was.
I wrote my own perl script that polls the page every ~20 minutes, If you have Linux or Mac this can work for you (it just emailed me your post!):
#!/usr/bin/perl -w
use strict;
my %hit;
dbmopen (%hit,"tb.db",0666);
# note use of a real db (mysql/postgres) would make this multithreadable
my $page=$ARGV[0];
system("wget -o /dev/null -O out.$$.dat $page") or print $!;
open(X,"<out.$$.dat") or print $!;
my $thit=0;
my $out='';
my $mainout='';
my $id='';
my $title='';
my $cnt=0;
while(<X>){
next unless /thread_title_/o;
$id=$_;
my $title=$_;
$id=~s/.*thread_title_(\d+)[^\d+].*/$1/;
$id=~s/[^\d]//g;
$title=~s/.*thread_title_\d+">([^<]+).*/$1/;
unless ($hit{$id}==1){
$cnt++;
$hit{$id}=1;
$out.=<<EOF;
$title
http://www.talkbass.com/forum/showthread.php?t=$id
EOF
}
}
unlink "out.$$.dat";
##############
print $out;
dbmclose %hit;
print "CNT: $cnt\n";
exit unless $cnt; ########
my $subj=my $subj=$ARGV[1];
open (Y,qq(|mail -s tb:$subj yourEmailHere\@gmail.com)) or print $!;
print Y <<EOF;
$cnt FROM: $page
$out
EOF
close Y;
-----
and here are my crons:
root@oc:/data/htdocs/tb# crontab -l|grep tb
*/10 6-22 * * * cd /data/htdocs/tb;./tb.pl http://www.talkbass.com/forum/f171/ HOT_DEALS
*/10 6-22 * * * sleep 60;cd /data/htdocs/tb;./tb.pl http://www.talkbass.com/forum/f127/ AMPS
0 7-22 * * * sleep 160;cd /data/htdocs/tb;./tb.pl http://www.talkbass.com/forum/f175/ BASS-CENTRAL
*/20 6-22 * * * sleep 260;cd /data/htdocs/tb;./tb.pl http://www.talkbass.com/forum/f126/ BASSES
*/30 7-22 * * * sleep 360;cd /data/htdocs/tb;./tb.pl http://www.talkbass.com/forum/f213/ EFFECTS
0 7-22 * * * sleep 460;cd /data/htdocs/tb;./tb.pl http://www.talkbass.com/forum/f129/ ACCESSORIES[/code][/html] | 
02-28-2011, 05:33 AM
| | | | also, there is a cool web site called watchThatPage.com, but since the 'views' counts change on each talkbass forum, it triggers watchThatPage.com to email 'changes' inaccurately.
but watchThatPage.com is good for other things like craigslist, fatwallet, etc. | 
02-28-2011, 07:44 AM
|  | Modulus, Ampeg, and Boss oh my! | | Join Date: Dec 2007 Location: Birmingham, AL | | | Corba, where would we put that formula? And only for the Hot Deals section...i dont really need the For Sale Bass, Amp, Accessories pages to be emailed.
Thanks! | 
02-28-2011, 07:54 AM
| | | Quote:
Originally Posted by sleepy_monkey Corba, where would we put that formula? And only for the Hot Deals section...i dont really need the For Sale Bass, Amp, Accessories pages to be emailed.
Thanks! | as i said, you have to know a little Linux or Mac OSX to implement these.
if you are really HOT for 'HOT Deals' alerts (or others), feel free to PM me your email address and the forum, and i'll include your email in my alert script! it checks every ~20 minutes. | 
02-28-2011, 09:24 AM
|  | Registered User | | Join Date: Nov 2009 Location: Oregon | | | I want text , tweets , emails , Pm's .........., kidding but TB has brought me uber deals the past 6 months. | 
02-28-2011, 09:30 AM
| | Registered User | | Join Date: Jan 2010 Location: Duluth, MN | | Quote:
Originally Posted by A-Step-Towards I want text , tweets , emails , Pm's .........., kidding but TB has brought me uber deals the past 6 months. | +1
I'm addicted to this section. I hate paying full price for things.
__________________
G.G.C.S. #1 | Aguilar #187 | EMG #15 | Markbass #270 | Blues Bass Players #126
MIZ-ZOU!
| 
02-28-2011, 11:45 AM
|  | Registered User | | Join Date: Feb 2010 Location: San Francisco, CA | | You can use the RSS feed, which alerts you to new threads. I subscribe to the feed via Google Reader, and on my Mac, use NetNewsWire as a Google Reader client. Quite handy 
__________________
Beer enthusiast, perchance? Try out my new project, Beer Citizen. Cheers!
Pedulla club #90 • Curbow Club #1
| 
02-28-2011, 11:52 AM
| | Registered User | | Join Date: Jan 2010 Location: Duluth, MN | | | How do you subscribe to the RSS?
__________________
G.G.C.S. #1 | Aguilar #187 | EMG #15 | Markbass #270 | Blues Bass Players #126
MIZ-ZOU!
| 
02-28-2011, 12:10 PM
|  | Registered User | | Join Date: Feb 2010 Location: San Francisco, CA | | Well, every browser is different, but in Safari, you'll see an RSS icon in the right side of the address bar (this is true for some other browsers too). That'll load the feed and display its address in the address bar. This works for any forum, any thread, or TB in general. For this particular Hot Deals forum, here's the RSS feed address: http://www.talkbass.com/forum/extern...2&forumids=171
__________________
Beer enthusiast, perchance? Try out my new project, Beer Citizen. Cheers!
Pedulla club #90 • Curbow Club #1
| 
02-28-2011, 12:14 PM
| | Registered User | | Join Date: Jan 2010 Location: Duluth, MN | | | Ah, I couldn't get it to just give me Hot Deals without everything under classifieds but I figured it out...thanks.
__________________
G.G.C.S. #1 | Aguilar #187 | EMG #15 | Markbass #270 | Blues Bass Players #126
MIZ-ZOU!
| 
02-28-2011, 12:15 PM
|  | Modulus, Ampeg, and Boss oh my! | | Join Date: Dec 2007 Location: Birmingham, AL | | | So when you do that does the browser just pop up when a change is made on that particular page...in this case the Hot Deals main page? | 
02-28-2011, 12:18 PM
| | Registered User | | Join Date: Jan 2010 Location: Duluth, MN | | | I did it though Outlook so it works just like getting email for me.
__________________
G.G.C.S. #1 | Aguilar #187 | EMG #15 | Markbass #270 | Blues Bass Players #126
MIZ-ZOU!
| 
02-28-2011, 12:19 PM
|  | Modulus, Ampeg, and Boss oh my! | | Join Date: Dec 2007 Location: Birmingham, AL | | Quote:
Originally Posted by mizzou541 I did it though Outlook so it works just like getting email for me. | Instructions?
On Firefox, it just wants to put a "Live Bookmark" when you try to subscribe to the RSS feed. | 
02-28-2011, 05:29 PM
| | Registered User | | Join Date: Jun 2009 Location: Poughkeepsie, NY | | Quote:
Originally Posted by sleepy_monkey Instructions?
On Firefox, it just wants to put a "Live Bookmark" when you try to subscribe to the RSS feed. | If you want to subscribe to the RSS feed from Outlook:
1. Open Outlook - make sure it is displaying your email folders down the left side.
2. Near the bottom there should be a folder labeled "RSS Feeds". Right click it and select "Add a New RSS Feed".
3. In the dialog box that pops up, paste: http://www.talkbass.com/forum/extern...2&forumids=171
It's that easy. | 
03-01-2011, 04:58 AM
| | | Quote:
Originally Posted by A-Step-Towards I want text , tweets , emails , Pm's .........., kidding but TB has brought me uber deals the past 6 months. | ok,
I've also made a twitter feed for HOT DEALS: http://twitter.com/talkbass2
fyi
i've had 4 peeps request to be on the emailing list, everyone is invited, PM your email and the forum you want alerts on.
for those that don't want to use RSS.
Greg | | Thread Tools | Search this Thread | | | |
Posting Rules
| You may not post new threads You may not post replies You may not post attachments You may not edit your posts HTML code is Off | | | |