Java Forum / General / November 2007
notifying particular thread to wake up.
Rupesh - 25 Sep 2007 22:37 GMT Is there any way to notify a particular thread to wake up? All the waiting threads are same priority.
thanks
Knute Johnson - 25 Sep 2007 22:47 GMT > Is there any way to notify a particular thread to wake up? All the > waiting threads are same priority. > > thanks See Thread.interrupt().
 Signature Knute Johnson email s/nospam/knute/
Daniel Pitts - 25 Sep 2007 22:49 GMT > Is there any way to notify a particular thread to wake up? All the > waiting threads are same priority. > > thanks Thread scheduling is up to the OS. If a thread is blocked in wait(), you can use notify() or notifyAll() to unblock it.
I suggest you read Java Concurrency In Practice <http:// www.javaconcurrencyinpractice.com/>. It teaches you everything you should know before attempting to create multi-threaded programs.
If all your threads are in wait() on the same object, then you'll have to call notifyAll(), the wait() call should be in a loop (this is ALWAYS true), the loop can check to see if that particular thread is the one that should wake up, and if not, go back to waiting.
nebulous99@gmail.com - 28 Sep 2007 04:24 GMT > I suggest you read Java Concurrency In Practice <http://www.javaconcurrencyinpractice.com/>. It teaches you everything you > should know before attempting to create multi-threaded programs. ALERT! The URL given does not lead to any explanation of Java concurrency in practise. It leads to an advertisement trying to sell something.
I recommend the Java Tutorial at java.sun.com; there's a great deal of information on threading and concurrency in Java to be found there, and you will not run into any "bait and switch" where a link promises information but leads to a page that asks you for your money instead. Instead it will simply lead directly and promptly to the information itself.
And beware of links posted in this newsgroup; unfortunately this type of tactic is not infrequent here. Don't waste money; use the free javadocs, the free Java Tutorial, and Google for other free documentation before even thinking of actually spending money for information that's usually easily found online.
Roedy Green - 28 Sep 2007 04:47 GMT >ALERT! The URL given does not lead to any explanation of Java >concurrency in practise. It leads to an advertisement trying to sell >something. that "something" is a book with a list of authors including the venerated Joshua Bloch and Doug Lea.
The registered owner of the site is PEIERLS, TIMOTHY Prior Artisans, LLC 275 ELDERFIELDS RD MANHASSET, NY 11030-1625 US
Tim Pierls is the primary author of the book.
The book is most likely is about as good as you could get, and the site is owned by the author.
The site has additional information:
Table of Contents View code examples (source jar) Concurrency annotations: jar, javadoc, source Sample chapter Errata Praise for Java Concurrency in Practice About the authors
I see nothing wrong with quoting the site. There is nothing wrong withg getting paid for your efforts. My complaint is when people try to sell me a defective or irrelevant product.
Here are links to various bookstores if you don't like that site.
http://www.amazon.co.uk/gp/product/0321349601?ie=UTF8&tag=canadianmindp-21&linkC ode=as2&camp=1634&creative=6738&creativeASIN=0321349601 http://search.barnesandnoble.com/booksearch/isbninquiry.asp?isbn=9780321349606&l kid=J12871747&pubid=K49036 http://www.powells.com/partner/28995/biblio/9780321349606 http://www.amazon.com/gp/product/0321349601?ie=UTF8&tag=canadianmindprod&linkCod e=as2&camp=1789&creative=9325&creativeASIN=0321349601 http://www.amazon.de/gp/product/0321349601?ie=UTF8&tag=canadianmin0b-21&linkCode =as2&camp=1638&creative=6742&creativeASIN=0321349601 http://www.amazon.fr/gp/product/0321349601?ie=UTF8&tag=canamindprod-21&linkCode= as2&camp=1624&creative=6746&creativeASIN=0321349601 http://www.jdoqocy.com/click-2358048-10437934?url=http%3A%2F%2Fwww.chapters.indi go.ca%2Fbooks%2Fitem%2Fbooks-9780321349606%2F http://www.amazon.ca/gp/product/0321349601?ie=UTF8&tag=canadianmin07-20&linkCode =as2&camp=15121&creative=330641&creativeASIN=0321349601
 Signature Roedy Green Canadian Mind Products The Java Glossary http://mindprod.com
Lew - 28 Sep 2007 05:33 GMT >> ALERT! The URL given does not lead to any explanation of Java >> concurrency in practise. It leads to an advertisement trying to sell [quoted text clipped - 10 lines] > > Tim Pierls is the primary author of the book. He's listed second. Brian Goetz is the primary author.
>> Java Concurrency in Practice (Paperback) >> by Brian Goetz (Author), Tim Peierls (Author), Joshua Bloch (Author), Joseph Bowbeer (Author), David Holmes (Author), Doug Lea (Author) Roedy wrote:
> The book is most likely is about as good as you could get, and the > site is owned by the author. [quoted text clipped - 12 lines] > with getting paid for your efforts. My complaint is when people try > to sell me a defective or irrelevant product. Amen, brother!
> Here are links to various bookstores if you don't like that site. > [quoted text clipped - 6 lines] > http://www.jdoqocy.com/click-2358048-10437934?url=http%3A%2F%2Fwww.chapters.indi go.ca%2Fbooks%2Fitem%2Fbooks-9780321349606%2F > http://www.amazon.ca/gp/product/0321349601?ie=UTF8&tag=canadianmin07-20&linkCode =as2&camp=15121&creative=330641&creativeASIN=0321349601 Buy it.
 Signature Lew
Lew - 28 Sep 2007 05:29 GMT >> I suggest you read Java Concurrency In Practice <http://www.javaconcurrencyinpractice.com/>. It teaches you everything you >> should know before attempting to create multi-threaded programs. > > ALERT! The URL given does not lead to any explanation of Java > concurrency in practise. It leads to an advertisement trying to sell > something. Something truly valuable and worth far more than the price you'll pay for it. I've got this book and I love it. It's fabulous. It's superb. It's informative. Buy it, everyone.
Or be doomed to mess up your multi-threaded code.
At work I have already secured the value of the book in brownie points from my managers, and in understanding some of the issues our system has encountered, and I'm only halfway through the book.
Y'know, it'd be nice if everything were free, but it isn't. Some things cost money, and there's an argument that money makes civilization more viable. The point is that some things are worth every penny that they cost, and this book is certainly one of them.
I bought this book, using my own money, not paid for by an employer or anyone else (although it is tax deductible), and I am glad I did.
 Signature Lew
nebulous99@gmail.com - 28 Sep 2007 08:10 GMT > nebulou...@gmail.com wrote: > >> I suggest you read Java Concurrency In Practice <http://www.javaconcurrencyinpractice.com/>. It teaches you everything you [quoted text clipped - 5 lines] > > Something truly valuable and worth far more than the price you'll pay for it. [snip remainder of endorsement]
(This response applies equally to Roedy's.)
Regardless of all of that, it remains the case that the original post is a bait-and-switch. It purports to link to information about Java; instead it links to an advertisement. It's a clear grab for money. Regardless of how relevant or well-targeted the ad might be in this context, it is still an ad, and all of the following occurred:
* The first response to the thread was an ad for a commercial product. * The response did not disclose that this was the case; instead one had to follow the link to discover that one is being asked for money instead of merely receiving an answer. * The response conspicuously did not mention the Java Tutorial or any of the other copious free material on the subject matter, which the OP would be financially well-advised to consider first before resorting to paying money. * There's also the niggling little matter that the ad is probably utterly useless to anyone who isn't an American with a credit card from one of the Big 3 anyway. That's about 1% of the world population. If you're a German with poor credit but a $50 bill (well, fifty euro or whatever) burning a hole in your pocket, too bad, your money isn't green enough I expect.
Regardless of the OP's motives and intentions, the result is awfully shabby.
And Usenet is not an appropriate place for commercial advertising anyway.
Roedy Green - 28 Sep 2007 09:01 GMT >It's a clear grab for money. It is then up to you to explain how Daniel gets money for recommending the book. Given the reputation of the authors, especially Doug Lea, Mr. Threads, that is the best possible book to read on the subject. THAT is why he recommended it.
Daniel used the same language one would use to recommend a book. There was no attempt to trick you into thinking you would get something free and ambushing you. It not as if he lured you to expend 4 hours getting to his vacuum cleaner store.
Even if he did get a referral fee, he has done nothing to harm you. He has pointed you to the best source of information on the topic. He did not defraud you of any money.
If he pointed you to some spyware installing site, or to a book nothing do to with threads, or to a crap book that was useless, I would join you in bashing him. BUT HE DIDN'T. He answered your question pointing you to the prime source of information about the book.
 Signature Roedy Green Canadian Mind Products The Java Glossary http://mindprod.com
Lew - 28 Sep 2007 13:08 GMT nebulous99@gmail.com wrote:
>> It's a clear grab for money. Buy the book. /Java Concurrency in Practice/ by Brian Goetz, et al., is fantastic. Buy it.
 Signature Lew
Daniel Pitts - 28 Sep 2007 17:45 GMT On Sep 28, 12:10 am, nebulou...@gmail.com wrote:
> > nebulou...@gmail.com wrote: > > >> I suggest you read Java Concurrency In Practice <http://www.javaconcurrencyinpractice.com/>. It teaches you everything you [quoted text clipped - 15 lines] > Regardless of how relevant or well-targeted the ad might be in this > context, it is still an ad, and all of the following occurred: Actually, I have know vested interest in that book. I just thought it was a good book, and rather than simply provide the OP with *only* the name of the book, I did a quick google and found that they had an official website.
> * The first response to the thread was an ad for a commercial product. My response was appropriate.
> * The response did not disclose that this was the case; instead one > had to follow the link to discover that one is being asked for money > instead of merely receiving an answer. Oh, I wasted one click! I'm so sorry. Deal with it.
> * The response conspicuously did not mention the Java Tutorial or any > of the other copious free material on the subject matter, which the OP > would be financially well-advised to consider first before resorting > to paying money. I was not aware that the Java tutorial went into the kind of detail that JCIP did.
> * There's also the niggling little matter that the ad is probably > utterly useless to anyone who isn't an American with a credit card [quoted text clipped - 8 lines] > And Usenet is not an appropriate place for commercial advertising > anyway. This is the second time you've accused me of commercial advertising when I don't make money from anything I do on usenet.
Although, I don't see the problem if I do. Some newsgroups aren't appropriate places for commercial advertising, but pointing out an *extremely* relevant product is valud.
God, this is like the time everyone told you to check out ANT and you refused to even *google* for it!
Twisted, you are WRONG!
Mike Schilling - 28 Sep 2007 22:30 GMT >> And Usenet is not an appropriate place for commercial advertising >> anyway. > This is the second time you've accused me of commercial advertising > when I don't make money from anything I do on usenet. Yeah, it accused me of the same thing when I recommended IntelliJ as superior to Eclipse and NetBeans. Don't let it worry you; the rest of us know better.
Rupesh - 29 Sep 2007 01:40 GMT On Sep 28, 4:30 pm, "Mike Schilling" <mscottschill...@hotmail.com> wrote:
> >> And Usenet is not an appropriate place for commercial advertising > >> anyway. [quoted text clipped - 4 lines] > superior to Eclipse and NetBeans. Don't let it worry you; the rest of us > know better. Hello geeks,
What's happening... let's come back to problem. The Problem is the threads are not of same class. They are the threads from different classes that need to access some shares resources. I have used block synchronized but I am not getting things right. So what do you suggest me to do in such condition. They I have to synchronize threads from different classes.
Mike Schilling - 29 Sep 2007 06:49 GMT > What's happening... let's come back to problem. The Problem is the > threads are not of same class. They are the threads from different > classes that need to access some shares resources. I have used block > synchronized but I am not getting things right. So what do you suggest > me to do in such condition. They I have to synchronize threads from > different classes. Synchronize on the resource, not on the thread instance.
Daniel Pitts - 29 Sep 2007 07:13 GMT On Sep 28, 2:30 pm, "Mike Schilling" <mscottschill...@hotmail.com> wrote:
> >> And Usenet is not an appropriate place for commercial advertising > >> anyway. [quoted text clipped - 4 lines] > superior to Eclipse and NetBeans. Don't let it worry you; the rest of us > know better. Yeah, actually, that was the other thing. I did suggest IDEA at some point, and got accused of the same thing.
It really makes me wonder why anyone believes everything should be free? If someone asked me how to make a salad, and I suggested going to a Safeway to pick up some lettuce, would it be such a surprise when they got to the checkout line and *gasp* someone asked for money?
Very little in life is truly free. While I agree more things *should* be, I'm perfectly willing to suggest useful commercial things, regardless of the amount of money I get from it.
Although, I do recommend that book (and Refactoring by Fowler, and Refactoring to Patterns by Kerievsky) often enough that I should consider getting some sort of paid referral link for them :-)
Thanks for the idea Twisted. You're right, I should make money off of Usenet.
Mike Schilling - 29 Sep 2007 07:45 GMT > On Sep 28, 2:30 pm, "Mike Schilling" <mscottschill...@hotmail.com> > wrote: [quoted text clipped - 14 lines] > to a Safeway to pick up some lettuce, would it be such a surprise when > they got to the checkout line and *gasp* someone asked for money? I don't understsand it, nor the weird self-righteousness that so often accompanies it.
nebulous99@gmail.com - 29 Sep 2007 21:32 GMT > On Sep 28, 2:30 pm, "Mike Schilling" <mscottschill...@hotmail.com> > wrote: [quoted text clipped - 15 lines] > to a Safeway to pick up some lettuce, would it be such a surprise when > they got to the checkout line and *gasp* someone asked for money? There's a big difference -- we're discussing information and text here rather than physical goods that are actually scarce. People would not expect to find a salad for free; or for that matter to find anything for free after "going to" a store. On the other hand, if someone says "the information you need is at this URL", the normal thing to find at the indicated URL is ... the information in question. Not some ad trying to sell you something, but the information itself, since it could easily and cheaply be there, and 9 times out of 10 it actually is. Links to Sun's Java pages and Roedy's site abound in this NG. Following them leads directly to what someone said would be there. Then along comes a link like yours and instead of the information itself is a page saying "We have this information but we won't let you see it until you pay up". How nice. And no warning of this difference was in the post with the URL, either.
Same goes for software as for information. People posts links for the JDK itself, for Eclipse and NetBeans, etc., and readers can follow those links and download and install away. Then comes that odd link that instead leads to an ad or a paywall of some sort instead of a free download.
Links to non-free software or information should be clearly marked as such in the newsgroup postings, and good free alternatives should be mentioned as well so that people may make an informed choice, and so that people that aren't Americans with credit cards and decent amounts of wealth can actually get some use at all out of your post.
> Very little in life is truly free. While I agree more things *should* > be, I'm perfectly willing to suggest useful commercial things, > regardless of the amount of money I get from it. That is not, in and of itself, a problem; it's the sneaky lack of disclosure that is. When URLs are posted to things that might well be directly readable or downloadable for free, you should at minimum make it clear in the case that the thing is not that available. International and relatively poor people (and this group gets a lot of students, and students are frequently a) foreign and/or b) poor) can immediately see that the link will be useless to them. People in general will know what to expect. Of course, if there's known free alternatives it would be good to mention these too. Conspicuously omitting to mention these may do harm by leaving people to make a less informed choice and denying any useful options entirely to some people, and may also cast doubt on your motives. And of course if (as is the case with amazon.com book-purchase links, last I heard) you get a kickback for referrals disclosure of that, too, is definitely warranted.
Arne Vajhøj - 01 Oct 2007 00:53 GMT > There's a big difference -- we're discussing information and text here > rather than physical goods that are actually scarce. People would not [quoted text clipped - 22 lines] > that people that aren't Americans with credit cards and decent amounts > of wealth can actually get some use at all out of your post. Why ?
That has never been the usenet standard !
> That is not, in and of itself, a problem; it's the sneaky lack of > disclosure that is. When URLs are posted to things that might well be [quoted text clipped - 11 lines] > a kickback for referrals disclosure of that, too, is definitely > warranted. Even students with little money may find such links useful.
Universities has libraries.
When the students graduate and get a job they may want the book.
Arne
Mike Schilling - 01 Oct 2007 01:24 GMT > Even students with little money may find such links useful. I don't know of things are different in Europe, but in the US university students have to purchase their own textbooks; and buying other school-related books is also common.
> Universities has libraries. And these libraries often welcome suggestions for new books to buy.
> When the students graduate and get a job they may want the book. And books are sometimes available used for a fraction of the cost.
By the way, does anyone know a good term for people who have the same horror of commerce that Puritans have of sex?
Arne Vajhøj - 01 Oct 2007 01:34 GMT >> Even students with little money may find such links useful. > > I don't know of things are different in Europe, but in the US university > students have to purchase their own textbooks; and buying other > school-related books is also common. It was the same at the university I went to.
Arne
bbound@gmail.com - 02 Oct 2007 01:32 GMT On Sep 30, 7:54 pm, Arne Vajh?j <a...@vajhoej.dk> wrote:
> > Links to non-free software or information should be clearly marked as > > such in the newsgroup postings, and good free alternatives should be [quoted text clipped - 5 lines] > > That has never been the usenet standard ! Sure it has. It's bait and switch to imply that people can get instant and free gratification by clicking a link which turns out to only be to a stupid and disappointing ad or paywall. That's dishonest as well as rude. If it's information or software that you're linking to, you should state up-front if it's not free. That includes if there's a registerwall or anything like that; whether you pay in money or in being spammed or whatever, it's still not really free in that case.
> Even students with little money may find such links useful. Doubtful. It's very likely they will find Sun's free online materials and other free online materials vastly more useful, particularly on their budget.
> Universities has libraries. Have. And I don't see any relevance here. The link to some Amazon sales page is obviously of no help to a student in acquiring the book from any other source than Amazon. If they wanted the book from their university library they'd have to go there and search, same as they would have *without* the ever-so-helpful post under discussion here.
> When the students graduate and get a job they may want the book. When the students graduate and get a job they will probably want to have a less stupid uniform to wear while flipping burgers -- the career that most students can look forward to continuing even after getting a CS degree these days, no thanks to the dot-bomb and other issues with the western economy these days. :P
Arne Vajhøj - 02 Oct 2007 01:39 GMT >>> Links to non-free software or information should be clearly marked as >>> such in the newsgroup postings, and good free alternatives should be [quoted text clipped - 6 lines] > > Sure it has. I have never seen that stated anywhere !
Source ?
>> Even students with little money may find such links useful. > > Doubtful. It's very likely they will find Sun's free online materials > and other free online materials vastly more useful, particularly on > their budget. I bought books while I was a student. In fact I think that is a very common thing.
>> Universities has libraries. > > Have. And I don't see any relevance here. They could go and borrow the same book there.
>> When the students graduate and get a job they may want the book. > [quoted text clipped - 3 lines] > getting a CS degree these days, no thanks to the dot-bomb and other > issues with the western economy these days. :P AFAIK there is a good demand for IT people in practically all countries.
Arne
bbound@gmail.com - 02 Oct 2007 02:01 GMT On Oct 1, 8:39 pm, Arne Vajh?j <a...@vajhoej.dk> wrote:
> >> That has never been the usenet standard ! > [quoted text clipped - 3 lines] > > Source ? General usenet etiquette, often explicitly written down, going back years. Commercial postings generally considered crass and unwelcome, except in buy/forsale groups and suchlike. If you want more details, GIYF.
> I bought books while I was a student. In fact I think that > is a very common thing. So is buying as little as possible subject to what the profs say is required reading for the coursework, for the obvious budgetary reasons.
If "Java Concurrency in Practise" is required for a student's courses, they already know it and probably have already had a copy since mid- September. If it is not, I can just about guarantee that the student would prefer the Java Tutorial and not getting any deeper into debt! Rich-enough students excepted, but there won't be very many, oh no indeed.
> >> Universities has libraries. > > > Have. And I don't see any relevance here. > > They could go and borrow the same book there. They could do so just as easily with or without some random amazon.com URL.
> AFAIK there is a good demand for IT people in practically > all countries. And a glut of supply. You have to consider both supply AND demand when evaluating these things; that's economics 101 material. Sheesh.
Arne Vajhøj - 02 Oct 2007 02:20 GMT >>>> That has never been the usenet standard ! >>> Sure it has. [quoted text clipped - 6 lines] > except in buy/forsale groups and suchlike. If you want more details, > GIYF. That was not what I asked for.
I asked for source for what you wrote:
#Links to non-free software or information should be clearly marked as #such in the newsgroup postings, and good free alternatives should be #mentioned as well so that people may make an informed choice,
Please supply a source for that !
>>>> Universities has libraries. >>> Have. And I don't see any relevance here. >> They could go and borrow the same book there. > > They could do so just as easily with or without some random amazon.com > URL. The need title/author/ISBN.
I don't think they mind if the page providing that has a link to Amazon.
They may even be happy about it (hint: they can read reviews at Amazon).
>> AFAIK there is a good demand for IT people in practically >> all countries. > > And a glut of supply. You have to consider both supply AND demand when > evaluating these things; that's economics 101 material. Sheesh. No.
Demand seems bigger than supply in US, Europe, India etc..
Arne
bbound@gmail.com - 03 Oct 2007 22:57 GMT On Oct 1, 9:20 pm, Arne Vajh?j <a...@vajhoej.dk> wrote:
> > General usenet etiquette, often explicitly written down, going back > > years. Commercial postings generally considered crass and unwelcome, > > except in buy/forsale groups and suchlike. If you want more details, > > GIYF. > > That was not what I asked for. Well, that's what you're getting, so deal with it.
> > They could do so just as easily with or without some random amazon.com > > URL. > > The need title/author/ISBN. Which, if I'm not mistaken, is a distinct address space from that indexed by URLs.
> They may even be happy about it (hint: they can read reviews at Amazon). Reviews, yes. Reliable reviews? That's less certain. Amazon has both the power and a compelling financial motive to bias the reviews presented to a user in favor of their making a decision to purchase.
> >> AFAIK there is a good demand for IT people in practically > >> all countries. [quoted text clipped - 5 lines] > > Demand seems bigger than supply in US, Europe, India etc.. Then explain the nonzero unemployment rates even among people with technical credentials. Indeed, unemployment in general isn't just nonzero but fairly nasty and has been for years all across North America.
Arne Vajhøj - 08 Oct 2007 20:33 GMT >>> General usenet etiquette, often explicitly written down, going back >>> years. Commercial postings generally considered crass and unwelcome, [quoted text clipped - 3 lines] > > Well, that's what you're getting, so deal with it. Then I assume that we can conclude that you claim:
#Links to non-free software or information should be clearly marked as #such in the newsgroup postings, and good free alternatives should be #mentioned as well so that people may make an informed choice,
is not usenet standard.
>>>> AFAIK there is a good demand for IT people in practically >>>> all countries. [quoted text clipped - 8 lines] > nonzero but fairly nasty and has been for years all across North > America. My impression is that unemployed IT people in North America is either just transitioning (they left company A and it takes a few month before they find company B that matches them) or there are a reason why companies don't want to hire them (in which case they should look for alternate industries).
Arne
Lew - 08 Oct 2007 21:45 GMT bbound@gmail.com wrote:
>> Then explain the nonzero unemployment rates even among people with >> technical credentials. Indeed, unemployment in general isn't just >> nonzero but fairly nasty and has been for years all across North >> America. Isn't unemployment at or near historic lows in North America? State by state, unemployment in the U.S. (part of North America) varies from 2.4% in ID to 7.4% in MI, with a median of 4.4% and national rate of 4.7%, down from about 5.4% a year and half ago. Canada's jobless rate is 5.9%, down from nearly 7% two and a half years ago. Mexico is at 3.2% or so.
Not "fairly nasty" as such statistics go.
 Signature Lew
John W. Kennedy - 08 Oct 2007 22:25 GMT > bbound@gmail.com wrote: >>> Then explain the nonzero unemployment rates even among people with [quoted text clipped - 10 lines] > > Not "fairly nasty" as such statistics go. Except that, a few years ago, the Bush administration redefined "zero".
 Signature John W. Kennedy "The first effect of not believing in God is to believe in anything...." -- Emile Cammaerts, "The Laughing Prophet"
Lew - 08 Oct 2007 23:19 GMT > Except that, a few years ago, the Bush administration redefined "zero". For Canada and Mexico, too?
 Signature Lew
John W. Kennedy - 09 Oct 2007 04:37 GMT >> Except that, a few years ago, the Bush administration redefined "zero". > > For Canada and Mexico, too? No, but it seriously distorts the US figures.
 Signature John W. Kennedy "I want everybody to be smart. As smart as they can be. A world of ignorant people is too dangerous to live in." -- Garson Kanin. "Born Yesterday"
nebulous99@gmail.com - 10 Oct 2007 02:31 GMT > #Links to non-free software or information should be clearly marked as > #such in the newsgroup postings, and good free alternatives should be > #mentioned as well so that people may make an informed choice, > > is not usenet standard. It is a norm of usenetters going back ten years or more. It may not be formally documented in an RFC but that does not matter.
Patricia Shanahan - 10 Oct 2007 03:01 GMT >> #Links to non-free software or information should be clearly marked as >> #such in the newsgroup postings, and good free alternatives should be [quoted text clipped - 4 lines] > It is a norm of usenetters going back ten years or more. It may not be > formally documented in an RFC but that does not matter. This is the first time I've heard of it, in over 20 years of Usenet participation.
Patricia
Arne Vajhøj - 10 Oct 2007 03:10 GMT >>> #Links to non-free software or information should be clearly marked as >>> #such in the newsgroup postings, and good free alternatives should be [quoted text clipped - 7 lines] > This is the first time I've heard of it, in over 20 years of Usenet > participation. I have only used usenet in 16 years, but me neither.
So I am not surprised that neb/bb/twisted/paul can not find a reference.
Arne
bbound@gmail.com - 10 Oct 2007 06:53 GMT [snip a bunch of bullshit, including incorrectly associating me with the name "paul" again]
f.ck off.
Fine. You want me to do your research for you? Here. It didn't take much googling to find:
http://www.faqs.org/faqs/usenet/posting-rules/part1/
http://www.sodak.com/usenet_postings.htm (a specific ISP's guidelines, but it's not their TOS; they are just explaining usenet norms to newbs)
http://www.emsdesigns.com/aup.htm
Where we see language like:
"There exists an alternative hierarchy called "biz" specifically for commercial postings."
"Advertisements, solicitations, or other commercial postings should only be posted in those newsgroups whose charters/FAQ's explicitly permit them."
"Posting commercial messages to a USENET group is a violation of this policy unless that specific USENET group has invited commercial postings in its charter."
The general and longstanding disdain of usenetters for commercial postings is very widely known; I'm amazed that any of you would claim otherwise.
Google searches for queries like "usenet commercial disdain" or "usenet "commercial postings"" will turn up plenty of other examples as well as the three I cited.
Satisfied, arnehole?
Lew - 10 Oct 2007 07:11 GMT > "Posting commercial messages to a USENET group is a violation of this > policy unless that specific USENET group has invited commercial > postings in its charter." The posting about which you complained was not a commercial posting. The citation completely fails to support your point.
 Signature Lew
bbound@gmail.com - 13 Oct 2007 00:46 GMT > bbo...@gmail.com wrote: > > "Posting commercial messages to a USENET group is a violation of this > > policy unless that specific USENET group has invited commercial > > postings in its charter." > > The posting about which you complained was not a commercial posting. Yes, it was. It was an ad, for crying out loud. And the citations (plural) DO support the statement that was currently being disputed, namely that commercial messages are generally disliked on Usenet, *regardless* of whether you consider that much earlier posting to be an example of such.
Lasse Reichstein Nielsen - 14 Oct 2007 11:11 GMT >> The posting about which you complained was not a commercial posting. > > Yes, it was. It was an ad, for crying out loud. No, it was a reference to a book. As a service, it also contained a link to a commercial site about that book. As a commercial site about a book, it can indeed be seen as advertising (and will at least contain advertising).
The point of the post in question was referring the reader to the book, whether the link to the commerical site was there or not. As such, that reference was not advertising, nor commercial.
Also, something is not a "commercial" posting *unless* the poster expects to make profit from posting it, in any way or form. In this case, the poster was unrelated to both the book and the linked web page, and will not receive anything if anyone choses to buy the book. He was just a happy customer sharing his experience. His post was not commercial.
> And the citations (plural) DO support the statement that was > currently being disputed, namely that commercial messages are > generally disliked on Usenet, *regardless* of whether you consider > that much earlier posting to be an example of such. That is not the statement that is being disputed. The statment that is being disputed is this:
| Links to non-free software or information should be clearly marked as | such in the newsgroup postings, and good free alternatives should be | mentioned as well so that people may make an informed choice, and so | that people that aren't Americans with credit cards and decent amounts | of wealth can actually get some use at all out of your post. (from <news:1191097952.416204.13010@n39g2000hsh.googlegroups.com> - or <URL:http://groups.google.com/group/comp.lang.java.programmer/msg/18cdd48d0a2cc69e> for the newsreader impaired)
So far, no support for *that* claim has been posited, and none of the other posters, all long-time newsgroup users, have ever heard of such a rule or custom.
I.e., links to non-free software or information need not be marked as such. There is definitly no requirement, or even expectation, that posters of links to non-free software or information also post free alternatives.
/L
 Signature Lasse Reichstein Nielsen - lrn@hotpop.com DHTML Death Colors: <URL:http://www.infimum.dk/HTML/rasterTriangleDOM.html> 'Faith without judgement merely degrades the spirit divine.'
nebulous99@gmail.com - 15 Oct 2007 22:08 GMT > > Yes, it was. It was an ad, for crying out loud. > > No, it was a reference to a book. Yes, it was an ad. It was a post whose sole content was the promotion of a commercial product. It linked to a web site whose sole content was the promotion of that commercial product. I don't see any distinction here -- such a thing constitutes an ad, pure and simple.
Furthermore, it appeared in place of the actual information the OP requested. The OP requested information, and got told where to go buy access to it instead of told where the information he sought could be had for free. That is not very nice regardless.
> The point of the post in question was referring the reader to the > book, whether the link to the commerical site was there or not. As > such, that reference was not advertising, nor commercial. Sure it was. If I posted an ad here for something, i.e. an endorsement for a commercial product, but did not include a link, then it would magically not count as "an ad" in your eyes? So if I post "Enjoy Coca- Cola! http://www.coke.com" that's an ad, but if I just post "Enjoy Coca-Cola!" it's not?
That's ridiculous.
> Also, something is not a "commercial" posting *unless* the poster > expects to make profit from posting it, in any way or form. In this > case, the poster was unrelated to both the book and the linked web > page What's your evidence for drawing this conclusion? Don't forget, Lew and Andrew have made clear in other threads that people who post here are considered to be affiliated with any sites they recommend until proven otherwise.
> and will not receive anything if anyone choses to buy the > book. He was just a happy customer sharing his experience. Even if I grant this, look at it this way: one guy goes up to a group of people and asks for directions to the student loan office. The first respondent raves about how awesome his new Mercedes-Benz is, and mentions that it has satellite navigation and GPS, and gives directions to the nearest Mercedes dealership.
There's been, *at minimum*, a gross failure of communication (or maybe of intelligence) in such an instance, wouldn't you agree?
> > And the citations (plural) DO support the statement that was > > currently being disputed, namely that commercial messages are > > generally disliked on Usenet, *regardless* of whether you consider > > that much earlier posting to be an example of such. > > That is not the statement that is being disputed. Yes, it is.
> The statment that is being disputed is this: > > | Links to non-free software or information should be clearly marked as > | such in the newsgroup postings, and good free alternatives should be > | mentioned as well so that people may make an informed choice This is just so obvious that it really should go without saying.
Which would you prefer to receive if you were asking a question? A link to where you can buy the answer, or just the damn answer??? Which would you prefer in the way of product recommendations? A list of only expensive options, or all of them? Which would you prefer if you asked for a car dealership recommendation? Only Rolls-Royce and Mercedes dealers, or the assortment of Ford, Chrysler, Nissan, and so forth dealerships as well?
Which would you expect a random other person to prefer? One not known to be rich? Especially one who is probably a student and probably not a trust fundie either, or he'd be asking some paid help or private tutor instead of asking you?
> So far, no support for *that* claim has been posited, and none of the > other posters, all long-time newsgroup users, have ever heard of such > a rule or custom. It isn't a rule or custom. It's just plain common sense, a.shole. It's called "not leading people down the garden path" or "not ripping people off" -- and yes, people paying for something that has a free alternative they'd have been perfectly satisfied with simply because they never got told about the free alternative ARE being ripped off.
[snip remainder of unprovoked hostility and general nastiness]
Go away.
Arne Vajhøj - 19 Oct 2007 01:28 GMT >> Also, something is not a "commercial" posting *unless* the poster >> expects to make profit from posting it, in any way or form. In this [quoted text clipped - 5 lines] > are considered to be affiliated with any sites they recommend until > proven otherwise. That may be their opinion.
Not everyone (including me) share that.
But you are completely missing the point: there is a big difference in unsolicited posts about site and referring to a site in a relevant thread.
> Even if I grant this, look at it this way: one guy goes up to a group > of people and asks for directions to the student loan office. The > first respondent raves about how awesome his new Mercedes-Benz is, and > mentions that it has satellite navigation and GPS, and gives > directions to the nearest Mercedes dealership. Either you are not capable of analyzing the different scenarios or you are trying to mislead us.
That analogy is bogus, because what was asked for and what was offered was within the same topic.
A better analogy would be that someone asked for suggestions for a car and someone replied by telling about how great a car a Mercedes is.
Completely valid answer.
>> | Links to non-free software or information should be clearly marked as >> | such in the newsgroup postings, and good free alternatives should be [quoted text clipped - 15 lines] > a trust fundie either, or he'd be asking some paid help or private > tutor instead of asking you? You are babbling.
1) Because the original poster may prefer some solution it does not imply that it is mandatory on usenet.
2) You have completely misunderstood the process of learning. The original poster is much better off with a resource that can help solve not only this problem but also the next ten or hundrer problems within the domain.
>> So far, no support for *that* claim has been posited, and none of the >> other posters, all long-time newsgroup users, have ever heard of such >> a rule or custom. > > It isn't a rule or custom. It's just plain common sense, a.shole. Have you tried counting how many people here that consider it common sense and how many that does not consider it common sense ?
Common seems rather uncommon.
You are the only one who has this bizarre idea.
Arne
Lew - 19 Oct 2007 03:14 GMT nebulous99@gmail.com wrote:
>> What's your evidence for drawing this conclusion? Don't forget, Lew >> and Andrew have made clear in other threads that people who post here >> are considered to be affiliated with any sites they recommend until >> proven otherwise. This is, of course, a complete misstatement of both Andrew's and my comments.
> That may be their opinion. It isn't.
> Not everyone (including me) share that. > > But you are completely missing the point: there is a big difference in > unsolicited posts about site and referring to a site in a relevant > thread. Indeed.
In fact, not only do I support the original controversial recommendation for the book, /Java Concurrency in Practice/ by Brian Goetz, et al., I assert that it is a necessary part of every Java programmer's library and that we should all spend our own money, if necessary, to buy it. I did.
The originally proffered link to that book via a co-author, the highly regarded Doug Lea, <http://gee.cs.oswego.edu/> I don't have in front of me, but Prof. Lea in turn links to <http://www.informit.com/store/product.aspx?isbn=0321349601> and, I'm sure, many other vendors carry it.
The original link was provided in response to someone asking about multithreaded Java programming.
It is also, I think, a useful book for multithreaded programming generally, not just in Java, despite its focus on Java idioms. C# has somewhat similar idioms, and understanding concurrency is vital to most platforms these days.
 Signature Lew
nebulous99@gmail.com - 21 Oct 2007 06:02 GMT > nebulou...@gmail.com wrote: > >> What's your evidence for drawing this conclusion? Don't forget, Lew [quoted text clipped - 3 lines] > > This is, of course, a complete misstatement of both Andrew's and my comments. "Of course". Cute.
Ever heard the phrase "Actions speak louder than words"?
In the thread with the web site named Sardyo or whatever, the OP said "I happened upon this site ..." and recommended it. You responded promptly by accusing him of being a lying spammer and specifically asserted that the OP had an affiliation with Sardyo (or whatever it was). When asked, you failed to provide any evidence that he had any such affiliation (and a cursory examination of his usenet headers failed to reveal any obvious one, such as posting from ...sardyo.com! not-for-mail or the like or with an @sardyo.com email address or X- Complaints-To: or similarly). But you continued to treat the OP harshly on the basis of what appears to be an assumption. However plausible, it verifiably demonstrates an attitude of "someone who recommends a commercial site/product is affiliated with it in some way until proven otherwise" aka "guilty until proven innocent". Andrew's behavior in the same thread demonstrated likewise.
Googling posts from a few days before this post's datestamp with your names will produce evidence to back my claim.
You still have not furnished any evidence to back yours about that particular poster.
Yet you become harshly critical when I demonstrate a similar (and perhaps a bit too serious) suspicion about another instance of a person writing a post whose sole substantial content is the recommendation of something commercial.
"Hypocrisy" seems to be the watchword of the day.
> > But you are completely missing the point: there is a big difference in > > unsolicited posts about site and referring to a site in a relevant > > thread. > > Indeed. Yes, the one is targeted and the other is not. That something is targeted does not make it any the less commercial in content. Nor does it make it magically not fail to disclose that it's linking to an ad instead of directly to information relevant to the OP's question. Nor does it magically indicate to the OP that java.sun.com has free tutorials on topics relevant to his question that might suffice for his needs. Nor ... well, I trust that you get the picture.
> In fact, not only do I support the original controversial recommendation for > the book, /Java Concurrency in Practice/ by Brian Goetz, et al., I assert that > it is a necessary part of every Java programmer's library and that we should > all spend our own money, if necessary, to buy it. I did. You can assert that the sky is striped green and orange for that matter. It doesn't necessarily make it so. And if the book is excellent and valuable for every practitioner of Java, so what? The first response to the OP still linked to a lousy ad instead of answering his question free of charge. The first response still failed to mention the Java Tutorial that might be very helpful to the OP and that we can't be sure he knew about at that time. Maybe he'd still need that book eventually, but he could postpone it until financially more convenient, or the thing dropped in price, or they finally abolished the abomination of copyright law, or whatever. And of course the first response still failed to do much to directly help the OP. All it did was refer him to a web site that in turn would provide him nothing of value without parting him from his money first, even though it could have done a whole lot more. The book could be the greatest thing since sliced bread and none of what I just said would be any the less true.
> The originally proffered link to that book via a co-author, the highly > regarded Doug Lea, > <http://gee.cs.oswego.edu/> > I don't have in front of me, but Prof. Lea in turn links to > <http://www.informit.com/store/product.aspx?isbn=0321349601> > and, I'm sure, many other vendors carry it. Absolutely fascinating.
> The original link was provided in response to someone asking about > multithreaded Java programming. In lieu of any directly useful information on that topic, or a link to directly useful information. As in an actual answer to the OP's question, free of charge.
> It is also, I think, a useful book for multithreaded programming generally, > not just in Java, despite its focus on Java idioms. C# has somewhat similar > idioms, and understanding concurrency is vital to most platforms these days. Possibly true, but this also does not materially alter what I said earlier.
nebulous99@gmail.com - 21 Oct 2007 05:44 GMT On Oct 18, 8:28 pm, Arne Vajh?j <a...@vajhoej.dk> wrote:
> > What's your evidence for drawing this conclusion? Don't forget, Lew > > and Andrew have made clear in other threads that people who post here [quoted text clipped - 4 lines] > > Not everyone (including me) share that. Sorry. That's not allowed. You (my attackers) must hold a single coherent position and stick with it. Moving the goal posts in any of our little conflicts is cheating. You forfeit. I win. Let's all go discuss Java now.
> But you are completely missing the point: there is a big difference in > unsolicited posts about site and referring to a site in a relevant > thread. So spamming is okay, as long as it's somewhat targeted? Interesting, but I doubt most of the internet would agree. The blog Freedom-to- Tinker recently got a bunch of comment spams posted only to articles to which they had some logical connection (e.g. a credit card related spam to a post regarding online credit card number security and online leaks of numbers). They didn't take kindly to this despite its being "in a relevant thread". The moderator deleted the lot of them. There was a big discussion about it afterward, with clear vehement dislike of spammers showing through, regardless of how targeted their spew might be in any given instance.
It follows from the above that referring to a site only in a relevant thread is not sufficient to mean you're not doing something wrong. And that making an entire post solely to refer someone to a commercial site, providing nothing else in the way of relevant information other than some site offering to sell that information, is suspicious behavior, though maybe not ipso facto evil.
Also, regardless of the intent, there is the matter of the consequences to the OP who may be misled into thinking the only option they have is to fork over hard-earned cash to access information.
Add this to my generally finding trying to keep information from people unless they pay you for it to be immoral and greedy. Anyone posting exclusively links to pay sources of particular information is clearly participating, whether consciously or not, in such questionable behavior.
I find withholding anything from someone willing and able to pay the marginal cost of providing it to them to be questionable, with rare exceptions (e.g. nuclear weapons). In this case there are legal free sources of information about Java concurrency and it was not until after a few pay links that the OP heard of any of these free sources, which is a situation likely to result in unnecessary costs for someone. Causing such costs where they are avoidable is at best a form of negligent behavior; at worst (given intent) borderline criminal. Even if the causer doesn't gain financially themselves by doing so, though especially if they do.
> > Even if I grant this, look at it this way: one guy goes up to a group > > of people and asks for directions to the student loan office. The > > first respondent raves about how awesome his new Mercedes-Benz is, and > > mentions that it has satellite navigation and GPS, and gives > > directions to the nearest Mercedes dealership. [calls me a liar]
Where the f.ck did that come from? Oh yeah, your generally hateful nature and tendency to spew unprovoked insults at random. Of course. What else could it be?
Hell, I didn't claim anything; I just suggested an analogy. If you don't like it, it's probably because it comes close to an uncomfortable truth.
Consider the parallels: Both have a student with evidence of shaky finances, as is typical of students, with a question to answer. (Student loan office? Evidence of shaky finances. First resort for help is a usenet group full of a.sholes like you? Evidence of shaky finances.) In both cases the first respondent suggests something that will indirectly answer their question but it will cost them. In both cases their question could be answered more directly and without costing them, though they would still have the option to take the expensive route if it were mentioned *additionally*.
Actually the one major failing is that the Mercedes scenario is less nasty in one key respect: it's immediately obvious that the first responder's suggestion will require paying money, rather than there being a sort of bait-and-switch involved. What actually occurred was basically
Q: Question? A: URL!
Of course the URL could easily have led directly to an "Answer!". (In this case, a section of Sun's Java Tutorial could have been linked to.) Instead, the URL led to something akin to:
E-Mail Address: [ ] (will be verified)
Enter CC#: [ ] Visa MasterCard American Express
(*) Get valuable marketing offers from our marketing partners FREE! ( ) Get different valuable marketing offers from our other marketing partners! ( ) I don't want to receive valuable marketing offers*
1 item: Answer Book - $49.99
[BUY NOW]
<font size=3>*we'll send you junk mail instead</font>
where we can be reasonably assured the book contains an "Answer!".
> That analogy is bogus, because what was asked for and what was offered > was [sic] within the same topic. No, *you* are bogus, because what was asked for (Java discussion) and what was offered (insulting off-topic twaddle and other general- purpose bullshit) "were" not within the same topic.
OP asks for info; gets directed to pay source with conspicuous lack of mention of a free source I know exists. OP asks for navigation directions; gets directed to a very expensive source of same (Mercedes with GPS navigation console) instead of simply given spoken or written directions or pointed to where maps of the campus can be pulled from one of those ugly plastic racks of pamphlets all institutional places have dispersed about.
Still undecided: whether there's any financial ties between the original respondent and the car dealership...no real evidence either way.
> A better analogy would be that someone asked for suggestions for > a car and someone replied by telling about how great a car a > Mercedes is. > > Completely valid answer. Except that there aren't free cars. (At least not yet.)
Information on the other hand can be, wants to be, and frequently is free.
Maybe instead someone asks for directions to the loan office and the only replies they get are directions to the taxi stand, where there are plenty of people willing to drive them to the loan office ... for a fee.
Whatever.
> > Which would you expect a random other person to prefer? One not known > > to be rich? Especially one who is probably a student and probably not > > a trust fundie either, or he'd be asking some paid help or private > > tutor instead of asking you? > > You are babbling. In other words, I present a cogent and unassailable argument that you cannot defeat by specifically addressing particular points with cogent objections, so you resort to generally insulting it and engaging in / ad hominem/ attacks.
> 1) Because the original poster may prefer some solution it > does not imply that it is mandatory on usenet. Oh come off it! This is rather like a mechanic telling someone whose left rear brake light needs a loose wire tightening that they should also replace the transmission, for no good reason or at best on a hunch, and moreover not fixing the wire. Hoping the guy gets worried enough to replace the tranny, even if at some other mechanic, because a rising tide floats all boats.
It's like trying to chat up one of those wieners on MSN or ICQ that publicizes themselves as interested in online dating but responds to every overture with the URL of some pay dating site instead of a frigging conversation.
It's like asking some guy at the Future Shop to recommend a PC configuration for particular purposes and he suggests the $1100 super- deluxe souped up media center PC with a high end graphics card and all the querent wanted was something capable of playing Minesweeper and running Excel and Word.
It's like getting a circular in the mail offering a nifty new gizmo "free after rebate", and when you get to the store they say they've never heard of the rebate, or claim that the offer happens to have expired exactly 17 minutes and 4 seconds before they walked in the door, too bad so sad.
It's like doing a google search for "FooProd review" and getting nothing but ad copy and sponsored results -- nary an independent review in sight.
It's like those links you see on some web sites on random computer- related words that don't link to anything relevant to the article you are reading, but instead link to full-page ads trying to sell you computer parts.
It's just rude and silly really. What objections do you, the Pitts, and anyone else here have to posting a link to the Java Tutorial whenever also recommending a pay source for Java related information? Or even just mentioning in your post when you are recommending a pay source and not a free one?
[insult deleted]
Die!
> The original poster is much better off with a resource that > can help solve not only this problem but also the next ten > or hundrer problems within the domain. That's for the original poster to decide, using other relevant information as well that only he knows, such as what his budget is. For the OP to make this decision in a way that is self-maximizing, he needs all of the relevant facts. The existence of a free source of relevant information is certainly one of those facts.
More generally though posting a pay source link unmarked is just plain disrespectful. A large proportion of the people that see it simply won't be interested if it costs money. A large proportion, and a set overlapping with that first set, won't be able to buy it even if they want to for one reason or another, depending on the vendor's policies and on their own geographic location, finances, creditworthiness, and other factors, or would have to pay prohibitive shipping fees, perhaps even dominating the total cost to them of the transaction.
> Have you tried counting how many people here that consider it common > sense and how many that does not consider it common sense ? The silent majority is rather hard to count on usenet because being silent makes you invisible here.
> You are the only one who has this bizarre idea. Incorrect. I am the only one being particularly vocal about it, for some odd reason. Also I gave a bunch of references establishing that this "bizarre idea" is actually commonplace and well-documented in usenet's long and storied history. Postings that consist solely of pointers to commercial sites have long been viewed with disdain online.
I again ask you: What is your objection to a) Disclosure when a link is not to the information requested directly, whether because it "requires registration", or requires you to buy access to the information, or whatever; b) Disclosure when any such link will benefit you financially; c) Disclosure of any cheaper and especially free alternatives you know of for getting information that may satisfy the OP; and d) Directly answering the OP's immediate question while you're at it.
Because frankly, I can't see any objections other than i) "Because I don't feel like it" -> lame-o! and ii) "Because I have a dishonest motive of some sort, or want to see people waste money, or just like to help corporate greed whenever I can" -> go f.ck yourself.
Arne Vajhøj - 22 Oct 2007 02:06 GMT >> But you are completely missing the point: there is a big difference in >> unsolicited posts about site and referring to a site in a relevant >> thread. > > So spamming is okay, as long as it's somewhat targeted? No.
But that is irrelevant since the message was not spam.
> It follows from the above that referring to a site only in a relevant > thread is not sufficient to mean you're not doing something wrong. True.
> And that making an entire post solely to refer someone to a commercial > site, providing nothing else in the way of relevant information other > than some site offering to sell that information, is suspicious > behavior, though maybe not ipso facto evil. No. That is common usenet practice.
> Add this to my generally finding trying to keep information from > people unless they pay you for it to be immoral and greedy. Anyone [quoted text clipped - 12 lines] > Even if the causer doesn't gain financially themselves by doing so, > though especially if they do. I think you have a serious problem.
> OP asks for info; gets directed to pay source with conspicuous lack of > mention of a free source I know exists. Hmm.
A question: do you believe the Java tutorial has as good information about multithreading as the recommended book ?
> In other words, I present a cogent and unassailable argument that you > cannot defeat by specifically addressing particular points with cogent > objections, so you resort to generally insulting it and engaging in / > ad hominem/ attacks. ????
There were plenty of specific points.
>> The original poster is much better off with a resource that >> can help solve not only this problem but also the next ten [quoted text clipped - 5 lines] > needs all of the relevant facts. The existence of a free source of > relevant information is certainly one of those facts. So is the book !!
>> Have you tried counting how many people here that consider it common >> sense and how many that does not consider it common sense ? > > The silent majority is rather hard to count on usenet because being > silent makes you invisible here. Then try count the non silent !
>> You are the only one who has this bizarre idea. > [quoted text clipped - 4 lines] > pointers to commercial sites have long been viewed with disdain > online. No no no - you were never able to produce anything backing your claims.
You assumed the readers had as low an IQ as you and could be fooled by just posting some links to something different than what you claimed.
> I again ask you: What is your objection to > a) Disclosure when a link is not to the information requested [quoted text clipped - 4 lines] > of for getting information that may satisfy the OP; and > d) Directly answering the OP's immediate question while you're at it. re a)
Rather unnecsaryy since the reader will find out.
re b)
I agree.
But as has been proven that was not the case here and your accusations about such was wrong.
re c)
People post what they think is the best answer.
If somebody think they have a better answer they must post it.
re d)
If possible and optimal.
Arne
nebulous99@gmail.com - 24 Oct 2007 10:55 GMT On Oct 21, 9:06 pm, Arne Vajh?j <a...@vajhoej.dk> wrote:
> > So spamming is okay, as long as it's somewhat targeted? > > No. > > But that is irrelevant since the message was not spam. As defined by you, arbitrarily (since clearly you consider some targeted, commercial-content-only messages to qualify and others not to seemingly at random).
> > And that making an entire post solely to refer someone to a commercial > > site, providing nothing else in the way of relevant information other > > than some site offering to sell that information, is suspicious > > behavior, though maybe not ipso facto evil. > > No. That is common usenet practice. No, disliking that sort of behavior is the common usenet practice. Or perhaps you spent the last decade or two using a different usenet than I did? If so, I suggest you go back to that other usenet; you'll like it better than this one. :P
> I think you have a serious problem. I do, and its name is Arne Vajh?j (disclaimer: looks correct as pasted, but GG may mangle it horribly). I'm still trying to think up a solution to that problem. I'm beginning to suspect that it involves emailing staff@sunsite.dk. (If I weren't using GG, and the problem weren't spreading lies about me in earshot of third parties, a killfile would solve it.)
> A question: do you believe the Java tutorial has as good > information about multithreading as the recommended book ? I don't know, because I've only read one of the two, but it has information that's frequently "good enough" for many purposes, and therefore is likely to have satisfied at least the OP's short-term needs. Indeed, may have actually done so, for all we know -- he hasn't weighed in lately with any new comments so who knows what he's done? Maybe he bought that book. Maybe not. If he did he's probably still waiting for delivery, but already out the price tag, whereas the Java Tutorial section on concurrency is available almost instantly with one click of the mouse from a link I provided, and without costing a dime over whatever his normal internet usage fees are, too.
The Java Tutorial is certainly no-risk to try: if you read it and apply it, but it's not enough or you find it outright bad or whatever, well you didn't spend any money at least, and you're free to go book shopping. If you bought the book and the same thing happens, though, you're going to have to eat the cost.
> > In other words, I present a cogent and unassailable argument that you > > cannot defeat by specifically addressing particular points with cogent [quoted text clipped - 4 lines] > > There were plenty of specific points. Not in the area where I responded with that paragraph. There was a chunk of quoted material by me, a blank line, and a general-purpose insult by you. Probably all that someone of your IQ is capable of coming up with; it would explain why you do it so often.
> > That's for the original poster to decide, using other relevant > > information as well that only he knows, such as what his budget is. [quoted text clipped - 3 lines] > > So is the book !! It's not symmetrical. If the prices were equal it would be, but they're not.
OP knows of neither -> asks, perhaps here. OP knows of both -> informed choice between them. OP knows of tutorial, but not book -> uses tutorial. If adequate, good! If not, comes back looking for more, or searches the net, finds book. OP knows of book, but not tutorial -> pays for book. If tutorial would have been adequate, outcome is not Pareto-optimal.
Only the fourth situation risks a substantially sub-optimal outcome for the OP, unnecessary expenditure of money.
> >> Have you tried counting how many people here that consider it common > >> sense and how many that does not consider it common sense ? [quoted text clipped - 3 lines] > > Then try count the non silent ! A small sample size, and by the very nature of their being vocal on the issue, likely a biased sample too.
Small, self-selecting samples are doubly bad statistics and you f.cking know it.
> No no no - you were never able to produce anything backing > your claims. Yeah, go ahead, keep telling yourself that, even though a quick google search quickly reveals the post where I cited no fewer than three sources to back them up. If you close your eyes the monster can't see you to eat you. I suppose I shouldn't expect reasoning of a higher caliber from someone of your apparent age and IQ.
[lying insult deleted]
f.ck off.
> > I again ask you: What is your objection to > > a) Disclosure when a link is not to the information requested [quoted text clipped - 8 lines] > > Rather unnecsaryy since the reader will find out. Rather necessary (note spelling) since the reader won't like being conned into clicking a trick link. Why do you think I rarely follow links in usenet posts? Because so damn many of them are useless, moneygrubbing, or even outright dangerous (malware, fraud/phishing, etc.)
And the link may immediately give an undeserved financial benefit to someone, due to ad impressions, or being treated as an ad click- through even, even assuming the victim isn't tricked into paying through the nose for information they might have found elsewhere for free had they not been led down the garden path.
If you feel the author of this book is especially deserving of money, make that decision with your own money and buy extra copies or donate money to him or something rather than trying to cause other people to do so (perhaps unnecessarily, as they might later judge things when they have all the facts) by withholding information from them (or granting information to them selectively).
You can even be doubly charitable by buying extra copies and then donating them to educational institutions and libraries in your area!
Let other people make their own informed choice, and that means they should know of the cheapest variation of what they want at a bare minimum.
> But as has been proven Nothing of the sort has been proven. I'd need to see detailed financials for all of that guy's accounts to determine with certainty whether or not he got some sort of kickback.
It's also true that it has not been proven that he *did* receive anything of the sort.
It's a complete unknown at this point.
> People post what they think is the best answer. People post for all kinds of reasons, and cannot always be trusted. For example, you don't post insulting twaddle like this, implying that I'm an idiot simply by posting to disagree vocally with everything I say instead of quietly nodding your head, explicitly calling me an idiot in two separate places, and making other insulting insinuations, because it's the best answer (and besides -- best answer to what?), but because you're an a.shole and you hate me and you want everyone else to feel the same way you do.
People certainly don't post the various spams nobody is disputing were spams because they think those are the best answers, but rather because they make money from people that get suckered.
People post all kinds of things with motivations other than to inform honestly (including without lies of omission) and that has to be taken into account.
> If somebody think they have a better answer they must post it. And they do. But I don't like seeing posts that, were I the OP, would leave me feeling tricked and cheated. A link promising the answers to my questions that goes to some page saying "Please insert a coin to continue" or "Please login" or an ad for a commercial product or whatever would have exactly that effect. I hoped the OP would make a genuine effort to inform me, and succeed in that effort, and instead all I found was a waste of my time. Either the OP had another motivation than to inform me, or they did intend to inform me but did not succeed because they assumed that I was an affluent American with a credit card and no problems with making $40-50 purchases at the drop of the proverbial hat. 99+% of the people in the world don't meet such a description, and the bulk of the people posting questions here will be students, the bulk of whom do not fit any of that except perhaps "American", typically being anti-affluent, in too much debt to even contemplate charging anything else to credit, and seriously debating $4-5 purchases such as whether to skip lunch, nevermind ones ten times that size.
> re d) > > If possible and optimal. If you know the answer it's possible. If you don't know the answer, you're not qualified to decide if book XYZ or site JKL is appropriate to suggest. If you know the answer it's also certainly optimal, since it likely requires about the same amount of typing on your part and certainly requires less mouse clicks (and perhaps less money!) on the OP's part.
Lasse Reichstein Nielsen - 20 Oct 2007 01:22 GMT >> > Yes, it was. It was an ad, for crying out loud. >> >> No, it was a reference to a book. > > Yes, it was an ad. It was a post whose sole content was the promotion > of a commercial product. Not promotion. Recommendation. Recommendation can be used as promotion, but it doesn't have to be. It's a matter of intent, not content, whether it is promotion.
> It linked to a web site whose sole content > was the promotion of that commercial product. I don't see any > distinction here -- such a thing constitutes an ad, pure and simple. And I see the distiction and disagree.
> Furthermore, it appeared in place of the actual information the OP > requested. The OP requested information, and got told where to go buy > access to it instead of told where the information he sought could be > had for free. That is not very nice regardless. It was on-topic and helpfull. I would be pleased to get such a response if I had a question. I do buy books, but I also read them online (my company has deals with services that make books readable on the web), or even borrow them from the library. Just because a book can be bought, it doesn't mean that it's the only way to get to read it.
>> The point of the post in question was referring the reader to the >> book, whether the link to the commerical site was there or not. As [quoted text clipped - 6 lines] > Coca-Cola!" it's not? > That's ridiculous. Sure. But if someone said "I'm so thirsty", and you responded with "Try Coca-Cola. I use it and like it.", then it's not necessarily advertising. If you do have a commercial interest in getting people to buy the product, then it is advertisment. If you don't, then it's just recommendation.
>> Also, something is not a "commercial" posting *unless* the poster >> expects to make profit from posting it, in any way or form. In this >> case, the poster was unrelated to both the book and the linked web >> page > > What's your evidence for drawing this conclusion? He said so. <URL:news:1190997941.185538.70200@y42g2000hsy.googlegroups.com>
> Don't forget, Lew and Andrew have made clear in other threads that > people who post here are considered to be affiliated with any sites > they recommend until proven otherwise. Extraordinary claims require extraordinary evidence. Someone starting a new thread to tell us about the greatness of some site is under greater suspision of being an agent of that site. Especially if they are new and the owner of the site is not easily determined,
In this case, the reference came as part of a plausible response to someone elses question, by a poster that has been with us for quite a while.
Circumstances matter.
>> and will not receive anything if anyone choses to buy the >> book. He was just a happy customer sharing his experience. [quoted text clipped - 4 lines] > mentions that it has satellite navigation and GPS, and gives > directions to the nearest Mercedes dealership. Someone looking for a student loan office (whatever that is) is probably not in a position to buy a new expensive car. In this case, the original poster gave no indications in any direction. I.e., the example is a strawman.
> There's been, *at minimum*, a gross failure of communication (or maybe > of intelligence) in such an instance, wouldn't you agree? Obviosuly, as you designed the example for that.
>> > And the citations (plural) DO support the statement that was >> > currently being disputed, namely that commercial messages are [quoted text clipped - 4 lines] > > Yes, it is. Ok. I'm not disputing it.
>> The statment that is being disputed is this: >> [quoted text clipped - 3 lines] > > This is just so obvious that it really should go without saying. And yet it was disputed immediately, and nobody else have given support to it.
There is no such requirement. Anybody can recommend any help or soultion that they care to, whether commercial or not. If it is a commercial solution, then saying so is a good idea. There is *no* requirement that people recommending something that costs money should also do anything else.
> Which would you prefer to receive if you were asking a question? A > link to where you can buy the answer, or just the damn answer??? I would prefer the answer. But does that make it the best response? Should you give a man a fish, or teach him to fish? Some questions don't have simple answers. Recommending a good book on the general subject might seem the best way to give the questioner the background information necessary to even understand the correct answer.
> Which would you prefer in the way of product recommendations? A list > of only expensive options, or all of them? All of them, obviously. However, I would not require that anybody giving recommendations must do any more than what they care to do. If you had to post a complete list of alternatives or nothing at all, you would get a lot of "nothing at all". If you feel one recommendation should be acompagnied by another recommendation, e.g., for a free alternative, *you* should post it.
> Which would you prefer if you asked for a car dealership > recommendation? Only Rolls-Royce and Mercedes dealers, or the > assortment of Ford, Chrysler, Nissan, and so forth dealerships as > well? I would prefer the ones you can personally recommend. Don't pad the list with something else, especially if it's just something you have looked up in the phonebook for your answer to be "complete". I'd much rather have *one* genuine deep-felt recommendation than several indifferent references.
> Which would you expect a random other person to prefer? The best answer I can give. If I can recommend a commercial solution, because I have had good experience with it, then it's a good answer. If I don't know of a free alternative, I obviously shouldn't write about it.
> One not known to be rich? If I thought it mattered, I'd take it into consideration. In a forum like this, where I don't write for just one person, I'd probably also include answers not directly suited for the person I'm responding to. Pointing to a book should be sufficient for people to know that it's a physical object that can cost money to acquire.
> Especially one who is probably a student and probably not a trust > fundie either, or he'd be asking some paid help or private tutor > instead of asking you? What's your evidence for drawing this conclusion?
I bet a lot of the questions in this group is related to work, not study, and not because other ways of getting answers aren't available, but because they aren't necessarily as quick or of as good quality.
(Ok, checking his posting ip address does lead to a .edu address, so it's a fair guess. Such a check is not something people can be expected to go through before answering though.)
>> So far, no support for *that* claim has been posited, and none of the >> other posters, all long-time newsgroup users, have ever heard of such >> a rule or custom. > > It isn't a rule or custom. It's just plain common sense, a.shole. Don't call me names, don't insult me.
> It's called "not leading people down the garden path" or "not > ripping people off" -- and yes, people paying for something that has > a free alternative they'd have been perfectly satisfied with simply > because they never got told about the free alternative ARE being > ripped off. Then tell them about it. It's as easy as that.
> [snip remainder of unprovoked hostility and general nastiness] For the record, the remainder of the message was four lines:
| I.e., links to non-free software or information need not be marked as | such. There is definitly no requirement, or even expectation, that | posters of links to non-free software or information also post free | alternatives. I would very much like to hear where the hostility or nastiness is.
> Go away. In my own good time. /L
 Signature Lasse Reichstein Nielsen - lrn@hotpop.com DHTML Death Colors: <URL:http://www.infimum.dk/HTML/rasterTriangleDOM.html> 'Faith without judgement merely degrades the spirit divine.'
nebulous99@gmail.com - 21 Oct 2007 06:57 GMT > Not promotion. Recommendation. They mean essentially the same thing.
> And I see the distiction and disagree. Then you need to clean your glasses. You're liable to crash your vehicle or trip down the stairs with them in their present state!
> It was on-topic and helpfull. I would be pleased to get such a response > if I had a question. Yeah, and some people are into whips and chains and all that jazz.
Did you have an actual point to make, or are you just disagreeing with me for the sake of being disagreeable, as seems to be the national pastime these days?
> I do buy books, but I also read them online (my company has deals with > services that make books readable on the web), or even borrow them > from the library. Just because a book can be bought, it doesn't mean > that it's the only way to get to read it. Not even when the only answer provided to the OP is a Buy Now! page at Amazon.com? :P
Tell me what objection you have to referencing the Java Tutorial, or mentioning at the very least that the link in your post is not to the actual information the OP is looking for but merely to an order form where he can get it sent to him but only for a fee?
> Sure. But if someone said "I'm so thirsty", and you responded with > "Try Coca-Cola. I use it and like it.", then it's not necessarily > advertising. If you do have a commercial interest in getting people > to buy the product, then it is advertisment. If you don't, then it's > just recommendation. It's hardly comparable. Everyone knows that water is available in the developed world and where not free is very cheap. Budget-conscious people will pour a glass from the kitchen tap rather than spend on your say-so. The OP in this case may not have been aware of java.sun.com's "water" that might be able to quench
|
|