Slashdot Mirror


Advertisers Escalate Banner Ad War

AnonymousComrade writes: "In today's Newsbytes, there is an article about MediaBEAM GmbH, a German company that say they have developed Web server software that can detect whether a home browser is blocking banner ads or pop-ups. If the Web server detects blocking software, a message appears on the screen advising the 'free-loading' surfer that he has two choices if he wants access to the Web site's content: pay for it or be exposed to the ads. This sounds strange to me. Can they really include something in the download (Java or JS, I assume) that detects whether an ad picture has been downloaded or not? What if you have blocking S/W that not just blocks the download of the ad picture, but also modifies the HTML on-the-fly (a la the Proxomitron). Can they really distinguish this from a remote ad server that just isn't responding? And how long will it take before ad blocking S/W is updated to block this blocking-detection mechanism?"

448 comments

  1. Lost cause by Anonymous Coward · · Score: 0
    And how long will it take before ad blocking S/W is updated to block this blocking-detection mechanism?

    Too bad the armor will always lose to the weapon.

    Better not get into this arms race at all and just pay for the content or tolerate the ads (what do they cost you anyway?!).

    1. Re:Lost cause by aerique · · Score: 3, Funny
      or tolerate the ads (what do they cost you anyway?!)

      My sanity.

    2. Re:Lost cause by DrSpin · · Score: 1

      How long before web site owners realise that users are learning to kill the entire site the moment a popup appears on the screen.

      A lot of people do not have powerful machines and fast connections. For them, a popup takes long enough to load, and causes such a loss of performance, that it can and must be killed ASAP.

      No content is worth the risk of a case of popup escalation causing the machine to hang/crash.

      Popups are about as good at getting customers as to buy as slapping them in the face with a wet fish.

    3. Re:Lost cause by drsoran · · Score: 2

      Actually that's not far off. These god damned banner ads that that flicker make me worry I'm going to have a seizure or something. Whoever makes those should be shot.

    4. Re:Lost cause by plague3106 · · Score: 2

      tolerate the ads (what do they cost you anyway?!).

      Bandwidth, time. I've found that its usually the ADS that keep the page from loading and finally displaying.

      Your arguement is stupid. Does anyone feel obligated to sit through tv commercials? Should we change everyone down so that they do?

      Besides, this software 'weapon' won't work. As soon as they figure out that maybe the reason the correct number of ads didn't display was b/c the image server timed out, or the user hit the stop button. Besides, the page loads first, before the images...so i don't see how it could work.

  2. Here's what's next by tinahdee · · Score: 1

    Propagandist or political content in a .gif or .jpg format - you have to display it (maybe even state that you agree with it) in order to use, say, Yahoo or Google or to view the latest headlines.

    The Internet is not free anymore.

    --
    tinahdee beautiful jewelry: silver, gold, gemstones tinahdee.etsy.com tinahdee.com facebook.com/beautifuljewelry
    1. Re: Here's What's Next by Anonymous Coward · · Score: 0

      The Boston Globe (the high-falutin' lap dog newspaper of the NYT) has a site boston.com that will not work if you use The Proxomitron, and maybe even web-washer, I believe. I like to check the local stuff there, but their ridiculous use of Flash and other similar toys to push ads is downright annoying. Scumbags.

    2. Re:Here's what's next by Anonymous Coward · · Score: 0

      The internet has never been free. But who pays for it is in transition. It started out being paid for by investors, mostly venture capital. That flow of money was shut off with a vengence in 2Q200.

      The hope of many dot-coms was that advertisers would subsidize the content for the internet consumers. That model actually works, as TV, Radio, and a few top web properties prove.

      If the advertising model is significantly thwarted by firewall software, then we'll just transition into a different model.

      You'll pay directly or indirectly, one way or another, or you won't have it.

  3. As Ben Franklin once said: by Anonymous Coward · · Score: 0

    "Information wants to be free, especially now in the internet era"

  4. Lol! You said it Michael. by Kasreyn · · Score: 2

    As a user of the Proxomitron, I have three words for these numbnuts: BRING IT ON.

    Pathetic.

    -Kasreyn

    --
    Kasreyn: Cheerfully playing the part of Devil's Advocate to hairtrigger /. flamers since 1999.
  5. They can just check the access.log by lameluke · · Score: 2, Insightful

    This sounds strange to me. Can they really include something in the download (Java or JS, I assume) that detects whether an ad picture has been downloaded or not?
    They can just check the access.log - however they will never know if it actually has been displayed.

    1. Re:They can just check the access.log by Tet · · Score: 5, Insightful
      They can just check the access.log - however they will never know if it actually has been displayed.


      Yep, or more likely, by the use of a web server module that does the sme thing without having to actually parse the logs. But that's not what they're claiming. In the article, they say that they "make contact" with the user's browser to determine if the ad has actually been displayed. The only way I can think of doing this is by embedding some JavaScript that checks to see if the page has been rewritten en route, and if so, posts something back to the web server, which can then modify its content accordingly. But even that won't be particularly effective, and your favourite blocking proxy should just be able to filter out the offending javascript anyway. And even if it didn't, it still wouldn't catch proxies that just serve a blank image instead of the requested ad. As far as the browser is concerned, it's been given the image it requested. I'm sceptical, but then all of my assumptions are based on having a sane browser. Who knows what MS have put in IE to give content providers control over the browser?

      --
      "The invisible and the non-existent look very much alike." -- Delos B. McKown
    2. Re:They can just check the access.log by Isofarro · · Score: 3, Informative

      The only way I can think of doing this is by embedding some JavaScript that checks to see if the page has been rewritten en route, and if so, posts something back to the web server


      All the Javascript would have to do is make sure the url property of the image element, or embed element, or object element is correct, and that the isLoaded property is set.

      Although this would force people to surf with Javascript enabled - something thats proving more dangerous every day on a Windows based platform.

      Or they could be complete muppets and force surfers to accept ActiveX objects - which would probably sideline most of the X community.

      On the other hand, this company has decided adverts and banners is more important that the content - so be it. I prefer sites with content, and having a "This site is full of banners" type message in the form of "Remove proxy or else" is an excellent way of avoiding these sites, it happens to match with my surfing preferences.

      These marketing companies should take a lesson out of Google's book. Their advert placement is unobtrusive and normally relevant to the search topic on hand - without the intrusive methods marketing types have forced on its visitors.

    3. Re:They can just check the access.log by Bob+McCown · · Score: 1

      I wonder if they store a MD5 hash on the server side, and have some embedded java applet or JS or something that computes it for the new page to see if its been monkied with. Hrm...

    4. Re:They can just check the access.log by Anonymous Coward · · Score: 0

      They can make the popup to "phone home" with
      javascript/cookies.

      The mainpage checks the timestamp of a cookie, and if it isn't updated by the popup, it does something different.

  6. This is just a case of too little, too late by The+Ultimate+Badass · · Score: 0, Insightful

    Had this been introduced in 2000, the dot-com crash might have been averted. As it happens, this will not have much of an effect, since most of the sites that ad-impressions and money might have saved are already gone. It's a nice thought, just not timely enough.

    These guys would probably have ruled the dot-com world, if they'd gotten their act together and released this when it might have been useful. As it is, the internet is dying from lack of funds. I'm starting to find dead links in google for crying out loud!

    --

    Denial isn't just a river in Italy

    1. Re:This is just a case of too little, too late by cshotton · · Score: 5, Insightful
      Had this been introduced in 2000, the dot-com crash might have been averted.

      A charitable view of this product, but a seriously naive view of what caused the dot-com crash. First, not every dot-com had its business model predicated on ad revenue. But the real reason that the dot-coms crashed is a simple one. They weren't creating any value. In an economy that rewards profits, very few of the dot-coms' business plans actually recognized this simple fact. Many were predicated on some Ponzi-like exit strategy (if they had one at all), be it an IPO, acquisition, or the holy grail, viral adoption.

      The reality is that there was simply too much venture capital and too few experienced investors. In '98, you could write a business plan on a piece of toilet paper and get it funded by someone. Now, if you don't have a clear path to profitability with 24 months, a shipping product, near break-even revenues, and a seasoned management team, don't even bother wasting the trees to print your plan. The VCs don't want to see it. They're still trying to dig their way out of billions in failed companies and trying to save the companies they still have.

      These guys would probably have ruled the dot-com world, if they'd gotten their act together and released this when it might have been useful.

      Probably not. Most likely, they'd have gone the same way as all of the other companies who were part of the failed VC food chain. Once the capital dried up, it would have only been a matter of time before companies stopped buying their software. This is the secondary fall-out that killed all the companies with products and sales that were geared towards dot-com infrastructure. These guys would have been no different. As it stands now, this one shouldn't even be let out of the gate.

      --

      Shut up and eat your vegetables!!!
    2. Re:This is just a case of too little, too late by Artemis3 · · Score: 3, Insightful

      Oh, c'mon, you really think there is a large % of people actually blocking ads? It's a small group, 10% at best. Most of the crowd visiting those pages don't even know what a proxy or ad blocking software is, in fact most let spyware remain installed without they noticing.

      The DOT.com crash was the result of its own demise. Some people were sold the idea of internet being the ultimate and biggest ever shopping mall, so they created an artificial sense or bubble that simply popped up when the reality check came; which was, basically, way too much more offer than real demand. Everyone knows that actually 70% of the DOT commers were in excess; it was simply a matter of time.

      Now would you really check how much is asked for getting to the net on the first place, why they seem to think you have to pay hundreds or even thousands of dollars a month for T1 like links; when people in Sweden pay 20$ montly for 10mbps lan speed like links to their homes?

      I have to pay 80US$ for 256/64 DSL with forced NAT and no real ip or higher speeds options available, since this is "residential service". Now tell me, do i give a damn if the .coms don't get their .000005 cent for an ad banner display that i am never ever going to see or click, yet steals *my* bandwidth and even attempts to identify *me* with their stupid cookies?

      Their "business" models were flawed from the first place.
      Liberal capitalism is darwinian by its nature; leaving everything to the market forces alone will result in collapse of the small or the weak, no matter what.

      --
      Artix
      Your Linux, your init.
    3. Re:This is just a case of too little, too late by tshak · · Score: 2

      ...steals *my* bandwidth and even attempts to identify *me* with their stupid cookies?


      How is YOU CHOOSING to visit their site them stealing from you? It's more like you STEALING content from them without paying the price(ads). And without cookies, the web would be one boring, static world (yes, I know there's URL session mangement but that has it's own problems).

      --

      There is no longer anything that can be done with computers that is nontrivial and clearly legal. -- Paul Phillips
    4. Re:This is just a case of too little, too late by Dai-Sho · · Score: 1

      Believe it or not their are still ad driven websites that make money. They just don't have 450,000 employees.

      The think that always gets me when I read fucks at fuckedcompany.com is the number of people that worked at some of these dot coms. Did you every ask yourself "What did all these people do for 8 hours a day?".

      Smaller dot coms still survive fine off ad revenue. It's just not as fat as it use to be :)

    5. Re:This is just a case of too little, too late by onepoint · · Score: 2, Insightful

      >>Oh, c'mon, you really think there is a large % of people actually blocking ads? It's a small group, 10% at best.

      I'm willing to wager that a person that knows how to block advertising has an income of >40K, has an e-mail list of 25 people with simular income or greater. And when discovers a new product that they like, they create HUGE buzz within their little circle. And that circle will most likely have people with the money or authority to purchase the product.

      so give me a way to target them I'll do it. ( google dies it best I think )

      -Onepoint

      --
      if you see me, smile and say hello.
    6. Re:This is just a case of too little, too late by mcjulio · · Score: 1

      Commercial enterprises choose to put up websites, built from HTML piped over HTTP on TCP/IP, and then complain about the results when users do with the distasteful bits what users are prone to do with distasteful bits - throw them out.

      The battle can escalate to the full ends of the imagination of the advertisers, but as long as they continue to elect the make use of the plain-text design of the display protocol and open architecture of the transport, they get what they deserve. The system was not designed for them, and they are welcome in it only to the point that they provide something useful. Beyond that, I have every right to exploit to my full potential an open protocol that favors me more than it favors them.

      The logical extreme is a closed network, governed by clients authored by advertisers and streamed in a proprietary, all binary, encrypted format. This method will cease to allow the common user the chance to escape the advertising, and it's what the advertisers should have done to begin with. The Internet is not a safe haven for them - I will not miss them.

    7. Re:This is just a case of too little, too late by tshak · · Score: 2

      ...as long as they continue to elect the make use of the plain-text design of the display protocol and open architecture of the transport, they get what they deserve.

      So when you buy a CD, because it is an open standard (no encryption, etc.), it's OK for you to make copies of the CD for your friends? No, that's called stealing. This about the law and ethics not about technical countermeasures. The RIAA adopts rights-infringing copyright protection on their CD's because of people like you. You think, "if it's technically easy to get, then it's mine". This philosophy warrents serious self examination.

      --

      There is no longer anything that can be done with computers that is nontrivial and clearly legal. -- Paul Phillips
  7. this bites.. by newr00tic · · Score: 2, Insightful

    damn.. Stuff like this gotta break some rule of "personal preferences" (or whatever..)

    --
    A horse can't be sick, you know, even if he wants to.
    1. Re:this bites.. by Anonymous Coward · · Score: 0

      Well, speaking frankly, my personal preference is for very, very young boys. The government interferes with that personal preference rule all the damn time.

    2. Re:this bites.. by newr00tic · · Score: 1

      cheers to one sick individual.. (I thought they locked you in?)

      --
      A horse can't be sick, you know, even if he wants to.
    3. Re:this bites.. by EpsCylonB · · Score: 2, Interesting

      The two are different. By abusing young boys you are hurting someone else, it's clear cut, there is a crime and a victim.

      Who are you hurting by refusing to look at an ad ?. Some people (bussiness men and politicians mainly) may try to force us to look at ads but my own personal opinion is that I would like to have a choice.

      Also, I'm sure this will get mentioned elsewhere, but as a 56ker I appreciate blockers that stop the ads from being downloaded as it saves me bandwidth (my bandwidth, which I have payed for).

    4. Re:this bites.. by tshak · · Score: 3, Funny

      Stuff like this gotta break some rule of "personal preferences"

      Ya. I went into the CD store and told the cashier that it was my "personal preference" not to pay for the content on the CD. She said that it'd be illigal if I left the store without paying for them. It's like our rights are being stripped away from us online AND offline.

      --

      There is no longer anything that can be done with computers that is nontrivial and clearly legal. -- Paul Phillips
    5. Re:this bites.. by Dai-Sho · · Score: 1

      Do you expect to go to the supermarket and take apples without paying?

      The sites that run banners don't charge you for access. They cover their costs and make a little money (fuck why shouldn't they you do at your job right) with banner ads. By you not seeing the banner your stealing.

      Now their is the flip side of this in that some of the ad companies out their are just plain evil. Hidden 3rd party cookies, Popups, and fat DHTML that get in the way are over the line.

      I block 3rd party cookies but don't block banner ads since that's the sites bread and butter.

    6. Re:this bites.. by Anonymous Coward · · Score: 0

      The day the banner ad companies pay me for using my paid for bandwidth up downloading their shit is the day I stop blocking their stupid ads.

      Wingnut

    7. Re:this bites.. by mitheral · · Score: 1

      Yes I do, Because theis is the internet after all not a super market. Companies are free to share whatever information they want in any way they want; however, I can take that information and do with it what I please. If they don't like it they can take their ball and go home. I personally prefered the net before the september that never ended. The Internet was cool. But the Online, Cyberspace, Information Super Web is not. And the less comercialisation the better.

  8. Whats the technology? by Anonymous Coward · · Score: 0


    I guess one easy way would be to figure out how much data went out through the http connection (assuming HTTP 1.1), and if it doesn't match their expected amount, pop the warning. The drawback of course, is that you dont know till the connection finishes which kinda defeats the purpose.

    Other ways could include finding requests from the same conn. and queueing them up before serving them. That way, if you dont find the request for your ad, pop back nasty stuff to the user.

    I for one, would be really really interested in finding out what they are doing technology-wise to get this thing working.

  9. Using frames or suspended uploading by sveinb · · Score: 2, Insightful

    Just make sure the ads would be downloaded before the good stuff on a normal browser. Then hold the good stuff until the ads are loaded (from the same IP number). If no ads are loaded after a timeout period, send bad stuff instead of good stuff. I suppose you could do this with frames, or by partial uploading of html pages (upload the html referring to ads, and hold the rest without closing the connection).

    Svein.

    1. Re:Using frames or suspended uploading by Anonymous Coward · · Score: 0

      This won't work for multi-interface (thus multiple IP number) transparent proxies. I have read that AOL is using them.

    2. Re:Using frames or suspended uploading by Charm · · Score: 2, Informative
      Yeah but the browser can download anything it wants then dump it. So your idea wouldn't work. The real problem is that the web is "stateless" without Java, ActiveX. This makes it even worse than client server and I know that with client server you can just modify the client so the server doesn't know. People have been using these methods to cheat on game servers for ages.

      For instance lets say that instead of having the ads seperate from the article the thing is one whole gif jpg png whatever. What is to stop the web browser from chopping the image up anyway so the ad disappears.

      For popup ads the server may send a Java (scriplet security?) piece that contains the ad if the Java program stops running then the web server detects this and no content is displayed. But a browser can redirect output to anywhere including hiding popup windows and have the Java program still running. Since they have no control over the client they can do nothing.

      Trust me, I am not a MSCE

      --
      -- RTFM:Slackware::Beer:Saturday
    3. Re:Using frames or suspended uploading by Anonymous Coward · · Score: 0
      Ads are still doable. For instance, if you have a sitw providing info, you don't have to display it first, you can display an ad then display a "click here" for article. At least the ad gets displayed.

      I like the idea of an "ad supported" internet, there ought to be some way of making money, and I don't understand folks adversion to this. Unpopular viewpoint tho, I know.

    4. Re:Using frames or suspended uploading by flockofseagulls · · Score: 2, Interesting

      Charm wrote: "The real problem is that the web is 'stateless' without Java, ActiveX."

      Not true. The web (actually the HTTP protocol) is stateless unless the web programmer does something to maintain state. Cookies are the most common solution. Session keys passed around in URLs or hidden form variables are another (these can be thought of as server-side cookies). You don't need Java, ActiveX, JavaScript, or any other client-side scripting to maintain session state.

      It seems like a majority of people commenting don't know much about real web programming, judging from the number of comments that go out into the weeds. For example, URLs for banner ads don't usually resolve to an actual GIF or JPG file on the server; they invoke a server-side program that tracks the banner ad impressions, makes sure a single user doesn't see the same ad over and over again (try refreshing the page and see how they change), etc. The only requirement for the url in an IMG tag is that it retrieves a valid GIF or JPG or PNG image; it doesn't have to be the actual name of a GIF or JPG file.

      Here's one way to determine if visitors are downloading banner ads:

      1. When a visitor first shows up issue a cookie or session id (passed around in the URL). You can tell when they first show up on the site because they won't have a cookie or session id. All subsequent requests to the site will include the cookie or session id.

      2. If cookies aren't enabled on the client browser, make the server-side code embed the session id in all URLs, including all links to pages in the same site, all GIF/JPG images, etc.

      3. Whenever a page is requested the server logs a hit for that session id & page. Whenever a graphic is requested the URL actually resolves to a server-side script or CGI that logs the session id & requested graphic (banner ad), then sends the actual graphic back to the browser.

      4. Any time the client requests a page the server can check that previous page requests were accompanied by requests for the banner ads that go on the page. If the user is blocking ads you can cut them off, threaten them, whatever.

      Of course this kind of server-side agression will quickly be countered with client-side proxies that request the ads but discard the resulting graphic.

      Without any client-side scripting the server can only determine what requests were made; it can't determine if the browser received the graphics or if the user ever saw them.

      As for the analogies offered to justify one position or another, equating banner ad removal with theft is off-base. Instead think of a web site as a store. You can freely visit the store, read the magazines, wander around and read labels, sit down and rest, etc. You are under no obligation to buy anything. However the bookstore owner can bombard you with as much advertising as they like. Some people will tolerate a lot of advertising (like what you get in a Wal-Mart store). Others will walk out and shop somewhere else. If you had some way to browse the store without seeing or hearing any advertising, I think the store owner would be justified if he asked you to buy something or leave.

  10. Eventually, the DMCA would apply. by Elwood+P+Dowd · · Score: 3, Interesting

    If pop up ads started using techniques like this AnonymousComrade suggests, eventually the DMCA would apply. They could encrypt their content, their ActiveX control could decrypt it, and hacking IE to kill the popups would be illegal. They wouldn't even have to use real encryption. They could use ROT13, and the legislation would still work. Then they can use the revenue generated by the ads to purchase more congresspeople. It'll be great!

    --

    There are no trails. There are no trees out here.
    1. Re:Eventually, the DMCA would apply. by j7953 · · Score: 2

      It isn't illegal to not display copyrighted content. Cracking IE or an ActiveX control is probably illegal anyway, as these are software products covered by copyright, but not requesting the content in the first place is certainly legal.

      Copyright is about preventing the distribution of content, not about enforcing it.

      --
      Sig (appended to the end of comments I post, 54 chars)
    2. Re:Eventually, the DMCA would apply. by tlk+nnr · · Score: 3, Interesting
      They could encrypt their content, their ActiveX control could decrypt it, and hacking IE to kill the popups would be illegal.

      I'm not sure if removing adds from a page is legal, even without the DCMA.
      The author wrote a page with an add, and a filter app modifies the page and removes the add picture, without a permission from the author.
      But modification is one of the exclusive rights of the copyright owner.

      Selling an app that's only purpose is to remove adverts from web pages could infringe the authors rights.

    3. Re:Eventually, the DMCA would apply. by sfe_software · · Score: 5, Insightful

      I'm not sure if removing adds from a page is legal, even without the DCMA.
      The author wrote a page with an add, and a filter app modifies the page and removes the add picture, without a permission from the author.


      Most browsers allow you to override fonts and colors, toggle image downloading, disable scripting, and so on; blocking ads is only one more tiny modification to the page. Modifying the page is something that is commonly accepted for other purposes (accessibility, user preference, etc), so I don't think that argument will go far.

      But modification is one of the exclusive rights of the copyright owner.

      I'm not sure if this applies. You certainly can't modify a copyrighted work and distribute it, but if you purchase a book, you're free to scribble notes on the pages. If you listen to a CD, you can EQ it to taste. Thus, if you download a web page, you should be able to modify it as you wish for your own viewing.

      Selling an app that's only purpose is to remove adverts from web pages could infringe the authors rights.

      That's what some say about Tivo and Replay TV... and so far, I don't think a real big fuss has been raised. The difference of course is that commercial-skipping isn't the only use for the Tivo (nor is it an advertised feature), so ad-blocking software might have a more difficult time... but a general proxy with ad-blocking as an extra feature might be fine.

      --
      NGWave - Fast Sound Editor for Windows
    4. Re:Eventually, the DMCA would apply. by xigxag · · Score: 2, Insightful
      But modification is one of the exclusive rights of the copyright owner.

      People keep saying this, but it is obviously not true. If you buy a magazine, it's legal to clip out the coupons, or draw a moustache on Tatjana Simic, or write notes in the margins. It's even legal to resell a textbook after you have underlined large portions of it in various colors. What is not legal is to modify something and then redistribute it as the original or as your own work. Since apps like Proxomitron only modify the code for your own use, it is unclear how anyone can claim they violate copyright.

      --
      There are two kinds of people: 1) those who start arrays with one and 1) those who start them with zero.
    5. Re:Eventually, the DMCA would apply. by DGolden · · Score: 5, Insightful

      > But modification is one of the exclusive rights of the copyright owner.

      NO. NO. NO. NO.

      Modification, followed by subsequent redistribution is restricted by copyright law.

      The mainstream media giants have managed to socially engineer this knowledge out of the vast majoirty of the sheep^H^H^H^H^Hpeople.

      If I, upon legitimately obtaining copyrighted material, screw around with it, I'm not breaking the law unless I give a copy of it or the modified version to someone else.

      Think about it - if I buy a painting from you, I'm free to draw a silly moustache and glasses on it, but, according to societal conventions currently enshrined in our legal system, I can't (a) sell copies of the painting without your permission or (b) sell copies of the modified painting without permsission. (I'm also usually allowed sell the original painting to someone else (this area is much murkier, and the reason behind the legal blurb at the start of european books about "may not be sold on without imposing similar conditions on the buyer" stuff)- that's the freedom that UCITA and software EULAs try to fight)

      That's all pretty much a mixture of common sense and courstesy - but what the lawyers and media giants have done, is, via tricky wording and paying for new laws, is destroy all that.

      Via assinine laws like the DMCA, and WIPO treaty provisions, our feudal overlords / corporate masters have managed to erode such "fair use" rights of the average person.

      --
      Choice of masters is not freedom.
    6. Re:Eventually, the DMCA would apply. by rtscts · · Score: 1

      easy way around that - have a popup ask if you agree to a license before it shows you the real page.

    7. Re:Eventually, the DMCA would apply. by Bob+McCown · · Score: 1

      Close, but I think more correct is buying a magazine, then putting it through a magic machine that removes the ads, and draws moustaches on all the pictures or Tatjana Simic. All this before youve opened the magazine. What you get ISNT what you took off the newsstand.

    8. Re:Eventually, the DMCA would apply. by _LORAX_ · · Score: 2

      NO. NO. NO. NO.

      Modification, followed by subsequent redistribution is restricted by copyright law.


      Ahhh.... but you forget how computers have perverted copyright. Evey copy your computer makes in ram and in the proxy software can be consiteered illegal distribution IF the author demands it. This is the screwed up way that software and computer copyright works. They can, as the copyright holder, make whatever demand they want about it's use.
    9. Re:Eventually, the DMCA would apply. by hacker · · Score: 1
      The author wrote a page with an add, and a filter app modifies the page and removes the add picture, without a permission from the author. But modification is one of the exclusive rights of the copyright owner.
      That might be true, if it weren't sitting on my local machine. Remember, I am not modifying the REMOTE content, I am modifying my own, peronally owned, LOCAL copy. Just as I can go to a book store, buy a book, and write in the pages, I am entitled to do whatever I want with a webpage that was given to me, on my machine, at my request.

      Please read up on copyright law. It does not prohibit me from doing whatever I want to my own local copy, as long as it does not violate copyright.

      transcoding on the other hand, is a different story, but since I'm not "redistrubuting modified content", that's not a problem.

    10. Re:Eventually, the DMCA would apply. by dossen · · Score: 1

      But still, the point is that this is being done by ME (or you or whoever) (ok, so I use software to do it, so what, I use software for lots of stuff, thats to annoying to do by hand), to my own copy, that I got from the server, just like everybody else, and I'm NOT distributing the copy. So unless you have better arguments, I'll view it as I see fit, I might even use lynx... hah... ;-)

    11. Re:Eventually, the DMCA would apply. by educated_foo · · Score: 1

      > If I, upon legitimately obtaining copyrighted
      > material, screw around with it, I'm not breaking
      > the law unless I give a copy of it or the
      > modified version to someone else.

      So this would mean that if you run a blocking proxy, you can't let other people use it?

      /s

    12. Re:Eventually, the DMCA would apply. by MaxVlast · · Score: 1

      I can buy a copy of "Moby Dick" and change the ending if I want. I can cross out whole chapters. I can't sell it afterward.

      --
      There should be a moratorium on the use of the apostrophe.
      Max V.
      NeXTMail/MIME Mail welcome
    13. Re:Eventually, the DMCA would apply. by DGolden · · Score: 2

      So this would mean that if you run a blocking proxy, you can't let other people use it?

      Yes, quite possibly. I'm unaware of a ruling either way on it, though.

      However, since American law defines corporations as people, even if it was serving your entire office during work hours, you'd probably get away with it, since it wouldn't be distributing to the public as such - this is similar to the way corporations (including Microsoft) are allowed use, modify, and distribute within the company, GPL software, so long as they don't publish it!

      Oh! the labyrinths of hot air we humans build!

      Note however, that all the above is based on pre-DMCA, pre-UCITA, law. The problem is, the new laws and pending international treaties make things much less sensible, more confusing, and often just plain wrong.

      In such situations it is important to remember that the legal system we humans have cooked up is not the law of nature - it is merely a convention adopted by the bulk of humanity in order to allow society to function smoothly. While the legal system is currently being perverted into a weapon that fiefdoms^H^H^Hcorporations use against eachother, the moment it gets too silly/harmful, all the populace does is ignore the law. This has happened countless times in the past - anti-witchcraft (and anti-welshmen) laws are still on the books in parts of the British Isles, but you don't get people burnt at the stake there for using blenders, televisions, and so on. (which would technically make them witches according to the criteria in the laws),
      or shot at 40 paces with a longbow (for being welsh).

      --
      Choice of masters is not freedom.
    14. Re:Eventually, the DMCA would apply. by jesser · · Score: 1

      They could encrypt their content, their ActiveX control could decrypt it, and hacking IE to kill the popups would be illegal.

      Web pages do not have a right to open new browser windows.

      --
      The shareholder is always right.
    15. Re:Eventually, the DMCA would apply. by Elwood+P+Dowd · · Score: 3, Insightful

      No, the only thing that actually helps our failing economy would be purchasing the product that you see advertised.

      --

      There are no trails. There are no trees out here.
    16. Re:Eventually, the DMCA would apply. by error0x100 · · Score: 1

      But modification is one of the exclusive rights of the copyright owner

      If it were entirely that simple, it would be illegal to add your own notes in a textbook.

      I'm wondering, shouldn't end-users have a right to choose what they download with the bandwidth that they paid for? Should a website be allowed to force a user to download certain files if they only want to download other files? Surely not (unless users agree on such in the form of a license agreement to view the web page or something).

      I'm not so sure modifying a page is the problem, I think its more about distributing what you modify. However I keep coming back to the "smart tags" thing, I really dislike the concept, but if software is allowed to change a page by removing ads ("good") why shouldnt software be allowed to change a page by adding third-party hyperlinks ("bad") ? I don't really see a difference .. if the former is OK, so should the latter be OK. Which sucks, because the "smart tag" concept makes me sick, I definitely wouldnt want people to view my page with smart tags, but I don't mind if they block the ads.

      I guess though there is a difference .. I've never actually considered the ads on my website as being *part of* the "content" on the site, while my text and hyperlinks I *do* consider part of the "content". The ads can come or go but the actual content will still be the same, I personally don't see an ad banner as being an integral part of a web page.

    17. Re:Eventually, the DMCA would apply. by Anonymous Coward · · Score: 0

      Actually, this is not entirely true. There have been cases where an artist sold a work and later successfuly sued the owner for modifying the work. I don't have examples at hand, but the source for this is the university's art curator and various others at the university's art museum.

    18. Re:Eventually, the DMCA would apply. by Anonymous Coward · · Score: 0

      The author of the HTML holds a copyright, and the author of the image data holds a copyright, but neither of them have the power to tell me how my computer must/cannot render any of it; and a copy must be manually altered using real creativity to count as a derived work under copyright law.

    19. Re:Eventually, the DMCA would apply. by Anonymous Coward · · Score: 0

      Yes, this happens occasionally when the buyer displays the work publically - this area's murky, falling under the "public performance" annexes of copyright law - it's a "weak" form of public distribution, you see, and there isn't a completely unified international policy on it at the moment.

      The next edition of the GPL, for example, is rumoured to introduce "performance" clauses into the licence to combat the threat RMS perceives from proprietaty web services.

  11. first by Anonymous Coward · · Score: 1, Interesting

    the beauty of servers, the server knows if you DLd bannerad2.gif, so it doesnt have to depend on client side..that said just because you DLd it doesnt mean you have to display it

    if they did do it with client side code the blocking software would be modified for that

    double-click has for at least 2 years been using
    clent code that will not display a page if the ad is not DLd..

    1. Re:first by koffie · · Score: 2, Informative

      First thing: the server does not know if the client downloaded the add, since the adds are usually served from a third party server.

      And who is "double-click"? I am sure you don't mean doubleclick.net, which I mapped to a non-existant IP address in my /etc/hosts long ago, so I do not have to download 'material' from them that I am not interested in anyway.

      I just don't see why I should have to download stuff I don't want.

  12. Detecting by tcr · · Score: 4, Interesting

    Can they really include something in the download (Java or JS, I assume) that detects whether an ad picture has been downloaded or not?

    Hmm...
    I guess they could cycle through document.images[..] in Javascript/JScript to check the existence/properties of each image element, and pop up a window if something was amiss...

    Not sure what they could do if client-side scripting was disabled though. Other than perhaps checking the weblogs through a server script to see if an HTTP GET was made from your IP address to a particular ad object... sounds onerous.

    From the article, sounds like the former?

    --


    Information wants to be beer.
    1. Re:Detecting by delay · · Score: 2, Informative
      No... I think this works diffently. I think that their solution is fully server-side. One could do it the following way: When the user requests a web-page (which includes images and banners) the server checks whether the client also loads the banners. If he doesn't, he can't request a web-page again, without being informed that he has to disable his anti-banner software.

      However I don't know whether this is such a good idea, because there's no way for the server to find out whether the client acceses the banners over his isp's proxy that could cache the banners. This way innocent users would be locked out.

      There are a lot of different reasons why such a software that forces you to look on banners is a very bad idea (for example what about people who are blind and use text-browsers like lynx?), and we can just hope that the folks who run interesting servers will recognize that.

      --
      What do you do when you see an endangered animal eating an endangered plant?
    2. Re:Detecting by JediTrainer · · Score: 2

      When the user requests a web-page (which includes images and banners) the server checks whether the client also loads the banners.

      How much do you want to bet that they'll use cookies to do this? You can't do it by IP address, for example, because of hosts using NAT. If you disable cookies, you're toast.

      You're also pretty much screwed if you use Lynx as well, obviously.

      Stopping a proxy from caching it, however, is probably just a matter of setting the Pragma/Expires HTTP headers. Not a 100% guarantee, but the polite proxies follow instructions.

      --

      You can accomplish anything you set your mind to. The impossible just takes a little longer.
    3. Re:Detecting by volkris · · Score: 1

      Perhaps as long as there's some doubt as to whether or not "good" users are being kept out everyone can go ahead and complain that they WERE seeing the banner adds and that there is something wrong with the technology.

      It's just like everyone returning their copyprotected CDs saying the copy protection interferes with listning normally even if it really doesn't. It'll be a black eye for the copy protection.

    4. Re:Detecting by Anonymous Coward · · Score: 0

      We cannot allow these freeloading handicap people to continue to access our information. If they want to read the sites they can pay for it.

    5. Re:Detecting by iabervon · · Score: 2

      The banner ads won't be cached by the proxy, because each ad is different; if you look at /.'s banner ad code, it puts the time in the URLs, and varies a number of things. The point of web ads is that they aren't static.

      Certainly no server-side software and probably no cliint-side software can tell if I'm looking at ads. It can only tell if my browser downloads them, and maybe whether the browser puts them in the page. On the other hand, the browser could automatically scroll past them, or not actually put them on the page, or a number of similar things.

      If you browse /. with:
      URL | s/[^#]*/\0#post-ad
      Page | s///
      everything will be just as if you were seeing the ads, but you'll only see them if you scroll up.

      Personally, I think it would be good for ad-filters to put the ads in a canonical location and always download them last. Since may sites are significantly supported by the advertizers, it is good behavior to actually look at them, in hopes that the sites won't either need to require payment or go out of business. On the other hand, it's probably better if the ads are kept out of the user's way.

    6. Re:Detecting by Mr+Spot · · Score: 1

      Even using a log of HTTP GETs would be easily foiled. Your software could be written to actually request the image, and then close the connection once it recieves a 200 OK from the server. You still show up in the access log while not having actually downloaded the image.

      --

      Sigmenation fault.

  13. How? by keesh · · Score: 4, Insightful

    Only way I can think of is to make popup windows named, and then use JavaScript to check that mypopup.images['myimage'].src (??? not used JS for ages) is what it should be...

    1. Re:How? by jesser · · Score: 2

      What if I'm one of the 40% of web surfers who has been trained to hit Alt+F4 as soon as something looking like a pop-up window appears? (Statistic pulled out of my ass.)

      --
      The shareholder is always right.
  14. Re:Your Sanity by Anonymous Coward · · Score: 0

    Exactly right. While going on a long vacation for the first time ever I noticed the amount of subtle advertising surrounding us. I was in the woods for two weeks and things like tags on tshirts stood out yelling for attention amoung the bugs, grass, trees, etc.

    I started removing all the advertiser symbols and displays from everything.

    When I was done I had a pile of advertising crap - who knew? You'd never expect it to be so much. After that I noticed I was much more relaxed from something so simple as not having all those symbols thrust in my view. Maybe writing is magic and some of it is bad magic...

  15. Sounds evil but... by gazbo · · Score: 2, Interesting

    I hate the ludicrous number of banner ads on websites as much as anyone, but is it really that hard to understand why sites would want to force people to download/display them? I mean, the vast majority of sites out there (no, I'm not talking about pr0n) are free. Some, especially topical sites, take a great deal of time and effort to maintain, and yet we are quite happy to sit here, blocking the ads that pay for their maintenance, on the flimsy moral objection that somehow they are 'bad'.

    Now I don't extend this to all ads - pop-up windows suck ass; there is a reasonable objection here, as spawning new windows on your system definitely interferes with the normal operation of your computer. But harmless banner ads - if they piss you off too much, as they sometimes do with me, don't visit the website. You can't expect to get a product (the website) for free just because you don't like how you're paying for it.

    As an alternative, I wonder how many people (I am one, btw) have donated to SatireWire via the Amazon Honour System?

    1. Re:Sounds evil but... by Anonymous Coward · · Score: 0

      ads suck bandwidth. a definite problem when you are on a 56.6 kbps modem link or worse. try running your internet connection with junkbuster and without to figure out the difference.

    2. Re:Sounds evil but... by camusflage · · Score: 2

      hard to understand why sites would want to force people to download/display them

      No it's not. If your revenue depends upon serving up ads, and that's the only way you are making money, then it's incumbent upon you to find the point at which the most users will see the most ads. Between a single banner per page that millions see and a bazillion banners per page that only one person can stand to look at is the point where you cram just enough ads in to not piss off a majority of users.

      As it is, I'm pretty easy-going. The only thing that motivated me to action was pop up/under ads, which I block religiously.

      --
      The truth about Scientology, Xenu, and you: Operation Clambake
    3. Re:Sounds evil but... by whovian · · Score: 1

      But their ads suck up the bandwidth I am purchasing from my ISP. It is only reasonable to have control over how I spend that bandwidth, which could include visiting a competitor's web site. If "most" people do this -- and I am fairly certain this is the not case -- then those competing web sites might become self-sustainable without advertisements. In practice however, when I see a web site I enjoy or think has general value, I will go a little out of my way to click on their ads to help support their revenue stream.

      --
      To-do List: Receive telemarketing call during a tornado warning. Check.
    4. Re:Sounds evil but... by Anonymous Coward · · Score: 0

      Do you also feel a moral obligation to not take a dump during a commercial on TV?

      Most of the content I access on the web is text based and attempting to read with a bunch of distracting blinking/flashing junk is just not possible. So I block, and if I can't block I'll get the content elsewhere, even if that means going off-line.

    5. Re:Sounds evil but... by kaimiike1970 · · Score: 1

      I completely agree with you. It seems that people have come to expect everything to be free for some reason. Don't want to look at the banner ads? Don't go to the site.

      It really is that simple.

      Do you want ALL sites to be 'Register to look at ANY content'? I don't. Because that is next if banners don't work. You think they can track our habits now? Wait till you HAVE to register. There is no free lunch. If you value the site, look at the ads and occaisonaly click on one or two.

      Or you could complain and scam your way out of the ads and then bitch when the site folds. That is VERY productive.

      --


      Do a google search before posting.
    6. Re:Sounds evil but... by Anonymous Coward · · Score: 0
      hard to understand why sites would want to force people to download/display them


      No it's not. If your revenue depends upon serving up ads, and that's the only way you are making money, then it's incumbent upon you to find the point at which the most users will see the most ads.


      Wouldn't advertisers want to pay less per ad view if this software is being used, since it is unlikely that any of the would-be junkbuster-users are going to act on the ad they were forced to see. That is, isn't this software merely padding the ad view count?

  16. ON THE SERVER by Anonymous Coward · · Score: 0

    They just look at your download patterns. If in the past few minutes, your IP has loaded 4 html files but no ads, then your IP is recorded as freeloader. Or something. Or they could use cookies.

  17. your browser will be assimilated ... by beanerspace · · Score: 4, Insightful


    I dunno, but this sounds awfully "BORG" like. Even if they can figure out exactly what's getting through to, and visibile to my browser, do I want someone to know that information ?

    Do websites using this bleeding edge ad technology take into account the variety of settings and the reasons for them ?

    For example, the public library or a school. It bans ads to protect the little kids doing homework, but can't afford, not equitably employ "pay per play" sites.

    Likewise, what about those who are in work situations where firewall and proxy filters are employed ?

    This entire scheme seems almost too myopic ... and too borg like ... to be successfull.

    1. Re:your browser will be assimilated ... by Anonymous Coward · · Score: 0

      (Score:-1, Failure to work the phrase, "resistance is futile," into the comment.)

    2. Re:your browser will be assimilated ... by Anonymous Coward · · Score: 0

      what an asshole ! what? you have nothing better to do than to police people for violating the rules of trek-talk.

      borg was mentioned 2x in the post. resistance is futile is implied.

      perhaps you should move out of your parent's basement and get a girl friend who needs more than a bicycle pump to maintain

  18. There's a third option. by Basalisk · · Score: 5, Insightful

    Always there is a third option.

    In this case, it is to ignore the offensive website. When a company starts to insult the decisions of potential customers, they lose more customers than they gain.

    But what if you need something that the website provides? Look elsewhere. When there are enough people requiring the services of one company, but who do not want to go to that company, another can come in. By being freindlier to their customers, all else being equal, they can gobble up market share.

    But it's your choice whether the companies force-advertising you will succeed or not, because they depend on you, and not the other way around.

    1. Re:There's a third option. by An+El+Haqq · · Score: 2, Interesting

      "But what if you need something that the website provides?"

      I've never, ever needed anything provided by a website.

      What I would do is pretty much the same as how I act now with cookies. I normally browse the web w/ cookies filtered through Junkbuster, but if I'm shopping, I'll switch to a non-filtered browser. Big deal. It just means that the sites that force me to look at their adds will have to be that much more entertaining to justify opening another program.

    2. Re:There's a third option. by Evro · · Score: 2, Interesting
      But what if you need something that the website provides? Look elsewhere. When there are enough people requiring the services of one company, but who do not want to go to that company, another can come in. By being freindlier to their customers, all else being equal, they can gobble up market share.

      But it's your choice whether the companies force-advertising you will succeed or not, because they depend on you, and not the other way around.
      So you hate these ads so much that you're willing to stop visiting that site completely. Any time a site that tries to make money off ads emerges, you'd like that company to tank.

      So let's look at a scenario: Salon.com introduces a new ad delivery method that most people find annoying. These people then stop visiting salon.com. Salon now has no source of revenue and closes up shop. Most other news sites trying new ad techniques meet a similar fate. So who's left? Sites funded by the huge media conglomerates you Slashdotters love so much -- AOL Time Warner, Viacom, Bertelsmann, Sony, etc. -- and MSN. Is this the future you want? You're directly contributing to a situation so many here have railed against for so long -- a media oligopoly. Welcome to the propaganda machine!

      I do not understand this mentality most people (me included to some extent) that everything on the Internet must be free and that the site providing the content has no right to show any kind of ads. A popup ad is annoying, but it's annoying enough that you'd stop going to the site and support the media oligopoly I mentioned above? A game I used to play, Dark Galaxy, had so many popups that I resorted to adding nearly every ad server to my windows HOSTS file to prevent them. Every page generated super-annoying popups -- some of which didn't have a window frame with the min/max/close buttons (I know alt-f4 but I'm sure lots of people don't). I would have liked to support that site but when they go to extremes like that it's more than I can take. Eventually I stopped going to the site completely because the game was boring, but also I didn't feel it was right to use their service without "paying" for it.

      In this case I just didn't feel that the content was worth the amount of annoyance they were including. I realize that this is what everybody is basically saying, but it seems that too many people have an exceptionally low tolerance for "annoyance". My threshold was multiple popups on every single page. Some people's threshold is apparently interstitial ads like Salon is planning to run, others "can't stand" the "huge" Flash ads on news.com, zdnn, and nytimes.com.

      Really, I think if you want to have any hope of avoiding the media oligopoly you should work on lowering your annoyance threshold. And why not click a damn ad banner once in a while? Right or wrong, ad revenue is still pretty much generated on per-click, not per-impression. If you prefer banners over popups, click the banner and not the popup. But to completely stop visiting a site will surely sound the death knell for independent media outlets, except those run as a hobby or those that can profitably be run on a subscription or donation basis.
      --
      rooooar
    3. Re:There's a third option. by harlows_monkeys · · Score: 1
      When a company starts to insult the decisions of potential customers, they lose more customers than they gain

      The flaw in your argument is that for most informational web sites (e.g., slashdot), there is no such thing as a "customer".

    4. Re:There's a third option. by error0x100 · · Score: 1

      The problem with boycotts is that only probably about 0.001% of customers care enough to participate. I'm not convinced that the resulting media attention of a boycott doesn't actually result in higher sales for a company.

      Do boycotts ever actually work? I'm skeptical, I don't know of any that can be directly shown to have worked. Anyone know of any? Anyone know if "boycott adobe" actually hurt their sales? Anyone know if the intel boycott played any significant part in getting Intel to tone down its stance on the CPU ID?

    5. Re:There's a third option. by Kanasta · · Score: 2

      OK, I need the service /. provides. If they started doing that, where would you find a competing service?

      OK say I use ICQ becuz all my frends use it. If they start doing bad things with ads, is there a close substitute?

      I don't think so. Plenty of sites have quite inelastic demand that would suit this kinda tech.

    6. Re:There's a third option. by jbrw · · Score: 2

      I've never, ever needed anything provided by a website.

      Then what are you doing here? How come you decided to post to /. rather than go look at the sky (or similar)?

      The web must be filling some need for you, or you'd find something better to do with your time...

      ...j

    7. Re:There's a third option. by jbrw · · Score: 2

      And why not click a damn ad banner once in a while? Right or wrong, ad revenue is still pretty much generated on per-click, not per-impression.

      I thought it was all moving to "per-action" - ie, someone clicks on a banner from site A to site B. Looks around site B, and then does something specific (registers, buys a widget, applies for a second mortgage, etc).

      ...j

    8. Re:There's a third option. by vulg4r_m0nk · · Score: 1

      But what if you need something that the website provides?

      If you need it, fucking pay for it. And while you're right that consumer demand can create new openings, all you're really arguing is that if you bait-and-switch content providers you can freeload indefinitely.

    9. Re:There's a third option. by Anonymous Coward · · Score: 0
      When there are enough people requiring the services of one company, but who do not want to go to that company, another can come in. By being freindlier to their customers, all else being equal, they can gobble up market share.

      Yeah, the massive and very profitable market group of people who won't pay in any way for anything. That's fantastic!

      But it's your choice whether the companies force-advertising you will succeed or not, because they depend on you, and not the other way around.

      Ridiculous. They depend on people who view their ads, not those who don't. No business depend on people who do not pay anything.

    10. Re:There's a third option. by Evro · · Score: 1

      Well, I dunno about that. That's really going to suck for the content providers then. But if that's the case then I think they should be getting a commission on the sales they generate.

      --
      rooooar
    11. Re:There's a third option. by Vuarnet · · Score: 1

      The web must be filling some need for you, or you'd find something better to do with your time...

      So where did we jump from "surfing the Web for pleasure and entertainment" to "surfing the Web in order to buy stuff"?

      I like to watch TV, but that doesn't mean I look at the commercials or buy anything from the Home Shopping Network.

      --
      Tongue-tied and twisted, just an earth-bound misfit, I
      Learning to fly, Pink Floyd.
    12. Re:There's a third option. by aadrink · · Score: 1

      You just reinvented the affiliate program ;)

      --
      -- my 7XL is not yet invented
  19. Re:Your Sanity by Anonymous Coward · · Score: 0
    Why don't you go back into living in a cabin in the Rocky Mountains, then?

    Commercialism is what keeps the society going.

  20. Does it work? by Marc+Boucher · · Score: 1

    We still have to see if their system really works. I've been to their site, but saw nothing about AdKEY.
    We've seen so much failed services these past years that I'm confident this one will fail too.

    1. Re:Does it work? by Anonymous Coward · · Score: 0

      Read the german version of the site and you'll see it on the right hand side.

  21. Good to see... by The+G · · Score: 5, Funny

    ...that they're fighting this battle on technical grounds. I hope we see a good clean fight, technology vs. technology, with no lawyers.

    May the best code win.
    --G

    1. Re:Good to see... by Snootch · · Score: 1

      Now in many areas I'd agree with you, but here I have to differ. The fact is that many websites rely on ad funding, and they do not receive that funding when people block ads. I think this is not a tech vs tech issue, but rather a moral one. I'd hate to see the pirahn^H^H^H^H^Hlawyers get in on this one as much as you would, but I think that moral, not technological, reasons should resolve this.

      Oh, yeah, and I'm not saying that ad-busters caused the dot-com burst or anything like that. The majority of sites hurt by this are small ones who use ad revenues to cover hosting costs.

  22. No.. by OblongPlatypus · · Score: 2

    ..Michael didn't say anything. AnonymousComrade did.

    --
    -- If no truths are spoken then no lies can hide --
  23. Download, don't display by tomas.bjornerback · · Score: 0, Flamebait

    Simply download the silly commercial banners, but prevent the browser from displaying them.

    Okay, this will not be the best option for those with slow connections.

    I have a 100 Mbps connection to the Internet at home (as have lots of people in my city), so I wouldn't notice a few extra bytes.

    Check out http://www.bjornerback.com if you would like to read more about our 100 Mbps Internet connection.

    /Tomas
    --

    I have 1 Gbps Internet access@home

    1. Re:Download, don't display by Anonymous Coward · · Score: 0

      This may work until they will use some activex or java applet that will display both ad images and related text (possibly downloaded in one tcp stream). Of course, people will decide if visiting such site worth this.

  24. And what about text/speaking browsers? by Masem · · Score: 5, Interesting
    Some browsers don't support JS, and cannot download images (eg: lynx, or browsers for sight-impared people). At least in the latter case, there's a legit reason for them to not have images.

    In addition, in today's age of worms upon virus upon other nasty things, there is a sufficiently significant (probably around 10%) of users that have turned off Active Scripting in IE or the equivalent in NS to avoid such problems. I very much believe that these users have more of a right to keep this off than an advertizer has to force you to look at an ad.

    --
    "Pinky, you've left the lens cap of your mind on again." - P&TB
    "I can see my house from here!" - ST:
    1. Re:And what about text/speaking browsers? by morgus+morphus · · Score: 1

      An obvious solution would be to send a text ad to a non-graphical browser. It'd be a bit awkward having to keep a list of all the text-only browsers but certainly doable.

      This doesn't mean that they would... Let's face it most big websites, with the exception of google, don't care one slightest bit.

    2. Re:And what about text/speaking browsers? by Anonymous Coward · · Score: 1, Interesting
      Today's banner filters only prevent the loading/requesting of the banner images. All other images are downloaded normally. The server can (trivially) detect if you are downloading all pictures, none, or all except the banners. In the latter case, it can serve you a different HTML page.

      The way to still fool the server is obvious: Have your browser request the banner images, but not display them. With The Proxomitron for example, you would remove the IMG tag for the banner and instead insert some javascript that loads the banner image but never shows it.
      There is a slight loss of performance (you are wasting bandwidth on banners that are never shown) but it's better than being bugged by banners, popups, interstitials, etc.

    3. Re:And what about text/speaking browsers? by BadDoggie · · Score: 5, Insightful
      Some browsers don't support JS, and cannot download images...

      Correct.

      I very much believe that these users have more of a right to keep this off than an advertizer has to force you to look at an ad.

      Also correct, but not in the you mean it. The page owners and creators -- as well as the advertisers -- can't force you to do anything. You go to a Web site by choice... most of the time, anyway.

      However, you do not have some intrinsic or inalienable right to view the content of any site out there. Some sites you have to pay for (like Westlaw), some you just need to have a free membership, and some sites (like mine) don't care.

      It galls me that so many people here piss and moan about having to register to read a NYT article. For fuck's sake, it's free! It takes a minute to do and, if you allow a cookie, you'll never have to bother with it again. In exchange for this, you get access to current stories in what is arguably one of the better US print journals (it's certainly referenced often enough here!).

      Is the NYT in cahoots with the CIA, NSA and the Illuminati? Who cares?! As far as the NYT knows, my name is Mr. Potato Salad, I'm an 83 years old labourer and I live at 123 Happy-Go-Lucky Lane in East Timor. All the NYT cares about is being able to show advertisers unique visits/impressions so that the advertisers can pay instead of you and me. How fucking hard is that?

      I draw the line when the ads become intrusive. Pop-unders, JavaScript, Flash, new windows, onOpen/onClose, etc., as well as any ad over 30K (if I'm on a dial-up) or more than half the data size of the page I want. This kind of crap has a tendency to crash my browser, disrupt or destroy work in another window. It also costs me a lot of money when I'm using a modem in Europe.

      It's because people went ballistic at even the most innocuous of ads and started an arms race that we have the sorts of intrusive ads and methods we're now facing.

      If you keep blocking the ads, then the advertisers will give up and you will get to pay for the content. It's that simple.

      It doesn't take a lot of effort to hack the binaries and change a couple of spellings so that new instances can't be forced open, scrolling can't be blocked, etc. Now I just need to know how to stop the lame animated GIFs -- can anyone please tell me if there's a way to halt them in Konqueror the way I can by hitting ESC in Mozilla/Opera/IE? Maybe there's a way to display them only as static or disable the LOOP command.

      My guess is that soon, content will be served only through the advertising locations, so that blocking the ads will block your receiving the content, as well. There will be a way around it, but it'll be a lot more complicated than adding a couple lines to the hosts file.

      woof.

      If the ad is condescending or annoying, I avoid the product. If it's informative, I pay attention.

    4. Re:And what about text/speaking browsers? by Anonymous Coward · · Score: 0

      Most (all?) browsers that display images load the entire HTML page before they grab images. That means that this anti-ad-block must allow you to get one page before they can accurately block.
      They then need a way to identify previous visitors, cookies are most likely as IPs are often shared. From a discussion on the Yahoo prox-list, it seems that some sites are either using this method or a similar one - based around cookies.
      A new filter to automatically delete cookies from a site after each HTML page load from that site should evade the ad-companies efforts. Maybe simply setting them to expire after a minute would be enough. From the previosuly mentioned discussion it seems that simply not allowing the cookie to be set is enough, though that cannot be expected to last for long.

    5. Re:And what about text/speaking browsers? by Masem · · Score: 2
      I agree, that there needs to be something to balance the need to push ads to pay for bandwidth, and the ability of the user to block ads.

      However, I would suspect that most people are blocking ads not such that they don't see them, but to prevent them from being tracked, and thus, my arguement is more along the lines of "The right of the user not to be tracked by blocking ads" and "The right of the web site to make money". Thus, I first imply that we take the web site out of the picture, and only focus on the end user and the ad content deliever.

      If ads did not have any way to track users save through click-thrus, then I would probably not block ads in the first place; ads simply ought to pay based on the number of hits the ad gets. Unfortunately, because some sites way back in the early days (1996ish) found ways to falsing increase hits or similar steps to make ad numbers seem overblown, the ad content companies felt they had to go to a unique impression model, which means they HAVE to track you at some point in order to determine the value of an ad. Unfortunately, too many ad companies have used this to also create large databased of browsing and surfing histories; not necessarily associated with a given user, but it would take very little work for someone with a names database to connect to a browsing database, and get your full browsing history through ad servers. I believe that this type of situation is a fair violation of privacy (Particularly since most sites that use ad banners and have privacy policies do NOT consider the privacy invasions of ad servers in their policies), and thus there is a right of users (at least in the US) to block anything that they might feel is harming their privacy.

      Again, if you can serve me ads that do not track me, I'll happy get them (and ignore them, but I'll still get them so the end site gets that fractional cent they have coming). I believe that this is that attitude that most people that use ad blocking software have, in addition to ads being too large/using JS/Flash/etc.

      --
      "Pinky, you've left the lens cap of your mind on again." - P&TB
      "I can see my house from here!" - ST:
    6. Re:And what about text/speaking browsers? by elmegil · · Score: 2
      If you keep blocking the ads, then the advertisers will give up and you will get to pay for the content. It's that simple.

      Excellent. As soon as I can do micropayments to read slashdot, I'll be more than happy to.

      --
      7 November 2006: The day Americans realized corruption and incompetence weren't addressing 11 September 2001
    7. Re:And what about text/speaking browsers? by Si · · Score: 1

      My guess is that soon, content will be served only through the advertising locations, so that blocking the ads will block your receiving the content, as well. There will be a way around it, but it'll be a lot more complicated than adding a couple lines to the hosts file.

      You mean like this?

      --


      Why is it that many people who claim to support standards have such atrocious spelling and grammar?
    8. Re:And what about text/speaking browsers? by Anonymous Coward · · Score: 0

      Then you sue under the Americans with disabilities act saying they do not take your needs into account.

    9. Re:And what about text/speaking browsers? by Skapare · · Score: 2

      If it would help them get a real database, I'd be glad to pay for reading slashdot, too.

      --
      now we need to go OSS in diesel cars
    10. Re:And what about text/speaking browsers? by mcelrath · · Score: 3
      If you keep blocking the ads, then the advertisers will give up and you will get to pay for the content. It's that simple.
      Like most revolutions, no one really understands how to make money on the internet yet. Advertising isn't going to work. Enough people hate it, and the profit margins are low enough that it will eventually fail completely. Except for google. The internet is about information, not cramming trinkets down ignorant consumers' throats. Products on the internet have to compete on merits alone. People research products they want to buy on the internet. Your competitor's website is just a google search away...oops, your flashy banner gave the consumer an idea, but pissed him off, so he did a web search instead, and he went to your competitor.

      Advertisement will fail in the long term if people do not buy the products advertised. I see lots of people claiming to be willing to put up with ads, but that's a moot point. No one is buying.

      Now I just need to know how to stop the lame animated GIFs -- can anyone please tell me if there's a way to halt them in Konqueror the way I can by hitting ESC in Mozilla/Opera/IE?
      Mozilla has an "Animated images should loop: As many times as image specifies, Once, or Never" option in Preferences->Privacy & Security->Images. My proxy, FilterProxy contains a module that will de-animate animated gifs, if you wanted to use a different browser. (you can turn off ad-filtering, if you find that offensive)

      As to funding of sites not-selling-stuff? I don't know. Surely many of them will perish in the coming months. But you know what? It's not my responsibility to keep them in business by watching mind-numbing ads. And as I said, it wouldn't matter if I did since I never buy things through ads anyway, and that, ultimately, is where the money comes from. Sites are pulling out all the stops trying to come up with new ideas for funding. Some of them will succeed. Let's just hope they don't patent their business model...but that's another rant.

      --Bob

      --
      1^2=1; (-1)^2=1; 1^2=(-1)^2; 1=-1; 1=0.
    11. Re:And what about text/speaking browsers? by hacker · · Score: 1
      You go to a Web site by choice... most of the time, anyway.
      ..except when you hit a website, close your browser, and a new browser window appears, which loads some pop-up ads, which you close, which open new browsers, which you close, which open full-screen, toolbar-less browser windows, which you close, which... reboot!

      How is this enticing me to purchase a product? I hit one website, and am presented with 20 others when I'm simply trying to use the Back button.

    12. Re:And what about text/speaking browsers? by Anonymous Coward · · Score: 0

      You would use the ALT attiribe to the IMG tag.. not very difficult at all.

    13. Re:And what about text/speaking browsers? by Anonymous Coward · · Score: 0
      It's because people went ballistic at even the most innocuous of ads and started an arms race that we have the sorts of intrusive ads and methods we're now facing.

      WRONG. You've fallen prey to the great Hacker Fallacy: "The world revolves around hackers." Remember, only 0.01% of people that want to use the net even know that "blocking proxies" exist.

      Sure, there's an arms race. But it isn't hackers vs. advertisers. It's between ordinary people who don't like ads and try to ignore them and the advertisers who are trying to make you buy stuff.

      The same endlessly escalating race has been going on between ordinary people and advertisers in every other media for as long as they've existed. Sane people try to ignore ads. It's the only sane thing to do, because ads try to convince you to buy something regardless of whether it's in your best interest.

      But I'm glad insane people like you exist, and go around clicking on ads all the time, because that keeps the content free for me. Thanks.

      Sincerely, Mr. Potato Salad2579

    14. Re:And what about text/speaking browsers? by BinxBolling · · Score: 2

      It's because people went ballistic at even the most innocuous of ads and started an arms race that we have the sorts of intrusive ads and methods we're now facing.

      No, it isn't. The vast majority of surfers don't use any ad blocking software. The reason ads have gotten more intrusive is that even people who don't install Junkbuster or somesuch have learned to filter out ads mentally: Eye tracking studies of people surfing the web show that even when banners are displayed, most people don't even look at them, and those that do only do so very briefly. Clickthrough rates have fallen by a factor of 10 in the last few years; Use of ad-blocking software is neither necessary nor sufficient to explain this. Rather, people have simply gotten jaded.

      If you keep blocking the ads, then the advertisers will give up and you will get to pay for the content. It's that simple.

      I'm not entirely convinced this is a bad thing. Content providers will work hardest to satisfy the people who are actually paying them. I'd prefer that be me than that it be advertisers. Advertising-supported content is precisely why more and more of our public discourse is in the hands of large corporations whose only real motivation is profit.

    15. Re:And what about text/speaking browsers? by Scooby+Snacks · · Score: 1
      Now I just need to know how to stop the lame animated GIFs -- can anyone please tell me if there's a way to halt them in Konqueror the way I can by hitting ESC in Mozilla/Opera/IE?
      You can do it, but it's a bit annoying. You need to right-click on the page and select "Stop animations". This is only in recent versions; I forget at which version this made it in, but I believe it was around the time of 2.1, definitely by 2.2. As far as I know, there's no keyboard shortcut to do it. That could've changed with the last release, however. (I switched to Mozilla because I was tired of the 20 other processes that fired up when I started Konqueror when I wasn't using KDE.)
      --

      --
      Runnin' around, robbin' banks all whacked on the Scooby Snacks...
    16. Re:And what about text/speaking browsers? by ralfp · · Score: 1

      This brings up an interesting issue. If browsers for the sight-impaired could not access the site because of this ad stuff, then would the site not violate the Americans with Disabilities Act (US only)?

    17. Re:And what about text/speaking browsers? by Ian+Bicking · · Score: 2
      Sites are pulling out all the stops trying to come up with new ideas for funding. Some of them will succeed. Let's just hope they don't patent their business model...but that's another rant.
      OTOH, let's hope that MediaBEAM does patent their software, preferably in some overexpansive manner with high licensing fees.
    18. Re:And what about text/speaking browsers? by Ian+Bicking · · Score: 2
      Some browsers don't support JS, and cannot download images (eg: lynx, or browsers for sight-impared people). At least in the latter case, there's a legit reason for them to not have images.
      This does leave the intriguing possibility that such software violates the Americans with Disabilities Act. This isn't a big deal in Germany, I imagine, but if it couldn't be used in the US that would make this software pretty niche.

      Of course, such a case would never really occur. Mostly because, if the issue ever came up, it would not be a big deal to fix this for the blind or disabled. Their browsers could simply advertise their purpose, and the ad could be replaced with a text alternative (more obnoxious because it gets read, not skimmed over!) I don't imagine lots of people would misidentify their browser as a browser-for-the-disabled just so their blocker would still work.

    19. Re:And what about text/speaking browsers? by pyramid+termite · · Score: 1

      If you keep blocking the ads, then the advertisers will give up and you will get to pay for the content. It's that simple.

      Text only content is simpler. One gets the information one wants, without a bunch of graphics to increase the bandwidth cost. People who provide their information this way don't have mega expenses and can provide good content for nothing. Many do. There's more free (and good) information on a variety of subjects out there than I'll ever have time to look at, and these sites are not going away. Sites with popup windows aren't very likely to be visited twice by me. I've yet to pay an access charge for any site, as there's either a free alternative or the information isn't worth the cost to me.

      Here's the number 1 law of advertising - a website is not selling content to people who are paying by viewing advertising. No - they are selling audiences to advertisers. If they do things that tick off their audience, such as pop-up windows, then they run the risk of having less audience to sell. The reason why the ads are more intrusive, and the rate advertisers are paying has dropped is because the advertisers have discovered that the audience isn't as valuable as they thought it was - they don't pay as much attention, and don't react directly to the ads. Now they're trying to make us pay attention in a last gasp effort to have an audience worth paying money for. My guess is it's not working.

      Paying for content is probably not workable in most cases, due to print and other media alternatives. And advertisers are not going to pick up the tab. This leaves the field to the amateurs and those professional organizations that can subsidize the cost of their web page with the other segments of their business. (Remember that the N.Y. Times will always advertise one thing no matter what blocking software we use - the N.Y. Times itself.) I think that's a good thing.

    20. Re:And what about text/speaking browsers? by CaseyB · · Score: 2
      Advertisement will fail in the long term if people do not buy the products advertised. I see lots of people claiming to be willing to put up with ads, but that's a moot point. No one is buying.

      One of the problems with the perceived performance of online advertising, is that it ALONE of all forms of advertising is measured by asking a very ambitious question: "Did the user see the ad and then immediately drop everything he's doing and run into the store and buy the product.". This would be an insane way to measure the performance of a Coca-Cola ad on a bus stop.

      I think the biggest "problem" with online ads is that companies advertising are completely ignoring the secondary "mindshare" effect that is the goal of more traditional forms of ads. They don't see a clickthrough, and so they measure a zero effectiveness, when this probably isn't accurate.

    21. Re:And what about text/speaking browsers? by Twanfox · · Score: 1

      The major problem with websites and companies relying on advertising is the notion that if you blast the consumer population with a message loud enough and long enough, you will make a sale. For TV's, it's trivial to ignore. Mute, get up and go away, or watch. It's up to you. All it wastes is your time if you're not interested (and usually, most people aren't).

      Ads on the Internet waste a lot more than just time. They waste bandwidth (for those that get charged per byte/kbyte/etc), they waste time, and they waste space (low res displays). They're still generally as pointless as before, but now, it costs the user more to ignore the message, and you aren't afforded the same luxury as a mute button or 'switching the channel' during commercials. I can honestly say I don't think I've ever come across a single banner ad that I've ever felt compeled enough to click on. Is that me stealing money from the hosting site's pocket, or is that me excersizing my choice as a consumer and stating 'I don't want/need that product'? Just because an ad is present does not mean I have to look at it, or participate in the fun.

      What this ultimately might mean is that yes, there are fewer free sites on the internet, fewer sites that permit you to view content without a subscription. This is bad? I have actually paid a subscription to someone's website for a year, and purchased a CD that site produced. That right there outdoes 99% of the banner ads I've ever seen. You want to advertise to me, fine. Understand that there are times when I don't want to be bothered, and politely leave me alone (That scores points). Understand that there are times which I'm looking for something new to do, something new to spend money on. Advertise content that makes relevent sense to me, instead of advertising some garbage I wouldn't line my bird's cage with.

      Oddly enough, the notion that comes to mind is a widely known location to advertise, catagorized, sorted, so that people looking for something can go there and find it. Easy, simple, and it doesn't bother other people that really couldn't care less about the products. As for some sites that depend on 'ad clicking' for their revenue... they need to learn a better way to make money.

    22. Re:And what about text/speaking browsers? by Anonymous Coward · · Score: 0

      The magazine industry consistently bloats their circulation numbers and demographics. There's audits and so on to keep them honest, but everyone's happy without exact numbers.

      Unique impression tracking was the solution only because it provided very accurate demographic data (who's visiting what sites). It wasn't necessary to set ad rates.

    23. Re:And what about text/speaking browsers? by Bat_Masterson · · Score: 1
      If you keep blocking the ads, then the advertisers will give up and you will get to pay for the content. It's that simple.

      Not really. Think about it. Until the Internet can handle large-scale micropayments, web-sites that decide to go the "pay for content" route will have to go with monthly subscriptions and the minimum subscription fee will probably be $10/month. Good content will get subscribers, bad content will disappear, and mid-level content will continue to be free. In fact, advertisers will probably continue to support free sites and will tone their ads down (as well as the information they collect) in the hope of getting average people to turn off their ad busting software rather than continue the arms race.


      Of course, everything changes if someone develops a reliable, secure, and anonymous micro-payments system.

    24. Re:And what about text/speaking browsers? by Robotech_Master · · Score: 2

      I hope they try to patent it, as there's a very easy case of prior art to be found on Mind's Eye Fiction. Been around for years.

      --
      Editor Emeritus and Senior Writer, TeleRead.org
    25. Re:And what about text/speaking browsers? by knorthern+knight · · Score: 1

      > In addition, in today's age of worms upon virus
      > upon other nasty things, there is a sufficiently
      > significant (probably around 10%) of users that
      > have turned off Active Scripting in IE or the
      > equivalent in NS to avoid such problems. I very
      > much believe that these users have more of a
      > right to keep this off than an advertizer has to
      > force you to look at an ad.

      Right on. One of the vectors for the spread of NIMDA was that people with unpatched older versions of Internet Explorer got infected *MERELY BROWSING COMPROMISED WEBPAGES*. A CERT advisory issued in February of 2000 (17 months ago http://www.cert.org/advisories/CA-2000-02.html ) recommended "Web Users Should Disable Scripting Languages in Their Browsers".

      What happened to the that old maxim in the BBS days about not blindly running any program from any BBS you see ? Guess what; with Java/Javascript/ActiveX you are downloading code from a webpage, and executing it on your machine.
      People shouldn't complain that they weren't warned.

      --

      I'm not repeating myself
      I'm an X window user; I'm an ex-Windows user
    26. Re:And what about text/speaking browsers? by B.D.Mills · · Score: 2

      in today's age of worms upon virus upon other nasty things....

      There's one very nasty "advertisement" doing the rounds of the Net to which dialup Windows users are vulnerable. It downloads a 44K application to the victim's PC called "dialer.exe". When the victim runs that program it hangs up their dialup connection and dials a 1-900 number to access a web site. The victim will then be billed $50 on their phone bill.

      Banner ads that have rapidly flickering images may also be harmful to people vulnerable to epileptic seizures and other neurological problems. It is only a matter of time before a web site is sued for displaying such flickering ads on their page without an epilepsy warning.

      With little nasties like this doing the rounds, I will block banner ads and all cookies until they change their practises.

      --

      The only thing necessary for the triumph of evil is for good men to do nothing. - Edmund Burke
    27. Re:And what about text/speaking browsers? by mttlg · · Score: 2
      If you keep blocking the ads, then the advertisers will give up and you will get to pay for the content. It's that simple.

      Who do you think pays for the sites now? Advertisers pay for banner ads because people who see them are more likely to buy their products and/or services. The difference between this and subscription viewing is that people like me, who only buy stuff when they want it and not because of an ad, pay nothing, while people who are easily parted from their money, people who see the ad elsewhere, or people who already do business with the company are the ones supporting the site (which means that site quality isn't as important as the number of ads displayed). Of course, whenever we buy something, we pay for the advertising of the product/service and the company selling it, so in the end, we pay one way or another. With ads, we pay for the content, the ads themselves, and the middlemen involved, with inflated prices (and the time wasted on ads). With subscription payments, we pay for quality content, without ads, large graphics, annoying animations, fancy scripts, or anything else that blocks us from that content. Subscription payments also keep out people who only want to annoy and/or take advantage of people, which is always a good thing.

      Take a look at television in the UK - despite cultural differences (like an obsession with things like soccer and snooker), television there is much more pleasant to watch. Without ads, a 40 minute show lasts 40 minutes and not an hour (plus the occasional break, so you still get the most important benefit of commercials without the commercials). Sure, you end up with 20 year old episodes of Battlestar Galactica and other odd things, but it sure beats hundreds of sitcoms patterned after Friends.

      Of course, we will never get rid of ads because people are more than willing to pay more for less if the cost is hidden from them. Ideally, sites with little or no value should just die, and other sites should exist either as minimally intrusive ad sites (like this one) or minimal fee subscription sites. The sites I visit most either have very few, well targeted ads, or have turned to subscriptions. The other alternative is a company's own site, where profits are funneled back to the customers in the form of useful features and services, which in turn attract more customers and generate more revenue. This is a business model that works much better than a banner ad on a free site advertising another free site that gives away money and also pays for television advertising, all from ad revenue from other free sites that all do the same thing... The money has to come from somewhere, so it might as well go there without thousands of useless executives in the way.

  25. Sure it can be done by j7953 · · Score: 4, Interesting

    The server can detect if your browser, after requesting an HTML page, also requests the contained images. I guess it works only if the pages are served from the sames server as the images.

    Of course, you'll always see at least one web page, as the server doesn't know yet if you'll request the ads as well. If you don't, it can deny to handle further requests from your IP. They also cannot make sure (at least not by tracking requests) the ad is actually displayed, they can only make sure it's downloaded.

    Still, I don't see a wide success for this technology. What about multiple people using the same IP -- the first one blocked ads, now the site is blocked for the other users as well? Even worse, dynamic IPs -- the guy who previously had my dial-up connection's IP blocked ads, now I cannot view the sites? Of course, they could require cookies, but those users that understand cookies will be really pissed off if they have to accept cookies they don't want to have to see ads they don't want to see.

    --
    Sig (appended to the end of comments I post, 54 chars)
    1. Re:Sure it can be done by Marc+Boucher · · Score: 1
      The server can detect if your browser, after requesting an HTML page, also requests the contained images. I guess it works only if the pages are served from the sames server as the images.

      Which they are usually not. ;)

      Of course, you'll always see at least one web page, as the server doesn't know yet if you'll request the ads as well. If you don't, it can deny to handle further requests from your IP.

      And what if this IP address is the one of your provider's proxy? If they effectively block access they will deny it for the whole network. Do they really want surfers to leave their site? (Since only a minority will know what's really happening)

    2. Re:Sure it can be done by Chris.Boyle · · Score: 1

      It need not be the same server, this info can be transmitted from one to another. The blocking itself can be done with frames or iframes (and holding off sending the HTTP response with the content until those with the ads are completed), so it need not remember whether you DLd the ads last time around, which solves all the problems about dynamic IPs, proxies, etc.

      Cookies would be a very weak way to implement this, they can be faked quite easily. The client could connect to the ad server, get the header of the response (and thus the cookie), and close the connection.

      That leaves the problem of whether the ads are displayed or not. The only way to do this would be at the client side with JavaScript or something, which they wouldn't get away with (at least I hope not...). But you still have to download the ads.

      Anyway I'm sure reverse-engineering will prevail, it has before. I for one will quite happily spend a few hours with ethereal to try and get round anything advertisers throw at me.

    3. Re:Sure it can be done by morgus+morphus · · Score: 3, Interesting

      From discussions I read on a german newssite from people who've tried this system it depends on a cookie to keep state.

      So you needn't worry about other people in your flat being affected, however disabling cookies might defeat the system at the moment.

      It would be theoretically possible to delay the download of the last 2/3 of the page until the banner has downloaded, however this would probably cause too many problems in real life.

      As with any such systems it's not meant to discourage someone really determined but only make shure that 99% of pages get served with their banner.

    4. Re:Sure it can be done by Cato · · Score: 2

      Cookies would be necessary, because some large ISPs (e.g. AOL) use a load-sharing NAT setup - you can request a page via one NAT box, then an image in the page via another NAT box, i.e. it looks to the web server as if two unrelated web clients accessed the page and image.

    5. Re:Sure it can be done by bryan1945 · · Score: 2

      All kinds of problems if they try this:

      1) Some people browse with "download graphics=no"
      2) Many people don't accept cookies (except for the Girl Scout kind!)
      3) What if you are using multiple proxies for downloading? Multiple IP streams...
      4) Ok, I have to pay to access the site- and how do I do that exactly?
      5) All of the problems mentioned in the parent.

      --
      Vote monkeys into Congress. They are cheaper and more trustworthy.
    6. Re:Sure it can be done by Cato · · Score: 2

      Cookies would be necessary, because some large ISPs (e.g. AOL) use a load-sharing NAT setup - you can request a page via one NAT box, then an image in the page via another NAT box, i.e. it looks to the web server as if two unrelated web clients accessed the page and image.

    7. Re:Sure it can be done by Anonymous Coward · · Score: 0
      Solutions to each problem:

      For folks who don't DL graphics, don't serve them. Not a bad move, folks who have power and like their web splashy could be a more desireable ad target.

      Ditto for cookies, except not much info about marketability

      Multiple folks on single IP's do break the graphics idea. Might just have to cut them off. Don't have to serve everybody, for example, I'm blocked from some IE specific pages when I use NS or others.

      Pay sites are good. You pay money, you get a login. Not too complicated there, better business model, not as many customers tho.

      You trade off. Either you make money and pay the bills, or you don't, and you shutdown the site. Theres really nothing wrong with trying to make money. Material things cost, easily forgotten I know with all of this "info wants to be free" stuff.

    8. Re:Sure it can be done by hacker · · Score: 1
      They also cannot make sure (at least not by tracking requests) the ad is actually displayed, they can only make sure it's downloaded.

      Unless of course, the ad itself is written in Javascript, and does a POST back to the server, incidicating "Success", and the rest of the page is drawn properly. Not hard to track at all if the ad was download vs. displayed.

    9. Re:Sure it can be done by Anonymous Coward · · Score: 0

      Why would the blind browse with images off? They can't see the ads anyway!

    10. Re:Sure it can be done by Cirvam · · Score: 1
      Multiple folks on single IP's do break the graphics idea. Might just have to cut them off. Don't have to serve everybody, for example, I'm blocked from some IE specific pages when I use NS or others


      Um, yeah just block all of AOL, and a good percentage of the @home network (or what's left of it). I'm sure you will still get tons of hits... If your target audience doesn't use AOL or @home, or in the case of AOL, they hate it, then your audience might want to look into the blocking software which means you probably have either blocked or alianated over three quarters of your 'customers', yep great way to try and pay the bills.
    11. Re:Sure it can be done by meldroc · · Score: 2

      Any scheme like this can be worked around using a Junkbuster style proxy possibly by downloading the first packet of every ad, then leave the ad server's TCP connection hanging. Fortunately, the ad server's admins wouldn't find that annoying. :) Of course, then the adware server would require the users to download the entire ad before allowing the desired content to be served. That can be worked around by having the proxy download the ad & handle the cookies correctly, but not bothering to pass the ad on to the web browser, and filtering out Java/Javascript that tries to block the content on the client's side.

      --

      Meldroc, Waster of Electrons
  26. What im asking mmyself... by huhmz · · Score: 1

    ...is: If you have installed ad blocking software on your computer are you likely to click on any banners even if you are exposed to them?

    1. Re:What im asking mmyself... by YKnot · · Score: 1

      There's a difference between superstitiousness and banners: You don't have to believe in the effectiveness of banners to be affected by them.

  27. I see many problems... by sfe_software · · Score: 4, Insightful

    Lots of problems with this:

    - The biggest problem I see is that many sites run ads from a third party network (eg, Doubleclick). More than likely this would only work for ads served by the same server.

    - What if you simply disabled image downloading all together? Or use Lynx? Or disable whatever technology they are using (Java, JS, whatever) for other reasons, if that's the case?

    - If you're behind a proxy, often times images are downloaded via a different IP than other content (images are generally considered cachable). I've seen this in my logs many times, mostly with scripts (which are generally non-cachable). Or, the user may download the image from a cache, and the server might assume the user hasn't seen it. With larger ISPs who cache content, this is easily conceivable.

    - If you chose not to see ads, you probably aren't going to purchase any products advertised. So the advertisers get cheated, the visitors annoyed, and the site owner is the only one potentially gaining anything (though pissing everyone off isn't a good way to make money).

    I'm so sick of ads personally, I've disabled Flash and Java (both of which seem to be used more for ads than anything else). I've also added *.doubleclick.net and a few others to my DNS cache (on my home network), so ads from those places simply come up empty for me (no ad servers at 127.0.0.1 :)

    This reminds me of the CD copy protection crap: trying to extend a basic technology for purposes it wasn't intended for, for corporate gain, that only serves to harm the consumer. It won't fly.

    --
    NGWave - Fast Sound Editor for Windows
    1. Re:I see many problems... by tshak · · Score: 2

      What if you simply disabled image downloading all together? Or use Lynx? Or disable whatever technology they are using...

      Why don't we just go back to the web "stone ages" and use Mozilla 1.0? So much for the evolving web.

      --

      There is no longer anything that can be done with computers that is nontrivial and clearly legal. -- Paul Phillips
    2. Re:I see many problems... by sfe_software · · Score: 2

      There are many times I've been known to use Lynx on my server to hunt down information, files, etc. Javascript gets annoying, and I disable Java and Flash period. When I'm stuck on dialup I've been known to disable images when trying to find information; makes surfing a lot quicker.

      So if I'm in any of these situations, forced ads would be a major annoyance.

      --
      NGWave - Fast Sound Editor for Windows
    3. Re:I see many problems... by mitheral · · Score: 1
      Why don't we just go back to the web "stone ages" and use Mozilla 1.0? So much for the evolving web.

      Doesn't sound bad to me. I'm practicaly there anyways. I use a filtering proxy to dispose of ads and I've turned off all scripting and animation. I don't accept most cookies. I override server supplied colours to make text black and windows light grey. I often turn off image loading. It amazes me how speedy and useful the web is without all the jazz. Every once aand a while I can't navigate a site properly which usually means I don't go there. Rarely is the content that important or exclusive to modivate me to surf unprotected.

    4. Re:I see many problems... by knorthern+knight · · Score: 1

      > Why don't we just go back to the web "stone
      > ages" and use Mozilla 1.0? So much for the
      > evolving web.

      Considering that Mozilla is currently at 0.9.4, that would be an advance ... oh, you mean *MOSAIC 1.0* ?

      --

      I'm not repeating myself
      I'm an X window user; I'm an ex-Windows user
    5. Re:I see many problems... by tshak · · Score: 1

      Yikes! That's the worst unintentional Freudian Slip that I've made yet! Yes, you're right, I meant NCSA Mosaic 1.0, NOT Mozilla 1.0 :).

      --

      There is no longer anything that can be done with computers that is nontrivial and clearly legal. -- Paul Phillips
  28. why an arms race? try gentle persuasion by circletimessquare · · Score: 5, Informative

    one way they could do it is with a client-side script/applet that runs at the very tail-end of a loaded document. the client side stuff could profile the document object exactly as it is loaded and displayed on the browser, instructing the browser to describe the various properties of the document's objects (visible=false, unavailable=true, whatever)... that would reveal a blocked ad. then the script phones home with the results, detailed, or with a simple pass/ fail.

    another way they could do it is by sensing whether or not the client sends out a request for the ad from the ad server at all.

    if either is the case, so what? the next move in the arms race is for the blocking software companies to request the image anyways... just not display it, or spoof the document properties that indicate a properly displayed and enabled ad.

    the german company mediabeam is ratcheting up the arms race, that is all.

    i think the web ad ecosystem is in for an overhaul anyways... pop-under ads, etc., just seem like a desparate last-ditch attempt at old-school ideas of ad prominence... the web is not tv, it is not radio... they will get it someday.

    why not go for subtlety instead? win users over to your site with gentle persuasion, not howling insistence.

    what the heck am i talking about? try google's understated and creative approach (zdnet article from june). wired also raved about google's novel ad approaches, all of which have a simple theme: potential customers want to be gently persuaded, not knocked over the head with a salami and dragged to your storefront. (the wired article is in the current october issue- "Google's Secret Formula: How a no-nonsense search engine built a stealth advertising machine." only on newstands... not available on line until october 16)

    you don't need fancy graphics... a few bytes of ascii with an href in the right spot and you probably have a better time at snagging a customer than any strongarm tactics anyways...

    did you like my post? have me write one for you and boost your karma with just a small one-time donation of $5.95. but act now! i'm slowly losing my faculties so karma supplies are limited.

    ;-)

    --
    intellectual property law is philosophically incoherent. it is your moral duty to ignore it or sabotage it
    1. Re:why an arms race? try gentle persuasion by znu · · Score: 2

      Google's approach really works, at least on me. I visit sites advertised on Google on quite a regular basis. The ads are always highly relevant, and the fact that a company takes out an ad at Google rather than spending the money on one of the more offensive types of ads tells me that I might not mind doing business with that company. Plus, I'm familiar with Google's pricing structure. It doesn't price the small guys out of the market; it provides a nice advertising solution no matter what your budget.

      --
      This space unintentionally left unblank.
    2. Re:why an arms race? try gentle persuasion by knorthern+knight · · Score: 1

      > the client side stuff could profile the document
      > object exactly as it is loaded and displayed on
      > the browser, instructing the browser to describe
      > the various properties of the document's objects
      > (visible=false, unavailable=true, whatever)...
      > that would reveal a blocked ad. then the script
      > phones home with the results, detailed, or with
      > a simple pass/fail.

      To which, the response is to create a proxy version of your webbrowser. The proxy displays everything on the website. The proxy responds to the webpage just like a regular browser, which isn't aware that it's talking to a proxy. The end-user would link to the proxy with a "slave" browser that has annoying garbage like popups and f##kwave/slash disabled.

      Given the presence of open source software, the source code for a browser is available.

      --

      I'm not repeating myself
      I'm an X window user; I'm an ex-Windows user
  29. Simple Solution by Anonymous Coward · · Score: 0

    Note to Advertisers.

    I will not purchase your services or merchandise if you Advertise like this.

  30. What makes banner different from paper ads? by edgrale · · Score: 3, Insightful

    I'm not trying to flame anyone.

    When we read our daily paper (which we pay for) we get ads too, right? What makes sites that much different? We don't pay for the contest on sites, in stead we see ads, is that so bad? Sure, I hate pop-up ads as much as you do and I thing those should be shot on sight.

    But really, does a small banner like the one on slashdot bother that much? I'm okay with the ads on Zdnet and C|net too (the ones in the center of the article). Just ignore it, no one is forcing you to click on it. Just as no one is forcing you to go and buy whatever is advertized in your local paper.

    Keep it as it is now, don't force people to click on ads or to close a window that pops up each time you surf a site and people will have no problem with the ads.

    Just my 0.02 euros :)

    --
    09 F9 11 02 9D 74 E3 5B D8 41 56 C5 63 56 88 C0
    1. Re:What makes banner different from paper ads? by rant-mode-on · · Score: 2, Funny


      I'm okay with the ads on Zdnet and C|net

      So am I. But am I the only one that clicks on M$ adverts in the hope that they have to pay more if a user clicks on the ad?

    2. Re:What makes banner different from paper ads? by costas · · Score: 3, Insightful

      Banner ads worsen the user experience; print ads do not. Regular banner ads take up my bandwidth and worsen my browser's responsivenss. So, yeah, I will use a proxy, no question.B ack when I had a 1.2M DSL line, I didn't care about ads that much. I only resorted to the Proxomitron when pop-ups and pop-unders became the vogue.

      The industry needs to get smarter. Download ads after (not before) the content of the page has loaded. Stop annoying the user. A click-through ad is much better than a pop-under or a flashing fake Windows alert box any day of the week. Sponsor content instead of obstracting its delivery. Something.

    3. Re:What makes banner different from paper ads? by Zappo_ · · Score: 1

      > Just ignore it, noone is forcing you to click on it.
      That's true, for now. But if they can try to ensure your browser fetches and displays the ad,
      how long will it be before they try to ensure a certain click ratio too?
      "Sorry, you have not clicked on 5% of our ads, which is the minimum required. No content for you."
      Of course, after that, we get...
      "You have clicked on 8% ads like you should, but you have not bought products for the required minimum amount. Please correct this before you return."

    4. Re:What makes banner different from paper ads? by rayd75 · · Score: 1

      May be this will all change when Xerox PARC's electronic paper (http://slashdot.org/article.pl?sid=980821/0956225 &mode=thread) finally becomes a reality... Think about it. You can get half way into a newspaper article and then an ad can popup in the middle of it requiring you to read it or take some other action to get back to the content you were actually interested in. At last traditional media can keep up with the web!

    5. Re:What makes banner different from paper ads? by tshak · · Score: 2

      Banner ads worsen the user experience; print ads do not. Regular banner ads take up my bandwidth and worsen my browser's responsivenss... Stop annoying the user...

      Then go back to your newspaper - no ones forcing you view the annoying content.

      --

      There is no longer anything that can be done with computers that is nontrivial and clearly legal. -- Paul Phillips
    6. Re:What makes banner different from paper ads? by arkanes · · Score: 1

      One of the "free money" sites did exactly this - much more reasonable from them, of course, as they are basically giving away money. Monkeyloot.com or some such. You'd get 10 clicks to see if you won anything, then you'd get an add. Every 100 clicks or so, if you didn't click on any adds, they'd yell at you. Not deny you or anything, just yell at you.

    7. Re:What makes banner different from paper ads? by Croaker · · Score: 5, Informative

      Banner ads, in general don't bug me.

      What made me reach for my revolver (err... ad blocking software) was that godamned "click the monkey" ad. (In case you've never seen it, it's some dumb ad with a monkey zipping around the background).

      Usability tests of websites agree... movement kills the ability to read. Having something zipping around in your perefrial vision distracts your ability to read content. Content is what I came to the website for. If I can;t read the content, why should I go there?

      So, since the advertising numbnuts that push animated banner ads poisoned the well, I've been using ad blocking software. Apparently, people still haven't learned, as I have seen godawful flash advertisements slip through my ad blockers, again making the page friggin' unreadable.

      Most print ads do not disrupt. There are a few exceptions (I noticed once that a magazine started to place ads in a stripe across the middle of the page, and had each column of text jump over the ad, so in reading the story your eyes would be forced to jump over the ad space two or three times. They knocked that off after two isses). In general, print ads seem to have struck a balance between getting the reader's attention and disrupting the reader's ability to enjoy the content... which is their purpose in reading the book/magazine/newspaper in general. This has happened through evolution. Those that annoyed their readers with ads were less likely to survive.

      Ads on the web right now are about the sophistication of those cheesy local cable ads. You know, the ones you can tell are stuck in by the local cable company, because the sound is suddenly too loud, there's usually bad audio, and the video is of poor quality. And like those cheesy cable ads, they tend to be inserted not by the producer of the content, but of third parties (such as doubleclick) who may or may not be concerned about how disruptive the ads are to the site within which they are viewed.

      Things are just getting worse in this space. I've seen more Flash ads on the web, which makes me think I should uninstall that damned plugin.

      When you push things too far, when you make things annoying enough, don't be surprised when your audience pushes back, and does things like install ad filtering software. It's corporate conceit and stupidity to fight back with things that are supposed to technologically allow you to annoy the hell out of your potential customers. Hey guys, how about maybe adopting guidelines so your ads don't disrupt your audience's ability to do what they really came to your site to do? Like, for example, no movement. Totally static images. I know, not as flashy, not as sexy, but also not as annoying. If, in the end, I cannot read and enjoy the content of the site, I'm simply not going to come back. Then the site dies, just as surely as if they had no revenue from ads in the first place.

    8. Re:What makes banner different from paper ads? by educated_foo · · Score: 1
      Banner ads worsen the user experience; print ads do not.


      I wouldn't be so charitable to the print ads, e.g.:

      • That annoying half-page they wrap around your comics on Sunday.
      • The nine or so pages of pure advertisement before the table of contents in most free tabloids.
      • The phone-sex ads near the last part of the movie and entertainment section in the same.

      I find all of these things to lower the quality of my paper-reading experience. It seems that a lot of people here are remembering some print utopia that may never have been, and exaggerating the number of sites that have the incredibly annoying ads (e.g. pop-under, onClose). With the notable exception of yahoo, none of the sites I use regularly resorts to anything more annoying than the high ad ratio in the free SF Reporter.


      /s

    9. Re:What makes banner different from paper ads? by Anonymous Coward · · Score: 0

      Opera has a great feature. It allows you to turn off animated GIFs, which I have. Then I don't have to worry about blinking ads. I turned it off, after that stupid "hit the monkey" ad. Gods that was bad.

      As for this other company's ads. Bring it on. There's one thing that no software can ever do, and that is make me accually *click* on the ads. They can detect all they want, stick all they want, in my face. I just ignore it and go where I want.

      ICQ reciently found a way to put on ads, and stop people from turning them off as we was able before. So? I'm still not clicking on the ads, I still use ICQ for free, and won't ever. If they fix it so you MUST click on the ads to use it, then I'll simply dump it. Jabber is coming.

      It's a matter of why should I use one thing, and pay for it, when I can go somewhere else and get the same thing for free? As long as I can get something for free, I pay nothing.

      Shadowwalker Delaforge (shadwalk@operamail.com)

    10. Re:What makes banner different from paper ads? by mr_exit · · Score: 1

      I'm sick of fashionable mags that have 15 pages of ads before you even get to the contents page,
      Those ads surely inpact on my enjoyment of the magazine. At least i won't get back strain from carring arround 15 pages of banner adds on my back.

      --

      -------
      Drink Coffee - Do Stupid Things Faster And With More Energy!
    11. Re:What makes banner different from paper ads? by asphyxiaa · · Score: 0

      Before I read the paper, I cut out all the ad's with scissors.

      --

    12. Re:What makes banner different from paper ads? by drsoran · · Score: 1

      I think you've just about summed up everyone's opinion in one concise insightful message. Well done. I wouldn't mind the ads if these didn't move around and flash! I simply cannot concentrate on reading an article when there is an advertisement pulsating like a strobe light in the center of the text. WTF is that?!

    13. Re:What makes banner different from paper ads? by drsoran · · Score: 1

      Which begs the question, why doesn't Mozilla have this feature? At least, I haven't been able to find it. There has been NO time in the past 5 years I have ever had a reason to view an animated GIF. They've all been advertisements. What's going to be next? MPEG movies in the banner ad space? Will I need to download a 5 meg movie for every 50k page worth of content I want to browse?
      And another thing... why does Slashdot move their adserver so we can more easily block the ads? I'd rather just click "block all images from this server" and be done with it. Unfortunately their ad servers serves up the images from the same server their normal images come from. I still block them but the site looks like crap without any images.

    14. Re:What makes banner different from paper ads? by jesser · · Score: 2

      Which begs the question, why doesn't Mozilla have this feature? At least, I haven't been able to find it. There has been NO time in the past 5 years I have ever had a reason to view an animated GIF. They've all been advertisements.

      Edit, Preferences, Privacy and Security, Images. See Bug 90837 for discussion about moving the pref out of the Privacy and Security branch to a place where it will be easier to find.

      --
      The shareholder is always right.
    15. Re:What makes banner different from paper ads? by Master+Of+Ninja · · Score: 1

      Most banner ads are OK for me. I accept that this will help the owners pay for whatever service they are offering. If the advert is good enough I might even click on it.
      What bugs me is the flash ads. They can cause my computer (a PIII 450 w/ 192MB RAM) to take a few seconds to display the page after downloading it, and the screen redraws slowly so that scrolling up and down takes some time.
      I don't mind it in some websites, but when it becomes excessive (when combined with flash buttons etc.) it is a real pain. I don't want to pay for a 1.5Ghz proc. so that i can surf the web.
      I see that CNET and salon use this kind of ad. I don'tmind them as long as they don't distract my attention and don't force long redraws. Other sites I'm not so tolerant with, especially those with pop-ups as well.

  31. Think Tanks by Richard_at_work · · Score: 1

    Heh makes me laff. Maybe they havent actually done it yet, and want to pick our brains for a way to implement it :) Think about it, they say they have done it, and all of a sudden we get posts on slashdot saying "well they could go about it like this......." and voila, brainstorming of the masses :) and it cost em nothing either :)

    Scarey eh?

    Or maybe you should ignore me :)

  32. Sure, bring it on by ishark · · Score: 1

    Fantastic technology. The internet is full of asshole sites and this will provide a very nice way to detect a lot of them....

    And if (as someone suggests) they use image load tracking to see if the popup was shown or not, then don't be surprised if the next version of your window manager has an option "automatically position off-screen windows with this title".

    1. Re:Sure, bring it on by Isofarro · · Score: 1

      don't be surprised if the next version of your window manager has an option "automatically position off-screen windows with this title".


      Proxies that modify src attributes and replace them with blank images can go one step further: Just chuck a <div style="visibility:hidden"> ... </div> around the banner - so it still gets loaded, just never seen.

      As an addition - get the proxy to request the banner ads, but ignore what gets returned - that will keep the web server very happy.

  33. Most web sites need an income by samael · · Score: 4, Insightful

    And how are the web site owners supposed to pay for the bandwidth you're using?

    If you don't want to give them an income directly and don't want to give them an income indirectly, are they just supposed to pay out of the goodness of their hearts?

    1. Re:Most web sites need an income by Basalisk · · Score: 3, Interesting

      By selling things that people wish to buy.

      That's how most companies make an income, by exchanging goods or services for money.

      Not by selling advertising space, and providing freebies or sausage sizzles or other methods to attract eyeballs.

      These people are targeting the wrong customers. Instead of targeting the people visiting the site to buy stuff, they are targeting the people with ads to sell.

    2. Re:Most web sites need an income by Anonymous Coward · · Score: 0

      So if you ran Slashdot it wouldn't exist, right?

    3. Re:Most web sites need an income by tshak · · Score: 2

      Not by selling advertising space, and providing freebies or sausage sizzles or other methods to attract eyeballs.
      These people are targeting the wrong customers.


      Just like the TV networks. I just don't know how they stay in business with this "free public TV with advertising" model.

      --

      There is no longer anything that can be done with computers that is nontrivial and clearly legal. -- Paul Phillips
    4. Re:Most web sites need an income by Anonymous Coward · · Score: 0

      Did you read what was written? If I am ignoring website www.A, I d am not going to give a flying fuck whether company A goes under. And the wonderful part about it is that would be their own fault. Their product (the website) would have been flawed, and if that were their only product, they'd go to the wall. We call it the free market (or in this case "the biter bit").

    5. Re:Most web sites need an income by Anonymous Coward · · Score: 0

      >And how are the web site owners supposed to pay
      >for the bandwidth you're using?
      >If you don't want to give them an income directly
      >and don't want to give them an income indirectly,
      >are they just supposed to pay out of the goodness
      >of their hearts?

      Thats not for me to decide. I am willing to give them income directly... if they are offering something for sale that I want, or providing some kind of service that I can't get elsewhere for a better price. Are they supposed to pay out of the goodness of their hearts? How about developing a working business model that does not assault me with insulting advertising like: "Your computer is not optimized"; "You have just won a free trip"; "Click the flashing monkey to win $100,000".

    6. Re:Most web sites need an income by CaseyB · · Score: 2
      If you don't want to give them an income directly and don't want to give them an income indirectly, are they just supposed to pay out of the goodness of their hearts?

      No, they're supposed to close down the site and go back to working at McDonalds.

      I'm astonished by how many people express this silly notion that sites deserve to stay running forever, like they're entitled to the sort of money that they made off of idiot investors 3 years ago.

      Face it people, the economics of the web was ALL WRONG, and it's not going to be fixed by tweaking the old model with techniques like "enforcing" ad views. Things haven't gone down to bad from the old normal -- they've gone down to normal from the old completely out of whack high.

      Given the fact that money earned from web sites is so little, I think the only thing that will allow a site to stay in the black now, is a change in the cost of running a site. I don't understand why bandwidth is still so expensive. FreeNet-style distributed systems could possibly change the economics of publishing data so that this cost is reduced.

    7. Re:Most web sites need an income by error0x100 · · Score: 1

      Pricing is a function of supply and demand.

      If a website can't generate profit off the site or the sites products, it means that either (1) they're making some bad business mistakes, or (2) people are not willing to pay what they're asking. If people are not willing to pay, its because people don't want the product that badly to begin with. Web sites don't have a "right" to make money just because they're providing a service (nobody has a "right" to make money), that service has to be of enough value to its customers that they will pay enough to cover the costs of providing the service. Very few websites provide that much value, most are of the "nice, but I can live without it" variety (e.g. I like slashdot, but if it disappeared tomorrow, my apparent "demand" for the "service" would vanish just as quickly, I would just go out and do other things instead.)

      Bottom line, if there isn't tangible demand for your product, you shouldn't expect to make money off the product. Thats business, you don't have a right to get income just because you worked very hard on it. How many websites can you think of that you visit regularly that you would really hate to go without? I can't think of any.

      I'm not saying people shouldnt make money or try to, it would be certainly be nice if the world was such that everyone providing some decent service on the web could make a living off of it. Its just unrealistic to expect it. The web is very big, and there is substantial supply for any given demand (e.g. there are thousands of online forums, thousands of picture galleries of aircraft, hundreds of news sites, thousands of online comic strips) .. so if a particular site disappears, there are always alternatives.

      Quite frankly, I don't care if the web remains like that forever, I like the Internet just as it is (bandwidth problems notwithstanding). There are plenty of good sites out there that are run by people "out of the goodness of their hearts". I prefer how it is now to the idea of having the majority of the internet consisting of sites run by a few giant media conglomerates.

      Most web sites need an income, but that doesn't mean they are entitled to an income. If the demand isnt enough, it isnt enough, and the web site owners will need to try something else to make money. Otherwise, its just charity.

    8. Re:Most web sites need an income by Thing+1 · · Score: 1
      I don't understand why bandwidth is still so expensive.

      It's currently so expensive because there are few entry points into the Internet, and those are all held by companies -- corporations intent on maximizing shareholder value at the expense of everything else. Including satisfying customers.

      I've just recently gotten an email for a flat-rate long-distance company. Just $50 a month, and you can stay on the phone as long as you like. (If only it worked to other countries! But that's coming -- another year or so, my guess.)

      With all the DSL companies going out of business (or filing Chapter 11), we seem to be moving toward few companies holding all the access. Which would tend to raise prices. However, more and more people are setting up small private networks in their neighborhoods using 802.11b, and as this continues we may take the wires right out from under the corporations!

      So even though bandwidth is still very expensive, with the progress of technology it'll fall to "negligible" within a few years.

      --
      I feel fantastic, and I'm still alive.
  34. The easy way to annoy bannerblock users by Bender+Unit+22 · · Score: 2, Interesting

    The easy way to annoy users of banner blocking software is to name images vital to the site browsing something like banner or ad. That stops them right there, works very well.

    With that said, I must say that I also use banner blocking software these days. I know that there is no such thing as a free lunch, and that bannerads helps paying for the site. So I have accepted banners for a long time.
    But with the introduction of popup/under ads on so many sites these days, it was just too much for me.

  35. Already out there by jrq · · Score: 1

    The IMDB has long been blocking serving it's content to any proxy address (ala Naviscope). This sounds more sophisticated, but, once again, appears to be a group of people attacking the wrong end of the problem.

    --
    My UID is prime!
    1. Re:Already out there by Drunken+Master · · Score: 1
      The IMDB [imdb.com] has long been blocking serving it's content to any proxy address (ala Naviscope).

      Not true. We will deny access if:

      • there is no User-Agent information in the request header
      • the User-Agent information identifies you as a so-called "web-accellerator" or other anti-social agent
        or:
      • you show a pattern of abusive activity such as downloading dozens of pages a second.
      Naviscope is a "web accellerator", not a proxy. And "web accellerators" actually make things slower.
    2. Re:Already out there by harlows_monkeys · · Score: 1
      This is an example of why my proxy notes the browser's user-agent line, and uses that for its prefetching requests.

      The article you cite is correct in asserting that web accelerators could cause problems. However, it fails to note that not all have those problems. Some are careful to limit the amount of bandwidth they use for prefetching, and to stop prefetching from pages that the user has left.

  36. What the server side can do by Anonymous Coward · · Score: 0

    OK, so there's the proxomitron. It can rewrite all incoming and outgoing data, including headers. It's weakness are the rewriting rules. They are powerful regular expressions, but languages built into the popular browsers are even more powerful.

    As a server operator, you could for example convert your entire page into a string, trivially encrypt it and send it with a small javascript wrapper that decrypts it in the browser. That makes it very hard for The Proxomitron filters to rewrite the page (and suppress img tags etc).
    Next, you have to make sure your banners have the same URLs as your ordinary images, so they can't be filtered by that. Just use (seemingly) random numbers as filenames for example. Don't use standard banner size. Be aware that GIF animations can be filtered out on the fly.
    You could also just put all your content (including banners) into one big java applet or flash file.

    If you go through all that effort to force your users to view the ads, your content better be worth it or the visitors might just go elsewhere.

    Finally, there is of course nothing stopping a clever developer to come up with a rewriting proxy like The Proxomitron that actually groks JavaScript and thus defeats this technique.

    The war can go on forever. There are infinitely more sensible things to do.

  37. It seems to me... by Cap'n+Crax · · Score: 1

    It seems to me that they would realize that anyone who is taking such measures to block ads is the type of person that would NEVER be responsive to them anyway. Trying to shove them down people's throats just seems, um, offensive.

    --
    PK: 09F911029D74E35BD84156C5635688C0
    1. Re:It seems to me... by Anonymous Coward · · Score: 0

      True. Easy solution too, don't give free content to non-buying folks, it makes sense.

    2. Re:It seems to me... by rmgrotkierii · · Score: 1

      The logical fails there.

      If it's "free" then noone has to "buy" it and just take it.

      --
      Reality is for those who can't face Science Fiction.
  38. The server software can do it by Anonymous Coward · · Score: 0

    No scripting required - the server can send partial HTML content, including the IMG tags, then only if the same client requests and accepts the image does it continue with the rest of the HTML content.

    A less server-intensive possibility is to give some leeway and do it on a per-request basis. If a client requests several pages without any images, add a javascript popup to the next page serverd which has the warning, then refuse to server any more pages until the last page is re-loaded including images.

    I'm not professionally evil, I just pretend to be in my spare time.....

    astfgl

  39. Sometimes you can't just get stuff free... by Thomas+M+Hughes · · Score: 2

    While much of the people here seem to think that everything that is easily replicated should be free (like software), there is a question of paying for intellectual content online.

    Sure, to draw the metaphor out a bit more, if people are willing to create free software in their sparetime, other people should be willing to create free content of other sorts (ie, Slashdot for example, would be created by people who didn't get paid to do this). However, even if you decide to undertake a free software project in your spare time, usually you don't have to shoulder the cost of distribution all by yourself.

    Bandwidth costs money. The better the content, the more bandwidth it'll take. So even if you had a society where people were willing to generate all your content for free...you still have to pay for bandwidth.

    I'd imagine the people in the content business also like to get paid for their work occasionally too. Having money to eat is a good thing.

    Furthermore, all the people who say "You have a third alternative, take your business elsewhere" when presented with the option to pay for content or view ads...well, I mean sure you have that option. But you're not exactly taking any business anywhere. If you're not viewing a site's ads, you're not making them any revenue. And if you're not paying them for a subscription, again, they're still not seeing any revenue. So, by your taking your business elsewhere, you're _helping_ them, by not wasting their bandwidth and not giving anything back. Not exactly a punishment.

    Until we shed this thing we call a market economy, you're going to have to give some value back for people to even attempt to give you anything.

    1. Re:Sometimes you can't just get stuff free... by koffie · · Score: 2, Insightful

      Frankly, I can't see how you must think to be able to post like this, so let me try to explain why I see things completely differently.

      As you correctly observed, bandwidth costs money. It still costs me money, even now that thank gawd the dialup days are over, for me.

      I have always been very selective in what I download from the Internet, from back in the good old days before Mosaic. And I don't see why I should now let it drop and start downloading unwanted material. If a dot-com has a crappy business model it's their problem, not mine surely.

      Why, pray tell me, should I waste my precious bandwidth to download useless shit I never asked for? On what grounds am I obliged to download crap together with the content I am interested in?

      Thank gawd the modem days are over, bit it is still my bandwidth and it is up to me, myself and I to decide how to use it.

    2. Re:Sometimes you can't just get stuff free... by aidan64 · · Score: 1

      don't be an idiot. part of the implicit contract that you enter into with the website is that you will pay for their content by viewing their advertisment. this includes the bandwidth to download it.

      you did ask for it when you asked to get their content.

      if you use technology to see their content without also viewing the advertisments that you implicitly agreed to view to get that content, you are stealing from them. plain and simple.

      if you don't like this, stay away from that website, or pay them money to avoid the ads, if they allow this. (salon)

    3. Re:Sometimes you can't just get stuff free... by Pelerin · · Score: 1

      While many of the people who post here want information to be free as in freedom; and a small segment wants it also to be "free" as in beer, this is NOT what is making web ads less effective, because Slashdotters are not typical of the web-browsing public at large, so you are attacking the wrong target.

      I would bet you that empirically, you could easily verify that the vast majority of people who browse the web do so without blocking filters in place, and have only the vaguest notion of what Javascript is, let alone being willing and able to disable it.

      Thus the vast majority of ads are being seen. But their effectiveness is diminished. Whose fault is that?

      It better not be the fault of people who browse your pages, because if you are in business it makes no sense to blame your customers for anything. That is a stupid attitude, it goes against common sense and business sense, and it won't gain you any sales.

      Customers should be persuaded --seduced even-- into liking what you have to offer them. And it's up to you as a business, and whomever creates the ads that give you revenue, to come up with ads that seduce your customers, not repel them.

      So it is up to the content provider to make "us" want to view the ads. "We" are the consumers, your potential customers and we don't have to give you our money if we don't want to; especially if you are going to annoy us, or worse yet, use ads as a hidden way of tracking people (doubleclick anyone?)

      Morality doesn't enter the picture. Accusing your potential customers of being a bunch of freeloaders is just plain silly.

    4. Re:Sometimes you can't just get stuff free... by qa'lth · · Score: 1

      That's bullshit. Saying that you have to look at the ads is saying that a PPV channel has the right to play ads for you after you've paid to watch. I've paid for my internet, they have no right to send anything down the pipe I don't want to see - and I enforce that.

  40. Try non-offensive ads by Darth+Paul · · Score: 1
    The vast majority of banner ads show little creative talent and just plain suck, and most people have trained themselves not to look at 468x60 images.

    I find google's ads quite agreeable though. They're usually relevant and well targeted, they suck up hardly any bandwidth, and they don't trigger epileptic fits.

    Plain text is also the hardest ad format to block. Ergh, having said that, I hope the advertised don't start putting in multicolored <BLINK> tags everywhere =\

  41. Leechers suck by Jesus+IS+the+Devil · · Score: 1

    Why do so many of you think that it's fair to blocks ads and leech off someone else without compensation to them? Has this become the American way? Would it be fair if I ate at a restaurant and not paid? I mean, if you don't like the ads of a particular site, just DON'T go to there EVER again.

    It seems like people these days are so spoiled they think everything should be free, and if not, they're still entitled to rip it off.

    Comon people, it's only a minor annoyance. It's not like they're forcing you to click on the banners.

    If we all keep this up, pretty soon MOST sites are going to turn to the PAY PER VIEW model. Is this what you all want? Don't spoil the fun man.

    --

    eTrade SUCKS
    1. Re:Leechers suck by Capt.+Beyond · · Score: 1
      Would it be fair if I ate at a restaurant and not paid?


      Your analogy is wrong. It's more like, if you went to a restaurant, and they said, you must eat our liver and hot grits appetizers or else you can't eat here at all!

      It's my computer, I can choose to view images or NOT, just as I choose to turn the damn channel when tv ads are showing!

      --
      -- "Perceptions create reality. By changing your perceptions you change your reality."
    2. Re:Leechers suck by Anonymous Coward · · Score: 0

      Would it be fair if I ate at a restaurant and not paid?
      This analogy is so far from being close it's irrelevent. Would you eat at a restaurant that made you view advertisements for automobiles, books, software, porn, handhelds, moneymaking schemes, computers just before they brought out your food?

    3. Re:Leechers suck by Anonymous Coward · · Score: 0
      If we all keep this up, pretty soon MOST sites are going to turn to the PAY PER VIEW model. Is this what you all want?

      I sure hope so. Pay-per-view takes power to direct content out of the hands of advertisers, and puts it into the hands of viewers. (Which is what banner blocking software is about, too.) This is a good thing, IMO. Yeah, it'll cost me a few bucks. So what? I'd rather pay in dollars than in brain cells.

    4. Re:Leechers suck by Anonymous Coward · · Score: 0

      Excellent point. Can I have some mod points, please?

    5. Re:Leechers suck by Black+Pete · · Score: 1
      It's only a minor annoyance.

      I love that line.

      Go to http://pc.ign.com and browse around a few articles, and bask in all the advertising glory. Click-throughs, flash overlays, you name it, it's there to make your head hurt and eyes bleed.

      It's not like they're forcing you to click on the banners

      Maybe not.. but they ARE forcing me to click on the 'X' button to close the overlays, and click on secondary links to view the actual ads. Oh, and they also have some articles that are "members only". So they annoy me with all that garbage, and they expect me to become a paid member? No thanks, there's always gamesdomain.com, gamespot.com (who is actually not as annoying!), and others.

      Has this become the American way?

      I don't know. I'm not an american. So that question is irrelevant.

      It seems like people these days are so spoiled they think everything should be free

      Obviously you're new to the internet. Read up on the history. It's quite fascinating. And offensive to the business mind. *Gasp* scholars... exchanging information... for FREE??? Open source?????? The mind boggles!

  42. That only works for some sites by Eimi+Metamorphoumai · · Score: 3, Insightful

    A lot of sites really don't have anything to sell. Sure, the idea of Amazon or eBay having banner ads is a bit absurd, but news sites, opinion places, comic strips, or basically any place you go for information also needs to be able to support itself, and I really doubt /., for instance, could make a living of selling nifty t-shirts.

    --

    Visit me on #weirdness on the Galaxynet.

    1. Re:That only works for some sites by mav[LAG] · · Score: 3, Funny

      I really doubt /., for instance, could make a living of selling nifty t-shirts.

      You mean they have other sources of income??

      --
      --- Hot Shot City is particularly good.
    2. Re:That only works for some sites by mangu · · Score: 3, Insightful
      news sites, opinion places, comic strips, or basically any place you go for information also needs to be able to support itself


      Before there was an Internet, I bought newspapers, comic magazines, books, etc. We used to pay for whatever information we wanted. Of course, newspapers and magazines also got a large part, perhaps most, of their income from advertising. But it was well organized, there are separate pages for ads, you don't have to read the classified pages to get to the editorial.

      What website managers need to understand is that they have to offer value to their customers. And it's so easy. Why not offer better search engines? How often I have searched for something I wanted to buy, by poring through page after page of Altavista or Google, while having to see an endless list of stupid, blinking, obtrusive ads offering something I definitely do not want to buy.

    3. Re:That only works for some sites by egburr · · Score: 5, Insightful
      Generally the price you pay for a newspaper is for the delivery, whether by hand-delivery or locked in a paper-box. Advertising pays for the paper, press, ink, and employees' salaries. This is just how online sites whould work, too.

      The difference is that online advertising is no longer something you can skim past while reading the story. Online advertising is now a very annoying, can't-be-ignored, get-in-your-face irritation. On top of that, much of the onlie advertising also tracks you to see where you saw the ad, how often you saw the ad, who you are, what other sites/ads you may be seeing, etc.

      Back when online advertising was just a simple banner ad, I never even thought about trying to block it. When online advertising starting tracking where you went and what you did, I started looking at blocking options and started a half-assed attempt at blocking. When online advertising started getting really annoying and very difficult to just ignore, I got serious about blocking the ads.

      The advertisers did it to themselves. They tried to force more upon us than they did with newspapers. They tried to gather much more information about us than they could with newspapers. (They probably are also paying less for the ads than they did with newspapers.) If they had left well enough alone and not gotten greedy, most people probably would never even have thought about blocking their ads.

      --

      Edward Burr
      Having a smoking section in a restaurant is like having a peeing section in a swimming pool.
    4. Re:That only works for some sites by Lars+T. · · Score: 1
      The difference you describe is not really that big. You can't just not see the adds in print material, you may choose to ignore them, but they still made an impression. When you turn a page, you don't know if and where you will see an add.

      The reason why the online-ads check how many people saw them / were forced to see them is that the advertisers only want to pay per person actually seeing the add. The same reason why magazines usually only get paid for ads depending on the number of subscriptions - that's why they try everything to get new and hold old subscribers. The reason why the online-ads track you is because they can ;-)

      --

      Lars T.

      To the guy who modded me down from perfect to terrible Karma - Apple haters still suck

    5. Re:That only works for some sites by mitheral · · Score: 1
      . When online advertising started getting really annoying and very difficult to just ignore, I got serious about blocking the ads.

      This is exactly why I started using the Prox. Some site I visited everyday (I think it was ZdNet) started displaying an ad that had a animation of a mouse pointer. Made the content of the page unreadable because every 3 secs my eye was drawn to the moving mouse pointer. Three days later the Prox was installed and I haven't seen an ad since. User Friendly being the only exception. They've done something recently that stops everthing but the logo from display unless I bypass my proxy. Their ads aren't annoying so I haven't bothered to fix it yet.

      sarcasm mode on
      That orginal mouse pointer ad sure was effective though.
      /sarcasm

    6. Re:That only works for some sites by phatlipmojo · · Score: 1

      You seem to have missed his point. Let me reiterate. When ads on the web were like ads in a newspaper or magazine (which is to say they didn't move around, didn't try to track you, etc., but rather just occupied their part of whatever it was you were reading, to be read or ignored at your discretion) pretty much nobody was trying to block them.
      The number of pageviews from discreet hosts tallied by the site can suffice as an analog of subscription data. Anything else is too much, and will result in my attempting to block it. I'm not opposed to advertising. I'm just opposed to invasive, ridiculous advertising that tries to track me and further profit from the sale of data about me--I gave them no permission for such.

      --

      Nice things are nicer than nasty ones.
    7. Re:That only works for some sites by Lars+T. · · Score: 1

      Actually many people tried to block them, mostly because they had slow connections.

      --

      Lars T.

      To the guy who modded me down from perfect to terrible Karma - Apple haters still suck

    8. Re:That only works for some sites by Bongo · · Score: 2, Insightful

      The advertisers did it to themselves. They tried to force more upon us than they did with newspapers. They tried to gather much more information about us than they could with newspapers. (They probably are also paying less for the ads than they did with newspapers.) If they had left well enough alone and not gotten greedy, most people probably would never even have thought about blocking their ads.

      I really agree with this--online adverts are pushing too hard. Like a pushy salesman in a shop--you just get fed up and leave.

      I use some software that's "ad-ware" (Eudora, Opera) and it really doesn't bother me. The ad is confined to a window region and doesn't animate much.

      But imagine what it would be like to watch tv and have ads appear overlayed over the program you're watching, or in boxes that pop up and cover half the screen in the middle of a moving scene.... it would drive everyone nuts, and that's what online ads are doing.

    9. Re:That only works for some sites by maxpublic · · Score: 1

      I don't mind banner ads at all and don't block the ad itself (although I do block any attempts the ad might make to track or gather information about me).

      The most inoffensive banner ad system I've seen has to be in an app, not a web site: Opera. I've been using the browser for a year now and the ads in the upper right almost never get annoying. They don't flash, pop up windows, pull stupid animation tricks or whatnot, and roll over only once every 5 minutes or so.

      Because the ads in Opera are so inoffensive, I can actually *remember* the most recent half-dozen or so that I've seen displayed over the last month. And I've actually clicked on a couple of them, which I can't remember doing on a website for years.

      Maybe these businesses should take a look at how Opera does it and see where a successful strategy might actually be employed where people aren't scrambling to block their advertising schemes.

      Max

      --
      My god carries a hammer. Your god died nailed to a tree. Any questions?
    10. Re:That only works for some sites by egburr · · Score: 2
      You can't just not see the adds in print material

      Actually, to the point that I tune them out, for all intents and purposes I really don't see them.

      In college, I worked for the school newspaper and attended meetings with the editors and management. Despite many ads in the paper, I almost missed getting my senior yearbook picture taken (what saved me was that the pictures were being taken in the same room I was working in). When some questions came up about it from other people, and this was discussed at one of the meetings, I had to say that even though I read the paper every day I had never seen any of the ads announcing the pictures.

      The entire staff at the meeting were flabbergasted, and the advertising people were upset. Over a couple years, I had learned the general layout of the paper, and knew where stories and ads were located on the pages. I also completely skipped entire sections because I could tell they were not stories just from a glance. I don't know what all happened with the paper as a result of that. I do know a couple makeup photo sessions were scheduled.

      Physically, yes I did "see" the ads; the light reflecting off the ads did hit my retinas. I, however, never "saw" them in any useful meaning of the word. When I'm particularly bored, I occasionally glance through the ads just to see if there's anything interesting. Otherwise, they might as well not even exist.

      Online ads really aren't all that much different. It's only when I'm suddenly having to close extra windows or to click through ads to get to the link I thought I was going directly to, or when an ad loads immediately but the page waits 20 seconds to load, that's when I begin to notice the ads. When I notice the ads because of this behavior, the companies and products being advertised do get my attention, but as a negative experience that in no way gets me thinking about purchasing anything.

      --

      Edward Burr
      Having a smoking section in a restaurant is like having a peeing section in a swimming pool.
    11. Re:That only works for some sites by Electrum · · Score: 1
      How often I have searched for something I wanted to buy, by poring through page after page of Altavista or Google, while having to see an endless list of stupid, blinking, obtrusive ads


      Google doesn't have blinking, obtrusive ads, and to my knowledge, it never has had them. All of Google's ads are placed neatly on the page, and are easily distinguishable from the regular search results. That's just one of the many reasons why Google rocks.

    12. Re:That only works for some sites by Secret+Coward · · Score: 1
      The advertisers did it to themselves. They tried to force more upon us than they did with newspapers. They tried to gather much more information about us than they could with newspapers.

      This is exactly why I started blocking ads (only from certain companies though). I also never click on an ad for the same reason.

    13. Re:That only works for some sites by hawk · · Score: 2
      >But imagine what it would be like to watch tv and have ads appear
      >overlayed over the program you're watching, or in boxes that pop up
      >and cover half the screen in the middle of a moving scene....


      Not to mention having to clean up all the ones that accumulate behind it . . .


      :)


      hawk

  43. What about ad blocking software that... by frleong · · Score: 2, Insightful

    downloads the ad anyway, but directs the browser to skip the image? The ad would still be useless, at the cost of bandwidth. I'm sure that no web server can detect this trick.

    --
    ¦ ©® ±
  44. Which browser? by mangu · · Score: 1
    ...all of my assumptions are based on having a sane browser...


    I thought SANE only did scanners.

  45. Opera/Mozilla/whatever image disabling? by D+Anderson+n'Swaart · · Score: 2
    • "...it enables the Web server to establish contact with a surfer's browser and then count the number of ads displayed on a screen."

    If I hit "G" in Opera, every image on the page disappears. Yeah, all the nice ones like the picture of the foot, the mainboard, the greenback, the Apple logo...but also the "How many different development tools do you use? Click here" SourceForge banner ad up the top. If a site is well designed like slashdot (and I'll get a few flames on that no doubt) and has the alt= attribute set in the <img> tag, I can turn images off and still see "It's funny. Laugh." and "Technology" etc instead. Of course, this is hopeless for some sites, like AnandTech (which looks great with images turned on, but I think is poorly designed nonetheless), and sites where you want to see the pretty pictures (I'm thinking of news sites like BBC News; I don't know about you :P), and it also tends to be quite pointless in terms of blocking ads because it's rather like executing fifty people because you know one of them is a death row escapee, but I just thought I'd mention it, because it seems that this software would prevent you from even choosing to turn all images off in your browser. Frankly, I'd like to know how they do this considering the many different browser types out there, but I presume they can and do, using Java probably. If any web designers can enlighten me, please do.

    My question is, how much right does a site have to tell me that I may not turn off images altogether? Technically I am not even blocking the ads; I am simply choosing to ignore all the <img src=""> on a site, and instead am displaying the <img alt="">, which prevents me from downloading the image itself. There's still a little box indicating an image, with "Click here" inside it if it's an ad. Does that count? It also seems ridiculous that a site can penalise you based on what browser you choose to view it with, because text-based browsers such as Lynx would surely be affected by any site running the software developed by GmbH. I realise that few people run Lynx or other text browsers any more, but it's still something to consider. I know sites need their revenue, but I can't believe they think forcing people to look at their ads is going to help. I for one already boycott sites with too many ads (although popups aren't a problem any more since I have disabled them, using Opera), and the more in-your-face an ad is, the more annoying I find it, and the less I feel inclined to click on it. As far as I can tell, this is about as in-your-face as you can get. Do sites honestly believe this is going to increase their revenue?

    1. Re:Opera/Mozilla/whatever image disabling? by Anonymous Coward · · Score: 0

      Folks who don't download images could simply be denied access. Its the choice of the web server, they're the ones doing the work to produce content. I say fair enough!

    2. Re:Opera/Mozilla/whatever image disabling? by donarb · · Score: 1
      "...any site running the software developed by GmbH."
      MediaBeam is the name of the company, not GmbH. GmbH (Gesellschaft mit beschraenkter Haftung) translates to "company with limited liability", just like here in the US where we use Inc. or LLC after the company name.

      Don
    3. Re:Opera/Mozilla/whatever image disabling? by D+Anderson+n'Swaart · · Score: 2

      Woops. Thanks for setting me straight on that without resorting to flaming :)

  46. Is this at all worthwhile? by tester13 · · Score: 2

    How many people (percentage wise) actually block ads do you think? I can't imagine that it is a significant part of the population. Any site owners care to comment?

    Additionally, I noticed that the first paragraph of the story says this blocking adds insult to injury. I'm injuring someone by merely visiting their page?

    1. Re:Is this at all worthwhile? by driftingwalrus · · Score: 1

      I honestly don't know how many people use ad-blocking software, but at reading this article I have no installed it. It's a war, and they'll lose.

      --
      Paul Anderson
      "I drank WHAT?!" -- Socrates
  47. Easy to do... by camusflage · · Score: 2

    Can they really distinguish this from a remote ad server that just isn't responding?

    You betcha. Two ways off the top of my head, one client side, one server side (assuming you serve your own ads). The first, client side, was actually done by hotornot.com for a while. Basically, if the picture wasn't found, it would dump to the next page. This was done in javascript. On the server side, it gets a bit trickier, as you need to wait to finish sending the HTML until after you've received the request for the ad. If the browser doesn't request it, insert a meta-refresh to your "bad user" page.

    --
    The truth about Scientology, Xenu, and you: Operation Clambake
  48. Or... by athmanb · · Score: 2, Insightful

    Or they're running log analyzing software on both the web page and the ad server. When a client requests more HTML pages than ads, he's obviously using a blocker software.

    However, such a software can easily be countered by loading ads and then not displaying them, which would hurt online advertising much more than today's blockers...

    1. Re:Or... by malkavian · · Score: 2

      Or do a quick bit of code that analyses the return status of the ad. If it's not a valid download/partial download, then the cgi returns the 'freeloader' page rather than the normal content.

      Malk

  49. Oh RIGHT... by Anonymous Coward · · Score: 5, Insightful

    So, now, according to YOU, the peer-to-peer free flow of information THAT IS THE INTERNET (and had been for 20+ years) is suddenly "leeching" because some loser dot-bomb can't think of a real way to make money? Give me a break.

    I don't recall Sunsite or Tsx-11 forcing ascii-ads down our throats in the FTP banner back in '93. I don't recall Tim Berners-Lee pining for an internet full of banner ads and griping about "leeches". I don't recall seeing the official DOD document subsection about preventing "leechers".

    The usual mantra that originates from the dot-bombers, which you so aptly seem to parrot here, is that if you somehow block ads you are then "stealing" from the web site.

    Excuse me? I pay for MY end of the pipe. I pay for the packets going in and out of MY end of the internet...are the dot-bombers going to pay ME for their use of my bandwidth to broadcast crap? Oh, didn't think so...the shoe is on the other foot now. Most spammers scuttle away like roaches when you say this to them, too.

    Here's a newsflash: despite the best and worst efforts of dot-bombers, the Internet IS NOT LIKE TELEVISION. This is a peer-to-peer network we all share in. DON'T LIKE IT? THEN CLOSE UP SHOP AND SET UP ON AOL INSTEAD OF GRIPING ABOUT INTERNET "LEECHERS". If you want to force ads down the throats of the clueless in a server-based environment, AOL and MSN are designed for you...but not the Internet.

    (We put up with 4 years of dot-bomb hyperbole and BS, and now we have to put up with another 4 of the former dot-bombers griping about how it was everyone else's fault they didn't make any money.)

    1. Re:Oh RIGHT... by bilsaysthis · · Score: 1

      Newsflash: /. is ad-supported and you read /. You probably want CmdrTaco and crew to keep the site going, eh? Newsflash: $$$ are required for this.

    2. Re:Oh RIGHT... by Anonymous Coward · · Score: 0

      Well said

    3. Re:Oh RIGHT... by Jesus+IS+the+Devil · · Score: 1

      So, now, according to YOU, the peer-to-peer free flow of information THAT IS THE INTERNET (and had been for 20+ years) is suddenly "leeching" because some loser dot-bomb can't think of a real way to make money? Give me a break.

      For-profit sites and non-profit sites can exist simultaneously on this internet can't they? Just because lots of sites are going the ad-revenue direction doesn't mean the pre-94 sites can't exist anymore. Just stick to those and don't visit anything else then if that's how you feel about ads.

      Excuse me? I pay for MY end of the pipe. I pay for the packets going in and out of MY end of the internet...are the dot-bombers going to pay ME for their use of my bandwidth to broadcast crap? Oh, didn't think so...the shoe is on the other foot now. Most spammers scuttle away like roaches when you say this to them, too.

      Hey first of all YOU requested the damn page from their site. With the usage of their bandwidth, maintenance, content, and hard work don't you think it's fair you view a banner from them? It's not like you turn on your computer and they're there forcing ads down your throat. Damn what are you thinking?

      Here's a newsflash: despite the best and worst efforts of dot-bombers, the Internet IS NOT LIKE TELEVISION. This is a peer-to-peer network we all share in. DON'T LIKE IT? THEN CLOSE UP SHOP AND SET UP ON AOL INSTEAD OF GRIPING ABOUT INTERNET "LEECHERS". If you want to force ads down the throats of the clueless in a server-based environment, AOL and MSN are designed for you...but not the Internet.

      And with that same logic, why don't you crawl back into your blackhole of pre-'94 and stick to those ascii websites, irc, usenet, and gopher? And while you're at it un-install your netscape/ie and use lynx once more how about that? * Note I'm not flaming irc/usenet/gopher/lynx. I love many of those. Just telling this guy how senseless his logic is.

      --

      eTrade SUCKS
    4. Re:Oh RIGHT... by maxpublic · · Score: 1

      There's nothing senseless about his logic at all. These sites decide, on their own, to offer up their content for free. No one held a gun to their head, no one bludgeoned them into providing a free service. They had the right and the choice to require payment for their services and opted not to.

      That's the business model that these sites decided to follow. Don't ask for money, use advertising revenue instead. To argue that people who use the site are somehow 'freeloaders' if they block the ads, that there's an ethical argument to be made that somehow a person is morally bereft if they block ads, is just plain ludicrous. No, worse: it's laughable. Only a dot-bomber, or someone who invested in a dot-bomb, could argue in this fashion and not sound like a total idiot to themselves.

      Economics 101. Most community colleges offer courses on the cheap. Take it and find out how *real* capitalism functions. If the business model doesn't work it has nothing to do with the *consumers* and everything to do with the *model*. Unless you're one of those whiners who lost a bucket-load of cash on a fool's dot-bomb investment.

      Max

      --
      My god carries a hammer. Your god died nailed to a tree. Any questions?
    5. Re:Oh RIGHT... by Jesus+IS+the+Devil · · Score: 1

      And the surfers come to those sites on their own volition. Nobody shoved it down their throats to visit thse sites.

      And as your logic points out, they have a right and the choice to require payment for their services, if they determine that you are not giving anything back (since you're blocking ads). So what are we fighting about?

      Also, insinuating that I must be a dot-bomber shows how laughable your argument is. I've not said a thing about who or what I am, nor have I stated where I've been. To jump to such a conclusion out of the blue is kind of ridiculous don't you think?

      Lastly, about your economics 101. Perhaps you should re-take it since it's obvious you didn't pass (hey if you can insult me I can insult you too). This new software is there to "revise" the model so that what doesn't work very well can be made to work better. What is wrong with that? And since when did capitalism not have anything to do with the *consumer*? You must not be a day over 11 to be making such a ludicrous statement.

      --

      eTrade SUCKS
    6. Re:Oh RIGHT... by maxpublic · · Score: 1

      The consumer is never at fault if the model doesn't work; the model itself is. That's fundamental to capitalism. Good models result in a business that flourishes, bad models result in businesses that go bankrupt.

      If the ad-revenue model doesn't work because consumers are blocking the ads, the onus doesn't lie on the consumer but rather the model. Eventually the model will be abandoned if it isn't profitable, or the businesses that can't adapt will go under. It's as simple as that.

      There isn't a moral argument to be made here. None whatsoever. Unless and until a site posts in big bold letters on the front page 'you must view our ads if you want to use our service' no blame can be laid upon those that block the ads.

      Max

      --
      My god carries a hammer. Your god died nailed to a tree. Any questions?
    7. Re:Oh RIGHT... by Jesus+IS+the+Devil · · Score: 1

      That is WHY such software is being made!!! Because profit margins are not being fully utilized.

      There isn't a moral argument to be made here. None whatsoever. Unless and until a site posts in big bold letters on the front page 'you must view our ads if you want to use our service' no blame can be laid upon those that block the ads.

      Really? Restaurants don't put up big signs saying you must pay if you eat. No moral argument there either right? Look, when you go to a site and it's got banners, you KNOW full-well their source of income is from the advertisers paying for eyeballs. Just like someone going into a restaurant. Who really thinks it's going to be free? When you deny them of this advertising you are ripping them off. When companies rip you off don't you get mad? Well don't they have a right to get mad too?

      Talk about narcisism.

      --

      eTrade SUCKS
    8. Re:Oh RIGHT... by maxpublic · · Score: 1

      You just aren't getting it, are you? If the model doesn't work it'll be changed.

      THAT'S JUST FINE. THAT'S HOW CAPITALISM WORKS.

      Morality has nothing to do with it, except somewhere in that delusional brain of yours.

      Max

      --
      My god carries a hammer. Your god died nailed to a tree. Any questions?
  50. Geeks fight, others watch by YKnot · · Score: 2

    While the interested geeks develop anti-content-blocker schemes, MediaBeam realized what it's really about: The masses want "free" content. The effort, which is necessary to fool the webserver into thinking that ads are shown while in reality they are cleverly redirected to the bitbucket, is bigger than just downloading and suffering through them. Is websurfing really fun when you always have to question wether that page you see is really the one you wanted? Or is it just the heavily abbreviated version for ad-blockers? Why aren't people complaining about this slow server? Maybe it's fast for them cause they don't block the ads? Nah, that can't be it. My ad-blocker behaves just like the real browser, it just doesn't show the ads. Or are they using new methods of detection and my blocker doesn't fool them anymore? Guess I'll have to upgrade. Again.

    1. Re:Geeks fight, others watch by Anonymous Coward · · Score: 1, Insightful
      The effort, which is necessary to fool the webserver into thinking that ads are shown while in reality they are cleverly redirected to the bitbucket, is bigger than just downloading and suffering through them.

      This is false.

      There will be considerable effort on the part of the first (few) programmer(s) who figure out how to circumvent whatever methods are being used, and who write next-generation ad-blocking software that works around these new restrictions.

      There will be minimal effort on the part of the millions of ad-blocking web users. They will simply need to track down, download and install the latest version of their favorite ad-blocking software in order to take advantage of these capabilities.

      On the Internet, if a single person has solved a problem, then everybody has solved that problem along with him. The cost of communicating the solution to everyone is asymptotically zero.

    2. Re:Geeks fight, others watch by YKnot · · Score: 2

      The "one programmer, many users" assumption works only if the evolutionary steps don't occur too often and people have a fast and reliable way of detecting when it's time to upgrade. The arms race has just started and I think there are countless options for both sides, requiring considerable effort on the user side due to the necessary frequent upgrades. See "Punkbuster" for a similar situation. That, combined with the uncertainty that you might not be seeing what those see who don't block the ads, makes "normal" people shy away from joining the arms race. If you're religious about avoiding banner ads, that's a completely different story.

    3. Re:Geeks fight, others watch by Anonymous Coward · · Score: 0
      That, combined with the uncertainty that you might not be seeing what those see who don't block the ads, makes "normal" people shy away from joining the arms race.

      This is, again, false.

      It is in the best interest of the content provider to show me relevant content.

      This is to say, either I should be shown what other people are seeing, or I should be shown a very clear, unambiguous message telling me that I am missing out on certain content that other people are seeing. (Because I am blocking ads, or whatever.)

      If I am misled, shown useless, false, or irrelevant content, then I will go away to a competing website, and likely never return.

      Why would a content provider drive away its potential customers by acting like a jackass?

      That makes no sense, business-wise, ethically, or logically.

      P.S. The frequent update problem is easily solved by implementing auto-updating software. Windows Media Player, Internet Explorer, Apple Quicktime, etc., are just a few examples of software that does this. You download the app once, and when it's time to upgrade, the app does it for you in the background. Problem solved!

    4. Re:Geeks fight, others watch by Legion303 · · Score: 1
      The "one programmer, many users" assumption works only if the evolutionary steps don't occur too often and people have a fast and reliable way of detecting when it's time to upgrade.

      I imagine the best way to detect when you need to upgrade your ad-blocking software is when some ads start to get through it. When that happens, I go check for an update to either the software or the block list (depending on what software I'm using at the time)

      -Legion

    5. Re:Geeks fight, others watch by YKnot · · Score: 2

      The content provider might show reduced content to ad-blocking websurfers. At first, it looks like a stupid idea to present yourself in a worse way than you are capable of, but think about it: The content is what people want. Not giving the content away for free is what the content provider wants. By not delivering the full product to ad-blockers, these websurfers miss out on what they want, while the content provider still gives an overview of the content. This isn't a new scheme at all: Some games render themselves more and more useless the further you get into the game when they detect a copied cd. Some applications are known to produce false data if they reliably detect a copyright violation. This sort of selective product quality takes reliability away, and that is what many people will not accept "just to remove the ads".

    6. Re:Geeks fight, others watch by YKnot · · Score: 2

      If I am misled, shown useless, false, or irrelevant content, then I will go away to a competing website, and likely never return.
      Why would a content provider drive away its potential customers by acting like a jackass?

      So what, if all the ad-blocking jackasses leave for the competitor's site? They'll cost the competitor's money for bandwith and give him nothing in return. A content provider who wants to reach as many people as possible, no matter what the costs are, wouldn't think about implementing ad-blocker-detection software in the first place.

    7. Re:Geeks fight, others watch by Anonymous Coward · · Score: 0
      The content provider might show reduced content to ad-blocking websurfers.

      This is already being done.

      Salon publishes certain soft porn related op-ed pieces, articles, etc, that only Salon Premium members can read in full.

      Non-members can read the first page (without any soft porn pictures, usually), and when they click Next or Page 2, they are told that in order to read more, they must become Salon Premium members, so Please Click Here to Subscribe.

      Done in this responsible manner, I am not against websites withholding content. They clearly outline the value proposition they find acceptable, and it is up to the reader to accept or reject it.

      On the other hand, if a web site stealthily offers me worse content than it offers to other readers, and the "worse" content still fulfills my needs (I only need a little bit of detail, or I was only looking to be entertained for a little while, or whatever) what do I care? I am still getting what I want, be it little bit of detail or little bit of entertainment.

      If I need more detail, or if I need to be entertained further, I go to a competing website.

      If I am given false information, and then if that false information causes me monetary loss or emotional distress, I can then SUE the website for maximum damages. Don't forget that we happen to live in the most litigous nation in the universe. Websites would never dare set themselves up for something like this.

      So at the end of the day, the most that websites could do is show a preview, and tell readers that in order to see more, they have to pay somehow. This is exactly what porn sites have been doing for the past 5 years. What's new?

    8. Re:Geeks fight, others watch by Anonymous Coward · · Score: 0
      A content provider who wants to reach as many people as possible, no matter what the costs are, wouldn't think about implementing ad-blocker-detection software in the first place.

      Or maybe the content provider who is not implementing ad-blocker-detection software has chosen to act in this manner in realization of a simple fact.

      Those who have installed ad-blocking software have done so because they hate ads with a passion that other, more normal web users don't have. These people would not have clicked on any ads even if we forcibly showed them all the ads. Therefore, showing ads to these people (who passionately hate them) will bring down clickthrough and revenue conversion rates, which are already abysmally low.

      Therefore, any website owner who wants to increase his clickthrough rates should shy away from ad-blocker-detection software. The mantra shold be to show ads to people who want to see them and who would click on them. Showing ads to any old Joe is a sure way to decrease your clickthrough and revenue conversion rates. And that's what advertisers look at when they decide to advertise or not.

  51. analogy by motherhead · · Score: 1

    Does anyone else besides me see the parallel between ad serving and ad blocking software and the anchient struggle between ballistics versus fortification?

    The only thing that bothers me is ballistics usually has the upper hand. Then again try telling that to the engineers that maintain Mt. Cheyenne. (You know... because ad serving scum are the enemies of liberty... and ad blocking software is the good hearted men and women that defend freedom, justice... and the American Way (Ouch, metaphor gives me headaches.)

  52. etc/hosts is your friend by DrSkwid · · Score: 3, Interesting

    here's what I do :

    I maintain DNS entries of the sites I wish not to receive ads from and map them onto a local machine.

    I then configure Apache to respond to the requests using mod_perl to strip the paths from the URI and leave me with just the filename.

    I then return an image OF MY CHOOSING to be displayed in my browser. I have set of images to choose from with pictures made in various banner sizes from anime / pr0n / abstract / auto-texture generating scripts / mandlebrots / swf files I have made.

    It makes online life more interesting and colourful.

    By logging your outgoing requests you can even change the graphics for programs like icq & other banner toting stuff.

    Some places defeat my plan by using their own hostname (images.slashdot.com is one example) or by using IP addresses. I plan to build an Apache proxy module for these but haven't got round to it yet.

    Most of the websites I visit are return visits anyway so you soon get a feel for the ways the ad system works.

    By using a DNS & Proxy I can configure not just my workstation but my whoel LAN so it becomes OS/Browser agnostic.

    M

    --
    There are places where the networks are not touching,and there are places where they are-Boeing's Lori Gunter
    1. Re:etc/hosts is your friend by asphyxiaa · · Score: 0


      I do something similar, however, I use a 1x1 transparent GIF, which I think looks better.. On sites like Slashdot, where the banner at the top is just on top of a single colored background, it works great.. all I see is pure black. However, on sites with like multiple different layers of colors, I will see an empty box where the banner is, in a color that doesnt match the top-most color..

      --

  53. Paper does not consume a public resource by twitter · · Score: 2, Insightful
    Web ads use a public net for private profit. When some poor MSIE serf hits some advert bloated junk site, and is forced to look at all of it, the junk site annoys me too! All of that crap gets in the way of you and me getting to real content. That the profit may be small or not exist does not change the intent. The intent is to make the web resemble a push media and it's doomed to fail.

    It may be argued that trees are a public resource as well, but most news print comes from recycled paper or stands that were planted for the purpose. It's hard to argue that trees privatly planted are a public resource.

    This stupid stuff will never work. Blocking or otherwise anoying users will just reduce the number of users the publication has. No readers makes for no revenue. Publications that depend on advert revenue will have to adjust to the world as it is. The rest of us will have to find other ways of getting information if those publications fail.

    --

    Friends don't help friends install M$ junk.

  54. How about I give them a choice instead... by Rackemup · · Score: 2
    advising the 'free-loading' surfer that he has two choices if he wants access to the Web site's content: pay for it or be exposed to the ads.

    How about I advise the offending web site that they are one among many, and that I can view the same content somewhere else where I am not FORCED to look at ads

    You can't make me watch ads on television, or listen to them on the radio, or read them in the paper. What makes them think I should be forced to watch them on my computer screen? Any site that trys something like this will lose viewers big time.... I'm using webwasher right now. It prevents those pop-up windows from appearing on a Nimda infected web server and and it even cancels out Salon's new click-through ads (not that I read much on Salon anyway).

    Go ahead, try out your new "forced ads"... I'm ready for ya.

    1. Re:How about I give them a choice instead... by athakur999 · · Score: 1

      Because on TV, radio, and in your paper, the publisher has ALREADY been paid for that ad.

      When a company pays millions for a commercial during the Superbowl, for example, FOX/NBC/etc. get paid regardless of whether you watch them or skip them with your TIVO. By not viewing the ad, you hurt the advertiser, not the publisher.

      Web advertising generally doesn't work that way. The publisher only gets paid when the ad is seen on a per person basis. In this case, by not viewing the ad, you're hurting the publisher instead.

      --
      "People that quote themselves in their signatures bother me" - athakur999
    2. Re:How about I give them a choice instead... by Clever+Daughter · · Score: 1

      You can't make me watch ads on television, or listen to them on the radio, or read them in the paper.

      This is true, but the analogy breaks down, because while no one can force you to pay attention to TV or radio ads, you can't make them not be there. You have to expend effort, each time, to ignore them -- even if that effort consists solely of tweaking the volume knob. You have to consciously react to them each time, and you have to wait for them to be over for the music or the ball game to come back on.

      The difference here is that TV and radio ads happen over a fixed period of time and all in the same "place" -- your screen or speakers -- whereas the Web uses a totally different metaphor wherein there is no fixed period of time, and wherein users "move around" at will.

      I would suggest something more on the order of a mute button for banner ads -- one that doesn't get rid of them outright, but that puts an end to any irritating flashing or bouncing back and forth that these ads might do. There's still a theoretical chance that you might click on the ad, because you can still see it, and if the animation annoys you then you probably wouldn't have clicked on the ad if it had been active anyway.

  55. Let's see them block this... by Anonymous Coward · · Score: 2, Funny

    127.0.0.1 ad-adex3.flycast.com
    127.0.0.1 ad-flow.com
    127.0.0.1 ad.doubleclick.net
    127.0.0.1 ad2.peel.com
    127.0.0.1 ad.iwin.com
    127.0.0.1 adbureau.net
    127.0.0.1 admonitor.net
    127.0.0.1 adcontroller.unicast.com
    127.0.0.1 ads.1bn.org
    127.0.0.1 ads.gamespy.com
    127.0.0.1 ads20.focalink.com
    127.0.0.1 ads.x10.com
    127.0.0.1 clubchance.com
    127.0.0.1 fastclick.net
    127.0.0.1 focalink.com
    127.0.0.1 friendfinder.com
    127.0.0.1 hits2you.hypermart.net
    127.0.0.1 ln.doublclick.net
    127.0.0.1 m.doubleclick.net
    127.0.0.1 media.fastclick.net
    127.0.0.1 msn.com
    127.0.0.1 msnbc.com
    127.0.0.1 popups.infostart.com
    127.0.0.1 servedby.advertising.com
    127.0.0.1 x10.com

    1. Re:Let's see them block this... by Anonymous Coward · · Score: 0

      I think that I shall bypass thee by using an IP

      I do the same thing as you mention, but I'm seeing raw ip creep into the scene.

    2. Re:Let's see them block this... by Anonymous Coward · · Score: 0

      you forgot images.slashdot.org

      sure you lose all the icons for each section, but it kills those ridiculous banners.

      H4ckeRs g0T JOO down?
      TANK I NEED AN EXIT FAST
      ancient map or open source salvation?

      http://images.slashdot.org/cgi-bin/adlog.pl

  56. how about this by Apreche · · Score: 1, Interesting

    What if you download the picture, then don't just display it on the screen. Or turn java/javascript or whatever this technology uses off.
    Isn't their some kind of law about this stuff? I mean software like that is technically "hacking" my computer. It's trying to undermine software I have installed. I guess it's ok to hack other people's computers when it is in businesses best interest, and not other times.

    --
    The GeekNights podcast is going strong. Listen!
  57. Neither in spirit nor in letter by mangu · · Score: 2

    Considering that the spirit of copyright laws, as stated in Article I, Section 8, of the US Constitution, is "to promote the Progress of Science and useful Arts", then one might also assume that pop-up ads have the same purpose.

    However, the people who wrote that Constitution also put there the exact means by which that progress would be promoted: "by securing for limited Times to Authors and Inventors the exclusive Rights to their respective Writings and Discoveries". There's no mention of advertising anywhere. And there's no provision for forcing anyone to read what they don't want to read. You can rip off some pages of a book and burn them if you want to. You can use a machine or a software to do that. The only restriction is that you cannot copy and distribute a writing within the limited time when the copyright is in force, without permission from the author.

  58. Bloody b.asterds by t_allardyce · · Score: 1

    you'd think that they just put on a nice smiley face in front of the public and then when no-one was looking: "bah hahhahhahaha, now we will make those mortals pay!"

    whatever happened to sayings like: "the customer is always right", and "don't piss-off a customer before they've handed over the money (or until the money-back runs out)." and "If you make the customer happy, they might come back for more" I think they've been replaced with: "if(customer_has_money, GetCustomerMoneyAtAllCosts)" and "while(customer_looking) insert_adverts"

    what if we could get ISP's to install ad-filtering proxies on their hardware that would still download the banner ad (and send it to dev/null) thus registering a hit with the advertisers, while not sending the advert (or the html for it) to the customer. Obviously this has to be an optional opt-in thing where the customer updates their browser proxy settings, that will keep the advertisers at bay. (at eBay! rofl... ok, no, sorry that wasn't funny, sorry :( )

    --
    This comment does not represent the views or opinions of the user.
  59. War of the Mind escalates by heretic108 · · Score: 1

    This is a war, and the territory in dispute is the conscious awareness of each and every web surfer.

    The individual user strives to maintain a sense of personal identity, privacy, liberty and mental space, amidst an armada of mind invaders that seek to influence him/her otherwise.
    On the other hand, the advertiser seeks to entice such individual to sell pieces of his/her consciousness in return for information, entertainment, software, even a pittance of money (eg AllAdvantage, Spedia and other 'pay to surf' schemes).

    All these sold-off fragments of individual consciousness, aggregated together, amount to staggering amounts of collective volition that can be sold to the highest bidder, and focused into immense financial, policital, even military power.

    In every war, there is an arms race. In this case, the advertiser has fought back with a new weapon that withholds the bait unless the surfer once again surrenders a piece of consciousness.

    But just wait for the new generation of ad-blockers. For instance, smart proxies with built-in browser engines, that will obediently request all and every pop-up, and pretend the popup is showing, but actually doing nothing.
    Or for a dumber approach, a program that shifts all browser windows except the active one off to the edge of the screen. And so on.

    Then, watch for the advertisers fighting back. Perhaps Microsoft might install more spyware into Windows XP to test for and disable anti-ad software. Hey, if/when the SSSCA gets passed, then anything goes. All the ad-delivery software can then be built into the proprietary, security-protected layers, making it an offense to try to turn off.

    Fight back, dear people, fight back. Your awareness is your greatest asset - please don't sell it off cheaply.

    --
    -- In the beginning was the WORD, and the WORD was UNSIGNED, and the main(){} was without form and void...
  60. Why banner ads don't work. by Penguinoflight · · Score: 2, Insightful

    The problem with banner ads is they're messed up. You shouldn't be responsible for making people click on banner ads, they should be good enough for people to click on them out of curiosity.

    Just for a few of the people who don't know how banner ads work, let me explain: Back when banner ads used to work (they really did make money once), they were run on a per-veiw basis, not per-click. When I got started advertising on my site (about 1998), per-click, and per-sale were becoming popular.

    Now here's the problem with either of those methods: People don't really care how creative the ads are, so everyone gets bored, and the sites running the ads go broke, while the advertiser doesn't get many ads, but at least they aren't loosing anything.

    Per view is a better way IMHO, because the ads seem to be less boring, and the sites make more money. In turn the advertiser will get more people because the ads are less boring. Putting this back into the topic... People might not block ads if they were less boring.

    --
    "And we have seen and do testify that the Father sent the Son to be the Savior of the World"
    1 John 4:14
  61. What they should do ... by Anonymous Coward · · Score: 1, Funny

    What they should do is send the entire page as one huge gif, png or jpg and have a big image map

  62. Mozilla control by mrBlond · · Score: 1
    I surf with JS and Java disabled. I make Mozilla ask me before accepting any cookies or images. There are only 5 sites that I allow cookies from, and I always killfile ad* image servers.

    About 5 hours ago I went to a site than required cookies to view the content, I closed the browser window and went looking for the info somehwere else instead of mucking with my cookie permissions.

    If people don't start boycotting sites that want to force you to browse according to their rules, things like this will simply grow.

    --
    CowboyNeal for president!
    "Hit any user to continue."
  63. They could.. kind of do this with cookies.. by mindstrm · · Score: 2

    Or javascript... but noting is stopping a proxy from making them THINK they downloaded it, but block it.

    Really... you know... who cares.

    Sites that are *free*, that don't use my content or efforts to make the site work (as opposed to say, napster or CDDB or slashdot...)... I couldn't care less if they put up banners, or want to 'force' me to read their banners.
    For the most part, I don't *care* if there is a simple, normal banner (a-la slashdot). They don't bother me one bit.

    I vote with my money...

    And you know what else? Those x-10 pop-under ads? As much as they annoyed me.. they DO Make me want to go buy some of those cameras..

  64. Doesn't require Javascript or ActiveX by Isofarro · · Score: 4, Insightful

    The only way I can think of doing this is by embedding some JavaScript that checks to see if the page has been rewritten


    Sorry, I'm being a muppet! No client side functionality is required - it can all be done using a web server module.

    Its really simple:
    • create a session for each "visitor"
    • Initialise two counters in the session - number of pages requested and number of banners requested.
    • For each page request received from this visitor, increment the page counter
    • For each banner ad object (image, applet, flash, activeX etc) increment the banner counter
    • Every now and again, divide on by the other.
    • If the ratio is not good enough, warn user.


    Since each banner ad needs to be HTTP requested from the server - and proxies tend to remove instances of <img src="bannerad.gif"... with their own blank image, its a doddle to track.
    1. Re:Doesn't require Javascript or ActiveX by Anonymous Coward · · Score: 0

      Sorry, dude, won't work. Someone will write a proxomitron filter that changes the image size to 1x1 pixel. The download of the ad will take up bandwidth, sure, but being displayed at 1x1 pixel it won't really be annoying.
      OTOH, it would be sooo easy to write a perl script that filters the HTML and spawns another process to download the ads and send them to /dev/null...

    2. Re:Doesn't require Javascript or ActiveX by dasunt · · Score: 3, Interesting


      Under windows, I have a modified hosts file that blocks out the more common ad servers. Since images are rather ugly, I use eDexter to display a blank image for me.


      So, imagine the simple version of this (assuming I have javascript turned on, which is wrong, and assuming I use IE instead of Opera as my browser).


      The IE script (which probably breaks other browsers, but...) checks to see if the ad image has arrived. It finds one. Maybe it goes further and checks to see if the image came from the ad server. It asks windows what's the ip addy is, and windows tells it 127.0.0.1, so everything checks out.


      As long as it relies on simple ad banners, it fails. More complicated scripts could present a challenge, but a challenge that will be quickly solved if the ad checker becomes widespread.


      On the other hand, thanks. Forgot that I haven't installed eDexter on the laptop yet. Need to conserve my 33.6k PCMIA modem's bandwidth, y'know.

    3. Re:Doesn't require Javascript or ActiveX by ncc74656 · · Score: 2
      Since each banner ad needs to be HTTP requested from the server - and proxies tend to remove instances of <img src="bannerad.gif"... with their own blank image, its a doddle to track.
      That'll work for maybe two seconds...right now, my proxy redirects requests for known banners to a 1-pixel transparent GIF on my server, but it shouldn't be too big a deal to set it instead to download the fscking banner and funnel it to /dev/null. The ad still doesn't show up on my screen, and their scheme to ram the "punch the monkey and win $50" banner down my throat is foiled.
      --
      20 January 2017: the End of an Error.
    4. Re:Doesn't require Javascript or ActiveX by Tet · · Score: 2
      it shouldn't be too big a deal to set it instead to download the fscking banner and funnel it to /dev/null.


      Except for those outside the USA who typically have to pay for bandwidth by the minute. I'm one of the lucky few with unmetered access, but for everyone else, not downloading banners actually saves money, as well as making for a less irritating browsing experience...

      --
      "The invisible and the non-existent look very much alike." -- Delos B. McKown
    5. Re:Doesn't require Javascript or ActiveX by netsharc · · Score: 0

      But the idea of some of these proxy servers (well at least WebWasher, the one I use and know) is also to speed up browsing by not downloading the advert images, which take up bandwidth. What if the proxy sends the HTTP request but then cuts the connection, ignoring whatever the ad server wanted to send to it.. but will the bounced packets create extra traffic around routers, I don't know TCP/IP that well..

      --
      What time is it/will be over there? Check with my iPhone app!
    6. Re:Doesn't require Javascript or ActiveX by Eil · · Score: 2


      Right, for many of us (modem users included, meaning me), downloading a 400k animating gif banner ad and then tossing it into /dev/null completely defeats the purpose of having an anti-ad proxy.

  65. This is one way it can be done by the_mind_ · · Score: 2, Informative

    The evil marketing guy forces the webdesigner to put a banner on the top of the page. The contents of the page is in a IFRAME tag.
    If a browser requests the IFRAME src but not the banner, the server can send a page that says that you have to view the banner or pay.

    This is only one way of doing it.
    Java script and VB script can do even more marketing things.

    And the marketing guy's don't care about lynx (and not even mozilla) beacuse none of their target audience uses lynx anyway.

    --
    You feel sleepy. Close your eyes. The opinions stated above are yours. You cannot imagine why you ever felt otherwise.
  66. So what is wrong with paying for content... by Dog+and+Pony · · Score: 2, Insightful

    ... by for instancem, viewing ads? It isn't exactly free to host sites, especially good ones.

    Sadly, I can't stand the popups either, so I am very depressed by the fact that the advertisers didn't stick to normal banners, that would be the best choice. Doesn't really bother anyone, and if it is interesting... I click. Otherwise, I don't.

    I'm equally depressed by the sorry mofos that use filters. That is kinda like stealing. Well, I guess you think you are Robin Hood liberating the internet. No, you are lowering the quality of the internet, by driving providers out of business. By taking their stuff for free. Do you do the same in stores?

    I love free internet, and ad-free internet - but I don't demand that everyone can afford to bring you the latest news, articles or whatever it may be for free. Can you do that?

    1. Re:So what is wrong with paying for content... by purplemonkeydan · · Score: 2

      I'm equally depressed by the sorry mofos that use filters. That is kinda like stealing. Well, I guess you think you are Robin Hood liberating the internet. No, you are lowering the quality of the internet, by driving providers out of business. By taking their stuff for free. Do you do the same in stores?

      So you don't use the fast-forward button on your VCR to skip ads?

      Same thing with ad-blocking programs. I'm using my 'fast-forward' button, so to speak.

    2. Re:So what is wrong with paying for content... by Dog+and+Pony · · Score: 1

      So you don't use the fast-forward button on your VCR to skip ads?

      Is that the same thing? I thought I paid for my movie ( rental or buy ) in the store, and then they toss in some trailers to try and get me to see more movies by the same company. Some actually even see this as a service - the same people that dl trailers for new movies from the internet.

      In any case, I don't think those are ads. They are in no way included in the deal, in other words, it is not a price you are meant to pay to see the movie. That one you pay with cash instead.

      Unless you mean some other kind of movie that we don't have where I live (yet)?

    3. Re:So what is wrong with paying for content... by purplemonkeydan · · Score: 2

      I was mainly referring to the practise of taping shows off TV, and fast-forwarding the ads.

      IMO, blocking banner ads, and fast-forwarding ads on video are the same. You get an idea of what's being advertised (ALT text on banner ads) without actually seeing the ad.

    4. Re:So what is wrong with paying for content... by bnenning · · Score: 2
      Doesn't really bother anyone, and if it is interesting... I click.


      Of course by accepting and clicking on popup ads you are encouraging their further use, which will cause even more people to investigate ad blockers.


      I'm equally depressed by the sorry mofos that use filters. That is kinda like stealing.


      It is nothing like stealing. The provider makes the content publicly available, and it is my right to view all or part of it in any way I choose. Is it also stealing if I load the banner but simply ignore it? Is it stealing unless I consciously base my purchase decisions on how many banner ads I've seen for each product?

      --
      How to solve most of our problems: 1.Lots of nuclear plants. 2.Cure aging.
    5. Re:So what is wrong with paying for content... by Dog+and+Pony · · Score: 1

      ...normal banners, that would be the best choice. Doesn't really bother anyone, and if it is interesting... I click.

      If you are gonna quote, do it correctly, please.

      Of course by accepting and clicking on popup ads you are encouraging their further use, which will cause even more people to investigate ad blockers.

      See above. I don't click on popups. It is my firm beleif that banner ads would have been sufficient for the internet if people hadn't been so obstinate about trying to get rid of them. Guess what, you got popups instead then.

      it is my right to view all or part of it in any way I choose.

      Your right, given by whom? I'd say it is the content providers right to not have his page altered by anyone who views it. Which means that you should view it in the way the provider intended it. Much like the debate about the MS smart tags. One of the biggest things people were against was that they changed a content providers pages without their constent. That was evil with smart tags, but not with banner filters? I know it wasn't the only smart tag issue, but it was one major.

      Is it also stealing if I load the banner but simply ignore it?

      I'd say you've fulfilled your end of the agreement in this case. Noone can force you to buy anything just because you walk by a store on the street either. What the advertiser wants, is the chance to show you his/her product or similar. If you give them that chance, you have payed for the page you are viewing. How hard was that?

      Did that make things (or my view of them) any clearer?

    6. Re:So what is wrong with paying for content... by bnenning · · Score: 2
      If you are gonna quote, do it correctly, please.


      Sorry, it wasn't clear that you were referring to clicking on normal banners instead of popups.


      It is my firm beleif that banner ads would have been sufficient for the internet if people hadn't been so obstinate about trying to get rid of them.


      And I maintain that that's very unlikely, given the small percentage of users that use ad blockers. Even before blockers had any kind of mainstream publicity, I recall seeing articles about how banner ads were not as effective as advertisers had hoped.


      I'd say it is the content providers right to not have his page altered by anyone who views it.


      First, there is no such right. Publishers can control redistribution of their products, but not use (ignoring the DMCA for now). Second, the nature of HTML makes it fundamentally impossible to not "alter" the page as you view it.


      Much like the debate about the MS smart tags. One of the biggest things people were against was that they changed a content providers pages without their constent.


      True, and that was a bogus argument. If the end user wants to use smart tags, that should be his choice.


      Did that make things (or my view of them) any clearer?


      Yeah, I don't think we're that much in disagreement. If people would stick to simple banner ads, I probably wouldn't bother blocking them. But it's already been established that banner ads don't produce sufficient results for advertisers, so we've been sucked into the cycle of more obnoxious ads/better ad blockers.


      The fundamental problem is that online ads of any type are just not as valuable as lots of people thought they were, and in most cases are not a sufficient business model. They're going to be replaced by something else, whether it's subscriptions, micropayments, or voluntary contributions.

      --
      How to solve most of our problems: 1.Lots of nuclear plants. 2.Cure aging.
    7. Re:So what is wrong with paying for content... by driftingwalrus · · Score: 1

      Don't talk like it's our fault. The ad companies started this by going to paying by the click. They've started a war with their customers, and all the customers can do is fight back until the war is won.

      --
      Paul Anderson
      "I drank WHAT?!" -- Socrates
    8. Re:So what is wrong with paying for content... by toriver · · Score: 1
      ... by for instancem, viewing ads?

      If I view an ad, I am not paying: The advertiser is supposed to pay whomever's page I have loaded.

      I'm equally depressed by the sorry mofos that use filters. That is kinda like stealing.

      No it's not. It's like throwing the ad insert in a newspaper without looking at it. The advertisers still pay, but in the internet world they can detect that you threw it away, so they decline to pay.

      Do you do the same in stores?

      Cut out the totally flawed analogy game, already! There is nothing in the average store which can be likened to popup ads and Flash animations.

      The store wants you to buy the goods, and thus makes it easy for you to do so. A web page author should desire that people read his article, so why ruin the experience with something that takes the attention away? It's like if the store hired a troupe of acrobats to perform so that people watched them instead of looking for things to buy.

  67. Umm, seems simple enought to me... by Telek · · Score: 4, Insightful

    Most likely they just detect if the banner has been displayed. On the client side blocking software, I'm assuming, just doesn't download the banners and blocks popup windows from even oppening, so if the ads don't get loaded successfully first, don't display content. Once the server has a successful load of the ad, you can send the content.

    This of course won't stop anti-ad software from simply downloading the ad and not putting it on screen, but most blocking mechanisms just don't download the ad anyways.

    However I think that we should not use blocking software. You are getting "free as in beer" content, so you should be required to "pay" for it, in this case with your time. The servers that you are reading your pages off of have bills to pay, and the only way that most of them can do this is to serve ads. The only reason why ads have gotten so fscking annoying is because the conventional style isn't working. Why isn't it working? Because people block it. So thus the more you work against the system, the nastier it will become.

    Now seriously, how much trouble is it to read around a huge ad in the middle of your page? I'm being serious here. I have mental filtering. I just don't notice them anymore. I close popups usually before they're finished loading and even sometimes if I think the content is good I'll go and click on the ad just to give them a bit more money. Having these ads maybe adds 5% to the time required to read the article. Big whoop. Do it so that they can get paid. There is no free lunch, they have bills to pay and the least that you can do is to at least glance at the ads and sometimes click so that they can pay their bills. Because if people keep blocking then we will be forced to start physically paying to view pages, via micropayments perhaps, but we will pay because they have to pay their bills. It is much cheaper for us to just put up with the ads and that way it won't get much worse, and we won't be faced with having to pay physical cash to view the stuff that we want to view.

    People aregue about "Artists' rights" and that they should be paid for their music that you download in MP3 form. Although I agree with this, the same thing applies here. People have spent their time to write the articles that you are viewing, and they deserve your patronage to put up with the ads so that they can pay their bills.

    --

    If God gave us curiosity
    1. Re:Umm, seems simple enought to me... by decesare · · Score: 4, Interesting

      This of course won't stop anti-ad software from simply downloading the ad and not putting it on screen, but most blocking mechanisms just don't download the ad anyways



      FWIW, I think that the iCab browser for Macintosh is one of the few that I've seen that can be configured to not display images of a certain size on the page, just leaving a blank where the ad would have been. And, it comes pre-configured with a list of typical ad/banner sizes to screen out. I believe that it's a "download but don't display mechanism". Is there anything like this in Konqueror (I haven't been able to find it).



      Now seriously, how much trouble is it to read around a huge ad in the middle of your page?



      Depends on how annoying the ad is. There are two issues here: one is that the ad itself can takes up computing resources to display. Maybe those with 2GHz P4 machines don't mind this, but for those of us working with older processors, it unacceptably slows down the page display.



      The second is just how distracting the ad itself is. I'm still trying to train that "mental filtering" of which you speak to screen out images of fast-moving monkeys or flashing blue and white images that I've seen that distract from what I'm trying to read. Some of these ads have gotten so ridiculous that I can't read the page on which the ad is placed. And a concept that web marketers don't seem to grasp is that maybe people will remember a product backed by an annoying ad, but how many people will really buy that product if they negatively remember the ads for that product?

    2. Re:Umm, seems simple enought to me... by wembley+fraggle · · Score: 1
      FWIW, I think that the iCab browser for Macintosh is one of the few that I've seen that can be configured to not display images of a certain size on the page, just leaving a blank where the ad would have been. And, it comes pre-configured with a list of typical ad/banner sizes to screen out. I believe that it's a "download but don't display mechanism". Is there anything like this in Konqueror (I haven't been able to find it).
      Also, OmniWeb for Mac OSX does this. It is a really nice replacement for the MSIE that comes bundled with OSX. You also have java-script options that say things like "disable window.open unless in response to a clicked link" and such.
    3. Re:Umm, seems simple enought to me... by alecto · · Score: 2, Interesting
      Or, better yet, start retrieving the ad, and abort the connection once the server knows you've requested it, and save your bandwidth, too. This assumes separate TCP connections a la HTTP 1.0.

      By escalating the battle, the advertisers are only making more people that didn't know about it before aware that there is ad blocking software. See also RIAA vs. MP3, et al.

    4. Re:Umm, seems simple enought to me... by Skapare · · Score: 2

      I was not blocking normal banner ads. I do block annoying ads. When ads come from particular places that are annoying or clearly trying to track me, like hitbox.com, then I block them. If the ad-block defeat is only used for non-annoying ads, I won't mind. It won't have any effect on me. If you want to show me an ad so I can get my free beer, fine. But if you want to slap me in the face to get a free beer, I'm gonna duck. I'd rather just buy the beer.

      The only reason why ads have gotten so fscking annoying is because the conventional style isn't working. Why isn't it working? Because people block it.

      If the ads are being blocked, the annoying ones are being blocked, too. So that's not the reason they go to more annoying. The real reason is they want more immediate responses. Maybe you should read my other comment on this story.

      they have to pay their bills

      Well then stop the annoying crap and do normal banner ads. Use the anti-blocking on normal ads and see if that works. And don't expect immediate click throughs, because that's just not going to be where the true results are.

      --
      now we need to go OSS in diesel cars
    5. Re:Umm, seems simple enought to me... by juju2112 · · Score: 1

      The Internet was just fine before the corporations decided to pre-empt it and fill it will all these god-awful banner ads. We had a good thing, still do. We built it ourself for fun. Lots of people create web sites because they love the technology, or whatever their hobby is. Now that the dot-bomb crash has come, they think the internet is going down with them? I don't think so. With any luck, it will just go back to the way it was before they came.

    6. Re:Umm, seems simple enought to me... by Inoshiro · · Score: 2

      Mozilla also nicely will block images of certain sizes:

      IMG[height="60"][width="468"], IMG[height="60px"][width="468px"] {display: none !important;}
      IMG[height="120"][width="600"], IMG[height="120px"][width="600px"] {display: none !important;}

      Add these to userContent.css in your Mozilla profile's chrome dir. I'd love to see a UI pref where you could just right-click an image and get the dimensions added :)

      --
      --
      Internet Explorer (n): Another bug -- that is, a feature that can't be turned off -- in Windows.
    7. Re:Umm, seems simple enought to me... by jim.robinson · · Score: 1
      Indeed, companies should be allowed to advertise if they want to. But I'm not going to be visiting their site again.

      What I find really objectionable is javascript which breaks my browser. If I have windows open to APIs, my CVS tree, etc., I don't want it all crashing on me if I need to go look up an article on a site which uses a broken pop up.

      If a company says they are going to keep using javascript ads, and won't let me see content if I don't allow javascript, then I'll find my information elsewhere. I'm not going to let them kill my browser sessions because they want to target the Windows IE users out there.

      Jim Robinson

    8. Re:Umm, seems simple enought to me... by Ian+Bicking · · Score: 2
      Some other techniques I can think of to detect if the add has been blocked:

      • Send a cookie with the banner image, which is later used like authentication. Unfortunately you block everyone who doesn't have cookies. Lots of sites already do this anyway. So far browsers haven't implemented "do not accept cookies attached to images", for no good reason at all. So only no cookies or image blockers will break this -- image blockers that still download the image won't get around this, but image blockers that leave the headers intact and replace the image with something innocuous would work.

      • Use JavaScript, with window.open() opening a window that uses window.parent.replace(). You could even use a hash in the URL to make it more secure -- i.e., to block external links, and make it impossible to access the real content without the popup (though you could of course read the popup and not display it). You could hash against a private key and the user's IP address or session ID. This won't (in itself) detect if the images themselves were downloaded, just if the JavaScript was executed.
        The advantage of this technique is that the user gets immediate feedback as to whether they can view the page. Both server-side detection and cookies will only kick in after the second page view. You could also use the two together, so that you get immediate feedback on banner ads as well.

      I can't think of any way the software could detect if the blocker downloaded the image, left the headers intact, and replaced the image with something blank. JavaScript has no way to inspect the actual images in the document, and the server has no way at all to tell if the proxy has replaced the image. You should be able to do it with Flash ads, and since Flash is proprietary, Macromedia will never put privacy features in and alternatives are not likely to pop up anytime soon. Popup ads should also be relatively immune to blocking, though you can still block the images in the popup (which doesn't make it much less annoying).
    9. Re:Umm, seems simple enought to me... by raj2569 · · Score: 1
      Now seriously, how much trouble is it to read around a huge ad in the middle of your page? I'm being serious here. I have mental filtering. I just don't notice them anymore.


      I always use the print option to read the pages with big ad block in the middle. esp at places like O'Reilly where you have to read big articles across multiple pages. This gives you a clean page with just the article in its full and nothing else.

      --
      Sarovar.org Hosting for open source projects in Indi
    10. Re:Umm, seems simple enought to me... by arfy · · Score: 1

      >> ...And a concept that web marketers don't seem to grasp is that maybe people will remember a product backed by an annoying ad, but how many people will really buy that product if they negatively remember the ads for that product?

      Which exactly describes why I bought my initial batch of X-10 hardware from X10.com and then didn't order anything more from them since they started putting up some of the most annoying ads on the net. Their advertising made me direct my purchases elsewhere.

    11. Re:Umm, seems simple enought to me... by Telek · · Score: 2

      can you blame them if the target for the 90% of the market, instead of the 10% that isn't complient with the rest? Perhaps you should be angry at the people who make your browser for not making it complient, instead of the corporations who are targetting the browser that has the 90% market share? I've had to work with Javascript code that allows for both IE and NS usage, and it's a PITA to have support for NS in it. I can't blame them for not supporting every browser under the sun.

      --

      If God gave us curiosity
    12. Re:Umm, seems simple enought to me... by Telek · · Score: 2

      the other idea is to run a program that scans your screen to detect if it can see the ad. I know that eudora uses this idea where if the ad itself cannot be seen it will alert the user. But then again their ads aren't very obtrusive or annoying so they're easy to ignore.

      --

      If God gave us curiosity
    13. Re:Umm, seems simple enought to me... by jim.robinson · · Score: 1
      I do not blame them for wanting to target that 90% -- but I do think it's a problem if they don't code well enough to not crash browsers in the other 10%. And, just to be clear, I'm not angry with them. I just won't use the site.

      I don't happen to know or write JS at work (we are a web publishing group), but we have some people here who do. It seems like our general philosphy has been that we'll use JS if there is absolutly no other way to achieve a desired functionality in the UI. The folks that do the JS really have to test on a bunch of different platforms to make sure it doesn't break browsers.

      As you said, it's a pain in the ass if a browser is not compliant. They almost always find some small problem which requires a tweak in the JS. I remember at least once where we simply couldn't make it reliable, and had to drop the idea. That makes for a UI which isn't as clean, but gets the job done without crashing someone's browser.

      The main point is that we don't use JS for anything vital to the operation of the site. A user with JS off will lose some functionality, but won't sutffer their browser crashing. While the JS folks don't test every browser under the sun, they have a bunch of both new and old ones on different machines they have to test.

      Jim Robinson

  68. The Underlying Problem by pantaz · · Score: 4, Insightful

    Advertisers are not receiving adequate response for the amount of money they sink into online ads. The proliferation of in-your-face pop-up ads was their first response. Those still don't generate the desired traffic. They mistakenly believe that this is caused by ad blocking software. Marketing types can't believe that anyone can possibly resist their clever, highly targeted advertising campaigns. Therefore, too many folks must be blocking the ads -- if they see the ads, they won't be able to resist them. The marketers fail to realize that the largest group of ad-blocking users are people like us. We're not going to click on the ads even if they are forced upon us. If anything, we are less likely to as a form of protest.

    1. Re:The Underlying Problem by Detritus · · Score: 2

      I don't mind clicking on a banner ad if it is advertising something interesting or useful. The problem is that very few banner ads meet those requirements. The current banner ad that I am looking at is for a "Penguin Computing rack mount server". I suppose that it is somewhat targeted, given the demographics of slashdot. The problem is that I am not looking to buy a rack mount server, and even if I was, why should I consider buying their server? Why should I click on their banner ad?

      --
      Mea navis aericumbens anguillis abundat
    2. Re:The Underlying Problem by dkh · · Score: 1

      They are incredibly niave then and are ignoring the funtion other advertising venues serve.

      Advertising is about brand recognition.

      They have been trying to change that with the web. Suddenly it isn't about how many eyes in which demographic see our ad, its how many people actually are interested in the ad at that very moment to click through.

      They've picked the wrong metric to measure by, simple as that, they should be looking at views and not click throughs.

  69. Code Red by Stenpas · · Score: 0, Offtopic

    Code Red would have been heralded as the "#1 Software Program" if it targeted x10.com instead of the whitehouse. WindowsXP will probably be riddled with bugs. Perfect opportunity to make a new worm.

  70. Another option by Vryl · · Score: 2
    It's a typical arms race. So, in the grand tradition, here is yet another strategy.


    Write software, perhaps similar to a 'honey trap' that runs in your browser, and passes back the results to the 'bludger detector' that make it look like you are reading the ads. This could happen silently as a service, downloading the ad's, but blocking them out on your page, so you don't have to see them. Ho hum ... I am sure there are tons of ways to defeat this.

  71. No one can handle 300000+ banners a year by Cebo · · Score: 2, Interesting

    Statistics taken from my filter proxy in use (Webwasher) since March 12th 2001 :

    Filtered images : 229994
    Filtered windows : 15735

    A good banner is a dead banner !

  72. this strikes me as very odd by Anonymous Coward · · Score: 1, Funny

    everybody that reads these pages is a tech head to some degree - some more than others.

    I myself, don't LIKE banner, skyscraper, popups, and button ads, but i KNOW they are a necessity.

    Unless web sites use banner advertising to fund themselves, the only option left is to charge for the content. This is a BAD scenario, infact, in this kind of situation the internet would be a tiresome, boring place - more commercialised than ever - you'd only have websites that tried to sell you something - be it content or a product, and those that belonged to hobbyists - showing the whole world 1500 blurry pictures of their pet cat.

    Sites like slashdot, google, yahoo do not charge - they are funded by advertising. You must all know this - don't you KNOW where your $80,000 salaries come from!?

    The bottom line is that if you get rid of advertising you get rid of websites. If you get rid of websites you get rid of whole businesses, MANY of your jobs, and in a sense, freedom and free exchange of information.

    Would you REALLY like to see ./ closed down for this reason?

    1. Re:this strikes me as very odd by JohnG · · Score: 2

      I agree that advertising is necessary, but Slashdot does it right, and the advertisers seem to understand that BRAND marketing is much more important the PRODUCT marketing. That is to say since I have been reading Slashdot ThinkGeek and Rackspace are household phrases to me. When I need webhosting I will likely go to Rackspace, when I need a Netcam I will go to ThinkGeek, NOT X10. Because no matter how inexpensive X10 is, I'm sure as hell not going to reward them for annoying me. See it doesn't matter, as many have already said, if I go to your website that second and get your product, what is important is that I remember your name and associate with your products.
      I think the biggest problem today is that people don't seem to understand that the phrase "any publicity is good publicity" has limitations. Those limitations specifically being don't make ME personally pissed off at you, I don't give money to people who piss me off. X10 pisses me off. The spam senders who are to lazy to type their own names and introduce themselves as "fsdfs" piss me off. Those people will never get my money. I'm sure the many thousands of Slashdotters feel the same way.

  73. this site already uses the blocker by perler · · Score: 2, Interesting

    www.directbox.com allegedly already uses the adblocker-blocker software on it's server.

    try the button "gastzugang" on the bottom right...

    PAT

    1. Re:this site already uses the blocker by purplemonkeydan · · Score: 5, Informative

      Yep, I can confirm this, running Norton Internet Security 2002.

      Here's the Babelfished text they serve up if you are blocking ads:

      The page requested by you cannot be represented unfortunately. This problem can have the following causes: An advertising filter (e.g. Web which ago, AdBlocker) prevents the announcement of banners. DirectBOX finances itself by advertisement. Please you deactivate the advertising filter.

      Note: They can deactivate the advertisement on directBOX by a monthly payment. Click here, in order to activate directBOX the advertising filter.

      Their Browser does not support an announcement of pictures. DirectBOX uses pictures as navigation item. We recommend to use you a current Browser.


      Stiff bikkies Lynx users.

    2. Re:this site already uses the blocker by arkanes · · Score: 1

      Since they mention that you might not support images, seems pretty clear that they're using the server-side tracking of page/image gets that people have been talking about. Therefore, this would also screw people using proxies or on ISPs that use them. Also, people who block adds for bandwidth reasons are up the creek, but you could still request the image and just have your content-manager stick those tags in.

    3. Re:this site already uses the blocker by Anonymous Coward · · Score: 0

      disable cookies, then it works fine

    4. Re:this site already uses the blocker by Skapare · · Score: 2

      I tested this with both Netscape 3 and Netscape 4. With NS3 I got 2 pop-up ads. I also got the notice. Funny that things worked, but they thought they didn't. With NS4 I did not get the pop-up ads, but I did get a normal page.

      This software does not work very well.

      --
      now we need to go OSS in diesel cars
  74. two words: apache mod_fake by Anonymous Coward · · Score: 0

    run apache on the same computer as your browser

    add offending web sites into the local hosts file

    write mod_fake, which passes web requests for an offending web side to a module that uses an explicit nameserver lookup to and pulls the content into a javascript workspace that duplicates browser behavior, but rewrites results and servers back 1pixel pngs to the browser

    Actually, the idea of moving javascript to a local web server running on the same computer that is running the browser is an extremely powerful concept.

    no need to run squid or other bastardized web blocking software that harvests your e-mail address for resell to spammers.

    On the other hand, I brought my first Cobalt RaQ because of a banner ad on ./

  75. ad download detection by syukton · · Score: 1

    See, the web server might just keep track of ip's and what document-objects have been transferred; If not all of the objects for a page (ie, an image) has been downloaded after a certain period of time, then further attempts to access the site would result in that ip address getting a "You're skipping our banners, so you aren't accessing our site!" message.

    --
    Reinvent the wheel only at either a lower cost, greater effectiveness, or your own personal enrichment and satisfaction.
    1. Re:ad download detection by J'raxis · · Score: 1

      That could be overcome easily by a browser that downloads the objects but does not bother to display them. Send the request for the banner, and then route the returned data to the bitbucket.

      I run the JunkBuster proxy now; this could probably be an easily added feature.

  76. history repeats itself... by Dave21212 · · Score: 1

    Amen, G !!! but if/when they bring in the lawyers, I hope they know that lawyers are like sharks, they don't discriminate about what they consume (I'de like to see the disabilities act applied here to squash these bastards)

    In 20+ years of being involved in technology I've seen this type of battle play out a thousand times... in the end it always an exercise in creation and imagination.

    Adders abused cookies to track people: someone wrote code to clean them out.

    Nagware added obtrusive messages to shareware: (some) people distributed cracks {support shareware!}

    Protectionists wrote errors onto disk to protect software: We wrote software to duplicate the errors ;) {ok, this was done back in the 80's to stuff on 5.25 floppies and they are trying it again with CDs, some people Never learn!)

    [minor rant mode off]

    Dave T.

    --
    "Whoever would overthrow the liberty of a nation must begin by subduing the freeness of speech."--Benjamin Franklin
    1. Re:history repeats itself... by mitheral · · Score: 1

      The ADA is probably a slam dunk to win a case against american companies that block access if you don't load images. Blind people use screen readers for access and they rarely are setup to load images.

  77. Why I don't like ads by Anonymous Coward · · Score: 0
    I have to pay fifty dollars a month for a cable modem. Fifty Dollars! That's about $1.66 a day. I would assume that's with no advertising. It doesn't matter, I don't purchase items off of the Internet.

  78. This has been happening for at least a year by Anonymous Coward · · Score: 0
    Many of the Russian warez sites already do this. There's a standard "WebWasher User Go Home!" logo they throw up.

    These sistes are famous for throwing literally dozens of pop-up ads and hundreds of banners at you before you find what you're after you'd go to looking for. Presumably they actually make money doing this, so you can see where it's in their interest to get you to shut off your ad filter during your visit.

  79. The way I see it by Dai-Sho · · Score: 1


    The way I can see them doing this is not client side but checking to see if you also downloaded the banners. If you machine did not download the banner then their is really no way you could see it.

    Client side ie Javascript, Java etc would really be pointless since it would only be a couple days before a personal proxy server is out that will trick that.

    Just my 2 cents.

  80. What about older browsers? by ctkrohn · · Score: 1

    How would they block this in things like Lynx or any older browser? And if worst came to worst, couldn't you just modify Mozilla to say that it displayed the ad, when it really did'nt?

  81. yea right by Anonymous Coward · · Score: 0

    this will only strengthen my resolve to never buy anything advertised in a banner ad.

    fat lot of good it does to force the ads down our throats when we obviously arent interested in the products advertised.

  82. Who actually clicks on banner ads? by Adversive · · Score: 2, Interesting
    Consider the types of people who are actively going out of their way to block banner ads and cookies... Do you honestly think these people would *ever* click on one of these ads on purpose?

    I would be willing to bet that less than 1% of internet users know enough to actually use serious blocking software. The technology in this article is basically targeting power users who would never click a banner ad anyway.

    Why don't the ad houses accept this and save bandwidth for the people who actually click on the "Your internet connection is not optimized!" windows?

    --
    Adversive
    My cat's breath smells like cat food.
    1. Re:Who actually clicks on banner ads? by Anonymous Coward · · Score: 0
      the people who actually click on the "Your internet connection is not optimized!"


      What kind of sites are you browsing? I never saw such a banner. The sites I visit all have banners like "Teen Russian Lolitas", which is three lies in one. Those are twenty-something women with shaved pussies and small tits, recruited around Hollywood, working to save enough for breast-enlarging surgery.

    2. Re:Who actually clicks on banner ads? by Anonymous Coward · · Score: 0
      hey, small tits rule.



      Slashdot requires you to wait 20 seconds between hitting 'reply' and submitting a comment.

      It's been 12 seconds since you hit 'reply'!

      If you this error seems to be incorrect, please provide the following in your report to Source Forge:

      Browser type
      User ID/Nickname or AC
      What steps caused this error
      Whether or not you know your ISP to be using a proxy or some sort of service that gives you an IP that others are using simultaneously.
      How many posts to this form you successfully submitted during the day
      * Please choose 'formkeys' for the category!
      Thank you.

  83. Free Loading Surfer by Anonymous Coward · · Score: 0

    *** advising the 'free-loading' surfer that he has two choices if he wants access to the Web site's content: pay for it or be exposed to the ads. ***

    This 'free-loading' surfer has already paid the bill; to my ISP. If the site wants further revenue, then start a billing/registration process. I'm tired of popup ads, and ads that scroll down the page obscuring the page content.

    It's not my responsibility to pay some cretin's website-hosting bills.

    AC

    1. Re:Free Loading Surfer by brain159 · · Score: 1
      fine, then don't contribute to their hosting bills either. Don't visit their website and read their content.

      Your ISP bill pays for your bandwidth, not mine or anyone else's. I don't run banners on my site because I'm hardly denting my monthly bandwidth quota - if by some miracle my site got mad-popular, I'd run banners (unless people gave me enough money to cover my bandwidth cost).

  84. Why are you visiting sites with ads? by debreuil · · Score: 1

    Why do you think so many sites you visit have ads?

    I'll tell you - because they have people hired to work on the sites. These people work on the site every day. Eventually they become quite adept at it, they understand their viewers, and they create good content. The sites with no ads tend to be one shot deals, maybe worth a visit once, but not usually twice. So why do almost all your favorite sites have ads? They have expenses. And they have a ton of viewers. Forget content, bandwidth alone costs them more than most would think. For example, a (free formerly adless) site we used to do animation for, the Romp.com, had bandwidth costs of $80,000/month. How would you all suggest covering that? Answer - give up on the web and do something else. That's what they (and many others including me) did. The web is great fun, but if the choice is 'do what you love' or 'do what you love and make a living' I'll take the latter. So would you.

    Ads = money
    Money = hours worked * quality of worker

    It always puzzles me how the /. crowd can get so excited about a (very stupid) tv show like star trek, *chock* full of ads, and then get indignant about a web ad. And don't say you leave the room when ads come up - unless you have a severe bladder infection as well as an eating disorder. Just put up your hand, and say 'My name is ____ and I'm a hypocrite..."

    Ahh, that feels better!

    1. Re:Why are you visiting sites with ads? by Tviokh · · Score: 1

      >>> It always puzzles me how the /. crowd can get so excited about a (very stupid) tv show like star trek, *chock* full of ads, and then get indignant about a web ad. >>>

      With TV you can channel surf while the ads are on, then return when they're over and what you WANTED to watch returns.

      I channel surf during commercials.

      You can't exactly do that with web ads; if I leave the page and come back...the ad is still there, still irritating, and still not convincing me to buy anything.
      Popups and popunders only convince me NOT to buy from the company in question.

      Banner ads(that aren't popups) don't really bother me all that much. They're easy to ignore.

      --
      http://pebkac.net
  85. Another Way by EugeneL · · Score: 1

    I remember experimenting with the following thing a couple years ago:
    Java applet and Javascript can exchange values. Page contains OnLoad handler that checks if Java applet has started (and the applet is supposed to show a banner and put some predetermined value in a variable that is later picked up and validated by the JavaScript).

    1. Re:Another Way by jesser · · Score: 1

      That would drive away anyone with a slower computer, because Java does not load very quickly.

      --
      The shareholder is always right.
  86. My Ad Blocker... by Ark42 · · Score: 1

    http://www.csis.gvsu.edu/~rubleyr/sab source available for Linux (compiles under BSD too!) and I also compile for win32 - I am fully devoted to overcomming ANY form of advertisement - no matter how much programming is involved.

  87. Re:Your Sanity by SecurityGuy · · Score: 1

    Commercialism is what keeps the society going.


    Passing on whether or not that's true, commercialism does very often go too far. Advertising is fine with me, in its place. I don't mind seeing it on TV, in print, on billboards, etc, but I do very much mind seeing it on me. I don't want to wear someone's corporate logo unless they're sponsoring me. I don't want car dealerships sticking their logo on my car unless they're paying me for the advertising.


    In other words, advertising TO me is fine. Advertising ON me is not.

  88. Revenue is made by selling product, not banners by hacker · · Score: 1
    ...Because if people keep blocking then we will be forced to start physically paying to view pages, via micropayments perhaps, but we will pay because they have to pay their bills.

    You sound as if their product IS the banner ads. Funny, I thought that they paid their bills by selling their product. If their product doesn't sell, then there's a fundamental problem with their marketing approach, and throwing a handful of annoying pop-up, pop-under, and fullscreen-no-toolbar banner ads in my face is simply going to cause me to block them.

    I don't block the ads on Slashdot, or Freshmeat, or many other sites I visit. Why? Because they're not annoying. Every once in awhile, I'll see something that catches my eye, and I'll click it.

    With popups, popunders, etc. I will NOT click them, simply on principle. They do not receive my visit, or my click, or any revenue from me.

    This is not a user problem, it's a marketing problem, and the users are being burdoned with the faults of a bad marketing team. I for one, hope the ads get more and more annoying, because then it will simply lead to a court case, whereby there will be ad regulation. They make it more annoying, we block, the find a way around it, we block. I don't mind playing cat and mouse, because the cat always wins in the end.

    Interestingly enough though, where we're heading is probably an internet rife with Shockwave-only pages, where you have to sit and watch a 2-minute "commercial" before you're allowed to see the website, and we'll go full circle again, with no graphics and gopher, or a private "vpn" internet, where there are no banner ads at all, and then "Channel 9" internet, where it's all banner ads, commercials, and dreck.

    1. Re:Revenue is made by selling product, not banners by Telek · · Score: 4, Interesting

      what product does a news site offer?
      what product does /. offer?
      what product does google offer?

      they're all services. you do to use their sites. the only money that they can get back in return from the money that they spend such that you can use their site is by banner ads. I'm not saying that's their product, but I am saying that that is the only way that they are going to make any sort of money. readership on the net doesn't pay bills. popup ads and clickthrus do. If a site is sufficiently big enough and their normal ads scheme isn't working because of either insufficient readership or too much readership or people blocking ads then the powers that be will do what they must do in order to increase revenue.

      Don't forget that it's not only rising costs but lower ad revenue simply because the advertisers are paying less now than they were before and the advertisers are demanding more intrusive advertisements. Some websites simply have no choice but to increase the obtrusiveness of their advertisements because otherwise they'd be out of business due to changing prices in either hosting or ad based revenue.

      I wonder how you'll feel when /. announces that they've been told that they must increase their ads revenue.

      And lastly don't forget that things are dominated by one thing : money. If you can make more money by doing this, they you'll do it. Very simple concept.

      So I'm curious then. How do you justify the bandwidth that you use off the sites which ads you block? They're paying so that you can get free content and you don't even have the curtosey to view the ads so that they can pay their bills?

      Sounds a lot like the MP3 "I buy more after I try!" talk that I hear a lot of. There is absolutely no evidence to proove that most people who listen to MP3s buy more CDs than before, and a lot of evidence that prooves the contrary... Increasing overall CD sales doesn't proove that at all. Someone posted a good comment on one of the other threads that said something along the lines of either :

      a) pay for the CDs and give the artists what they're due
      -or-
      b) don't listen to their music.

      This is the same thing. You are incurring them a cost by viewing their content that they are providing to you free of charge with the only request that you view advertisements so that they can pay their bills. How do you justify blocking those ads? If you don't like their advertising scheme then perhaps you should not be visiting their site.

      Sorry if I seem a little bitter here, but I'm getting tired of the hypocrisy in general (not aimed at you).

      --

      If God gave us curiosity
    2. Re:Revenue is made by selling product, not banners by Anonymous Coward · · Score: 0
      Their product is information and I'm willing to pay for that, however, I'm not willing to endure this onslaught of browsers and popup windows crashing my other windows and web work (such as a long submit form I was filling out). If you close some of those poorly written javascript windows before they're fully loaded, goodbye browser, memory leak takes it out, 100% of the time, and you lose everything you may have been working on in your other "legit" browser windows.

      Why would I want to support a site that promotes that kind of destruction of my personal work?

  89. Gee... by Greyfox · · Score: 2
    Maybe they should instead try to invent an advertising strategy that isn't completely obnoxious and which doesn't piss off the target audience. What a novel idea!

    I've been browsing now with animation and pop up windows turned off since Mozilla got fast enough to use on a regular basis. The web is a lot less annoying this way. I don't have any problem not doing business (or reading the pages of) a company that demands that I turn that stuff back on.

    --

    I'm trying to teach myself to set people on fire with my mind... Is it hot in here?

  90. What has changed? by Anonymous Coward · · Score: 0
    Five years ago there were almost no ads on websites and the content was just as rich and useful as it is today and the websites were cleaner and less confusing. Shareware sites with gigabytes of downloads existed without ads. Linux sites existed without ads. Discussion sites existed without ads. Now so many of these same sites are chock full of advertisements and you have to now play find the content.



    So what has changed in five years? Are so many people still in the mindset that the Internet is a good way to make money? Investment obviously has dried up but much of that investment was not around 5 years ago either. So why did people put up large elaborate websites years ago but now they feel they need to make money off them? Hosting costs certainly haven't gone up. What has changed?

  91. Go ahead and use this. by mikethegeek · · Score: 2

    I've posted this opinion before in response to other such stories, about interstitials etc, and it is thus:

    I hope the large commercial sites JUMP right into this. Instead of forcing people away from ad-blocking (and I see no reason that Mozilla can't be modified to make their system think that the image has been loaded, without displaying it), what they will do is force people AWAY from such sites.

    No reasonable person should submit to allowing ads to drop tracker cookies on your system, that continue to track even WHEN you aren't using their site.

    In my opinion, tracker cookies taking information for free without compensating the user, is just as much stealing as is viewing a site that uses such obnoxious means without viewing the ads. As a matter of fact, by doing this, they've more or less ASKED for this to happen to them.

    What this will accomplish is to drive traffic away from commercial sites and back to enthusiast sites that contain most of the Internet's best content anyway.
    This is but the next escalation. I expect the next thing these sites will do is start blocking Konqueror and Mozilla. However, Konqueror allows you to spoof to a site what your OS/Browser, etc is, and I expect this is a feature easily added to Mozilla as well.

    As a curious aside, I use Hotmail occasionally. On the MSN home page, afer you've logged in to Hotmail, it will show your local news and weather... I noticed the other day that it doesn't show this when I'm using Konqueror, but does on my `Doze machine running IE at work... Just for curiosity, I set Konqueror to say that it's IE 5.5 to the site, and voila! it shows my local news and weather... So it looks like MS is discriminating against browsers other than IE to discourage you to use any other...

    What will come next after Mozilla/Konqueror start downloading but not displaying these ads, and after they try to block them (followed by people setting Mozilla/Konqueror to "spoof" their ID to IE), will be the replacement of the simple ASCII identifier with something encrypted, so that it's difficult for OSS browsers to emulate. This would invoke the DMCA, and it's only a matter of time before MS starts using that club.

    I'm sure good `ole Microsoft, who has made IE the browser of choice for marketers everywhere (including their own), is already thinking of this.

    --
    === The price of freedom is eternal vigilance
  92. They can tell if I loaded something? by Anonymous Coward · · Score: 0

    Why, they must be hax0ring my box, then, if they can see what's being displayed.

    Why, HTML protocol doesn't support that!

    Oh, wait - I forgot, Microsoft 'innovated' away such things as protocol.

    I'm going to attach ToS to all my outgoing packets noting that anyone sending me pop up ads is in violation of my ToS, and is to be held liable for up to and including $1 mil, with a minimum penalty of being stripped naked and flogged publically.

    Those'll be some big ass packets, but I think the bandwidth hit would be worth it

    I mean, hey, shrink wrap licenses are enforceable and all :P

  93. The true goal of internet ads by Skapare · · Score: 2

    While I'm typing this in, I'm reading the this ad for Think Geek. See, I don't block banner ads. But sometimes I am tempted to when I see ads like this one.

    The kinds of ads I want to block are the obtrusive ones. Pop-ups, pop-unders, monster-box, and jump-through ads are NOT designed that way to get around blocking software. If the software was working, they too would be blocked. Instead, what they are designed to do is get people to SEE them when they are otherwise busy. TV is a passive medium. Sure, sometimes people take a bathroom break, or run to the frig, during the commercials. Yet free TV is surviving, even with competition from more networks, all the channels you can get on cable, and of course the internet. So the ads must be working since the TV stations and networks are still on the air. That's because TV is mostly passive, and enough people are too lazy to get off the couch when the commercials do come on, that ads do make impressions. You can't click on them, but eventually they effect your thoughts, and your buying patterns. It's not instant gratification for the advertisers, but it's working, and working well.

    The internet is different. People are focused when they get online (else they'd plop back down on the couch and watch TV). They have some idea what they want from the internet and try to get it. Advertising on the internet has to compete with whatever it is the user is focused on. There's no time out to get their attention. People don't click through very often because that diverts them from their goal. Maybe if there was a one-click way to save an ad and come back to it later when you are ready for it, more people might. I know I would. It probably wouldn't be enough.

    But advertisers weren't expecting the same results the get from TV to come from the internet. They were expecting more. For decades advertisers wanted some way to get a faster and more accurate check on how well ads work. When the internet came along, they saw it as a gold mine, but not for making subconscious psychological impressions on our buying habits, but rather, to track us, count us, and know what works to influence us and what doesn't. This is the big reason they started with click-throughs ... to count how many people saw the ad and showed some interest. Auditing was an auxiliary advantage.

    But people also resist. And as I said before, they are focused on something else. The kind of feedback the advertisers want is too quick to get a valid response. Just this morning I saw an ad for a product from IBM that piqued my interest. But I didn't click on the ad, because I was still looking for something else. About 20 minutes later I went over to IBM to find out more. But I just typed the domain and went direct. So some web site didn't get a fraction of a penny all because the model is wrong.

    And now we have intrusive ads. They try harder and harder to get us to react ... and react RIGHT NOW. And it's not really so much because they can't wait 20 minutes to sell us something, but rather because the immediacy is the only way to measure us, track us, and count us. If they have to wait 20 minutes for me to type in a web site name and visit them, they have no idea which ad campaign brought me in. The internet seemed like this was just the thing to do this, but they also forgot about some things, including the fact that people are going to be (often intensely) focused when online. So ultimately it doesn't work very well, and they are still trying to beat this dead horse.

    And intrusive ads are annoying. They do divert people when they want to be focused, and people get pissed off. This is why I believe most people are tempted to start blocking ads. The more intrusive they get, the more people will want to block them, either to avoid the annoyance, or to protect their privacy (more collateral damage). Michael was right on the mark for the title for this Slashdot article. It is a war, and it is escalating.

    Impression ads do work on the internet. They may not work quite as well as on TV or radio, but when well done, people will remember things they have seen. If advertisers would just give up the misguided quest for the holy grail of immediate tracking data, maybe they could get some advertising that really brings interested and paying customers ... eventually.

    --
    now we need to go OSS in diesel cars
  94. Screw them. by Damon+C.+Richardson · · Score: 1

    I all ready DO NOT go to sites that require registration. Why would I go to a site that tries to jam ads down my pants? It's simple I'll stop going to that site. If it was not for the little check box turning off popup's I would have stopped going to abcnews.com all ready.

    We are not forced to sit at a computer and browse the web. The WTC should have been lesson enough that if the s#!t hits the fan only TV is going to work anyway. This whole ate up concept of market at all cost is going to back fire one day.

    These are the same sick fooks that want Baccula to drink coke on the bridge of the Enterprise since Marketing shows that most trek fans have Tivos.

    They will try with there surveys and dreams of a world where everything is properly sponsered no matter how little importance the content actually contains. These people that feel the web should be sensored if there customers ads are not viewed before the content are mad with a strange and sick kind of power. I say screw them. Don't View the content!!!! Trust me before the internet people didn't know about alot of things. It was okay... we were still happy. We did things like read magazines.

    Maybe whats called for here is a plug-in for Konq that will let me block sites that use popupwindows and ad view enforcing measures. Then when I clicked on that link. I could have a choice wheather it was worth it for me to sit through a ad just to read the story.

    The way they win is telling everyone that everyone is (or will be) doing it. So the lemmins jump on board and the others start to think hey that is a good idea... .Till before you know it every Idiot marketing fook is pushing popupwindow adds.

    Last.... In the sprit of Bill Hicks I would now like to ask everyone in marketing to kill them selves right now.

    --

    Last one in jail is a fascist.
  95. sue them by Anonymous Coward · · Score: 0

    I guess this would probably break text-only browsers like Lynx. Which would cause problems for the visually impaired.

    In a lot of countries you could sue them for that.

  96. Net will continue to diverisify by Anonymous Coward · · Score: 0
    Choke points are all over the place for those who don't like things like cookies, javascript or ms products. But that's not a problem since new sites are popping up all the time.

    Besides, if a site or site resource requires an offensive feature, more often than not, it's not gonna be much of a loss anyway. Think of all the lame sites that have multimegabyte flash intro's. I doubt I'll be losing out on much critical information by avoiding those.

    On the downside, javascript seems to be spreading like the plague, despite being a security risk. Site maintainers seem to be implying:

    "We require you to enable insecure features of your browser, but don't worry, we're competent and you can trust us. It even says so in our privacy statement."

  97. Have you considered... by Anonymous Coward · · Score: 0

    ...to boycott all sites that will force you to see the ads?

    I must clarify that I'm not against the fair use of advertising; everybody has the right to make an income from advertising in their site, but -forcing- you to see the ads is -violence-, as it is forcing you to use some software that will allow them to know what are you seeing.

    How to boycott them? Well, if say tomorrow someone finds an interesting article on a page full of popping up ads and links to advertising sites (I mean really annoying advertising), [s]he could make a local mirror and give us
    that link along with the original.

    A question. Someone posted a list of advertising servers
    arranged to be added to the /etc/hosts file. Are there any updated lists like that? Tnx!

  98. Maxizing profits by gad_zuki! · · Score: 2

    If we followed all the calls to concede any ad blocking, which is done by a very small minority of web surfers btw, the pop unders and flash commercials will continue to happen. The job of many sites isn't just to break even but to milk the internet for all its worth and when it comes to privacy issues users will respond unkindly.

    I draw the line when the ads become intrusive.

    This is completely arbitrary, first you defend ads and registration then condemn pop-unders then later condemn animanted gifs. If you're not letting the gif play out, guess what - you're blocking 'regular ads' too.

    For the most part this software is one the many attempts to come up with an excuse to explain why so-and-so.com isn't making money. They should re-examine their business plan if their bigest threat is ad blockers.

  99. Absolutely wrong! by Loundry · · Score: 1

    The only reason why ads have gotten so
    fscking annoying is because the conventional style isn't working. Why isn't it working? Because people block it.


    Wrong, wrong, wrong, wrong, wrong!

    The reason that it (advertising) is not working is becuase advertising, in general, does not work. Think about how many ads you see every day, and then think about how many times you actually buy the product or visit the store. We Americans are bombarded with gazillions of ads every day, and I know that if I went out and "followed up" on every ad that I was subjected to, then I would have no time and no money.

    Also, do you know those huge, full-page ads in the newspaper (and you had to pay for the newspaper!)? Does anyone know if someone views the ad and then that someone goes to Macy*s to examine or purchase the advertised product? Hell no! No one knows how effective that advertising is! So the idea is to just flood the world with more and more of it in an effort to increase profits.

    Now, compare traditional advertising to the web advertising. In the world of the Internet, advertisers know to a much, much finer detail exactly how effective their advertising is. This was one of the draws of Internet advertising: we can track consumers!. Guess what? The draw turned out to be a liability, as it turns out that web advertising is not very effective. But this is not because the web is not an effective medium over which to advertise, but instead because all advertising is generally ineffective.

    Because there is no way to track traditional advertising, advertisers will never know or admit how ineffective it is. They're shooting in the dark. On the web, they know exactly how bad their aim is.

    --
    I don't make the rules. I just make fun of them.
  100. why it's not working by mattdm · · Score: 2

    I don't think the tiny fraction of people blocking banner ads has a significant impact on whether banner ads are working or not. A more important factor is that after a while, everyone just starts to tune them out. The Brunching Shuttlecocks humor site used to make the link to the current day's article be in the form of a banner-sized graphic. It literally took me *months* to notice it, because my brain is totally wired to ignore graphics of that shape at the top of web pages. And I don't think I'm alone, because as you can see from the site, they've change to a larger, more square graphic.

    Moral of the story: human brains are good at filtering out junk. The only way they're going to get us to pay attention to ads is either 1) make us have to look at them for thirty seconds before continuing, 2) start asking quizzes about ad content before displaying real content, or 3) make them actually interesting, helpful, and naturally engaging (hah!).

  101. Cookies by meheler · · Score: 1

    There's a couple ways to do it.. one way is to set a cookie, then check to see if it's set.. if not, cookies are blocked.. the other way is to watch for a request for the banner image. If it's being blocked, then the browser's request for the image will never reach the server.

    I can see websites instituting this software losing a lot of business.

  102. This is utterly absurd... by Millennium · · Score: 2

    That kind of thing is simple to do. You just create the popup, and then immediately check to see if it still exists, before the user could possibly have closed it. If you're even running the code at all, you must have JavaScript, but if the window doesn't exist immediately after being created, they must be blocking popups.

    I write code to do this as soon as Mozilla introduced the feature, though I didn't release it for fear of misuse. I considered trying to get a patent and then sitting on it. I should have done that, and I apologize that I did not.

  103. Pay for your own bandwidth by gad_zuki! · · Score: 2

    Non-sales sites are really going to have to realize that there will be x% of people who block ads, x% will never come back after getting 2 pop-ups in a row, and x% who don't care about your monetary worries.

    I have the right to use my PC, including my browser, as I see fit. You do not have the right to make a profit. You have to earn a profit. There's no reason why anyone should be subsidizing your webpage on the mating habits of small canines. Pay for your own bandwidth. Find a decent business plan and take the first paragraph of this post into consideration. Good Luck.

  104. Why Doesn't /. have this problem? by Peteresch · · Score: 1
    These companies are going to extremes because they can't get the clicks they need through normal methods. So why does it work for slashdot?

    Simple. The ads are relevant to the target audience. I find myself clicking on more banners on OSDN sites than all the other sites combined. They show me somthing that interests me and I click, they get the money, we are all happy.

    Sidenote for those of you using ad eliminators...
    Let slashdot ads through, you might be plesantly suprised!

  105. Webmasters destined to lose then by gad_zuki! · · Score: 2

    Considering ad blocking software and methods are free and the commercial webserver certainly isn't who do you think is going to win? Sounds like this firm is just feeding off the fears of the dot.com collapse.

    "Internet companies are going down," he said.

    Yeah, its called VC money running out and not having a viable business plan. I'd like to see some proof that the small % of users who block ads are really the cause of boo.com or whomever going out of business. Something tells me there's no such proof.

  106. How does this stop me from... by asphyxiaa · · Score: 0


    ...using Apache as a proxy that filters out ad's and replaces them with a 1x1 transparent gif? i started doing this recently, and on many pages it looks beatiful.

    --

    1. Re:How does this stop me from... by Anonymous Coward · · Score: 0

      adding offending sites to a local hosts file and
      the apache vitual domain configuration is fairly
      straight forward; however, would you like to share
      the rewrite ruless you?

      BTW, urlsnarf (of the infamous dsniff suite) is
      quite handy for identifying offending sites buried
      beneath heaps of javeascript.

    2. Re:How does this stop me from... by asphyxiaa · · Score: 0

      I no longer use the HOSTS file, since that just gives you a broken image in the web page.. anyways, my apache setup is like this:

      you need to load two modules,

      LoadModule proxy_module modules/mod_proxy.so
      LoadModule rewrite_module modules/mod_rewrite.so

      <IfModule mod_proxy.c>
      ProxyRequests On
      </IfModule>

      <VirtualHost *>
      DocumentRoot "<your apache path>"
      ServerName localhost
      RewriteEngine on
      RewriteCond %{REQUEST_URI} ^http://images\.slashdot\.org/banner/*/* [OR]
      RewriteRule ^.*$ /gif/1x1.gif
      </VirtualHost>

      Then I just set my browser to use 127.0.0.1 as a proxy, and with the above example, slashdot will have a pure black area at the top with no visible banners.

      --

  107. It's a war of escalation by GordoSlasher · · Score: 3, Interesting

    I've been blocking ads for years. Not that I don't like to see ads - sometimes I really am interested in the products being offered. But such a large fraction of ads are now so visually annoying that I can't take them anymore. I don't want to punch the fscking monkey. I don't want bouncing pong balls drawing my eyes away from a software review. When I'm at work reading financial sites I don't want a huge pair of hooters trying to sell me an X10 cam - it's unprofessional in an office environment.

    I prefer magazine-style ads: occasional full-page ads I can easily skip or read, smaller ads in the margins that are not intrusive. When I look at them, there they are, and when I look away, they don't pull my eyes back. The web was like this in the early days of advertising. Then the monkey-punching games and Vegas-style animations started to take over, and now we have big honking animated ads with an inch of content wrapped around them, too distracting to read the actual web page content.

    On TV the commercials are clustered together, then go away so you can view a few minutes of uninterrupted program content. If TV worked like the web, you would have a commercial running in the middle 60% of the sitcom stage with the actors squeezed into the margins around it, speaking lines between the commerical's music, and ducking under other smaller commericals, all competing for your attention. How long do you think people would watch such a program?

    Bring back the days of less intrusive ads and I will turn off my ad blocker.

  108. I have the right not to serve you by samael · · Score: 2

    People will have to realise that there will be X% of sites run as a public service, X% that will require you to give them money and X% that will find an indirect method of making money from viewers (like adverts).

    They have the right to use their servers, including choosing who to serve pages to, as they see fit. You do not have the right to infinite free information. Pay for the information you want. Find a decent information source and take the first paragraph of this post into consideration. Good Luck.

  109. So they lock out search engines? by Anonymous Coward · · Score: 0

    Oh, gee, that's smart. Let's lock out the main source of traffic for most sites. This "technology" will only last as long as the sites that use it.

  110. Just check to see if the image was downloaded by Anonymous Coward · · Score: 0

    If it wasn't then bingo for the server side logic.

    Makes sense to me anyway.

  111. Yeah, they can by NitsujTPU · · Score: 2

    Supposing that the ads were hosted offsite and you couldn't efficiently check to make sure the ad was downloaded (which you can, but it might slow down page loading), you could attach the ad to a little java executable that calls home before loading the page.

  112. well at least that's one war ... by wobblie · · Score: 1

    ... that's already been won. Apache will never have such nonsense built into it, and no one is going to buy such crapware, at least no one with a site worth going to.

    1. Re:well at least that's one war ... by brain159 · · Score: 1

      What exactly stops them forking a new project called Ad-pache (apache+this ad-mandating stuff). Sure they'd have to open-source it (share and share alike), but they can quite easily "build such nonsense in". Whether they will or not is another matter.

  113. 80% library, 20% shopping mall by Coolumbus · · Score: 2, Interesting
    I think part of the problem why banner ads fail is because of how the people behind them (not the end users here:) define their success. They seem to think that the purpose of a good ad will instantly, on click, end up in instant revenue. This much unlike how ads in other media works. Say tv for example.

    At lest I think I know how the tv commercials affect my anyway. I watch some program and in the commercial hear about new improved detergent. Later when I go down to the store to buy some stuff, and I need detergent. Say that I see a couble of brands, some of them are unknown to me, but there also is the detergent I have seen commercials about. I most likely would buy the product that I at least had heard about - even though it only was trough some unbiased commerical.

    The problem with Internet ads is that somewhere along the way the "interpretation" of the Internet has changed from "a big library" (rember that?) to "a big shopping mall". (At least for the banner makers.)

    However, in a real shopping mall, an "on sell" sign might lure me into some speciffic shop to buy someting. This while most users don't interpreat the Internet this way - like most banner people would like to think. To the users the web is still more of a library than a shopping mall.

    Have a look at:http://www.upsdell.com/BrowserNews/stat_des.htm #d04

    (Figures a bit old, but I think the main point still applies)

    The point is that when I go to a shopping mall I went there to buy stuff, much unlike when I surf to my favourite pages. And they wonder why I find thouse blinking banner annoying? They are annoying because, most of the time, I didn't log on to buy anything.

    So, to some extent I think that web ads sould be more like the tv commercials - "get this brand into your heard" kind of ad. But, the success of such ads are of course much harder to measure. Even though computer ads supposedly were to be the dream for copy writers et al. (Should be so easy to measure exposure etc etc)

    Also, though it has been mentioned above, just clicking a banner on a site that I'd like to support would not help much in the long run. I'd of course have to click and buy.

    --

    --
    Slashdot signature: 'Laugh assist to nerd'

  114. how does it work... by shokk · · Score: 1

    My guess is that the server makes sure that everything in an HTML file that is considered revenue generating is loaded by an IP address within a certain amount of time, and if not it displays the stupidity of the company running the site.

    How are people running through WAP gateways and text based browsers supposed to see their little ads *and* get their message; won't work.

    This looks like the bottom of the barrel in scraping away the last of the free goodies on the Internet. Now that companies are acting like they have a right to impose a fee on us for their content, we can boycott sites that use this. After all, no one goes to Doubleclick.com because of their advertising policies, so this is a logical extension.

    How can we get around this? Any proxy software should just load all images and discard them rather than not load them. To get around that, they may load some Javascript to see if images by certain tags exist within the page, which means pages are about to get a lot heavier with respect to what they are displaying. This is where companies like Google win.

    And what happens when we begin blocking the popup or text that explains their "watch or pay" policy? Will we be bound by text that we have not read? We've already seen that such a thing has been thrown out of court for licenses that are not immediately readable.

    --
    "Beware of he who would deny you access to information, for in his heart, he dreams himself your master."
  115. If you annoy me, I'll tune you out by Ms.Taken · · Score: 2, Insightful

    Having stuff flash at me while I'm trying to read, is so annoying that I simply won't put up with it. If you use animated gifs, I'll turn of image loading. If you use Flash, I'll wait till it's finished playing. If you refuse to provide content without flashing ads, I'll go elsewhere.

    Conversely, if you avoid annoying me, I'll probably let you stick around and might even pay attention to what you have to say.

    There seem to be two main paridigms for online advertising, I'll call them Amazon/Google (AG) and DoubleClick (DC). AG ads are unobtrusive (static images or text), targeted (related the the webpage I requested), and informative ("Click here to purchase this book"). DC ads are intrusive (flashing), untargeted (random banners), and obscure ("We'll make you happier/sexier/richer!!"). As retailers become savvier, looking more at generated sales and less at the number of click-thrus, they'll turn more and more to AG ads. Until then, I don't care how technically sophisticated your ad-loading software gets. If it annoys me, I'll find a way to avoid it.

  116. do what I do... by Anonymous Coward · · Score: 0

    ... when I come across a site that demands I turn cookies turned on... leave & never return.

    1. Re:do what I do... by Anonymous Coward · · Score: 0

      LOL thats what I do too ;-(

  117. Block the pop-unders, leave the rest by flieghund · · Score: 2

    My policy is to unilaterally block pop-under advertisers. Not the sites that feature the ads, but the companies that provide the ads -- like iwin, doubleclick, etc. I'm able to do this through my HOSTS file, which while still allowing the window to pop-under, at least displays nothing but a blank page.

    There are limitations to this method. Yahoo's "dailynews" server started popping under ads that came from straight IP addresses, something HOSTS can't block. So I was forced to label dailynews.yahoo.com as a restricted site, and disabled all forms of scripting and advanced features for that (and a few others) web server.

    I have no problem with banner ads or even those new square Flash-based ads. It's motherfuckers who decide that they need to open up new windows (either over but especially under my current browser window) that get me all pissy.

    --
    "I came here to kick ass and chew bubblegum. I'm all out of bubblegum." MSE USC APX AIA CSI CASp
  118. Re:Your Sanity by Anonymous Coward · · Score: 0

    I was in the woods for two weeks


    awesome vacation dude!

  119. Lets consider the ads in question and ethics... by Anonymous Coward · · Score: 1, Informative

    Its been noticed that ads have gotten steadily more annoying. Consumers can't be stupid enough to think, "Oh wow, wander whats behind banner number two?" everytime they see something like "You've Won" or "Smack the monkey and win." Resentment to unfair tactics may be the issue. The average Joe consumer doesn't block ads, rather the aggressive degradation of adds could more realisticly be viewed as stemming from the competion by ad companies. They need results to get money for banner placements, in the search for results the ads have steadily gotten worse.

    If ads were to go back to using no animation or pop-ups I think resistance to viewing would go down. Its hard to read an article when there's a blinking flashing ad on the page. If flash is in use, you can't hit stop and kill it like an animated gif. Also, the deceptive "You've won cr@p" has to go, their should be laws governing deceptive and misleading advertising if I'm not mistaken.

    Just my thoughts, the issue has more than ethical questions of blocking to be considered. Advertising also requires ethics.

  120. A lot of bunk by Fnkmaster · · Score: 4, Interesting
    I see a lot of posts defending the brave upstanding advertisers who have to pay the bills.
    Let's get something straight - I think everyone agrees with that sentiment. Some people seem to feel for moral reasons that the web should not subsist on advertising alone because it is an inherently offensive mix, the freedom of the information frontier and the crassest sort of commercialization ever.


    Part of the problem is that those upholding the advertiser's point of view keep saying things like "they have a right to do it" and "if you didn't block it, we wouldn't have this problem. Stop blocking ads now!". The reality is that the only reason blocking has become even slightly common is because the ads have gotten SO much more incredibly intrusive and offensive with the obnoxious javascript toys at the disposal of the advertisers.


    And why have the advertisers gotten so obnoxious? Why the move to pop-under, pop-over, run-around-my-fucking-page-chasing-my-cursor sorts of annoying ads? Because there is some sort of myth that people are supposed to click-through on ads and if we annoy the living shit out of them, they will click through. I'm sorry, clicking on ads just is terribly unlikely to ever happen and is not a meaningful metric of anything. People don't WANT to interrupt their precious time relaxing and browsing the web for information, news, pr0n or whatever to read your ad shit. Now if you were nice, showed me a banner ad and let me click to queue something up in my bookmarks or some client side info-base, I might want to come back to it later, maybe. But you should be fucking happy that I even saw your ad, glimpsed your logo and have cognizance that you exist.


    As soon as your ad association in my mind goes from "oh that looks neat" to "fucking assholes make me click all over the place" I guarantee you I'm gonna go looking for blocking software and I'm sure as hell not going to have positive associations with your product (apparently these advertisers don't care and they just want any association at all). But I guarantee I will never buy anything from X10 or anybody who gives me a pop-under. Furthermore I consider it outside of my contract of usage for a site that they can force me to waste my time chasing click-unders. Give me banner ads, fine, if they are too big and take up more of my screen than the content I won't read your site, IN THE SAME WAY I'D TOSS A PAPER PUBLICATION THAT DID THE SAME. But don't abuse javascript to wreak havoc on my browser or browsing experience or I will be forced to take defensive technological measures against your hostile advertising. I'd rather not have access to your site than feel like nothing other than a click-through prostitute.


    There's a reason TV has something like 4 minutes of advertising every 30 minutes - if they had any more people would shut off their fucking TVs and cancel their cable subscriptions.

  121. Idea (all sides win).. by nightfire-unique · · Score: 3, Interesting
    How about an ad blocker, that still downloads all images or files marked as ad related (according to the ads database or logic code) .. so that the site still gets the money, but instead of displaying the ad and annoying the user, it simply pushes it to /dev/zero.

    Sure, it still uses bandwidth, but other than that - no harm done. Anyone who feels this strongly is *not* going to buy the product of aggresive advertisement in either case (so the advertiser loses nothing), the website gets some cash, and you save screen space.

    Thoughts?

    --
    A government is a body of people notably ungoverned - AC
    1. Re:Idea (all sides win).. by nightfire-unique · · Score: 1

      Of course, that should be /dev/null. :)

      --
      A government is a body of people notably ungoverned - AC
  122. Re:Lol! You said it Michael. by fatphil · · Score: 1

    As a user of W3M (text-mode browser, like Lynx but better), I have about a dozen words to say: I'll never get to see these marvelous websites, I feel gutted.

    FatPhil

    --
    Also FatPhil on SoylentNews, id 863
  123. Legality (and hype) by nick_davison · · Score: 3, Informative

    While it may well be the case in the US that they don't have to make their sites visible to people using different settings, it's starting to become a legal issue in the UK.

    As disabled people do have every right to access content, things like making a site usable with alt tags is starting to become a genuine legal issue. Telling a visually impared person that they must turn on the features that make a site physically unusable to them would be breaching equal opportunity laws. Curiously, most of the UK laws wandered out of the EU and so I'd imagine that Germany, where this company is based, is much the same.

    Of course there is one other option no one seems to be looking at: "Who cares whether it'll pan out? Creating this hype will generate a lot of interest in the company and maybe help raise enough money to see us through the current downturn." A lot of companies that planned to get to IPO this year seem to be doing this at the moment. Whether or not they have a tech and whether or not it's actually viable, if you create enough talk and hype, you might still be able to get a few investors that you wouldn't have got otherwise and just maybe you'll stay in business long enough to come up with a more viable product.

  124. Now it's time to get nasty. by Fixer · · Score: 1
    Oh sure, Mr. Adnoying webserver, you know when I download ads or not. Fine.

    Meet the Tar-Baby Proxy. Takes absolutely the longest possible time to grab each and every ad, and thence simply discards them.

    Not only will I not see your ads, but I will vindictively waste your resources.

    --
    "Avast! Prepare for the rodgering!" THWACK! "Arrr.. me nards.."
  125. What they should be doing... by Anonymous Coward · · Score: 0

    Is developing software that will accually detect if you REALLY are looking at the ads, and get rid of this idiot idea that you must accually *click* on the ads.

    Gods know I see the ads most of the time. You can't really help it. But I refuse to kiss their butts by clicking on the ads.

    It's a matter of princable. Treat the ads like regular ads. Do we touch the ads on the sides of buses? Or on TV? No, we see them at times. But they need to get it though their heads. We don't immediately go out and buy what ever we see. Ads are designed to keep the product in the customer's mind WHEN they want/need the product. Not designed to jam the product down your throat. That's the fastest way of stopping me from purchasing ANYTHING, or visiting any site.

    If you want to fight pop-under ads, use Opera. It has several built in things that helps fight ads. a) Like the pop-under ads? No problem. The web pages are listed in a line at the top of the browser, with the ability to turn off the pages without even seeing them (right click the link, and choose 'close') b) Annoying animated GIFs? Turn off animated GIFs in the preferences. c) spawning windows (like from porn sites?) turn off Javascript then leave.

    At least with Opera you can turn off dozens of web sites, even if they're spawning with Javascript turned on. Turn off Opera, and it erases *all* windows. That also works with pop-under ads.

    For the software that company's developing, bring it on. There is only a few sites I visit reguarly, and I doubt they'll be that intrusive. It'll be like the so called 'copy protection' of CDRs. Crackers will defeat it, and make it available, disipte the DMCA. No one can check ALL computers, and FTP and E-mail isn't stopped ;)

    Shadowwalker Delaforge (shadwalk@operamailx.com)
    to e-mail me, erase the 'x' from operamailx.com

  126. Anyone know a site that runs this?? by whizzmo · · Score: 1

    I wanna test out my setup to see how well this works :)

    --
    nuclear presidential echelon assassination encryption virulent strain
    Whizzmo
  127. 480x60 by asphyxiaa · · Score: 0

    Ok, currently I use Apache as a proxy that will filter certain images/sites/paths that contain banners/ads and replace them with a 1x1 transparent GIF. This works pretty well, except throughout the day I come across more sites that arent being filtered because they have ads from a different host/path/etc. So isnt there a way to write a rule in Apache to detect an image size in the html and replace it with a 1x1 GIF based on the image dimensions?

    Also, does anyone know how to modify or block HTTP_REFERER and HTTP_USER_AGENT using Apache? I used to block these headers using Junkbuster.. And I think you can actually have Junkbuster go through a second proxy (like Apache) so that I would actually be using Junkbuster and Apache as a single proxy, but I'd like to only have to use one at a time...

    --

  128. What I don't like by Anonymous Coward · · Score: 0

    is when my TV turns off every time I try to mute a commercial.

  129. Warez sites already do this ... by AftanGustur · · Score: 3, Interesting

    When you make a request do download blabla.html, the web server makes a conneciton to the server that serves the ads to see if your IP address has downloaded /gci/ads?ad12345&UniqueID. If it doesn't receive a response in 30 secs, it assumes that you didn't download the ad and you don't get to download blabla.html.

    This is already beeing done ...

    --
    echo '[q]sa[ln0=aln80~Psnlbx]16isb572CCB9AE9DB03273snlbxq' |dc
  130. This is not stealing!!! by Eric+E.+Coe · · Score: 3, Insightful
    Repeat after me 3 times: I am not responsible for a anybody else's business model (or lack thereof).

    I have no intrinsic moral obligation to make sure that a vendor's business is profitable or is based on a viable revenue stream. The net is by default a public place. Putting up a website is the same as putting a notice up on a bulletin board. Filtering out banner ads (having your client software ignore them) is like ignoring them in wetware (which is what most people do anyway). Or zapping/muting a commercial on TV.

    OTOH, putting up coercive software on the site to limit access to content is the vendor's priviledge. There is no intrinsic difference between password-protected content and this "must download the ads too" software. (I suspect that the customer response will be similar.) Your choices are: don't patronize the site, comply with the restictions, or evade the restrictions. There is no morality associated with any of these choices, it is merely a matter of market pressures and a technological arms race. (Remember, the closest ecological analogue of a vendor-client relationship is that of preador and prey. They are not your friends.)

    --
    An esoteric scratched itch:
    Homeworld Map Maker Tool
    1. Re:This is not stealing!!! by Anonymous Coward · · Score: 0
      You are right and you are wrong, too. Once you make use of a given service you have to accept the terms and conditions, end of story. If you do not like free services, then go somewhere else and if you do not like their terms and conditions, then keep searching. You do not have an intrinsic right to access the Internet according to your preferences only. You are not living in a world of your own.

      It is really as easy as that so of course it is not stealing, yet do not complain if you get kicked out. You can make choices, so do.

  131. Applet ? by Anonymous Coward · · Score: 0

    They could do it with a tiny Applet which does nothing more than open a socket connection to the originating server (allways possible and allowed), loads the image data und then displays the image in its frame.

    Once the applet is loaded and running there is nothing a web browser can do against displaying the ad.

    The originating server can pass on the request to doubleclick et al and return the ad to the applet.

    I am sure some DirectX object could do this, too.

  132. Turn off images by myov · · Score: 1

    What can they do if I force my browser not to display *any* images?

    --
    I use Macs to up my productivity, so up yours Microsoft!
  133. Arms race prediction by DickBreath · · Score: 5, Interesting

    You can do this purely on the server side. No cookies. No by IP address. No javascript. No Java. Possibly without even using frames.

    First, with frames. Send them a tiny page with frames. A frame for the ad(s) and a frame for the content. The tiny frame containing html contains custom url's for both the content and the ads. That is, the "session id" is embedded in the url's, without using cookies.

    When the browser requests the url for content, the content stream is stalled until the ads are downloaded, or at least started. Since ads and content are tied to the same "session", you can tell which content goes with which ads. But you don't penalize others behind a NAT. The server can still be load balanced because a database keeps track of the sessions -- which can be very short lived. So even multiple servers can be used, as long as they share a common database -- or some rpc mechanism to ensure evil ads have been served before "unstalling" the stream for the content.

    I said do it without frames. Simply send the html stream of the main page. Ads appear in the stream before content, which almost means necessarily "above" the content. When the stream gets right up to the point where it is to start delivering content, you stall the stream until the ad image(s) are at least requested.

    Possible problem: are there any browsers that cannot request the ad image while the main content page is stalled? i.e. non multi-threaded?

    Possible countermeasure: when your junkbusting proxy detects ads, it must deliver fake ads to the browser (or better, rewrite the content stream so that there aren't even ad spaces in the content), and it must make a pretense of requesting ads from the server. The proxy would continue to suck down the ad images until the content is delivered -- then abruptly close the ad stream connections. This way, if the server isn't willing to unstall the content until the ads are fully delivered, all you wasted is the bandwitdh to get the ads, but you don't see them. If the server is willing to unstall the content as soon as ads are requested, then you drop the connection on the ads asap. Using such a proxy, the server is unable to detect that you didn't actually see the ads. You at least went through the pretense of downloading the ads.

    I don't see any counter-counter-measure that the evil advertisers could employ. From their point of view, you are a normal browser, downloaded both the ads and content. How can they further tell that you can't see the ads without going to more invasive techniques like Javascript?

    I've often wondered about using javascript to deliver the content. You send down a javascript program that writes new content into an <ilayer>. But the javascript can be obfuscated. Even the "content" can be compressed with the javascript effectively unzipping it as it writes content into the layer. This almost certianly requires real javascript running in the browser to render the content part. The javascript could attempt to detect that the ads have been rendered first.

    Now the counter-counter-counter-measure. Let the javascript and rendering happen in the ad busting proxy. The proxy is designed so that its rendering engine renders a data structure in memory. You then run filters on this data structure. Pattern matching. (Lisp anyone?) It's like a regular expression, but without the same kind of syntax. You do the recognition on the final page, which is expected to be structured a certian way. The ad, which falls in a familiar place is removed, and then new html is written from the in-memory data structure rendering of the original html. The new html is sent from the proxy to the end user.

    Then what about a counter-counter-counter-counter-measure? Well, the evil advertisers could start sending you the content as a java applet. The applet contacts the server via. a non http stream and gets the content through a secret non-standard means. But only if the ads were delivered.

    But then the counter-counter-counter-counter-counter-measure is to run the applet in a faked environment that fools it into connecting to the server and think that the ads were deliverd on the local page.

    But then the counter counter counter counter counter counter measure is to serve both the ads and content together in a single big applet which uses a proprietary non-standard means obtain both the ads and content over a special stream from the server. Any attempts to circumvent this is a violation of the DMCA. They automatically record your IP address, look up your location, and to an XMLRPC call to the local FBI office's server to send goons to your door.

    Then the counter counter counter counter counter counter counter measure is to stop visiting such sites. (And to bitch and complain on slashdot.)

    Then the counter*8 measure is to lobby for custom legislation that requires you to browse to their web site if you were a regular visitor before, and to watch their ads. Alternately they can send party comrads to your home to force feed you the ads.

    Finally, you must download and install their TeleScreen(tm) applet which uses your computer's usb camera and microphone to give them two-way telescreen access to your home to ensure that you are watching your dialy minimum recommended allowance of ads, as determined by federal standards.

    What is the counter*9 measure?

    --

    I'll see your senator, and I'll raise you two judges.
    1. Re:Arms race prediction by jesser · · Score: 2

      Possible problem: are there any browsers that cannot request the ad image while the main content page is stalled? i.e. non multi-threaded?

      That doesn't have anything to do with multi-threadedness. Many browsers have a limit on the number of simlutaneous requests per hostname or per window in order to reduce network congestion. In particular, both Internet Explorer and Mozilla limit the number of persistent HTTP connections to a given server to two, based on this recommendation in RFC 2616: "A single-user client [that uses persistent connections] SHOULD NOT maintain more than 2 connections with any server or proxy." (See this bugzilla entry for discussion about how many connections Mozilla should maintain with each web server.)

      If several image tags come before the iframe tag, the page will not finish loading until those other connections time out. The same will happen if a browser intelligently decides to download images in the main content before it downloads images in iframes (this may happen anyway, if the HTML of the main content loads before the HTML of the iframe).

      --
      The shareholder is always right.
    2. Re:Arms race prediction by dnmetz · · Score: 1

      As long as the ads are in some way an object that can be separated from the rest of the html stream then you can find a way to detect it and block it.

      However, what do you do in the case of a site composed entirely in a single flash movie? Or the information you want and the ad are combined in a way that makes them a single object?

      As faster internet connections become come we may start to see moore sites defined in PDF or some similar file type. Sure you can open these up but how much preprocessing do you want your firewall to do?

    3. Re:Arms race prediction by DickBreath · · Score: 1

      But I addressed that possibility. It was the cuonter cuonter counter counter counter counter counter measure that advertisers would use.

      The specific instance I used was a java applet that displayed both the ads and content. And I mentioned that the applet could use a proprietary non-http means of getting it from the server.

      The counter counter counter counter counter counter counter counter measure I mentioned was to not visit such sites.

      --

      I'll see your senator, and I'll raise you two judges.
  134. Ad Muncher = great clean ad blocker by SrDrew · · Score: 2, Informative

    Not sure if anyone mentioned it already but Ad Muncher http://www.admuncher.com/ is the best (imo) ad blocking program out there, it doesn't hog processor(popupkiller), or crash(popupkiller), or have a terrible ui (Proxomitron), and it's not tied to any particular browser(popup-ad-filter).

    The installer is 65k total, written in assembly, it uses very little memory and virtually no processor, and is extremely customizable. The "advanced filters" option lets you specify any text in the page source to be replaced on the fly and supports wildcards, it can block banner and popup servers directly and not even draw the ad or the space it would take up, and it has lots of useful options like the block images with "typical banner dimensions" option stops a lot of ads without you ever having to take the time to make a filter for a particular one.

  135. Ad Trickery by _Sprocket_ · · Score: 2


    And how are the web site owners supposed to pay for the bandwidth you're using?


    I like to see my favorite sites do well. If that comes at the cost of a few extra K on a banner add, I'm all for it. Great. Advertisers get their "message" out (heck, sometimes I'm even interested in it). Sites get to continue operations. I get content. Everybody wins.


    But there's a limit to what I'm willing to pay. Flash adds. Stupid java tricks. Exceptionly flashy or large animated gifs (a rare annoyance, thankfully). Tracking. These advertising methods get filtered.


    I blame it all on DoubleClick. The emphasis on click-throughs and customer tracking / targeting seems to have come from their camp. It set an ugly precedence. Online advertising somehow now fails if it doesn't create immediate response (click-throughs) or is unable to provide targeted customer data; a standard no other advertising medium is expected to meet.


    Everyone looses under this system. The advertiser, who's messages isn't seen. The end user who either has to undergo extraordinary effort to filter out offensive advertisements, or otherwise deal with intrusive ads. And the webmaster who's site looses income depending on how many of their users choose to make the effort to protect their personal rights.

  136. but popups crash my desktop. by ezrec · · Score: 1

    How could these manufacturers possibly detect whether or not my browser is Java enabled? I really couldn't care less about banners, but cascading popups should be either made illegal or limited to one popup per page. There is also nothing more annoying than having to press ctrl+alt+del to close a browser window that pushes my navigation bars completely offscreen. Such anti-blocking software could be used at an unfair advantage unless this annoying behavior is stymied.

  137. Against the law? by volkris · · Score: 1

    Wouldn't this be considered collecting information? And isn't it illegal to collect information from children under 13, even by accident? So wouldn't any site using this be opening itself up to lawsuits?

  138. Drawing fire from IIS? by LinuxDeckard · · Score: 1

    If we see a wide-spread deployment of this web server software, will we begin to see viruses that target it?

    I confess I'm making several assumptions on how the software will work (aren't we all at this point?), but I wonder how much consideration MediaBEAM has put into this possiblity.

    --

    UNIX *is* user-friendly. Its just more selective on who its friends are. --Scott Adams
  139. FREE TV... Bad comparrison by Anonymous Coward · · Score: 0

    I've noted some users comparing net ads to tv ads, referring to tv being a free medium. Go back to the old axiom, nothing is free, the consumer picks up the tab. Sponsors shell out a lot of $$$ for tv ad time. In turn Joe consumer has to pay more for the sponsors product. TV profits, sponsor profits, and the consumer pays. TV isn't free, people just don't see themselves paying directly for programming. And people wonder why products keep going up in price, advertising is expensive and competitive, its a vicous cycle that does less to inform consumers than it does to cost them more.

    Oh, and one last note the world keeps on spinning with or with out advertising. The internet was a great library until those commercial book stores came into the scene -_-!

  140. And I have way to fix that too by kjj · · Score: 2

    Just send a boolean "true" back whenever a server asks if a window is open or anything. Now I don't know much Javascript but are you only able to query "hey, is the window called 'bigbanner' open?" and then get a boolean true or false or is Javascript able to say "hey, give me a list of all the popups open" and you then check to see if the window called 'bigbanner' is in the list of windows returned. The second method of pop-up detection would be much harder to get around since the only possible way to avert it is to hack javascript in such a way that when window.open occurs it gets added to the list of open windows even though it does not appear. You know the more website try to push the issue the more people will want to block this stuff. I have no problem with banner ads. Even animated ones are ok by me. It is pop-ups and the javascript "punch the monkey" ads that really get on my nerves.

  141. In defense of "the freeloaders" by Jonathan+C.+Patschke · · Score: 3, Interesting

    I'd like to address the "just view the damned ads, you freeloading hippies" crowd.

    Personally, the reason I started blocking banner ads (a little over a year ago) was because of one very specific ad--that stupid "punch the monkey ad".

    It managed to crap more web no-nos into an ad than I ever though possible:

    1. I froze my browser, as my browser had to load the Java runtime to display it. This is nontrivial time under Netscape, and used to be a lengthy wait under IE, as well.
    2. It moved. Quickly. Very distracting when you're trying to use Altavista to look up a particular bit of LaTeX wizardry.
    3. If my mouse cursor hovered over the ad, the ad captured mouse focus, and caused my mouse cursor to not always move as it normally would (largely due to the overhead by the Java runtime, I'm sure--I was using a SPARC LX at the time).
    4. It would frequently cause Netscape to dump core, and would occasionally cause IE to just freeze-up completely.

    At the time, it was a very popular ad. I don't know what I was typing to into Altavista to make it trigger (LaTeX->latex? Monkeys? WTF?), but I seemed to get it every five pages, and Netscape dumping core every five pages was not conducive to my finding out this LaTeX technique, which I needed right then to finish a CS paper (I'd have used Fondren Library, but this was before the Rice campus library stayed open 24 hours daily).

    So, as a temporary fix, I disabled Java (I didn't need it at the time), used a different search engine (Google), got what I needed, and then installed Squid+Cameron Simpson's Ad Zapper (once I'd turned-in my paper), and the problem went away. I could have Java as I needed it (Rice's CS departmnet loves Java. Turning it off in a web browser meant not being able to do certain coursework), and my browser didn't crash because of stupid monkeys.

    The clear message I'd like to deliver is I don't mind non-intrusive advertising. In fact, most banner ads are very interesting, so long as they don't flash or titter about annoyingly, and don't stupidly try (and fail) to look like dialog boxes (looks really stupid under OpenWin). Occasionally, I click one. However, if it pops up in a separate window, if it spawns things in other windows, if it creates offscreen windows, if it crashed my browser, if it litters my hard drives with cookies, if it prevents me from clicking on your page, or if it dances around like a stupid monkey, I will disable it, and I will go elsewhere.

    There are probably a lot of technically-minded users that feel the same way. I don't want to steal content--I don't have this need to remove all adverts from the pages I'm viewing (although, I will strip them out, if need to print the page). But, my computer is my computer, and if your website can't sit in its window and behave itself, you've just lost a viewer.

    --
    Pining for the days when The Glorious MEEPT!!! graced SlapDash with his wisdom.
  142. Current web advertising unacceptable by Chris+Johnson · · Score: 5, Interesting
    The current state of web advertising is comparable to TV advertisements that come out of the TV, walk over to you or follow you into the kitchen or bathroom and tug on your sleeve whining 'buy me!'.

    That's bad advertising, plain and simple. It's been _proven_ through marketing research that if you get too annoying you unsell your product, most notably that's been proven through market research of particular sorts of TV advertising.

    We're not talking about 'just let these poor people make money, will you?', we're talking about enabling them to hose themselves through severely stupid and bad advertising. The people using ad blockers are doing advertisers a FAVOR- that is valuable data, that information. They often accompany this with other valuable data- announcements that "if it was all quiet well-behaved banner ads that didn't blink or flash or move a lot, we wouldn't feel compelled to be doing this". That's valuable information. Since when is a random consumer's browsing history more valuable than an outright, impassioned statement of that consumer's preferences on how they want to be courted, advertising-wise?

    Intrusive web advertising can be compared to billboards: the people attempting to use it can make a big fuss about how it's a moral imperative that they should be allowed to do this, but it's not only a lie, it's not even a healthy or useful thing to be doing. They are wrong in wishing to do it. If they are allowed to do it they will actually harm advertising in general- though this does create a window of opportunity for well-behaved advertisers, as well as substantially driving down the costs for well-behaved advertisers. Still... if you don't actively hate the entire field of advertising, it's hard to justify these abusive, useless practices, which harm advertising in general.

    David Ogilvy considered advertising the art of 'speaking well about' things. Abusing people to the point that they are blindly, acutely hostile to anything resembling advertising makes it that much harder to do it properly and sensibly.

    Just as restrictions are placed on the use of roadside billboards, I would like to see this abusive web advertising restricted by regulation and government oversight. It's plain that these people cannot and will not behave or police themselves.

    1. Re:Current web advertising unacceptable by Skapare · · Score: 2

      Normal advertising on TV, on the radio, in newspapers, in magazines, on billboards, and to an extent even advertising delivered to you by the postman, are what is called impression advertising. You see it, you ignore it, you see it again, you ignore it again, you see it yet another time, and eventually you may end up buying it. You buy it because when you go to the store and are faced with several brands, you more likely pick the familiar brand.

      Advertisers hate impression advertising. This is especially so if they are a separate entity from the product or service to be sold. They don't know if the advertising is working short of measuring sales results. And sales results are usually lagged from the ad campaigns. If there is more than one campaign, it is unclear which is working.

      Advertisers use many techniques to try to not just drive sales, but also drive sales statistics that prove (or disprove) a particular method or media of advertising. Coupons can be tracked to the media they were printed and delivered in. Telemarketing often pitches immediate response. This is the holy grail of marketing; to know what advertising works so they can do more of that and less of what does not. If this requires knowing what TV shows you watch, what radio you listen to, what newspaper you read, or even what roadways you drive on, so be it. That's information they want to know so they can deliver yet more advertising, impress you even more, and spend less doing so.

      The internet was supposed to be the diamond mine of advertising, not so much because there's more people to be impressed, and more ads can be delivered, but rather, because collecting the statistics on what works and what doesn't was supposed to be so easy. But this assumption was faulty. It assumed people would react immediately because now they can. With TV or radio or newspaper, you cannot react quickly. The cuecat was supposed to be a means to collect this data in other media by using the internet as a feedback mechanism. But in reality, people don't react immediately. They didn't before. But advertisers were assuming that was because there was no means to react immediately. They thought with the internet now they can, and they will. Wrong.

      With the internet, people are more focused then with most other media. They may be impressed by frequent ads that establish brand recognition in the classic sense, even in this new media, but people generally don't react immediately. And the reason is simple; they have another goal right now, and that's whatever brought them to the internet and to the web site at that moment. Few people will stray from the path.

      As a result, ads seem to be failing. They are failing to deliver the misguided expectations of getting an immediate response which can be tracked better. Ads on web pages do work, but only in the classic impression sense. They may not be working as well as in other media, but they are working. However, the perception is they are failing. The holy grail was found to contain poison, but the quest goes on. So we get more intrusive ads trying to get that immediate reaction. Even if we don't buy right now, just clicking on the ad to prove we saw it is what the advertisers want so they can show data to the company that actually has the product or service to prove their ad campaign works.

      Of course bad advertising fails. But in this new media, advertisers are not recognizing it. Or maybe they are and maybe it is the case that as ads become more intrusive, people are blocking them more, and that is a failure. The trouble is, advertisers don't see it as a failure of a campaign, but as a failure of acquiring the data. So they try harder. So we get escalation and things like anti-ad-blocker software. But as long as advertisers fail to wise up as to why people are blocking the ads, this will only escalate, and hurt them (and us, too).

      --
      now we need to go OSS in diesel cars
  143. Re: Leechers Suck (Oh, please.) by Fantastic+Lad · · Score: 1
    Congratulations. You have been bought and sold.

    And worse, just like the virus you have been infected with, you are now part of the problem, pushing your corporate viewpoint like a damned religion.

    Read some of the enlightened responses to your post and then make an attempt to undo the programming you have had shoved up your nose. It's your brain, after all. Try and own it for once; the only power you lose is that which you give away.


    -Fantastic Lad

  144. Lets take this at face value by bperkins · · Score: 1

    There's been a lot of moral and legal arguments about this issue of blocking ads. I think the issue is really much simpler than most people are making it out to be. People are going to go to various lengths to avoid ads. Content providers are going to try to prevent them from doing this.

    This is going to go on forever. The content providers will further their interests. The users will further theirs. I don't have any particular problem with either side. I hope it doesn't come to providers threatening people over this issue, though it probably will eventually.

    I don't think it takes much thought to realize that as long as we don't have standard issue Microsoft boxes that can't be modified, there is no way to prevent all ad blocking. Since it can't be prevented, all of this arguing is pretty moot.

    I really can't understand that there should be some moral reason why I should force myself to be subjected to ads if I can avoid it. Advertising has always seemed to me to be morally bankrupt anyway, so what's a little tit for tat?

    So I say relax, install junkbuster ( or whatever you use) and surf ad free for now, and be prepared to either give up escalating the battle or sinking a lot of time in your ad blocking.

  145. The opinion of an ad exec by sinster · · Score: 4, Insightful

    Ok, here I am, talking about advertising again.

    Assuming that the software works 100% (read: it blocks content if and only if the ads weren't viewed), then it will kill advertising revenue. The reason is all about click through ratios. It goes back to my previous statements: if someone doesn't want to view ads, then they aren't gonna be clicking on ads. And if they aren't clicking on ads, then forcing them to see the ad only lowers your click through ratio. And that means that you can't charge as much for advertising as you would otherwise be able to. So your costs go up, your revenues go down, and things are bad all around.

    This doesn't even address the repercussions of the simple fact that forcing your viewers to also view ads is gonna piss them the hell off.

    And then there's the technology itself. I could see it done in 2 ways: java/javascript and redirected frames.

    The java/javascript method would require the user to have java enabled. And if they don't have java enabled, clearly the system won't work. Trying to put up a website that doesn't work for users with java or javascript disabled doesn't work. There are far too many users out there who have them disabled. Hell, I wish all users disabled them, but that's just me.

    The redirected frame would be the best way. Make the ad server serve out an HTML frame that contains a link to the graphic and another link to a 1 pixel frame on the host's server. The host's server sits there and counts the hits on this other frame, and when it reaches the right number, serves out the content. But this doesn't prevent the user from blocking the ad graphic at all. It works if the user blocks the ad frame, but doesn't prevent the user from just blocking the ad graphic.

    The only way you could tell that the real graphic is actually displayed is to send out java or javascript that knows the checksums for the ads that the user is going to be served, and then compares the checksums before the real content is displayed. But once again that depends on the user having java or javascript enabled. And it also requires the ad host's webserver to be integrated with the ad network's webserver. Only really big sites can afford to do that integration, because it means that they have to own their own ad server and content server. Ad servers are highly expensive. Yes, there are freeware ad servers out there, but none of them have the speed that a high traffic site needs, or they lack reasonable targeting options.

    All in all, I'd say that this new beast is going to be a miserable failure. The problem isn't that this beast exists, but that someone actually thought it would be a good idea. That means that I have to get back into the propa^H^H^H^H^Heducation war again.

    --
    -- Nolite audere delere orbiculum rigidum meum.
  146. Oh, grow up. by Fantastic+Lad · · Score: 2, Interesting
    Sure, Slashdot is partly funded by Ad banners. But I block 'em, and I will continue to do so.

    I didn't ask Slashdot to be freely available on my web browser. I come here because it's a neat site which started off as a hobby/fan based effort and which I visit in the same spirit.

    If it can't keep going on that kind of steam, then too bad. The world won't end without Slashdot. There will always be another place to read dumb articles and dance in the mosh pit of pseudo-informed public opinion. There have been and always will be soap boxes aplenty.

    In any case, the net is SUPPOSED to be adaptive and dynamic.

    But seriously, and this may sound Machiavellian, but if you are smart and savvy, you will ALWAYS be able to surf for free, both on-line and through life in general. Is this wrong? Is it leeching? You bet it is! That's the state of things in this reality. Every time you sit down to eat, something or several somethings have died for your consumption. The JOB of each and every spirit is to figure out how to exist in this reality with ease, grace and as much benevolence as possible.

    Part of this learning process requires that you spend a miserable amount of time in the trenches learning from your mistakes. If 90% of the Web-faring populace makes the Web free and easy for the remaining 10%, and would do so regardless of my or anybody else's actions, then it would not benefit anybody to not take advantage of their behavior.

    Where Greed DOES become a force in the negative, is when you actively withhold information. I'm certainly not going to keep the techniques of ad-blocking a secret from the masses for my own benefit; I explain the concept of ad blocking to everybody I meet. I tell them it's rewarding and easy to learn. Anybody who seeks further help, I take the time to describe to them the process. Of course, most poeple don't pursue this knowledge. This is directly linked to Karma (the non-digital kind which most of the shmucks here don't believe in), most people will simply not pursue higher knowledge until they have properly learned the lessons at whatever level they're currently at. And that's how it's supposed to be.

    In any case, if one day the web becomes ruined because everybody has figured out how to block ads, (as if THAT'S at all likely), then fine. The Web's time will have come. The world will move on and adapt and be dynamic. And the 10% who are aware will quickly rise to the top of whatever new paradigm takes its place. Change is both healthy and ultimately, unavoidable. Stagnancy is death; luckily both are just illusions.

    Everything is just a lesson in the end.


    -Fantastic Lad

  147. boston.com by arfy · · Score: 1

    Use Netscape 3.04 or 4.08, turn off Automatic load of images,disable cookies (if using 4) or ask to be warned about cookies and refuse them (if using 3), Java and Javascript and it works fine. And if there's an image you really want to see, right click its box and tell it to load.

    Pages load a lot faster, too.

  148. MOD this up!!! by Anonymous Coward · · Score: 0

    My sentiments exactly.

  149. Re:Your Sanity by Budster · · Score: 1

    You are so right. Just drive on a major highway and you are distracted with so many billboards. I noticed the other day, that TV stations are now increasing the size of the friggin thing in the corner of the tv. The item that turns off when a commercial is on.. :) Anyway, pretty soon they will use this space for ads. Its only a matter of time, before the content that we actually do see, is about 1/2 to 1/3 screen - the rest will be ads.

    I can't even watch a baseball game... the batter gets up to bat, and all you see is ads in your face, you can even pay attention to the batter... forget the ump and catcher.. if you just think they are they, you see the ads.

    I've noticed they stepped up the ads on the net, by shoving an ad in your face, some sites generate a new ad in 30 seconds - I guess it checks to see if you closed it out. Some wont even allow you to close it out, as soon as close is clicked you get another ad.

    This is worse than TV, at least on TV you can change the channel. I think these filters are our remote controls to change channel.

    Want to see something interesting, next time during one of your favorite shows, count how many car commercials you see in 1 hour. Note how many say you need, you want, you cant live without it. One nite I showed my kids, there were 26 car commercials in a 1 hour span.

    Ya think the auto industry wants you to buy a car??? :)

    Do like investors on wall st are telling everyone... DONT be afraid to go out and shop, buy things. Uh... with what... Its amazing they forget they laid off a few million people, unemployment is at what 9% now.. national averages are crap.. since when are surveys based on 100 people... I seen some USA Today polls of 43 people, say this is how the people in the US feel about this topic... Uh.. Show me numbers like, 1/3 the population feels this way..

    Sorry bout the soapbox...

    Bud

  150. Advertising and ethics by arfy · · Score: 1

    Oh, c'mon. Advertising and marketing are generally the art of lying and getting away with it by doing it with enough art, skill or grace to make the customer forget what's really going on: a deception. If electrons or ink could defend themselves, 'advertising' and 'ethics' couldn't appear in the same paragraph, let alone in the same sentence.

  151. Conduct Laws For Internet Advertiser Scum by Anonymous Coward · · Score: 0
    1. Banner Ads must not blink, flash, scroll or use sound

    2. Ads must not attempt to scam the user or use false advertising. This includes but is not limited to:

    • "Click here to win" scams
    • deceptive banner design (e.g OS lookalike dialog boxes)
    • Legal or illegal Fraud or deception of any kind

    3. Ads must not pop-up, pop-under, pop-through or open or manipulate browser windows or dialogs in any form or fashion. Ads which do any kind of "poping" are against the law. Ads must not open or close new windows of any type.

    5. Banner ads should not attempt to track a user through web bugs, cookies or any other form without the knowledge and permission of the user. Tracking of ANY kind is prohibited unless the advertiser has the permision of the user to be tracked in written form. Tracking or information collecting of any kind is allowed by OPT-IN only. Advertisers who attempt to track users by the OPT-OUT method will be shot on sight.

    6. Ads must accurately represent the content to which they are linked. E.G. "Click the monkey to win" ads that do not lead to sites about primates are against the law.

    --------
    PLEASE NOTE: The penalty for breaking any of the Conduct Laws For Internet Advertiser Scum is life inprisonment, or death by firing squad, or both.

  152. You WILL view my ad!!! by FrankHaynes · · Score: 1
    But imagine what it would be like to watch tv and have ads appear overlayed over the program you're watching, or in boxes that pop up and cover half the screen in the middle of a moving scene.... it would drive everyone nuts, and that's what online ads are doing.
    You mean the way UPN and WB cram the closing credits of the show into a tiny corner of the screen in order to blast you with promos for the upcoming shows? Yeah, I know what you mean and it pisses me off, especially when I want to *read* the credits to see who played Admiral Futzelputz or enjoy the music that the producers chose.

    Oh well, we're just captives waiting to feed the marketers, like so many 'Neos' curled up in tanks to feed the computers of the Matrix.
    --
    slashdot: A failed experiment.
  153. Forced Advertising? by Usefull+Idiot · · Score: 1

    My view is that it's the same as spam. I have absolutely no problem with them sending me the ads, as long as they discriminate about who they send what.

    It is reasonable to include an ad about a network security product if someone is looking at an article about network security. This can be done without collecting information about people, etc. Just look at the way /. does their advertising. On occasion I am interested in the ads displayed. Boy, Linux and IT ads on /. who'd of thought.

    The thing that annoys me is the completely blatant untargeted advertising. I can refinance the home that doesn't exist. I can buy women's clothing, do they get a lot of guys buying women's clothing? I can get in on a great pyramid scheme. I can get one of those motorized carts for elderly people (it'll come in handy when I'm actually near old enough to require one). I can get a "University Diploma" for a couple hundred bucks even though I've Graduated from an accredited, reasonably ranked, University.

    I do not like the obstructive advertising like on zdnet that puts it in the middle of the text your reading, it makes me more likely to avoid the company doing the ad. Although all of this is a testament to how little they actually know about us.

  154. T&C by Anonymous Coward · · Score: 0

    "Once you make use of a given service you have to accept the terms and conditions, end of story."
    [Mandatory Disclaimer: IANAL, however...] That's what some people would like you to think. But that's trying to apply contract law without the primary condition that makes a contract valid: Mutual agreement by the parties involved. (I think I'll create a T&C statement for my television station that says that if you watch my programs, you can't go to the bathroom during commercial breaks.)

    Why not turn your argument around: Anybody who posts a page on the web is (by doing so) accepting the prevailing conditions, which include evasion/blocking of advertising images by some viewers?

    :::

    Invalid form key: oOJicPYS6p !
    If you this error seems to be incorrect, please provide the following in your report to Source Forge...
    ... which won't let you report a bug without logging on. Sort of defeats the idea of anonymous posting, doesn't it?
  155. Re:Your Sanity by martyn+s · · Score: 1

    Commercialism is about choice. Some people are not willing to tolerate such insidious advertisements, and may hurt sales. Of course if that were true, advertising wouldn't be so pervasive, but that doesn't mean we can't object to it, just like I won't pay 3 dollars for a bottle of water, doesn't mean they're changing their price, but that doesn't mean that I'm going to just pay for it. People wouldn't tolerate compulsory Coca-Cola tatoos at birth just because "Commercialism is what keeps society going." Why don't you think about what you've heard before you repeat them next time, ey?

  156. Yes, you can sell it. by CdotZinger · · Score: 1


    Moby-Dick is in the public domain. You can do anthing you want with it.

    In fact, there are a number of "avant-garde" books that are altered versions of other people's books (Crispin Glover's Oak-Mot comes to mind), sometimes even still-copyrighted books (Kathy Acker rewrote Neuromancer and sold it, for example). If you're a "respected, serious artist," you can do pretty much anything you want; suing you is such bad puclicity that no one would consider it. (See also: every Andy Warhol painting.)


    --
    Your mouth is like Columbus Day.
    1. Re:Yes, you can sell it. by MaxVlast · · Score: 1

      Okay -- bad example. How about "Jurassic Park"?

      --
      There should be a moratorium on the use of the apostrophe.
      Max V.
      NeXTMail/MIME Mail welcome
  157. I already paid for the content by cdn-programmer · · Score: 2, Interesting


    Yup - I already paid for the content and so has everyone else.


    I paid a monthly fee to my ISP. My ISP has paid a HUGE monthly fee to the Telephone company and my Telephone company has paid an even larger fee to each backbone carrier they connect to.


    If some of that money is not making it into the hands of those who create web content - then perhaps we should ask why. It is my pet peeve of course.


    In economic terms - the flow of money is opposite the flow of goods and services. But in the net we have this situation.


    Content:


    website -&gt uplink -&gt backbone -&gt downlink -&gt ISP -&gt websurfer


    Money:


    website -&gt uplink ? backbone -&lt downlink -&gt ISP -&gt websurfer


    It isn't the backbone who is the culprit here. It is the system where the telephone carrier is willing to pay the backbone operators for the connection because they need content and have no choice... but these same companies are typically unwilling to pay the websites that supply the same commodity. What difference does it make to a telephone company where the content comes from? If they are willing to pay say Sprintlink for bandwidth which supplies content - then why not the website operator in their neck of the woods? If the local webmaster's content weren't valuable then people wouldn't click on his website!


    This creates the situation where Telstra (an Australian telco) pays for Australian content being delivered off USA hosting companies but at the same time Telstra is unwilling to pay an Australian company to provide content. Why an Australian company would be willing to pay Americans but not Australians is a good question to ask.


    Of course - were Telstra to pay Australians for the content they create - then the question remains whether Americans or anyone else would be willing to pay Telstra for the opportunity to connect for the Australian content that Telstra thusly makes available.


    Classic monopoly/oligopoly IMHO. Sometimes terribly unfair things get entrenched. It can be changed and there are questions in my mind how many laws are being broken. (1) copyright. Caching proxies dupicate content and this is specifically against copyright law. (2) Fair trade practices. Sometimes deals are offered to some content suppliers.. Microsoft? Yahoo? Thompson newspapers in Canada? but not to anyone else. (3) Anti competitive trade practices. IE - if we can trade shares then we can do business... Otherwise forget it. (that was the "convergance" theme wasn't it - between the telecomunication industry and the newspaper industry).


    If the chicken farming industry worked the same way then every egg farmer would have to sign a contract with a retailer in order to get his eggs on the market. If retailers were given this much market clout then (1) there would be a shortage of eggs and (2) they would be a lot more expensive. Finally (3) Barriers to entering the chicken farming business would be way to steep for most chicken farmers.

  158. Text browsers and speaking browsers can't see GIFs by yerricde · · Score: 1

    Possible problem: are there any browsers that cannot request the ad image while the main content page is stalled?

    Yes. Browsers that use curses or a speech interface instead of an X11, GDI, or Quartz interface generally do not download inline images. Even graphical browsers that don't support GIF (patent reasons) or SWF (because Macromedia hasn't ported flash to the platform) don't display some types of ads.

    --
    Will I retire or break 10K?
  159. Too late, already been done. by NerveGas · · Score: 1

    Once I put some entries for various ad servers into my hosts file as 127.0.0.1. I tried surfing either CNN or NY Times (it's been a while), and guess what? I got a page that said that if I didn't look at the ads, I couldn't view the site. And these guys think they invented it. Sheesh.

    steve

    --
    Oh, you're not stuck, you're just unable to let go of the onion rings.
  160. Re:Viable cause by fferreres · · Score: 1

    Every post i read discusses how to block and how to detect a block. And the war may go on forever until people realize one little detail:

    Blocking is allowed because content and ads are somewhat disimilar in the way of calling or in graphics dimensions (ads URL are very easy to detect nowadays).

    Now, my solution is:

    Make banner content similar to normal content in everyway possibe, and make content more banner like. And for a fully featured antiblock, vary the URIs or switch URI callings between ads and content. (example: dont call banners with /adserver/4534i5938457734653569349584/ad05.gif)

    And then dare blockers block the ads.

    Note to blockers: some very usefull sites are financed by ads. They aint asking you for much. You can always choose to not to visit them.

    Thanks.

    Regards,

    Fede

    --
    unfinished: (adj.)
  161. Re:Detecting [this is just not going to happen.] by gd23ka · · Score: 1

    Add to that, that you would have to deal with proxies which means you can't just track an individual browser with it's ip address but have to resort to cookies or http-gets with a parameter that tracks a browsing session and you have to do that across a number of different ad servers outside your organization... yeah... that's an onerous task alright, doomed to fail. On top of that if you really wanted this to be viable you'd have to standardize the method so it gets implemented on a lot of ad servers which makes it even easier for the ad-blockers: you would still have to deal with browsers that perfectly emulate a valid access sequence and still do not display your ads. Save from making people use certified hardware and software and making it illegal to avoid ads there is no technically feasible way to force ads down everybody's throat.

  162. Not quite so simple by error0x100 · · Score: 1

    Its not quite so simple - remember, the vast majority of ads on the Internet are fed off different servers to the site with ads on, most of them are fed from a few major advertising affiliate sites like commission junction, doubleclick etc. So every web server that wants to run this also has to collaborate with those servers, which is not necessarily so simple. If a web server is clustered it complicates matters further. It gets even harder when you consider the amout of caching/proxying typically going on in an internet session, e.g. if a page is in a browsers cache it will often not send a new request to the web server (the "ratio" you propose will almost certainly be incorrect then, as very often ads are specified as don't-cache, but the page may be cached. In addition to the browser cache, there may be a fair chain of proxies to the web site and the ad site, usually at least one proxy, sometimes more.

    1. Re:Not quite so simple by dreamquick · · Score: 1

      If you've ever read any webserver farm whitepapers you get the impression of exactly how difficult it is to get several machines in the same location running the same OS to syncronise their session level data.

      Frankly I'd rate it as very unlikely that any company would ever share their session level data with any other outside companies due to security implications of what was actually contained in the session plus they need a way to stop unauthorised people getting access to that data which is in itself a minefield.

      Most of all they wouldnt do it as it has the potential to show everyone else who has to deal with that data exactly how ineptly coded their server-side logic is - even a newer site there is going to be a lot of garbage in the session that really doesnt need to/shouldnt be there.

  163. Ad Buster x3 by Anonymous Coward · · Score: 0

    First came the Ad Buster
    then advertisers responded with Ad Buster Buster
    Next Came the Ad Buster Buster Buster..
    When will this end?

  164. In the beginning... by Anonymous Coward · · Score: 0

    There was a single banner strip at the top of the page, it didn't dance around, float over the whole page, blink or annoy the user. Advertisers charged by the 'view', Users didn't block the ads, and it was good.

    Then advertisers discovered that they could record the clicks, and track how many clicks were made, and the slimy marketing gods started to salivate at all that could be done with the data. Users don't like being stalked on- or off-line, and became annoyed. Users stopped clicking on the ads, and started blocking the ads. This was good for the users, bad for the advertisers.

    Rather than learning from their mistakes, the slimy marketing gods who actually believe that the user OWES them something and MUST read the entire ad, got slimier and created pseudo-random URLs to block the blockers, and used Javascript and perverted Java to deliver their messages... And this was bad, so the users upgraded their filters...

    And so the marketers, still not getting the message, created software to detect the blocking software, and so on and so on and so on...

    In a nutshell: EARTH TO ADVERTISERS: YOU CAN'T WIN THIS WAR. Whatever you can detect, I can alter so it doesn't appear to be a blocker. In the meantime, you imbeciles spend more and more money trying to detect the detectors and get around them, all to force your dreck on people who DON'T WANT TO BE BOTHERED WITH INVASIVE DISTRACTING GARBAGE AND DON'T WANT TO BE TRACKED.

    If you were to return to a SIMPLE ad - something small like the banner, something non-intrusive - just take me directly to the site w/o any funny finagling of the URL into a trackable jump-to address, something that loads QUICK so I don't have to wait, then guess what - it becomes more trouble for me to run the blocking software than to run w/o it.

    BUT, when I have to wait ANY AMOUNT OF TIME before the content that I want comes up - because I'm busy downloading your flash/shockwave/java/javascript/animated banner crap - then it becomes easy for me to justify BLOCKING IT ALTOGETHER.

    In fact, I deinstalled the Flash plugin and avoid Flash-enabled sites like the plague. I deinstalled Shockwave and avoid them. I INSTALLED WebWasher and ad every single advertisement's URL to it (I use regexp's to get the entire domain). I block pop-ups, pop-unders, music, backgrounds, flying layers, interstitials, animation, etc., and you know what -- without all the distractions, my surfing experience is just what I want it to be - CLEAN, QUIET, and QUICK!

    I'm the kind of guy who gets on the net ALL DAY (and often all night) long. Having to wait an extra 5 seconds for each page to load takes up way too much of my time, and I'm not going to spend my life waiting for your X10 ad to load up.

    If I want something, I hit google, search for it, and buy the damn thing based on price/availability/shipping costs. That's it.

    I still have great difficulty understanding why an advertiser simply must track everything done online with their ads... You don't get it with off-line advertising (you get statistical demographic predictions) - so what makes the Net so special that you have to annoy the crap out of me at every turn?

    Oh, and for the record, WebWasher allows me to tweek my browser ID so you don't even know I'm using it. I return the code to you that says that I've got the image in my cache, so you still don't know. As far as you know, I'm seeing your dreck, and you can charge whoever you want for it and make your money.

    (and for those that wonder - I also tape everything and FF the commercials, refuse all junk mail, file prohibitory orders against junk mailers, and have unlisted/unpublished telephone numbers - I just don't give a shit about advertising...)

  165. Fine. Don't serve me. by Anonymous Coward · · Score: 0

    I regularly surf just fine with all javascript and Active X turned off, and all cookies blocked. I don't patronize sites that insist I do otherwise. If you don't have a product or service that I want I will simply go elsewhere. If you go out of business--tough titties. I could really care less, especially if you call me a "freeloader" and try to force me to view your insipid ads.

  166. http://azz.us-lot.org/adfilter.html by Anonymous Coward · · Score: 0

    I was even able to knock out yahoo's ads with the
    following additions:

    RewriteCond %{REQUEST_URI} http://.*rd\.yahoo\.com [OR]
    RewriteCond %{REQUEST_URI} http://.*us\.a1\.yimg\.com [OR]

    again urlsnarf is your *friend*

    1. Re:http://azz.us-lot.org/adfilter.html by asphyxiaa · · Score: 0

      I hope you realize that those hosts serve more than just the ads, they also serve like 99% of yahoo's images... I use the same thing in Apache to block ad's, and I think they store all the ads in the /a/ directory,

      RewriteCond %{REQUEST_URI} ^http://us\.a1\.yimg\.com/us\.yimg\.com/a/* [OR]

      Not sure if the syntax is 100% correct, I'm pretty new to Apache.

      --

  167. Block an ad, land in jail? by spazoid12 · · Score: 1

    In a sense, a web page is software that I'm downloading. So, if I alter this software for my purposes, would I be circumventing it's original intent? For example, I might block ads with some tool. But would I then be violating the DMCA?

  168. This will not fly... by Anonymous Coward · · Score: 0

    What about the blind? ADA any one?

  169. Ads by Technician · · Score: 2
    I don't buy anything I see in an ad. If there is a concept or product for sale that does interest me, I search the competition. Case in point; I have gotten lots of spam and some ads for ink jet refills and supplies. The idea of saving money interested me. The dealer that got my business is not anybody that had a banner ad or ever direct marketed me. A google search turned up a reputable supplier that was in business many years. They have a wide selection of supplies. They have all prices listed online. They have refill instructions online by brand of printer. No secrets here. They are not restricted to just a cheap kit good for 2 or 3 refills. They sell bulk ink in up to a 55 gallon drum. They are in the business! I tried a pint and was happy with the result. With a student using the computer, that pint is now finished. I just received my second order. I decided to try some of the color ink this time. With the large capacity color cartriges for the HP1000 photo printer priced at over $50 each, the 3 half pints of color ink cost less than a pair of color cartridges. I haven't been able to tell any difference printing photos. They earned a larger order.

    No brands are mentioned here as I don't want to be knocked for spamming slashdot. I'm not. It's a concept in shopping and a note to advertisers. Put your product online. Be competitive. Let consumers find you. (Hey X10, how does your product stand in the reviews of wireless cameras?) Smart shoppers do the homework.

    --
    The truth shall set you free!
  170. Nothing New by Robotech_Master · · Score: 2
    Mind's Eye Fiction has been ad-blocker-blocking for years; in fact, its admin developed the technology with an eye to deployment on any other website who wished to pay for it. (Not that I've seen very many that have done so yet.)


    Its use on Mind's Eye is sensible and inoffensive, with a view toward providing options rather than depriving them. If someone wants to read the story for free, he has to view the banner ads. If he wants to buy it cheaply, he can do so without them.

    --
    Editor Emeritus and Senior Writer, TeleRead.org
  171. Like that would solve their problems by dos_dude · · Score: 1

    How many users are actually using ad-blocking sotware? Is that really the problem?
    No. The problem is that the people that don't use such programs filter ads with their brain. You may be able to cram an ad down my browsers throat, but how do you force somebody to look at an ad, click it, and then actually buy something? No way.

    And what about anti-discrimination laws? Software like that would effectively lock out the blind.

  172. Block, counterblock...but who's looking anyway? by Veccio · · Score: 1

    Seriously if people are paying for software to block these ads and said ads are raising the ire of users, is this an encouraging sign that people are even paying attention to the ads in a positive manner? Given that exposure to the ads is enough for some advertisers who measures reactions other than clickthrough?
    *chuckle*

  173. There is an old solution... by Anonymous Coward · · Score: 0

    It's called "don't show pictures"
    It's an option for IE / Netscape...

    Quite simple I think.
    And should work...

  174. What I would do... by Kenneth · · Score: 1

    When a particular media group pisses me off, I don't boycott the channel, newspaper, or website. I use it and endure the advertisment. I then make a note of whoever advertises with that particular company, and boycott the advertiser. Then I let them know that I am boycotting them and why. Yes, I see their ad, but I will take extra pains not to buy from them as long as they are advertising with that particular company.

    The problem with boycotting a particular soruce of media is that all a company looses are potential eyeballs viewing their ad. On the other hand, a boycott of the company directly hurts them further.

    I actually carry this even to commericals that annoy or offend me. A while back there was a series of Pizza Hut commercials that disgusted me. My solution? I go elsewhere for pizza now.

    If more people did this, we would get more interesting commercials, and even better products, since products would have to compete more on quality than on marketing.

    --
    There is a civil war coming in the United States. Remember which side has most of the guns
  175. Please stop whining by mrogers · · Score: 2
    I have to pay 80US$ for 256/64 DSL with forced NAT and no real ip or higher speeds options available

    You don't have to pay for it, you choose to pay for it. Believe it or not, you could survive without broadband. You could probably survive with no internet connection whatsoever. But you choose not to.

    The DSL providers gouge you because they know there are two kinds of people: people who don't want DSL at any price, and people who desperately want DSL. There are very few people who kinda-maybe-want-DSL-but-not-if-it-costs-more-than -$10-a-month. So why would they charge $10 a month when they can charge $80 a month and have nearly the same number of customers? :%s/DSL/crack/g

    do i give a damn if the .coms don't get their .000005 cent for an ad banner display that i am never ever going to see or click, yet steals *my* bandwidth and even attempts to identify *me* with their stupid cookies?

    What part of "HTTP GET request" don't you understand? Your computer is asking their computer for information. Their computer is providing that information. Their computer is asking your computer to store a cookie. Your computer is complying. At what point are they stealing your bandwidth? If you don't want them to send you information, don't send them an HTTP GET request!

  176. I have been saying this for years by raindog2 · · Score: 1

    ....since the concept of "banner ads" was still new, in fact: that the web is more analogous to a newspaper than a television program, and the best you can hope for is that people will respond to relevant ads as they do to newspaper ads. As a matter of fact, many people (including myself) pay for a newspaper subscription in part because we want the ads themselves!

    Here's a clue stick for advertisers: "Punch the monkey and win $20" is not a "relevant ad" to most people, and never will be. Geography and affinity are not dead, and thus people will still pay more credence to an ad for a local restaurant than an offshore casino. They will honor relevant ads the same way they do newspaper ads: keep it in mind, maybe subconsciously, the next time they're in the market for the item being advertised.

    Slashdot at least has it almost right: a Thinkgeek ad is at least marginally relevant to /. users, but this is almost a vertical market and one prone to buying things it doesn't need. (I have TWO photon lights on my keychain...)

    What I feel when advertisers promote progressively more annoying schemes and then complain when people circumvent them (or merely decline to spend money at the advertised sites *cough* X10 *cough*) can only be described as cognitive dissonance. I can't decide whether it's the old school advertisers not getting the web, or the web people not hiring decent advertising people.

  177. Anyone ever see The Big Hit? by greydmiyu · · Score: 1

    Reminds me of the scenes surrounding the kidnapping call.

    "Tracebuster, Tracebuster-buster, Tracebuster-buster-buster!"

    --
    -- Grey d'Miyu, not just another pretty color.
  178. Re:A bit from Salon.. After this I recieved no rep by Anonymous Coward · · Score: 0

    dude, your homepage sucks