- Upvotes Received
- 4
- Posts with Upvotes
- 4
- Upvoting Members
- 4
- Downvotes Received
- 0
- Posts with Downvotes
- 0
- Downvoting Members
- 0
aspiring engineer
- PC Specs
- Gigabyte UD5 moboquad i7 2.674166 ddr3 (6 gig)cheap graphics card - but when i return to gaming (ie.…
26 Posted Topics
Re: just a guess, but try switching the ram out. If their's something wrong with it it won't display but will power up. | |
Re: I had this problem before also. this is what I came across: [url]http://www.robocommunity.com/blog/entry/12176/Java-Quick-Tip---Problems--with-the-Scanner-Class/[/url] For my assignment a while back , I just used the .next() to read the next input. But my assignment only required a single word , not separated by spaces (so i could just use tokens). looks … | |
Re: This might not be the most lightweight solution, but i personally use XAMPPLite + eclipse on a flashdrive. It loads quickly and has pretty much everything I need for PHP development. Just point eclipse to a worksplace in the XAMPP htdocs directory and you can view changes as you write … | |
Re: I pulled some all-nighters but man 3 straight days is crazy. My max is a day and a half. I agree with getting good sleep though, without it I start making some really stupid errors. | |
Re: possible solution: [CODE] while(x.hasMoreTokens()){ System.out.println(x.nextToken()); } [/CODE] do you need to use a boolean variable? i don't see why you would | |
Re: isn't this a duplicate question that you posed before? here's the developer site for the linkedin api [url]http://developer.linkedin.com/index.jspa[/url] just read through it, i believe they use openauthentication here's a basic slide tutorial to get you going on the basics. [url]http://www.slideshare.net/episod/linkedin-oauth-zero-to-hero[/url] it will take some reading and playing around if you … | |
Re: is your sdk setup yet? i don't feel like typing out step by step, the instruction are here [url]http://developer.android.com/sdk/1.1_r1/installing.html[/url] I use the java EE IDE, where the instructions say "Available Software Tab" is actually "Install New Software" make sure you point your path to the SDK in the environment variables. | |
Re: if your good with solder, you could try replacing this google "Dell Latitude CP CPi CPx Hard Drive IDE Connector" | |
Re: I personally chose engineering specifically because I wanted to do a little of everything. Just my take - but it seemed like most of the CIS majors at my college knew a little bit about alot of stuff, but the software engineering majors knew a lot about alot of stuff. … | |
Re: Yes I'm with xan. If i read for leisure i like paper because my eyes are strained by 7 pm. The weird thing is that i keep my laptop next to me so i can look up and reference topics of interest in the paper book. I keep a checklist … | |
Re: I agree. I thought geek was a stronger term, but was used in the context that they know more about a select topic. Whereas nerd just meant somewhat geeky in many areas and no social skills. Geeks can have social skills, but they have a passion for a subject that … | |
Re: not sure about the webcam part, but take a look at the Robot class. It has methods to capture screen images, (createScreenCapture,, getPixelColor...) you can do alot with this | |
Re: It's because you're trying to access an array location that hasn't been established yet. example: if you enter the number 2 (fed into max by nextInt here) the array is set to a size of max*4 = 8. So following the while loop through, you'll see that at its last … | |
Re: I second data structures and algorithms by lafore. I found the book easy to follow | |
Re: Sorry If i'm overlooking something simple, but doesn't your method only take one parameter? (TN t) the call to the method in the else statements try to pass 2 parameters (t.left, t.next.value) | |
Re: It sounds like your going to have to use some sort of conditional statement. But this question is kind of impossible to answer because it sounds like the problem is between what the assignment says and the textbook. I think you need to ask the teacher first, then if you … | |
Re: Hey thanks alot, I went about doing something similar in a much longer way. this is much more efficient, I wasn't aware of the getScreenSize method. I'm gonna try and make something in Android with this | |
Re: I'm confused about the question. What do you mean you have an integer like this? Need more info | |
Re: The language was setup so that you can't have multiple inheritance. If you want multiple inheritance, you have to use interfaces. By using keyword "implements" in the class heading. extends - for classes implements - for interfaces | |
Re: Need more info... The driver's are hardware and Operating System specific. What kind of graphics card do you have? (the name and model) What operating system do you have? here's the link for ATI graphics drivers [url]http://support.amd.com/us/gpudownload/Pages/index.aspx[/url] | |
Re: I don't think they have anything in java's supplied api's. Because Java's platform independent, I don't think they can have a function like gotoxy() in c at the bottom of this is some good references. [url]http://forums.sun.com/thread.jspa?threadID=433261[/url] | |
Re: couldn't you use a vector if you wanted to constantly change the size? i'm kinda confused how you're doing the search though, he's right at least post the full search method. btw - System.gc() will run the garbage collector, but if you're just reusing the same array it wouldn't really … | |
Re: I've heard windows7 has had some problems with VGA. I don't know if thats the problem, but maybe you could try a dvi connection. if that doesn't work, I would recommend you search and make sure that you have all the drivers needed for the upgrade. It lets you at … | |
Re: did you import the math api? import java.math.BigInteger; "cannot find symbol" usually means that you didn't declare a variable or somethings not picking up in the method signature. What IDE are you using? the error message references 29, which I'm assuming is the line number of the code. Can you … | |
Hi Everyone, I actually stumbled across this site while trying to figure out a piece of my homework. The website seemed to have a better explanation than the teacher or the textbook, so now I'm hooked. I actually work in accounting, but became interested in programming about a yr ago. … |
The End.