A
Adam P
Well-known member
When weren't they?
(My mistake - I forgot that at one time CAD did claim to make its mics in the U.S. - I don't think they are now.)
That wasn't a "claim"; I have family that worked at the factory.
When weren't they?
(My mistake - I forgot that at one time CAD did claim to make its mics in the U.S. - I don't think they are now.)
Same here... I guess I fought it off just long enough.
How would you guys say the m177 compares to SPB1. I have a B1 and besides the CAD having a roll off and Pad...
B.
You greedy bastards.I don't even own a single LDC..... was totally waiting for something like this.
When weren't they?
(My mistake - I forgot that at one time CAD did claim to make its mics in the U.S. - I don't think they are now.)
Excellent idea - I just did the same. Thanks, and here's some rep for ya.i set it as my home page every time i open the browser.
...does anyone have any ideas about how I can set up a system that automatically checks the MF Stupid Deal page?
i set it as my home page every time i open the browser.
There's no RSS feed for the page, otherwise I'd go that route...does anyone have any ideas about how I can set up a system that automatically checks the MF Stupid Deal page?
Just do what I do......
The first hour of my work day I surf the net for deals on gear.
Then the second hour I order gear.....
The third hour I take a coffee break and watch for the UPS man.
The forth hour I round up all my packages of gear from the UPS guy.
LUNCH BREAK
The fifth hour open the packages.
The sixth hour play with my new toys.
Seventh hour do some real work,,,
Eight hour I pack up all my new toys to take home.....
Time to go home.............Work can be exhausting...........
Just do what I do......
The first hour of my work day I surf the net for deals on gear.
Then the second hour I order gear.....
The third hour I take a coffee break and watch for the UPS man.
The forth hour I round up all my packages of gear from the UPS guy.
LUNCH BREAK
The fifth hour open the packages.
The sixth hour play with my new toys.
Seventh hour do some real work,,,
Eight hour I pack up all my new toys to take home.....
Time to go home.............Work can be exhausting...........
are you the linux geek type? If so:
#!/usr/bin/perl
use strict;
my ($page,@lines,$line,$next, $subj, $msg);
$page = `wget -qO- http://www.musiciansfriend.com/stupid`;
@lines = split("\n",$page);
$next = 0;
foreach $line (@lines) {
if ($next == 1) {
$line =~ /;">(.*)<\/p><\/td>/;
$subj .= $1;
$next = 0;
} elsif ($next == 2) {
$line =~ /(\$.*)<\/div>/;
my $price = $1;
$price =~ s/\$/\\\$/;
$subj .= " - $price";
$next = 0;
} elsif ($next == 3) {
$line =~ /<p>(.*)/;
$msg .= $1;
$next = 0;
}
$next = 1 if ($line =~ /Yes and No graphic links/);
$next = 2 if ($line =~ /Today's Stupid Price/);
$next = 3 if ($line =~ /Copy for the deal/);
}
open (MAIL, "|mail youremail\@example.com -s \"$subj\"");
print MAIL $msg;
close MAIL;
yuck - that didn't preserve any indentation, and that's not a pretty bit of perl, even with the indentation -- anyway, save that as a script called, maybe stupiddeal.pl, make it executable, then
>crontab -e
and put in a line like:
0 4 * * * /home/mydir/stupiddeal.pl
and save. Voila - works for me, and there's a 5% chance it'll work for you (and that chance can dramatically increase if you're able to edit the script as needed for your system), at first, and then when they change the web page, it'll break.
There's probably a better way
It's weird - my laptop is showing the previous day's deal (a drum stand or something), but the email is showing a banana speaker cable - maybe a caching problem on my laptop? dunno.