<M/> 170 Why so serious? Featured Poster
<M/> 170 Why so serious? Featured Poster
<M/> 170 Why so serious? Featured Poster
<M/> 170 Why so serious? Featured Poster
Chow mein from panda express
there is shadow behind you.
because...
Why did i get Offensive MVP in football ;)
I ban you because you are you!
Granted, your spouse opened the suicide doors of the car and hit you with it.
I wish i was a cyborg.
I have heard of someone working on an Android App
what was the reason why he would want to kill you?
your pic is of a dude!
I ban you for banning me!
Losing my OS's source code (don't ask, please) and having to disassemble it from the binary I had on a floppy, decoding strings from the hex dump part, took its toll on me. Had to take a break from the computer after that one!
I am guessing that was very stressful.
Just kidding - mad respect to anyone who has any beliefs, or lack thereof; none of my business unless it gets in my way or if someone starts ramming their religion down my throat.
That is a problem with people. If something is in their face, they will smack it silly until it is evened out for them. What one believes should be kept to themselves and one should not get hostile over another person's belief. I mean aethiests tried to corrupt most religions when the space shuttle was first launched and we went straight through the sky and saw no heaven. That is an example of science and religion attacking each other in modern day.
I am a muslim and i say we went see heaven until the after life :)
Welcome and we are glad that you have returned!
Is this spam? If you realized (OP), no one is going to have a clue on what error message your looking at.
I guess he forgot a password or got stuck on a 404 page...
But What im trying to say is Science has Both Good AND Bad effect.
Of course... science only has a bad effect if religion gets involved (remember Galileo?) or when theories are conflicted/forgotten. But science is good because if it weren't for science, much of what exists today wouldn't be the same! YOU (all the users) probably wouldn't have made it past birth if it weren't for science proving that it is important to be sanitisized!
So overall, science is good but religion should be in its own category and we must respect our deities for the ability to study science.
I think that is a good round up of my beliefs.
If you are applying to a gaming company, you should show off those games but it is best to tell them that you are able to do whatever and then provide evidence of recent/current projects.
Welcome!
any Idea what it feels to be in DANIWEB
Well to be in Daniweb is like being on Facebook but with serious people that understand computers/programming and don't take pics of them puckering their lips together looking at mirrors in different angles... and Daniweb is purple and the staff/mod/admins actually interact with their users (notice Happygeek ;D).
As you can tell, Daniweb is probably the best forum out there (for its focus) and users are mostly happy (the others would be spammers, they aren't even happy with their lives :D). I guess that is too much information on how great the Purple Forum (Daniweb) is...
IIM n <M/> have already added java related information to fibonacci stuff... this post , isnt much about about java , but more about the numbers themselves .
I know, but i only provided info on the java part because this was posted IN the java forum but i guess you are right.
I found a couple of sources that you can read:
http://www.java-examples.com/fibonacci-series-java-example
1 solution is to open a new window with 1 pdf file.
Couldn't have said it better myself.
Welcome to the logical and purple world of DANIWEB!
Worst Experience... hmmmmm probably learning spanish... WORST CLASS EVER!
Dear god, i will never be the team that is in the bottom, i want to be on top of the hill :)
"You can have anything you want if you are willing to give up the belief that you can't have it." ~ Robert Anthony
"It takes courage to grow up and turn out to be who you really are." ~ E.E. Cummings
what is your name doing on your pic?
April Fool's day is everyday in many countries... I am sure of that. But I don't think the middle east respects april fool's day.
@razib8bd, what are you refering to?
So are you saying that there is no change when you zoom out/in?
oh, how did you solve. do you mind posting your code so others can learn from your mistakes. (i am 10 minutes away from doing my event (100 meter) :D).
Also mark the question solved if you are satisfied and congrats on, technically, self solving your question.
hmm, I had that issue with windows 8 (IE). I just reseted my computer and it was alright. You can also just zoom in once, it will re-adjust.
okay, when i get home (i am right now out of the city, will be back in a few hours) i will try my best to fix up your code for you (i am sorry if i forget).
In the mean time, someone else might be able to help you, so expect someone like James, Tins, ddanbe, etc. to help out.
This is just another user trying to get by... by using plagiarism....
The OP has probably never returned to Daniweb anyways...
Have you read this link that was nested inside that link you provided?
http://www.daniweb.com/software-development/java/threads/384072/putting-an-array-list-onto-a-jtable
@jithinjohny, we are glad that you have solved your question! Do you have any other questions that we have not covered yet about this topic?
@game06, i am pretty sure by now that the OP has given up or already achieved his goal by now. No need to reincarnate this thread...
@AleMonteiro, i am going to bookmark that link you provided, i like the "parallax" effect(s). :)
I like my code will documented, spaced properly, and make sense!.
So, what celebrity/athlete do you guys believe look like you/act like them?
People say i am built like Michael Ray Garvin/Dwight Howard and they say i act like Bill Gates (i don't know why i would be like him... they could be referring to my parents :D)
@big k105, I actually liked that commercial :D
I stuck post it notes under computer mice causing them to not work... I did it on teachers and one took about 5 minutes to realize there was a note under the mouse. :D
Aside from learning computers and trading (currency and stock) I am an athlete (freshman in 3 varsity sports (track/cross country, football, basketball).
sure thing, thanks for assisting me!
ddanbe, your solution with the x<=
works. Thanks!
OKAY! I figured it out, i had to put a +1 next to x in line 13.
THANKS GUYS!!
Okay so I fixed that up.
Here is what i have:
string input = string.Empty;
int number = 0;
Console.WriteLine("Type in an integer.");
input = Console.ReadLine();
number = int.Parse(input);
int.TryParse(input, out number);
Console.WriteLine("Thanks for the number {0}", number);
int x = 0;
for (x = 1; x < number; x++ )
{
Console.WriteLine(x);
}
How come the last number doesn't display?
If i input 9, it would output 8 (as an example).
Thank you so far!