Categories
Random

Oh The Government…

Only the government would shut down their website on a holiday. Seriously.

gov.png

Categories
Review Websites

Autotrader.ca, Please Fix Your Search.

Autotrader.ca your search is not very good!

I just did a search for “all cars newer than 2000, between $2500 and $5000 excluding damaged vehicles, in descending order by Kms.” Sounds pretty complex when you write it out in English, but that should be a fairly straight-forward SQL query. Came across a couple of pretty serious problems there.

Your premium listings do not obey my sort selections, they simple appear in whatever position the advertiser has paid for. This would be somewhat forgiveable if the premium listings where displayed separately, a la Google ad words. Even though they are on a yellow background, as a first time visitor I had not yet scrolled down to notice that the regular listings are on a white background. So I assumed that your sort feature was broken, in fact I probably wasted a minute clicking the sort link until finally giving up and scrolling down. It was then that I realized exactly what was going on. I don’t know if there’s a good way to fix this from a user interface standpoint, you may just want to increase the size of the “Premium Listings” header text and/or do something else to make it stand out more clearly. In my opinion selling premium listings is pretty lame, your profit margins online have got to be much higher than in print. At the very least, drop the ordering of the premium listings, so that I’m able to apply a sort to those listings as well.

Secondly, I came across something much worse.

This 2003 Hyundai Tiburon came up in my search even though I specifically excluded vehicles with damage. I’m sure that your search engine code is fine. I’m sure the problem is a lack of data. The seller of that car probably did not provide you with data about it’s “damaged” status. But you see, thing is, if such an obviously damaged car shows up in my search, then how can I be sure than all of the other results that appear fine don’t have some less obvious damage? This oversight makes your search engine completely untrustworthy! I know how had it can be to get good data from users, but seriously, have you data entry monkeys flag adverts with photos like these.

P.S. ASP sucks, drop your Microsoft licenses and you’ll make more than enough money to drop those lame premium listings.

P.S.S. Trasparent divs with background images is a lame way to block hotlinking of images. Just block access to your image files from off-site referers in … oh wait, that’s not possible with IIS. See previous PS.

Categories
Random

Warner Bros. Using DMCA Against Free Speech

I work as the chief nerd for Cheri Media Group. A company who runs a number of websites including the 3rd largest Hip Hop news site HipHopDX.com. We occasionally get DMCA takedown notices from various record labels, they are usually the result of a lack of communication between the label’s PR department and the legal department or RIAA (ie. someone in PR will clear a track for play on the site, but the legal/RIAA will not be informed).

Last week we received a DMCA takedown notice that appears to be asking us to remove “controversial” forum threads under the guise of copyright violation. The full text of the letter is under the jump, but here’s the relevant portion:

IMMEDIATELY REMOVE THE FOLLOWING THREADS INCLUDING ALL LINKS AND REFERENCES
TO UNAUTHORIZED MATERIAL ASSOCIATED WITH THE ARTIST E-40.

E-40 / Biggie Smalls
http://www.hiphopdx.com/messageboard/viewtopic.php?p=526817

http://www.hiphopdx.com/messageboard/viewtopic.php?p=526073

Some context: The are links to two seperate pages from a forum thread entitled “E-40 almost had Biggie killed.” The original poster, embedded a youtube video clip from a DVD entitled Beefs IV. I have not seen the clip – it had already been taken down by youtube by the time I saw the DMCA notice. As best as I can tell, it was a clip of a rapper called E-40 talking about how he tried to have Biggie Smalls killed. You can see why E-40s record company might want to kill these sorts of rumours (although, in my opinion any publicity is good publicity – especially in the rap world).

Here’s the thing…
The Digital Millennium Copyright Act only covers copyright material! The only thing that’s vaguely copyright in that forum thread is the youtube embed. The forum thread itself free speech! The forum thread itself is copyright of Cheri Media Group! By demanding that Cheri Media Group “IMMEDIATELY REMOVE THE FOLLOWING THREADS…” Warner Brothers Music is demanding that Cheri Media Group give up its right to free speech! This is a gross and disgusting misuse of the DMCA!
These forum threads absolutely do not contain any copyright material hosted on HipHopDX.com’s servers. If Warner Bros. was legitimately trying to remove the infringing content from the web then they wasted their time contacting the wrong company. Oh but wait, the video clip is owned by Image Entertainment, an independent studio – Warner Brothers does not even have the right to demand that to be taken down!

It gets worse…
The hosting company running HipHopDX.com’s dedicated servers has a policy of suspending network access to all services in violation of a DMCA takedown request. I assume this is because they have some liability as the owners of the hardware the content is ultimately stored on. It’s probably a fairly standard policy. What this means is that even if a website gets a completely meaningless takedown notice like this, the site will still be obliged to take down the content or have their site shut down by their service provider! Whereas a more relevant legal demand such as a libel suite would not have the same sort of immediate consequences. So publishers are free to send off DMCA notices whenever there’s a public relations mess to take care of – imagine what would happen if Governments started doing this.

Luckily for my paycheque, HipHopDX’s hosting company is very reasonable. They agreed to keep the site online after a brief conversation.

Disclaimer: I am not a lawyer, I have no formal training in law and I have not read the DMCA in full. I could be getting a lot of things wrong.

Categories
People Suck At Email

Yes I Got Your Email!

Don’t ask me if I received your email, of course I did! Email is very reliable these days, if you’re emailed me before you’re not going to show up in my spam folder.

Of course I got your email!
Whether I’ve read it is another question.

Categories
Tips & How To's Websites

WhyFireFoxIsBlocked is wrong! Adblock Plus is 100% Detectable!

whyfirefoxisblocked.com does not know what they’re talking about. Ad Block Plus is 100% lame and 100% detectable.

The following code detects ad block plus:

index.html:
<script language="javascript"> var disabled = false; </script>
<script src="something.js?thisistotrickyou=http://a.as-us.falkag.net/...
dat/njf/41/domain.com/ros_pop_tag.js"></script>
<script language="javascript">
if(!disabled){
// DO SOMETHING HERE, like a redirect
alert("You Are Using Ad Block Plus or some other blocking software! Please don\'t, our site operates on ad revenue."); }
</script>

something.js:
disabled = true;

Proof of concept