server_crash 64 Postaholic

I'm half tempted to just provided a bubble sort and let him submit that to his teacher not knowing any better..

Muuuwhahhahhahahah. That would have been hilarious.

server_crash 64 Postaholic

What is a terrorist country, and how do you kill it?

Most middle eastern countries. You kill them the same way they are killing other people. :rolleyes: I would use nukes, but I'm not the president...But really they should start bombing the religious mosques and stuff.

server_crash 64 Postaholic

I'm sorry if it upsets some people, but the Lounge section is NOT some exclusive 'club' where only people holding particular views may participate.

How contridicting. You just were talking about freedom of expression and how he had the right to post what he did, but now you've implicitly said he should not have done it(that was obvious from the start but you couldn't see that)

The example you've cited above ( a comment made by myself for the benefit of others reading this) was a question posed to someone who posted a very patronising comment which was denigrating to women, obviously

Hmm, as this topic is not denigrating to the US and it's government. I guess that makes the people who name called in the right, or a better way of putting it is the comment you made you find fit because YOU made it. I thought that was one of the rudest comments I've seen in here myself. Actually, his comment was very factual and is easily proven correct in this society. I didn't see any denigration in it myself, but again, the only thing that matters is what you think, no one else.

Surely if it is understood that a comment is offensive then the comment should not be made!

Don't tell other people this unless you are willing to do the same. Remember that just because you're a moderator and you say something doesn't mean it's not an offensive comment.

Excessive and/or gratuitous use …

server_crash 64 Postaholic

This just shows your lack of knowledge about each and every religion other than your own.

I don't give a crap about other religions other than my own. Especially the muslim religion. What kind of religion teachers their followers to drive airplanes into buildings and kill thousands? Ohh wait, it was because they were promised something by their God, right? ppffffff what a bunch of crap. The only thing they got was to burn in hell.

meksikatsi commented: pure ignorance +0
Catalana commented: THIS is crap! +0
server_crash 64 Postaholic

This is my last post on this forum

Until I post another.

WireNine commented: useless +0
server_crash 64 Postaholic

Surely using terms like the italicised words is unecessary, rude, and an action which would invite yet more? Some people will certainly issue negative rep not for what you say but for the way that you say it.

Well crap, if I'm going to negative reputation, from now on I'm going to make it worth it.

server_crash 64 Postaholic

So you want us to help you do something illegal. Geez, I just can't imagine why that thread was closed.

server_crash 64 Postaholic


server_crash,

There are many more reasons to learn something than to pretend it doesn't exist simply because you do not like it. I think you must be very young so I will not pay much attention to your views. I know 7 year olds who would have attempted to give me a much more comprehensive answer than you did.

You say I'm young just because you've looked at my profile.

Anyways, I never said I hated it. If you read some of the earlier posts you'll see that I do like it, and I think it's a great OS. I don't think it's better than Windows though. I forgive you though, I doubt you could have comprehended a response so obvious.

You just implied that I pretend it doesn't exist because I don't like it. I DO run linux on my computer, and actually I dual boot with linux. But I guess you didn't read that either, did you?

server_crash 64 Postaholic

I never said you did. Maybe your the one turning it into something it's not.

server_crash 64 Postaholic

Some code would be nice.

server_crash 64 Postaholic

Here would be reversing it, making the 6 come first:

class Pattern2
{
  public static void main(String[] args)
  {
	for (int i=6; i>=1; i--)
	{
		for (int j=6; j>=i; j--)
		{
			System.out.print(j);
		}
		System.out.println("");
	}
  }
}

If that's not what you wanted, give me some sample output.

server_crash 64 Postaholic

Just some simple nested loops are involved:

class Pattern
{
   public static void main(String[] args)
   {
	for (int i=1; i<=6; i++)
	{
		for (int j=1; j<=i; j++)
		{
			System.out.print(j);
		}
		System.out.println("");
	}
   }
}
server_crash 64 Postaholic

If you take it in succession like that, your score will of course go up, but that won't last for long. There will be a point when you score stops going up, even after taking it in succession like you have. So yes, the best thing is to study. If you feel like you are ready, grab a book on the java certification, and I think you'll be suprised at the knowledge that test requires(As I was).

Ghost commented: server crash was harsh and arrogant +0