- Strength to Increase Rep
- +6
- Strength to Decrease Rep
- -1
- Upvotes Received
- 26
- Posts with Upvotes
- 22
- Upvoting Members
- 22
- Downvotes Received
- 2
- Posts with Downvotes
- 2
- Downvoting Members
- 1
Re: When you want to succeed as bad as you want to breathe, then you'll be successful - Eric Thomas | |
| |
Re: I know this is going to sound basic, but add some breakpoints into areas where the operations are being performed. Then debug the code and add watches to the data variables. By watching each variable, you will be able to narrow down where the problem is, and then post a … | |
Re: Ok. You need to think about this logically. You must first read the users input. Then split the string of numbers into individul digits - which are then stored in some sort of collection. You then need to iterate through the collection and print out each element. We don't get … | |
Re: You might have a better idea if you look at the Java Primitive Data Types and what data they are able to hold. https://docs.oracle.com/javase/tutorial/java/nutsandbolts/datatypes.html | |
Re: I always program my web apps in Notepad++. It's simple and it means you have to type all the code out yourself so helps you learn much faster. As for the whole "View your website" options in different software suites, don't trust them. If you have a quick poke around … | |
Re: I don't get it....you've out foxed this fox....which makes you extremely bloody foxy! | |
Hey, Basically I want to be able to type something like 'editor &' and have an editor of my choice open. Similar to if you type 'emacs &' emacs opens. I was wondering where this information is kept and how to edit it for the desired results. Thank you | |
Re: The blueprints aren't instantiated because a blueprint is a design for a building not the building itself. Just in case this analogy has gone too far; Java attempts to mimic the real world using objects e.g. Cars A class is a description of a car. Is defines everything about it. … | |
Re: I'd say if you have a good knowledge of Java already it's probably best to just use that. Another option is obviously C++ which if you know Java and C, you will most likely pick up very easily. I don't know if there's a language out there thats better for … | |
Re: Just to add to the discussion, I believe it is possible to speed up your pc using a USB and ReadyBoost. I have very little knowledge about this however so it may not be possible. Have a go though, right click on your USB in 'My Computer' and select Properties. … | |
Re: I agree with JamesCherrill, the best way to further your knowledge is to think of a project. Then, go and create it. First try will be shit (pardon my french), but as you continue to develop applications, you pick up the different techniques required. One thing I would say is … | |
Re: AhmadHasanSahi, This information is widely available on the internet as these are very common sort operations. I suggest you take a litle bit of time to research rather than asking for others to write your code for you. This is a free help forum, not a development centre. There are … | |
I am currently creating a MySQL back-end database system and have come across a problem. Whilst building my ERD, I have noticed that one table requires 3 Foreign Keys. Is this acceptable database design? Thanks for all your help | |
Re: I think I know what you mean. I believe you are asking about the different elements that form an expression. I think for this I shall just list them for you. * This - Dimension Variable * That - Object * TheOther - Function * Something - Parameter It is … | |
Re: Read this an figured I should add something. DO NOT FOLLOW DEEPMODI's advice!!! Microsoft never take kindly to people downloading their software from anyone except themselves. People have tried and failed repeatedly. So as a reminder, Microsoft Website Only! The last thing you want is to be in a legal … | |
Re: Another useful resource is the Kolling and Barnes book which is used in many Java courses. It uses it's own development environment which is designed for teaching java to beginners and the book will take you to an average level of Java programming. If you are interested, the book is … | |
Re: Just to kind of echo what JamesCherrill has said, it is impossible to access a machine without an IP address. The entire point of an IP is address is to provide a reference to a machine across a network. It is literally impossible to find a machine without it's ip. … | |
Re: I believe that you are in my CS class at Hertfordshire judging by this post. Your answer is clearly laid out in the practical 9 pdf on the hompages site. Look under heading "UselessHTTPServer05". | |
Re: You said your new to Java. If thats the case then I would definately recommend not starting out with such an ambitious project. | |
Re: It depends on the nature of the website. However you can work out most of the requirements within 5 minutes. 1. How much space does your page take up on your computer? ::Thats the start of your storage requirements 2. How many people will be visiting the page? ::Increased traffic … | |
Re: Google displays results based on two main qualities. First is, it looks at what pages link to your page, it examines the importance of all these sites. It then looks at all the sites that link to those sites and examines the importance of those sites. Bigger, more influencial sites … | |
Re: That is truely amazing. Not that he can write code, because realistically, anyone can do that given the time and resources...but that someone was willing to give him a chance, that's inspirational. Thank you for sharing this | |
Re: It would be interesting to see more of a following for the Hardware/Software area of the forum. Obviously it would increase the knowledge base that would become available to the users of Daniweb. I think the reason there has been a demise, is the movement in education away from Hardware … | |
Re: What you've done is great, you have literally missed one tiny detail. The replace method in String returns a new String object. Currently you are calling the method but not putting the result anywhere. So when you return the variable 'string', you return what you gave it. Try using `string … | |
Re: I'm assuming that because you are using BlueJ, you are in your first semester of a Computer Science Course or related course. On this assumption I am going to recommend you talk to a tutor or to some class mates as the question seems to be related to a specific … | |
Ok so I'm writing a program that outputs text to a file. Currently, I am writing it to a .TXT file for ease and convenience. Ideally, I would like to output some of the information so that it is formatted with Italics. I'm thinking that using a RTF file would … | |
Re: There is no need for the If statement to be there. When you iterator through your Collection, you either find the desired item, or you don't. These are your only 2 outcomes. 1. Item Found - Return the Item object, method stop executing when a value is returned 2. Item … |