Go Back   CodingForums.com > Search Forums

Before you post, read our: Rules & Posting Guidelines

Showing results 1 to 25 of 199
Search took 0.51 seconds.
Search: Posts Made By: cs_student
Forum: Career, job, and business ideas or advice 04-27-2011, 06:32 AM
Replies: 3
Views: 2,157
Posted By cs_student
Looks and Style

So I'm a broke college student studying computer science. I picked up html/css/php/python on my own time, as my past time seems to be learning. I also know c++, C, haskell, lisp, ruby, Go, and some...
Forum: Java and JSP 12-06-2010, 06:34 AM
Replies: 4
Views: 2,827
Posted By cs_student
The main method which java invokes is static. ...

The main method which java invokes is static.
It's signature goes as

public static void main(String[] args);


In your code you have neglected to make it static, which is what I assum bluej is...
Forum: Java and JSP 12-06-2010, 06:31 AM
Replies: 1
Views: 1,279
Posted By cs_student
no. If you want to rip of of someone elses work,...

no. If you want to rip of of someone elses work, google it.

We only help you with your problems here, we don't do them for you.
Forum: Java and JSP 12-03-2010, 06:56 AM
Replies: 1
Views: 1,989
Posted By cs_student
I don't see anything wrong with it off the top of...

I don't see anything wrong with it off the top of my head.

What outputs as 0?

There is the possiblity that you are getting a NumberFormatException and numUnits is already assigned to 0, and...
Forum: Java and JSP 12-03-2010, 02:33 AM
Replies: 4
Views: 2,827
Posted By cs_student
That's not quite. Obviously you have some...

That's not quite. Obviously you have some fundemental misunderstandings aboutthe language that you might want to clear up. You may want to look here...
Forum: Java and JSP 12-02-2010, 07:38 PM
Replies: 1
Views: 1,043
Posted By cs_student
The modulus thing can be used in many different...

The modulus thing can be used in many different ways. You can generally do it other ways (though it may not be as intuitive or easy). ie, if you want to see if something is even or odd.

Using...
Forum: Java and JSP 12-02-2010, 05:12 AM
Replies: 4
Views: 5,113
Posted By cs_student
I was thinking of something more along the lines...

I was thinking of something more along the lines of

String str = "abc123";
int value = 0;
for(int i = 0; i < str.length(); i++) {
int current = ( (int)...
Forum: Java and JSP 12-02-2010, 03:53 AM
Replies: 4
Views: 5,113
Posted By cs_student
First you should learn to format your code so...

First you should learn to format your code so that it is readable. If you don't already have a personal preference you should try to stick to the standards given in the pdf about Java Coding...
Forum: Java and JSP 12-01-2010, 05:20 AM
Replies: 5
Views: 1,720
Posted By cs_student
We do that to account for the account for the...

We do that to account for the account for the offset of the character in the ascii (or unicode) encoding scheme. To the computer the number 48 and the character 0 are the same. They both contain...
Forum: Java and JSP 12-01-2010, 02:13 AM
Replies: 5
Views: 1,720
Posted By cs_student
There are actually a couple of ways you could go...

There are actually a couple of ways you could go about doing this. One way would be to use the Integer.getInteger(String nm)...
Forum: Java and JSP 11-30-2010, 07:27 PM
Replies: 4
Views: 2,367
Posted By cs_student
What you want to do is have two variables which...

What you want to do is have two variables which store the two largest of all iterations. In each iteration you want to go through and see if the number in the current iteration is larger than one of...
Forum: Career, job, and business ideas or advice 09-10-2010, 11:24 PM
Replies: 4
Views: 2,460
Posted By cs_student
First Job Interview

Well first off let me say that this is not my "first job interview" per say. I consider it my first real job interview as it is not for being a cashier at a retail store during high school.

I got...
Forum: Computer/PC discussions 07-03-2010, 07:20 PM
Replies: 8
Views: 1,445
Posted By cs_student
Wikipedia is an amazing resource. Check out...

Wikipedia is an amazing resource. Check out their article on Open Source Culture (http://en.wikipedia.org/wiki/Open_source#Society_and_culture).

Some people do it simply because they find it fun....
Forum: Computer/PC discussions 07-01-2010, 04:41 AM
Replies: 16
Views: 2,426
Posted By cs_student
If you are going to be playing games I suggest...

If you are going to be playing games I suggest you dualboot. It's really simple to do and will save you a lot of headache if a game doesn't work with Wine or in your VM. (I don't know if VM's have...
Forum: Java and JSP 06-25-2010, 03:03 AM
Replies: 1
Views: 970
Posted By cs_student
What are you having problems with. You could...

What are you having problems with. You could just have a circular linked list which you go to today and iterate the amount of days you want to have below.

There are many implementations you could...
Forum: Geek News and Humour 06-11-2010, 01:11 AM
Replies: 4
Views: 1,309
Posted By cs_student
A better way to put it would be "lack of bloat." ...

A better way to put it would be "lack of bloat." However, you are right. A lack of features is not a feature in itself. However, a minimalist approach could be considered a feature which caters to...
Forum: Java and JSP 06-10-2010, 04:30 AM
Replies: 2
Views: 1,096
Posted By cs_student
You could use the java.math.BigInteger class...

You could use the java.math.BigInteger class (http://java.sun.com/j2se/1.4.2/docs/api/java/math/BigInteger.html).
Forum: Computer/PC discussions 06-09-2010, 09:53 PM
Replies: 4
Views: 869
Posted By cs_student
Maybe it won't take of as quick in nations...

Maybe it won't take of as quick in nations without such good bandwidth alotments to the common house, but in Europe and North America, I don't think this will be a large problem. (also, this is were...
Forum: Computer/PC discussions 06-07-2010, 03:19 AM
Replies: 4
Views: 869
Posted By cs_student
What do you think about the upcoming ChromeOS

At first I had no particular interest in ChromeOS. It simply is not like anything I want to use. I like a minilimist cli environment where I can do as much as possible as productive and effecient...
Forum: Java and JSP 06-06-2010, 01:02 AM
Replies: 1
Views: 789
Posted By cs_student
It looks like it is unable to find the file you...

It looks like it is unable to find the file you are pointing it to. Remember that the path is relative (unless you use an absolute path). Make sure the file you are reading is in the same directory...
Forum: Java and JSP 05-31-2010, 03:46 AM
Replies: 1
Views: 663
Posted By cs_student
First of, you should do the logic of your game in...

First of, you should do the logic of your game in the update method, not the paint method. You should only do the rendering in the paint method. It's always best practice to seperate your logic...
Forum: Computer/PC discussions 05-25-2010, 10:43 PM
Replies: 8
Views: 1,551
Posted By cs_student
You should take a look at a more comprehensive...

You should take a look at a more comprehensive list of firefox hotkeys (http://www.mozilla.org/docs/end-user/moz_shortcuts.html).

I am a fanatic when it comes to effeciency. I use hotkeys all the...
Forum: Computer/PC discussions 05-21-2010, 03:47 AM
Replies: 6
Views: 832
Posted By cs_student
I remember having to help someone via logMeIn, I...

I remember having to help someone via logMeIn, I believe it worked quite well.


You can do this with cygwin. However, I'm sure that would be over her head.
Forum: PHP 05-21-2010, 03:40 AM
Replies: 3
Views: 609
Posted By cs_student
I believe you posted on the wrong forum. Maybe...

I believe you posted on the wrong forum. Maybe you meant to post on the php forum? I don't see how any of that relates to java or jsp.

You may want to ask a mod to move the post for you, as you...
Forum: Computer Programming 05-18-2010, 01:16 AM
Replies: 21
Views: 26,259
Posted By cs_student
Well ... what if they didn't have power? While...

Well ... what if they didn't have power?
While your point is valid, your example is just not very well suited ;)

Both operatings are decent. Anyone who says that one or the other is "horrible"...
Showing results 1 to 25 of 199

 
Forum Jump

All times are GMT +1. The time now is 11:07 AM.