Giving an application a window icon in a sensible way

R

RedGrittyBrick

Likely, because you know of some shortcut that I don't.

I really doubt it! I only know half a dozen keyboard shortcuts that are
specific to Eclipse.
(Eclipse seems
to include a whole damn continent worth of just shortcuts alone, the
exploring of which would take any single person decades. So you can't
fault me for not knowing some specific one. :))

145 items is a lot but I'm not sure it is exactly continental. I think
I'd reserver the work continental for bigger numbers. It's not hard to
pick "key assist" from the "Help" menu and look for anything relevant.
Care to divulge it?

Divulge is a strange choice of word, it has undertones of concealment
and witholding. I get the impression you choose your words carefully.

As I already said, to create a new GUI project I cut and paste (Ctrl+C
Ctrl+V) from a myGuiTemplate.java or elsewhere.

You can get Eclipse to insert stuff by clicking the light bulb in the
left margin. Either Alt+Space (Content Assist) or Ctrl+1 (Quick Fix) can
be useful too. Use Ctrl+O to get the imports done for you. Surely you
already know all this?

How long have you been using eclipse?
(I'm guessing it creates a new stub Swing-app
project in a couple of mouse clicks and one typed-in project name,

There may be a way of doing that but I don't know of it.
but
does not solve the 10,000-projects clutter problem I've pointed out
such usage would lead to in a relatively short span of time.)

No, you talked about "ten billion". I'm glad to see the hyperbole
reduced but I still think you're exaggerating by a couple of orders of
magnitude. I do apply "such usage" and I don't have anything like that
many test classes, even though I've deleted none.
As a rule, I prefer to work on one thing at a time. Regardless of its
merits, creating whole new applications at the drop of a hat will
necessitate tons of context-switching and workflow disruption...

A couple of observations:
1. Whilst you are reading this newsgroup, you are not deep into your
project. Context switching to Eclipse between newsgroup postings isn't
much of a disruption to me.
2. When I hit a snag in my main app, if I want to test some idea out,
it's sometimes *less* disruptive to do it in a small separate
application which runs faster and has less baggage.

Eh what? I don't see how cut and paste helps. If I've got a broken
behavior involving my use of, say, the Foo class, in a threaded context
with various accesses, I'd need to copy and paste several chunks of
code (and each chunk means switching projects *twice*) and then write a
whole lot of glue code before it will even *compile*, likely including
a new thread subclass or two. Then I need to tweak it until it
reproduces the behavior seen in the original app...

I made a general comment, you are talking about a specific situation.
I'm saying that my experience is that the general approach is often (but
not always) useful. You *seem* to be saying that making small test apps
is never useful.
The alternative would seem to be to copy the original project in its
entirety (all potentially however-many class source files worth) and
then pare it down, which might take an insane amount of time (and if
one important bit is deleted by mistake, the result either won't work
or won't reproduce the original problem, and then it all has to be done
again *from scratch*...)

I don't see either of these as being anything like as quick as you make
out. Unfortunately, the bugs (mine or otherwise) that would be isolated
with the least effort by this method are exactly the bugs that are so
localized to one or two lines of code that they rapidly succumb to
debugging tools such as breakpoints and added System.out.println
statements. The more complex problems are the very ones that will
require an effort to reproduce this way comparable to making a
substantial new project in its own right.

The subject-line of this thread can be demonstrated in a few tens of
lines of code. So I believe that at least half of your recent questions
could have been handled that way.

There's also the issue that the stripped-down copy produced (by either
method) will, for more complex situations, still potentially reveal way
too much about the nature and architecture of my project. I had one
reason to avoid doing so in the past; lately I've added a second,
namely that every fact that is exposed about what I'm doing is another
potential target for someone to latch onto to criticize for no apparent
reason beyond the sheer joy of criticizing someone.

That is a good thing! I always learn something to my benefit. I gain,
the posters expend the effort. It's a bargain and I thank them for it.


If I mention that
I'm doing X, in other words, then anyone who for whatever reason thinks
doing X is dumb is liable to go and open their big mouth and I'll be
forced to defend my use of X. Multiply that by however many details are
revealed, and before long that's a lot of defending and not much actual
work getting done. In the worst case, enough implementation details are
exposed, and enough of those become the focus of some dweeb's pointless
attacks, that defending them actually requires 300 GG accounts and over
24 hours a day of defending. At that point, it becomes impossible to
avoid letting at least one criticism a day slide, with the devastating
consequence of bad beliefs about me beginning to circulate unopposed.
And the number circulating then growing with every passing day until,
presumably, all 6 billion people in the world believe something bad
about me and nobody will want anything to do with me again. Needless to
say, that would then put a crimp in my lifestyle...

So I hope you'll forgive me if I'm sparing with details,

Thats a lot of words to say something simple!
and if I react
somewhat negatively to any and all attempts to pry beyond the narrow
confines of the specific areas about which I've asked questions, as
well as to all suggestions that would involve exposing lots of such
details in one fell swoop.

Your "attempts to pry" are other people's "attempts to help you". I'm
not much surprised your negative reaction isn't well received.

Sounds like you need version control and branching -- or at least so
some other people here would probably jump at suggesting. ;) (I'd say
it depends on the complexity of what you're doing. If you're
maintaining parallel versions of something over a significant span of
time, it may very well be warranted. If you're just forking a quick
copy to experiment in, it might be a waste of time instead.)

If Eclipse supported RCS I'd be using it. I miss Vim and RCS! Setting up
a CVS repository is something I'll probably get around to one day.

I'm now seriously considering retrofitting the icon with
getResource
Halleluya!



Shift+F2? You don't mean just the little scrollable box with an
abbreviated, un-hyperlinked version? (Which I'm fairly sure was just
regular-F2...)

No, I don't mean that.
Testing it, it doesn't seem to work. It's looking for the project
javadocs, which I've not built at this time, rather than the standard
library javadocs, and that's while pointing at the identifier
PriorityQueue and seeing in the regular-F2 window the PriorityQueue
class docs' preamble (before the method list etc.) without hyperlinks.

When I use a copy of Eclipse without the core Java documentation
installed, and press Shift+F2 with the cursor over PriorityQueue, I
don't get an F2 window, I get a dialog box that says "The documentation
location for 'PriorityQueue<E>' has not been configured. For elements
from libraries specify the Javadoc location URL on the properties page
of the parent JAR ('rt.jar')".

The web page I referred you to (below) walks you through the process
recommended by Eclipse.

When you do that, Shift+F2 takes you to a fully hyperlinked web page in
sun.com that displays the docs for the relevant class (if a Sun class).

I think you said you only trust wikipedia and sun.com, which is a shame
since http://javadocs.org/PriorityQueue is also very handy (substitute
any JRE class for PriorityQueue.)
It does at least seem to be able to find the standard library javadocs
to provide the latter functionality, even if shift-F2 is misfiring.


The last tinyurl I ran across led directly to goatse, so I hope you'll
forgive me if I at least save this one for later. :)

Most browsers let you turn off Javascript, images etc for untrusted
sites and there is always Lynx.

In the unlikely event that anyone less ... well ... paranoid reads this,
it may prove useful for them, if not for you.

Good luck!
 
F

foobarbazqux

Twisted said:
(e-mail address removed) wrote:
[snip]

Oh, you're a PofN sockpuppet.
ROFL.

I can tell, because you diddled your
headers to make that last followup count as a twofer.

Prolix, s/as a twofer/twice/.

Check the headers on the posting of yours I responded to, You'll find
that any "diddling" of headers happened much earlier.
(And in response to some of the nonsense elsewhere in this thread:
VINDICATED!

Nonsense, Followups were set by PofN and you didn't notice (neither did
I). Followups are hardly "diddling".
I have an explicit example now of one post being made to
count for many. So much for the various improbable alternative
explanations for the blocking that have been put forth --

Crossposting to two newsgroups may well be one more than is necessary
but is hardly at spammer levels, it's not even approaching typical
troll levels. If google thinks you are posting at spammer levels, that
is down to your inability to let even the mildest disparagement pass
you by.
it is PofN
and (e-mail address removed), who are probably the same person anyways,
doing it,

You seemed so sure earlier. Having doubts?
I TOLD you in response to your last steaming turd that I would dissect
and analyze your postings to detect and neutralize your BS. Did you
actually think I was bluffing? Idiot.

No, I think you are demonstrating yourself to be the latter.
The only reason you succeeded
with that last post was that I only noticed it was you cleverly
disguised as a different idiot after it showed up as posting to two
newsgroups when I'd obviously only clicked "reply" in one. And now, of
course, I will neutralize any further attempts by "foobarbazqux" to do
so in the future too.

ROFL, wrong target!
Give it up.

Give what up? Poking trolls with blunt sticks?
Either settle your disagreements with me using reasoned
debate, or take a hike.

No thanks, I choose a third way. Others have demonstrated the futility
of the first. The second is less fun than poking trolls with a blunt
stick.
Your underhanded tactics have been rendered
ineffective, and

If I had any, they wouldn't have been. Since I don't, you're way off
target. PofN's followup setting was apt and amusing but hardly
"underhand".
your insulting behavior and resorting to ad hominem
attacks is childish, not to mention reeks of the desperation of a man
who knows he's beaten.

Looked in a mirror?
 
O

Oliver Wong

RedGrittyBrick said:
As I already said, to create a new GUI project I cut and paste (Ctrl+C
Ctrl+V) from a myGuiTemplate.java or elsewhere.

You can get Eclipse to insert stuff by clicking the light bulb in the left
margin. Either Alt+Space (Content Assist) or Ctrl+1 (Quick Fix) can be
useful too. Use Ctrl+O to get the imports done for you. Surely you already
know all this?


There may be a way of doing that but I don't know of it.

You can redesign the stubs, but not create new stubs (AFAIK). Go into
the preference window and search for "code template". I've changed the
default method bodies from "return null;" to "throw new
NotImplementedException();", for example.

- Oliver
 
D

Daniel Pitts

Presumably YOU would get all defensive when your qualified and
experienced friend told you that there might be some long term draw
backs to your solution and suggested a better solution, that, even
though there was slightly more upfront work involved, would serve you
far better in the long term.

If they suggested that I was an idiot at the same time, I would.
so as not to publically[sic] embarrass myself in future.

That presupposes the conclusion you wish to draw, namely that something
is true regarding which I should be embarrassed. Sorry -- that kind of
circular logic is right out. If proving me a moron (or whatever) is
your goal, you need to start all over again at step 1. (Besides, I
thought shutting up was your goal? You've promised to several times now
but you just ... keep ... POSTING!)

[remainder of faulty analogy snipped]

Two things.
One: No one needs to exert effort to prove your a moron, you're doing a
fine job yourself.
Two: You are an idiot.

This is fun, lets play some more.
 
T

Twisted

Joe Attacki wrote:
[snip drivel]
And if I were to label you as anything, "liar" is the furthest from my mind.

For the love of God, whatever label you are thinking of instead, keep
it to yourself! :p
I'm not giving you a choice? You could always not respond.

Technically true, but I can't simply walk away from this without
consequences, while you can. If I quietly slink off now, everyone will
immediately draw the conclusion that I've capitulated, that yes I'm
whatever kind of moron you lot claim I am, that my software is stupidly
designed, and whatever else I've been arguing against. How else would
they interpret my withdrawal, than as a forfeiture?

No, the moment the discussion became about me rather than about
software, it was no longer a viable option for me to just withdraw. Not
once people put my intelligence, honor, and whatever else into question
with their words.
You are truly the master of hyperbole.

Why, thank you. :)

[Snip assorted meaningless drivel not germane to "giving an application
an icon"]
As has been said many times before, "It just works" is a dangerous
practice in software development.

You make an error I already alerted others to avoid. (And you, except
that you obviously don't read much of what I write, or we wouldn't even
be having this argument.)

There's two ways people could interpret "it just works". One is as
advocating not caring if you actually understand something so long as
it works, and there I'd agree with you.

The other is as advocating choosing the more reliable of two options.
For example, a built-in string constant simply works without any mess
or fuss or any chance of failure. A string constant stored in an
external file and loaded using I/O operations involves more mess and
fuss and introduces the possibility of an I/O failure of some kind,
such as "file not found" if the file got moved and isn't in the
expected place. This doesn't of course mean one should never
externalize strings; it just means one shouldn't do so just for the
heck of it. Localization is an example of a good reason to externalize.

Now can we drop the "just works" debate already? Consider my earlier
usage to have meant "it's foolproof" or "it's more robust".
I've already explained this but you chose to ignore it. It's easier to
type "your approach" than to type "the approach you found on sun.com
while googling and had to hack a third party class to get working".

So ease of typing effort is more important than avoiding ad-hominem
argumentation.

If that's what you believe, then we can never have a meaningful
discussion here. And since the attack/defense cycle here is obviously a
stalemate, we should both concede that the game is a draw and walk
away. (Which means that you should not post a followup to this, at
least if it does more than just nod and agree to these terms.)
As I've also said many times, it was a discussion. Yes, it was critical,
because the approach you found on sun.com while googling and had to
hack a third party class to get working (happy now?) is less than
optimal.

There are three problems there:
1. I did everything by the book, and therefore should be
judgment-proof. Why wasn't I? Apparently to avoid criticism here
requires actual omniscience and perfection, rather than just doing the
best you can?? How unjust! For the high crime of doing the best I can,
rather than some higher standard set by you (and what authority do you
have to set standards here anyway?!), I am now to be mercilessly abused
verbally, no matter how I plead my case that you should desist? How
unjust!
2. Besides the fact that I don't see how any of you could have done
better if you'd been in the same situation, with exactly the same
information (and no more!) than I had, I also don't see why you had to
make it about me and my purported incompetence and not just about the
software. Care to explain that part? Why drag my reputation into the
table-stakes and force me to defend it, simply because I *merely* did
the best I could, and not better?
3. On top of all this, as far as I can tell in *this specific instance*
(other circumstances not being relevant here) the approach I wound up
using isn't actually inferior anyway! So it may not have been possible
to do "better" anyway (only different).

You must successfully refute all three of the points above calmly and
logically, or else admit that your whole argument against me doesn't
have a leg to stand on and should be considered null and void,
including every last criticism of either me *or* my software that you
previously made in this thread. (If you do some third thing instead,
I'll consider it tantamount to an admission as per the second item
above.)

That includes justifying dragging me-the-person into the issue as a
target of criticism rather than limiting your scope solely to the
software originally at issue, and it includes justifying holding the
expectation that someone do better than the best they can, an
expectation I consider unreasonable and very much doubt you *can* find
a valid argument to justify.
OK, so you're not overly defensive?
"This is the approach I found and implemented"
"Hm, did you consider doing it this other way? It's typically the way
to solve this problem. Does your approach have any advantage?"
"What!? How dare you criticize me, who do you think you are!? Why are
you challenging my competence??!"

This caricature is nonsense. Closer would be
"This is the approach I found and implemented"
(Teacher-to-backwards-student-mode) "What are the advantages of your
approach?"
(Voice #2) "Why did you do it THAT way??"
(Me) "Here are several advantages of the approach I used ... What other
way did you think I would do it, given that this was the first google
hit I got googling the subject and that was thus-and-such and etc..."
(That should be the end of it, but nope...) "Ignoring all of the above,
I now say something to more strongly suggest that your approach is
broken and stupid, and that by extension so are you, since you
obviously didn't get the subtle hint the first time and quietly go away
like I wanted you to!"
(Gloves now begin to come off...)
I'm sorry, is there a limit to how many replies I should post in a
given thread?

No, only to how many attack posts you should write. That limit,
incidentally, being zero. :p

(It is only attack posts that both waste bandwidth and force your
target to follow up in his own defense. At least other off-topic posts
merely waste bandwidth! Attack posts basically count for double, and
that's ignoring the ugliness, rudeness, unjustness, etc. and the nasty
effect it has on your victim.)
OK, here we go again. Stop exaggerating. You KNOW I didn't attack you
for not remembering the whole thread word for word. I simply expected
you to at least remember the tone and content of the posts that put you
into this rage.

In other words, the whole thread. Well, actually, strictly speaking
nothing, since nothing has put me into any rage. Aside from the "****
you" when someone called me a liar earlier, I've been pretty much calm
and logical -- perhaps to a fault. Maybe the only language you lot
understand is the one you're using, and that therefore to get your
attention or to convince you to leave me alone requires that I start
insulting you and shouting at you.

I've hoped against hope all this time that you'd realize that you're
stalemated and accept a drawn game, but it is now becoming apparent
that I might have to stoop to your level and counterattack or never see
the end of this, with day after day losing as much as an hour a day
simply to undoing the last 24 hours' damage to my name by you lot in
this one thread. If that's what it will take to end it, the gloves will
really come off and I will have at you with every weapon in my arsenal;
and if you will never let me come out of this smelling like roses (or
even neutral), then I'll ensure that we'll ALL come out of this
stinking like an open sewer! It's called "mutually assured destruction"
by the way; I've been told that it's an excellent deterrent. Perhaps
now this will be allowed to quietly die the death it deserves? But if
not ... I guess we'll see how long it takes to nuke one another into
submission. I must admit a part of me actually would like to start
slinging serious verbal firepower at the whole lot of you until
everyone's reputation (and, as likely as not, this newsgroup) is a
smouldering wreck. But actually I'd much rather we all just walked away
from this (you first of course, so that the score is zero-zip after I
post a final round of replies). It would be the mature, adult thing to
do.

(So why do I now suspect that there's at least one kid, or worse
teenager, among you? ...)
If you didn't want any more assistance, advice, discussion, or
whatever, why did you keep coming back to the thread? Oh, right,
because everyone was attacking you.

Exactly -- to rebut the insinuations (and later outright lies).

For example, the post asking "What are the advantages..." required a
response. Failure to reply would have suggested an admission that "my"
approach was crap, after all, as the poster obviously thought. So I had
to answer the question. Unfortunately, instead of it being left at
that, a reply disregarded most of what I'd written and tried to
undermine the rest, and it was obviously necessary to reiterate ...
You are being completely absurd. Nobody challenged you.

You don't honestly think that a shocked-sounding "What are the
advantages of your approach???" in a situation where the very question
is out-of-scope isn't effectively a challenge of "You say you're not an
idiot? Prove it!" do you?

It's what a teacher says to a student who's done something a) different
from all of the other students and b) wrong, or at least questionable.
It's *not* something you ask without intending to make an implicit,
rather pointed *point* of some sort or another. And that's leaving
aside that it was the *mildest* of the responses. You can make a fairly
good case that it's innocuous, and at worst a Java course instructor
coming home after a bad day at work with incompetent and difficult
students, checking netnews, and slipping into "teacher to student
suspected of having made a mistake" mode out of sheer habit.

Unfortunately, some of the other early responses to the disclosure of
"my" approach were not open to any such charitable interpretations at
all...

Tell me something -- if you asked how to do X, found Y before seeing
any replies, Y worked, and then you checked news again later and saw a
bunch of belated suggestions to do Z, posted that it was OK, you'd
found Y which worked well enough in your situation, and then suddenly
everyone was either continuing to suggest Z (implying they think Y is
stupid) or asking you why the heck you did Y, tell me what would *you*
think these people were implying by doing so?! In fact more generally
if people keep asking why you're doing something or suggesting you do
something else, instead of sticking to the implicit boundaries you
originally set on the discussion, wouldn't you take that as
criticism???

Do I even have to make it explicit that if I ask how to do X, then the
scope of the discussion is "ways to do X" and any unsolicited advice or
questioning outside that scope is clearly a suggestion of incompetence,
or at least a sign of dubiousness, that would have been better kept
private rather than made public? You're welcome to your negative
opinions about me or the way I choose to develop my software -- just do
SHUT UP and keep them to yourself! When I want your opinion on such
things I will explicitly ask the questions. :p (P.S. I don't recommend
holding your breath waiting for those questions, either.)
Asking what an advantage is is not a challenge. It's a DISCUSSION.

It's prying outside the original bounds of the question, and as such
it's an implicit questioning of the validity of the choice I made, and
by extension, of my validity. (Not that I even had much of a choice,
given that at the time I had yet to be made aware of any other
approach.)

Tell me what *you* think the motives behind such responses are?

I can only think of two. One is to simply attack me for the heck of it.

The other is genuine helpfulness, gone wrong due to a misguided
approach chosen. In that theory, the person genuinely wants my project
to succeed, and genuinely thinks a different approach would be better,
but unfortunately chooses to word their "help" as an attack on the
approach used rather than an endorsement of the approach they consider
superior. And that, of course, challenges the original poster to defend
the approach used, and likely closes their mind to your suggestion.
You've doubly shot yourself in the foot if you do that: not only won't
your suggestion, which you believe genuinely constructive (and perhaps
correctly), be used, but you've also brought the original poster's own
competence publicly into question, if implicitly by making the
suggestion that their choice of approach might not be all it's cracked
up to be. And now they are put upon to defend not only their actions
but their intelligence and competence too, since this happened in front
of a goddam audience.

"Are you sure Z wouldn't be better?" is likewise problematic. It uses
the word "you", you'll note, and makes the person's decisions at issue
and not just the needs of the software being developed.
That's what this newsgroup is for, DISCUSSION. Plenty of posts were neutral. As for the
ones that suggested you were doing something dumb, well, it is because [insult deleted]

See? I'm right! Posts did suggest unflattering things about me, and now
you're at least admitting that they did (while insulting me further at
the same bloody time mind you).

There's the wrongdoing. Nobody should have ever suggested anything of
the sort. Either they should leave me-the-person out of the discussion
entirely, or they should sing my praises. But they should never, under
any circumstances, have said or implied any negative thing about me,
especially in front of an audience where it not only is rude but forces
me to speak up in self defense to negate the effect their remark has on
that audience.
No, that's the generalization you made.

No, that's the truth, and you just admitted it yourself in the last
paragraph. You're not very consistent today are you?
Next thing I know: schoolteacher-type responses testing me, like "What
are the advantages of your approach?" I didn't come here to be lectured
at or, worse, asked patronizing questions! I'm six years out of
university, not some grade-school kid taking remedial math classes!
[insult deleted]

Aren't you going to explain how either a) the person patronizing me
somehow wasn't or b) their patronizing me is justified somehow even
though I did not ask for their opinion in that area? Or are you just
going to sit there and call me names like a pouting child who just lost
an argument?
[insult deleted] The initial responses were plenty constructive.

They were not wholly constructive, and they contained a taint that
wasn't merely offtopic but actually damaging. *That's* the problem,
rather than a complete lack of constructiveness.
They suggested alternatives and offered reasons why the approach you
found on sun.com while googling and had to hack a third party class to
get working was problematic.

Perhaps it didn't occur to them that I didn't want to *hear* reasons
why they thought I was dumb, certainly not in public? I certainly
hadn't asked for such. Certainly not worded so as to suggest gross
incompetence on my part in front of an audience.
Instead of taking these into account, you took them as some kind of challenge to your
intelligence.

"You should have done better than this!" (whether stated or implied) IS
such a challenge, dimwit, or had that somehow escaped your
woefully-inadequate excuse for an inference engine?

[Calls me a liar again]

That's it. We're done here. I'm going to respond to the several other
posts full of (no doubt) drivel you've graced this newsfroup with today
with detailed rebuttals, but any future ones I will respond to only
with boilerplate denials of any wrongdoing. Obviously you are incapable
of reasoned debate, and I'm wasting my time responding in any way other
than with a blanket "I'm not an idiot, asshole".
A responsibility to your ego, maybe.

A responsibility to my reputation, and to myself. Unlike you, who
certainly had no responsibility to go attacking random usenetters for
no good reason.

Anyways, if you're looking for overdeveloped egos I suggest you start
with the nearest mirror and work your way outwards from there to
examine some of the *other* recurring posters in this thread. It seems
they have some kind of inability to feel good about themselves in any
way besides putting down other people, either with the subtle put-downs
I endured right after posting "my" approach, or with the far less
subtle ones that quickly followed. Many of these people seemed to feel
slighted if I didn't instantly jump up whenever they said "frog"; talk
about egos! And every last one of you is obviously deeply insecure or
you'd have been much friendlier from the outset (and not in the "smile
sweetly while you twist the knife" sense of some early "friendly" posts
either, but sincerely and without any sly implications!) and would
never have descended into blatant mudslinging.
Your responses didn't attack anyone, no. But they had a very sarcastic
tone

With good reason, since the same was true of the posts being responded
to. "What are the advantages of your approach" and so forth.
While you say you have a responsibility to respond and explain why the
people "challenging" you are wrong, you still haven't said why the
disagreements are untrue.

Disagreements aren't true or false, statements are. If you mean why the
damaging allegations being falsely made against me are false, I've
provided tons of evidence, which you conveniently continue to ignore,
but no longer; it's evidently a waste of my time.
The only reason you've given for not trying the getResource approach is that you're
[insult deleted]

Actually I've given lots.
* At this time, there's no real advantage so it isn't worth the time
and effort, which isn't necessarily a perpetual state of affairs;
* I don't tend to try approaches people want me to try when many of
those people express their desire with rudeness, hostility, insults,
and veiled threats, as it may mean they have some ulterior motive and
even when they don't my doing so would still reward their nasty
behavior;
* The code works as it currently is, and "if it ain't broke don't fix
it";
* Why is it any of your concern anyway?!
And frankly, although I have taken some of your
overstatements of how long it takes to learn such things as
exaggeration, perhaps it calls your competence into question.

No, it just emphasizes that people familiar with something
underestimate the complexity and intimidation that result from early
exposures to someone unfamiliar with it. When you're completely new to
something you do NOT just type in some command to install it and start
using it like it's second nature, as a general rule. (Eclipse was,
remarkably, an exception; but it's still idiotic to bet on that kind of
experience rather than on spending a lot of time with man pages, more
still tinkering, and more still shopping for Rogaine after yanking out
all your hair...)

To top it off, there was an enormous pressure being brought to bear
that I should drop every damn thing I was doing and learn whatever
RIGHT NOW, and on the double, move it move it move it!

If there's one thing that is absolutely guaranteed to turn a pleasant
learning experience into a week-long nightmare of configuration hassles
and crashes of various sorts, it's trying to do it on the clock while
people are yelling at you to hurry the hell up already.

Especially if it's a crowd of half a dozen or more all chanting in
unison.

Now perhaps you have some understanding of why I quickly began to feel
put upon, and called you lot on making me feel that way??
I can only imagine the can of worms I've opened with that one, but oh
well.

You just gave a weak reiteration of the usual insults; nothing new
there. It was weak enough I didn't even feel the need to snip it and
replace it with something in square brackets. Maybe you're losing your
touch? :p
Haha, wow, way to be over-dramatic. A victory condition? It's a
discussion group, not a battle royale. *rolls eyes*

Correction: it was the former, until *you* turned it into the latter.

If you actually think I am still setting the terms or the rules of the
game, forget it -- you turned it into a war and made it plain that you
consider an unchallenged insult of me to be your victory condition. I
will now deny you that, with one of the reasons being quite simply
because to do otherwise would be to reward your execrable behavior over
the last week or so. And that is something that I will not do, not only
for my sake but for the sake of the next poor unsuspecting n00b to
wander into this shitty little corner of the 'net and get pounced on.
Perhaps he won't be if you realize that you won't get what you want out
of pouncing on that n00b, or nitpicking everything he says or does to
death like some nagging aunt, or whatever the hell.
If this were an isolated incident, Twisted, I could see. But any other
discussion thread I've read from you in other groups has had a common
theme; someone disagreed with you and you got completely hostile.

Leaving aside the dubious morality of net.stalking *and* the
irrelevancy of any other thread anywhere to this one, there's the
simply fact that if someone openly and bluntly disagrees with me in a
public space then they have put my accuracy, competency, intelligence,
honor, and what-have-you into public question, and that requires a
rebuttal. On the other hand a rebuttal does not constitute "going
hostile". I get more hostile, mainly out of sheer frustration, when for
some moronic reason the idiot that rudely contradicted me doesn't
simply agree to disagree, or say "I'm sorry, in your particular
circumstances your method is perfectly acceptable", or do nothing, but
instead stubbornly persists in some sort of stupid quest to prove me
wrong, presumably to boost their own ego. (Egos again! And again not
mine!) I also dislike the fact that someone can make me run their
stupid little treadmill like that or else face ridicule. It isn't
right; it means that anyone can at any time pop up and cause me to
either lose time or lose face with *no* way to avoid having at least
one of those things happen. And anyone actually doing so is therefore
as much a jerk as if they walked up to me and shot me without
provocation, or stole my wallet, or something. It's a fucking crime, as
far as I'm concerned. Nobody should do that, and put me on the
defensive; if someone thinks I'm an idiot they should think it real
quiet like, especially if there's an audience around. If someone
disbelieves something I said, they can diplomatically say "I disagree"
or "This works too" or "This is an alternative"; nobody but their own
inflated ego compels them to argue against the man and use "you"
language and say things like "You're wrong".

But I don't think you'll read any of that paragraph, will you, and if
you do you'll just rationalize some reason why it doesn't matter and
why you have a God given right to insult whoever you damn please and
why they should just take it and shut up and not explain to you (and
your audience) why what you said isn't true. You don't intend to ever
stop attacking me, do you, and nothing will convince you that I'm right
or even that it's a stalemate. And so we'll go on like this, posting a
few new posts in this stupid little war of yours, even though you can
never land a blow while I won't fight back, for the next week, the next
month, or even the next year or more.

Unless, of course, I decide that I have had enough and I *will* fight
back. But that will not lead to anything any of us desire, will it?
 
T

Twisted

The response was crossposted to 'alt.usenet.kooks' because the poster
clearly belives that you are a 'kook'.

I got that part, and I called him on the implied insult ages ago. Have
you got any genuine news to impart, or are you just looking to sneak
that same insult in again by the back door?

[Elaborate and convoluted paragraph that could have been more
succinctly said with the straightforward insult "Twisted is
irrational", an insult that of course is false.]
A simple crosspot (especially one done by somebody else) is not going
to flag you for a block.

Then why did it?
Nobody outside google knows the exact rule that you are tripping but it
is clear to everyone else that this is what is happening.

What is clear is:
1. The limit should *not* be being tripped, because I am not a spammer.
2. Nonetheless, it is, which means someone is making me look like a
spammer somehow.
3. The obvious way for that to happen is by tricking GG into thinking I
meant to post something multiple times that I actually didn't; the
posts then count multiple times, and the fact of duplicate posts or
crossposts adds whatever else it adds on top of that.
4. Presto! GG accuses me falsely of being a spammer, attempts to cause
me massive data loss, and forces me to nymshift, for which I can then
of course be criticized...and was; see below.
5. We now have a *documented case* of someone tricking GG into thinking
that I wanted to crosspost something even though I never explicitly
edited the newsgroup list.

What more evidence do I need? Oh, of course, none, because you are dead
set on believing and convincing everyone else that I'm wrong and will
therefore simply ignore any inconvenient evidence to the contrary. Your
stupid, sad little vendetta is far, far more important than anything as
trivial as "the truth", after all, and you are far more important than
me, besides.

Idiot.

[Insulting crap targeted at discrediting my IQ deleted.]
I strongly recommend that you consider seeking help for your paranoia.

And here we go. It was bound to happen eventually. In any usenet
thread, the probability of some totally unqualified, MD-deficient lay
person accusing someone else of having a serious mental illness
approaches 1.

How predictable (and sad).

You may go crawl back under your rock now.

But I'm sure you'll just keep on posting your crap instead. Even if
they cheap shots cleverly disguised* by overly-elaborate phrasing and
convoluted sentence and narrative structure.

* Well, you *do* get an A for effort; let's just leave it at that shall
we?
 
T

Twisted

My mistake, then. Your description sounded a lot like a thread
that began with your posting a question and continued -- well,
much as you described.

This *thread* began with me posting a question. The *hostility* didn't
begin with me doing anything. I did not throw the first punch.
On a quick search of Google's archives, the
one that matches my recollection has a subject line of "interesting
thing to try to do", but it has only 396 posts, not 500+, so perhaps
you meant a different thread. Can you easily provide information
that would help me locate the thread you *did* mean?

I don't see how any thread other than this one is at all germane here.
Frankly, what I do elsewhere on the 'net is none of your fucking
business.
Very true. So why did you mention comp.text.tex? I'm simply
responding to your comments, in a previous post, about that
newsgroup.

I was simply using it as an example for a newsgroup where attitudes
towards n00bs (and blatant attempts to sell them stuff) were worse than
here. Outside of that narrow scope, it is not material to this
discussion. Which, by the way, is over.
 
T

Twisted

That is a tough one. My solution is to use an app on my smartphone that
contains all my passwords, which in turn are protected by a strong
master password. This approach isn't for everyone, of course, but it
does work for me.

I still won't register much of anywhere; sorry. I don't care for
unnecessary hoop jumping, for gratuitous prying and invasions of
privacy, for spurious attempts to stick hands in my pocket (especially
for things whose marginal cost is zero), or for following any kind of
link only to have some login page appear instead of what I was
expecting. It's rude, for one thing; the site doing so is basically
saying it's better than everyone else and it deserves special treatment
and whatever. Why isn't a normal, widely-accessible,
no-special-registration Usenet newsgroup good enough for them? (Similar
questions can be asked pointedly of any other site engaging in similar
behavior.) Why do you feel you need to know my email address, mother's
maiden name, favorite sexual position, income, or whatever in order to
provide whatever service? Etc.

Besides the aggravation and hoop-jumping, there's the simple fact that
going ahead and registering anyway does nothing to discourage such
behavior and may even reward it if they get info they can then sell or
use somehow. If sites with registerwalls or other gratuitous access
barriers were plagued with low traffic, poor ad revenue, little
participation, etc. then they might wonder why and decide to change
that. If they get adequate traffic and suchlike they have no reason not
to maintain the status quo.

Lastly, it's insulting. There are only two reasons for a registerwall.
One is to gather marketable information like e-mail address or to get
actual money; the other is to try to keep out spammers and police
(read: censor) the user base effectively by being able to easily deny
access among other things. So a registerwall says "Either we want your
money, or we want to spam you, or we think *you* might be a spammer".
Insulting to the intelligence however you slice it, and suggestive in
the final case of outright criminality. Absurd! I won't implicity
justify this treatment with a response! Anyways, there are easier ways
to keep out spammers. You can use a captcha. You can make a
normally-propagated newsgroup that happens to be moderated. You can do
all kinds of things that don't involve prying into the pseudonymity of
your users, the use of Gestapo tactics, or the harvesting of
gratuitously-demanded personal data that just happens to be a
marketable commodity (as evidenced by companies like Choicepoint, whose
entire business revolves around nothing else, and which appear to be
profitable).

[Gratuitous insult deleted.]

Now you're just being childish.
 
T

Twisted

Joe said:
Reading posts in a public, unmoderated newsgroup is hardly stalking.
Nor is it rude.

No; it is googling someone's history and then posting irrelevant things
referencing their activities elsewhere that is rude.

You could have googled this stuff quietly and gone about your business.

But oh, no, instead you google me and then post links to and remarks
about my online behavior elsewhere into this thread, where such can not
be at all relevant to "giving an application a window icon", and where
in fact they can't be anything but inflammatory.

(How else do you explain the observation that nobody ever does this
except during a flamewar? Hmm?)

The sole purpose of looking up someone's past posting history and then
posting all about it is to attack them. It can *never* be about
resolving a debate over the original subject matter; as part of an
argument, it can only ever be useful in an argument *against the man*
(or woman) you googled, rather than an argument regarding the original
subject matter. "Argument against the man" is otherwise known as
ad-hominem attacks, or more colloquially as mudslinging, flaming, or
just plain rudeness.

Now please apologize and promise never to do it again.
It is very relevant, actually. It shows that you [snip]

No, it is not relevant. Anything that shows that I anything is
irrelevant here. So is anything that shows that you something, or that
she whatevers, or anything else of the sort. We are arguing about
window icons, not about who's evil and who should be shot and who
deserves to be peed on and whatever. This is not a court of law; it is
comp.lang.java.programmer. The subject here is Java, not who did what
and whether what they did was fucking wrong!
I dunno, this is pretty entertaining.

That is not a justification, fucktard.
 
T

Twisted

Joe said:
Again, it's NOT stalking. It's reading messages that are publicly
available.

It's the dragging of irrelevant, inflammatory stuff into the present
discussion that I object to, not the googling in and of itself.
Right, because there are no legitimate reasons to google yourself:

Well, to find out if someone has posted and SEO'd an attack site
against you might be a valid reason, so that you can use a spurious
DMCA notice or whatever to get rid of it. Or to find something you
wrote that you've forgotten the location of.
* When he/she gets into an argument with another person, googles that
other person so that they can drag guaranteeably-irrelevant issues from
some other place and time into the present argument, presumably for use
as ammunition against their target.
It's not irrelevant [insult deleted]

You've just proven my point, moron! The *only* thing you used this
stuff for was to try to publicly insult me some more, rather than for
any reason I could imagine being justified.

Admit it. You did it not out of curiosity (or why not keep whatever you
found, or think you found, to yourself?) but purely to use, with some
spindoctoring, to attack me. You did it purely for malicious reasons!
You are a malicious ... prick! Admit it! Admit that you are a jerk and
your motives are wholly evil, and go say 10,000,000 Hail Marys or
whatever it is your particular belief system prescribes for penance!
(That number of 'em ought to keep you out of my hair for a few thousand
years...) In any event, go away and leave me alone! I didn't come here
to be the subject of personal criticism; I came here to have questions
regarding Java answered. You have way overstepped the fucking bounds,
asshole, and you have crossed the goddam line. And I'm calling you on
it!

[presumes to speak for everybody]

Another common desperation tactic.

Go **** yourself, Joe Attacki.
 
T

Twisted

Tom said:
Sorry, who are you? I replied to Twisted and now nebulous99 has
answered. That means I can only assume you have morhped to get away from
[insults deleted]

WRONG, fucktard. I was FORCED to by foobarbazqux (also known as, I
suspect, PofH) because they kept locking me out of my usual GG account.
THAT is why I created a backup, moron! Now if you and your palz will
just leave me the Christ alone so I can get on with my life in peace, I
think we'll all be a lot fucking HAPPIER.
 
T

Twisted

Tor said:
But you have time to argue with people who made the MISTAKE of trying
to help you?

Have you not read *anything* else in the thread? Sheesh. Well, let me
educate you then.

I have no choice but to argue because people put my intelligence and
other personal qualities at issue and disparaged them. In order to not
have the negative effects this has remain, obviously I must reply and
explain in excruciating detail exactly why whatever they accused me of
is not true.

Of course, this leaves me even LESS time to spend clicking on links or
whatever else it is that you want me to do.

Also, trying to help me wasn't a mistake. Thinking that calling me
names was somehow "helping" me certainly was, if anyone thought that.
Calling my names was a mistake anyway, whatever the motivation.
 
W

wesley.hall

I got that part, and I called him on the implied insult ages ago. Have
you got any genuine news to impart, or are you just looking to sneak
that same insult in again by the back door?

Believe me, I do not have any reason to sneak any insult via the back
door. I have already been very clear on my opinion of your attitude on
this group.
1. The limit should *not* be being tripped, because I am not a spammer.
2. Nonetheless, it is, which means someone is making me look like a
spammer somehow.

This is another example of your type of fallacy, you do not even
entertain the possibility that the rule is not flawless and you have
tripped it because you post bursts of 6-10 very long posts. I agree
with you 100%, the rule has triggered when it should not, but as you
have no idea on what the rule is, you have no reason to accuse anyone
of abusing the service.

Ignoring the obvious solution (see: occam's razor) is an indication of
either A) a limited intellect, or B) a paranoid state of mind. Take
your pick.

3. The obvious way for that to happen is by tricking GG into thinking I
meant to post something multiple times that I actually didn't; the
posts then count multiple times, and the fact of duplicate posts or
crossposts adds whatever else it adds on top of that.
4. Presto! GG accuses me falsely of being a spammer, attempts to cause
me massive data loss, and forces me to nymshift, for which I can then
of course be criticized...and was; see below.
5. We now have a *documented case* of someone tricking GG into thinking
that I wanted to crosspost something even though I never explicitly
edited the newsgroup list.

What more evidence do I need?

Oh I dont know... how about...SOME, of any kind.

3 and 4 are opinions, not evidence. 5 is you completely misinterpreting
how usenet works, which is only evidence of your ability to run your
mouth off on things you do not understand.
Idiot.

[Insulting crap targeted at discrediting my IQ deleted.]

Deleted because it was accurate and a clear example of the kind of
fallacy that you continue to post. It is the mark of a troll (or a weak
mind) to snip information that cannot be denied.
And here we go. It was bound to happen eventually. In any usenet
thread, the probability of some totally unqualified, MD-deficient lay
person accusing someone else of having a serious mental illness
approaches 1.


I am actually very serious (although, as you rightly say, not
qualified, which is why I suggest professional consultation) when I
question your mental state. You ignore the obvious, in favour of
paranoia. This is not the behaviour of a healthy mental state. I cannot
say whether this is a one off or a daily occurence for you. If it is a
one off, then I apologise. If it happens more often, it could be a
symptom of bigger problems.
 
T

Twisted

Oliver said:
[Sorry if the thread follow-up path is a bit broken, but my newsserver seems
to be having difficulties with this thread]

I don't doubt it. :(
Twisted:

I see this is a direct question stated at me, but there isn't enough context
for me to recall what I had originally suggested you did, so I don't know.

The things you said you wouldn't call "dishonesty". Which apparently
include:
* Acquiescing to a hostile argument you don't actually believe is
correct.
* Leaving out information you know to be relevant.
Me:
[Fictional story about Einstein]

Twisted:
That is quite different from what you were originally suggesting --
for one thing it makes it quite clear that Einstein doesn't agree with
the claim that it's "all nonsense".

Yes, exactly. Saying "Ok, fine." does not nescessarily mean agreement.

It implies it, without something added. Your fictional example did have
something added though.
Eistein is giving a lecture. Some guy says "Einstein, you're an idiot".
Einstein says "Ok, I respect your freedom to consider me an idiot. If you do
not wish to hear my theories, feel free to leave the lecture hall, but there
are 200 other scientists here who seem to be interested in hearing about it,
so for their benefit, I'd like to continue my explanation uninterrupted."
And then he goes on, doing what he was doing before the interruption, as if
nothing had happened.

Unfortunately, what actually happened more closely resembles the same
guy remaining and interjecting the "idiot" comment at frequent
intervals, every time necessitating a similar response.
Depends on whether everyone's playing the same game, I guess.

In *every* game, walking away constitutes a forfeit.
Yeah, but if that soldier happens to be Superman (or otherwise
invulnerable to bullets), what does he care if he gets shot in the back?

I'm not Superman.
I guess in the game you're playing, if someone insults you on USENET,
you lose points, and if you reply, defending yourself, you gain points.
Something like that, right?
Obviously.

In the game I'm playing, if I'm happy, then I win points. If I'm sad,
angry, or otherwise unhappy, I lose points.

Now consider these scenarios:

1:
Someone insults you.
You let it stand unchallenged.
Everyone else believes it.
Now everyone calls you names or, at best, ignores you, and this kind of
cramps your lifestyle.
Now you're unhappy.

2:
Someone insults you.
You explain why the content of the insult is incorrect.
Everyone else's beliefs fluctuate for a bit, but settle roughly where
they originally where, seeing as they've now heard arguments in both
directions whose effects cancel out.
Now everyone continues to behave in the manner to which you are
accustomed.
Now you're no more unhappy than before.

According to your own scoring, 2 is better. (And 2 repeated is better
than 2 a few times and then 1, with the attendant negative
consequences.)
In my game, the winning strategy is not to get sad, angry, or otherwise
unhappy when someone insults me. And so far, I'm winning. =)

You seem to be implying that you can control what you feel, rather than
it being the result of your circumstances and only controllable to the
extent that you can control your circumstances. So for instance
everyone could start hating (or just avoiding) you and you could by
force of will continue to be happy anyway.

Tell me, sir, what drugs are you on? Perhaps I should try them. :p

Then again, I'm not sure I like the idea of how I feel being completely
unrelated to my circumstances. Taking happy pills for life so the
shoddy miserable slummy conditions of your environment seem to be
paradise is a cop-out at best, and I would find it a *boring* life
regardless. (I'm assuming here that the drug is expensive or illegal
enough to result in shitty real-world conditions, such as a slum or a
cell of either the barred or padded variety, or else the shitty
conditions result from taking no actions to better your circumstances,
which you by hypothesis no longer care about because of the drugs.)

Note that the above argument remains unchanged if we replace "drugs"
with "biofeedback", "sheer bloody-mindedness", "meditation", "prayer",
"really frequent masturbation", or any other phony source of feel-good.
(*) They actually believe it. In which case the person is too easily
swayed, believing anything they read on the Internet. I don't really care
what people of this type think of me. They are free to consider me to be an
idiot, if they want.

I used to think this way. Then I discovered that everybody falls into
the category described.

I had a fairly close friend that grew distant, and then hostile,
because of unfounded rumors circulating on the Internet. This was a
decade and a half ago or so. (Yes, I had net access back then.) That
taught me my lesson -- whatever the theory about how nobody who's that
easily swayed is worth your time, the practise is that either they are,
or nobody in the world is worth your time (and by extension you're an
arrogant SOB, not to mention a lonely one).

This was a friend I did not consider to be especially gullible. The
effect this had was to make it take longer before their behavior
changed because of what some person on the net was saying about me,
rather than to prevent their behavior changing.
(*) They don't believe it. Perhaps these people have known me
personally, or seen my previous actions, and judge that I am probably not an
idiot. I don't have to defend myself to restore my image in these peoples
minds.

Well, if those people constitute everyone you think you will ever wish
to get on with, then fine. But I should warn you that persistent enough
rumors or other nonsense will get to them too eventually. The friend I
mentioned above should have belonged to this category, and under your
hypothesis have been immune. They weren't.

[snip rest]

Sorry; your theories collide with my real-world experience and
observations, and empirical evidence trumps a nice theory every time.
So you didn't agree to anything else? I.e. you didn't agree that the
monster actually exists?

Point is, if you say "I think you're an idiot", and I say "Ok", I'm
agreeing that you think I'm an idiot. I'm not nescessarily agreeing that I
am an idiot.

It's not as clear cut as that and you know it.
I think there are multiple ambiguous parsetrees for this question, so
I'm not sure what you're asking.

I was afraid of that. :p

How do I convince people not to fantasize all kinds of weird crap and
then treat it as factual? For example, if I say "not now", not to
fantasize that I really meant "not ever" and then behave as if I
actually said "not ever" (which seems to have actually occurred here
recently).
Misunderstandings happen.

But it's happening an awful lot, even where I'm not in the least
unclear in my language. And it's causing nasty side effects.

"Misunderstandings happen" is a cop-out, not a constructive suggestion
or even a genuine explanation. :p
If they provide valuable or useful advice, what's wrong with the
advice-providers being pygmies? Or if they want to learn some game-playing
tips, what's wrong with the persons asking for advice being pygmies?

If they start biting the other participants' knees it becomes a
problem. Here the logic-deficient people are reading nonsense into
everything, then insulting people (me anyway; I'm not following any
threads besides the few I've posted to as the group's so high volume),
and then failing to even parse the arguments as to a) why the insults
are inaccurate and b) why they should stop, resulting in them
continuing.
Maybe you and I disagree about the number of people who believe that
silence implies assent.

The percentage is certainly substantially in excess of zero, though.
 
T

Twisted

Oliver said:
Not all of us make guesses whenever we don't know something. Some of us
try to learn more about a given topic before forming an opinion on it.

Not *everything* though.

If ten thousand links, unfamiliar tools or file types, or whatever get
mentioned in a day, I clearly don't have time to research more than a
fraction of them. The rest I must judge by their covers, so to speak,
in deciding what to do with them (if anything; usually this means doing
nothing with them).

More generally, if any of us looked in depth into everything that got
mentioned in our earshot, we'd spend precious little time doing
anything else.

ALL people use heuristics to judge what's immediately promising or
threatening and what looks like it can safely be ignored for now, just
in order to filter all the stuff that goes on around them down to
something manageable.

If people then get on my case for not having instantly and magically
perceived the otherwise-totally-unobvious relevance of foo, then they
have no case, so to speak.
 
T

Twisted

Oliver said:
First of all, when you say an "unfamiliar file extension", do you mean
unfamiliar to you, or unfamiliar to the OS on your computer?

Unfamiliar to me; winamp for example has registered all kinds of
obscure file extensions I've otherwise never heard of. If I see one of
those later, I can only go by what I know to decide whether to not
bother trying to click on it; to go by what winamp knows would require
clicking on it, and doing so to decide whether to click on it is
obviously moronic.
 
T

Twisted

Oliver said:
Didn't I make that "supposition" before the above posts were made?

No matter when you made it, it was still proven false.
Also, I'm not a psychologist, but could it be that perhaps you started
fishing for insults, because it's less painful for you to receive those
insults than to acknowledge that you might have been wrong about other
people's intentions?

That's absurd. Even if you accepted the cockamamie psychology that this
would imply, there's the simple and evident fact that the only thing I
ever went "fishing for" in this group was a few answers to a few
Java-related questions!
 
T

Twisted

Oliver said:
Sometimes I'll read a blog, and I want to post a long reply-comment.
However, you can't e-mail your replies, you have to use a webform.

So what I do is type the reply in some other text editor (e.g. notepad),
and then copy and paste it into the form and submit it. That way, if
anything goes wrong, I still have my original text.

The technical term for that is "hoop jumping". In this instance to get
past both deficiencies in the user interface of your (actually, so far
as I'm aware, EVERY) web browser and deficiencies on the server side
(there's nothing in the protocols or server behavior standards yet to
require maximum effort to preserve and retry the content of form
submissions).

I don't like having to jump through hoops. I like attempts to justify
making someone do so even less.

Google's behavior here is completely unjustifiable.
1. It won't stop spam. Spammers will just use multiple accounts.
2. Their dumbass limit is (as is by now evident!) easily gamed by
people wishing to stifle an opponent in a debate.
3. On top of it all, there is simply no rational justification for
designing it so that you click reply, type in a lengthy post, and THEN
get told you've violated some mysterious limit, in a message whos
"appeal this automated and therefore probably bad ruling" link leads to
a big fat 404! Why not, say, have clicking "reply" produce an error
page right away, preferably saying in how many minutes you can post
again, so you can wait and then hit "refresh" (and if you misjudge it
and refresh early, you get an updated number-of-remaining-minutes). The
only logical reason for the design choice they made instead of
something more like the latter is to punish whoever violated their
limit, which they don't do the courtesy of explaining exactly how to
never hit in the first place.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
474,262
Messages
2,571,056
Members
48,769
Latest member
Clifft

Latest Threads

Top