Go Back   TalkBass Forums > Bass Guitar Forums > Classifieds > Hot Deals
Register Rules/FAQ/CUP Members List Search Today's Posts Mark Forums Read

Hot Deals Find and post hot deal discoveries. Please, no: commercial users, spam, auction links, multi-level marketing, 'pay to surf', or referral links. Please see rules posted within.


Supporting Membership
Thank You

Latest Supporting Member
Donate to Upgrade Today

Reply
 
Thread Tools Search this Thread
  #1  
Old 02-27-2011, 09:06 PM
sleepy_monkey's Avatar
Modulus, Ampeg, and Boss oh my!
 
Join Date: Dec 2007
Location: Birmingham, AL
Supporting Member
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!
__________________
Modulus Mob Member #37
Ampeg Club Member #215
5 String Bass Club Member #134
FS: 1981 Fender P Bass in Sienna Sunburst w/OHSC
  #2  
Old 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
  #3  
Old 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.
  #4  
Old 02-27-2011, 09:54 PM
lakedmb's Avatar
Registered User
 
Join Date: Nov 2009
Location: Upstate, South Carolina
Supporting Member
Won't doing that send us emails/updates each time a reply is posted to? Or will we only receive emails from new threads?
  #5  
Old 02-28-2011, 05:24 AM
Registered User
 
Join Date: Jul 2010
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]
  #6  
Old 02-28-2011, 05:33 AM
Registered User
 
Join Date: Jul 2010
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.
  #7  
Old 02-28-2011, 07:44 AM
sleepy_monkey's Avatar
Modulus, Ampeg, and Boss oh my!
 
Join Date: Dec 2007
Location: Birmingham, AL
Supporting Member
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!
__________________
Modulus Mob Member #37
Ampeg Club Member #215
5 String Bass Club Member #134
FS: 1981 Fender P Bass in Sienna Sunburst w/OHSC
  #8  
Old 02-28-2011, 07:54 AM
Registered User
 
Join Date: Jul 2010
Quote:
Originally Posted by sleepy_monkey View Post
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.
  #9  
Old 02-28-2011, 09:24 AM
A-Step-Towards's Avatar
Registered User
 
Join Date: Nov 2009
Location: Oregon
Supporting Member
I want text , tweets , emails , Pm's .........., kidding but TB has brought me uber deals the past 6 months.
  #10  
Old 02-28-2011, 09:30 AM
Registered User
 
Join Date: Jan 2010
Location: Duluth, MN
Send a message via MSN to mizzou541
Quote:
Originally Posted by A-Step-Towards View Post
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!
  #11  
Old 02-28-2011, 11:45 AM
rusackas's Avatar
Registered User
 
Join Date: Feb 2010
Location: San Francisco, CA
Supporting Member
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
  #12  
Old 02-28-2011, 11:52 AM
Registered User
 
Join Date: Jan 2010
Location: Duluth, MN
Send a message via MSN to mizzou541
How do you subscribe to the RSS?
__________________
G.G.C.S. #1 | Aguilar #187 | EMG #15 | Markbass #270 | Blues Bass Players #126

MIZ-ZOU!
  #13  
Old 02-28-2011, 12:10 PM
rusackas's Avatar
Registered User
 
Join Date: Feb 2010
Location: San Francisco, CA
Supporting Member
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
  #14  
Old 02-28-2011, 12:14 PM
Registered User
 
Join Date: Jan 2010
Location: Duluth, MN
Send a message via MSN to mizzou541
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!
  #15  
Old 02-28-2011, 12:15 PM
sleepy_monkey's Avatar
Modulus, Ampeg, and Boss oh my!
 
Join Date: Dec 2007
Location: Birmingham, AL
Supporting Member
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?
__________________
Modulus Mob Member #37
Ampeg Club Member #215
5 String Bass Club Member #134
FS: 1981 Fender P Bass in Sienna Sunburst w/OHSC
  #16  
Old 02-28-2011, 12:18 PM
Registered User
 
Join Date: Jan 2010
Location: Duluth, MN
Send a message via MSN to mizzou541
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!
  #17  
Old 02-28-2011, 12:19 PM
sleepy_monkey's Avatar
Modulus, Ampeg, and Boss oh my!
 
Join Date: Dec 2007
Location: Birmingham, AL
Supporting Member
Quote:
Originally Posted by mizzou541 View Post
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.
__________________
Modulus Mob Member #37
Ampeg Club Member #215
5 String Bass Club Member #134
FS: 1981 Fender P Bass in Sienna Sunburst w/OHSC
  #18  
Old 02-28-2011, 05:29 PM
Registered User
 
Join Date: Jun 2009
Location: Poughkeepsie, NY
Supporting Member
Quote:
Originally Posted by sleepy_monkey View Post
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.
  #19  
Old 03-01-2011, 04:58 AM
Registered User
 
Join Date: Jul 2010
Quote:
Originally Posted by A-Step-Towards View Post
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
Reply


Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off

Follow TalkBass on Twitter   Visit TalkBass on Facebook  

All times are GMT -6. The time now is 07:41 PM.




Copyright 2011 Talk Music Group Inc. All rights reserved.
Play guitar? Visit our new sister site TalkGuitar.com [beta]
Powered by vBulletin® Version 3.6.12
Copyright ©2000 - 2012, Jelsoft Enterprises Ltd.