- Strength to Increase Rep
- +0
- Strength to Decrease Rep
- -0
- Upvotes Received
- 14
- Posts with Upvotes
- 10
- Upvoting Members
- 10
- Downvotes Received
- 9
- Posts with Downvotes
- 6
- Downvoting Members
- 7
53 Posted Topics
Re: "I don't practice what I preach because I'm not the kind of person I'm preaching to." - J. R. "Bob" Dobbs | |
![]() | Re: Dredd - http://www.imdb.com/title/tt1343727/ Buddy Boy - http://www.imdb.com/title/tt0146516/ Things to Do in Denver When You're Dead - http://www.imdb.com/title/tt0114660/ The Game - http://www.imdb.com/title/tt0119174/?ref_=sr_1 Iron Man 3 The Avengers Thor ... to many to list |
Re: I have been a big fan of [this](http://www.youtube.com/watch?v=TBWX97e1E9g&list=PLE7E8B7F4856C9B19) tutorial series, and continually use this series as a reference whenever I need to quickly lookup something. The author (Derek Banas) of this particular series does an excellent job in teaching from the basics to the more advanced topics. He essentially covers … | |
Re: Avast Free Edition, does the trick, or you could just reinstall windows every year to be sure. =D | |
Re: ...is there a question here? or is this a code snippet? if it is a code snippet, I propose uploading this to the appropriate section. That can be found [here](http://www.daniweb.com/software-development/c/code/_/118), however; I honestly feel that this code is WAY to extensive. You need to look into compacting it somehow. | |
Re: @OP Your student? If you have a masters+ degree in Computer Science or a related field, and are teaching a programming course; I find it hard to believe that you can not answer this question... | |
Re: I use a number of browsers for web dev and making sure they all work correctly. However; when ArchLinux was my primary OS, I <3'd conkeror. Since i've sold out, I use Chrome as my primary browser, because, why not? | |
Re: Here is the best that I can do for you: http://www.daniweb.com/community/rules | |
Re: @OP The first problem is the fact that you are using Internet Explorer, what is this the 90s? I'd suggest updating to something like Firefox, Chrome, or Opera. Then your life should be better. | |
Re: @OP could you please include the .dat files, I wanna try a few things. ALso you could use the same constructors. For example, say you had a constructor that took an employee's name and an employee's payrate. No need to make another constructor with those parameters, you could use super … | |
Re: If want to find the highest and lowest VALUE in an array, you could implement the Array.sort method that is available in C#. [Here](http://msdn.microsoft.com/en-us/library/6tf1f0bc.aspx?cs-save-lang=1&cs-lang=csharp#code-snippet-1) is the example of the Array.sort method in action. Now once you figure out how to implement that method, it will organize the VALUES in ascending … | |
Re: @OP what Py Tony is saying is that your line(s) if True: print ("Is a Palindrome") will always execute, and else: print ("Is Not a Palindrome") will never execute. In programming, by saying `if True:` you are setting yourself up for an absolute decision. This is like deciding to jump … | |
Re: Hey, feel free to checkout: http://www.daniweb.com/community/rules | |
Re: @OP Welcome to the wonderful world of code, there is no set-time for when one learns a programming language. It's not like learning to cook popcorn, it takes alot of practice, studying, and hard work to learn. Even then, after years of experience one still doesn't know everything about a … | |
Re: @OP As mKorbel was mentioning I noticed the root of a few of the errors were coming from you trying to access elements outside of the range of the declared array. For instance, you were an index too high when adding them to the signPanel, so I just did the … | |
Re: Maybe the [Sleep function](http://msdn.microsoft.com/en-us/library/windows/desktop/ms686298(v=vs.85).aspx) will be of help to you? | |
Re: For such a question, I would go with a simple language like Python, because; why overcomplicate, something? Anyways here is the general [pseudocode] approach to answering this question. PSEUDOCODE: for each value in list: if value in list % 2 has a remainder (==) of zero output value Now the … | |
Re: Howdy friend, welcome to Daniweb, have a good time here, and please refer to the [rules](http://www.daniweb.com/community/rules) | |
Re: @OP Hopefully, this [link](http://bit.ly/120HlpW) will help you. | |
Re: I'd suggest after getting all the important stuff recovered (the os, drivers, etc...) you try another browser. IE isn't exactly that top notch in any department, maybe firefox, chrome or opera... just my two nickels. | |
Re: @OP http://www.daniweb.com/software-development/java/threads/437009/java-program-to-download-youtube-videos | |
Re: @OP Does this help? http://www.cppforschool.com/project/banking-system-project.html | |
Re: @OP I don't know if your looking for [this](http://nxhoaf.wordpress.com/2013/01/05/simple-text-to-speech-in-java-based-on-google-translate-api/) but it looks like it may assist you. Also the fact that you have no knowledge of Signal Processing, shouldn't make you any less effective in accomplishing your task. | |
Re: Generally, after you compile the code, there should have been automatically generated .exe in the same folder as the one your working in, but you could look at [this](http://stackoverflow.com/questions/5455547/how-do-i-create-a-exe-from-a-c-file-on-windows) | |
Re: @OP Does [this Bank account example program](http://www.dailyfreecode.com/code/represent-bank-account-1212.aspx) look of use to you? It's a simple program really, you just have to imagine that you are creating an ATM simulation so if you want you could visit your local bank, and look at the various functions that the ATM offers. Of … | |
Re: something like: import subprocess as sp nameOfProgramToRun = "notepad.exe" nameOfFileToOpen = "test.txt" sp.Popen([nameOfProgramToRun, nameOfFileToOpen]) should do the trick. | |
Re: To lessen the amount of lines the code takes up you could make a few small modifications such as when creating the objects, instead of asking every time on different lines for the same information. You could implement a loop, for example: private static Scanner console = new Scanner(System.in); public … | |
Re: @OP Yes, as sepp2k suggested, you will need to create your own `toString()` method, in order to output the information in the format that you will like. However, another problem I can see arising, is the fact that no matter what values you create the objects with you seem to … | |
Re: Are you restricted to using an array?, in situations where removal, and insertion are common a LinkedList or ArrayList may be a better option. If your curious as to how I did it with a linked list, here is some sample code that I wrote: package linkedlistexample; import java.util.LinkedList; import … | |
Re: @OP Check out [this link](http://www.tiobe.com/index.php/content/paperinfo/tpci/index.html) which I feel would perfectly address your question. In my experience in the information field, I can say that Java will probably be around for a while, after all its been here since the mid 90's, and that must mean something. | |
Re: [Here you go](http://stackoverflow.com/questions/1788312/why-a-constructor-does-not-return-a-value), in order to find that, I simply copied and pasted your question into google, and recieved that result. | |
Re: @OP Does [this link](http://stackoverflow.com/questions/4984600/when-do-i-use-a-dot-arrow-or-double-colon-to-refer-to-members-of-a-class-in-c), which outlines a number of scenarios when you would want to use the specified operators help? Hope it does =D... gotta love google | |
Re: @OP I am unsure of what you are asking, here is how I am seeing this problem, are you simply generating a series of 10 random numbers in the range of 0 - 10? In that case, I would simply do the following (it's in Java but seeming how Java … | |
Re: @OP would something, like [this](http://www.mayukhbose.com/freebies/c-code.php#smtp) be in the ballpark to what you are talking about? | |
Re: @OP Did you ever happen to take a look at [this link](http://www.mathworks.com/matlabcentral/newsreader/view_thread/278690)? If not, I'd suggest starting there. If any questions arise, feel free to reply. | |
Re: @OP It appears that you are still struggling with how classes, objects, and naming conventions work. However, have no fear, the following links should address these issues. [Classes/Objects](http://docs.oracle.com/javase/tutorial/java/javaOO/) [Naming conventions](http://java.about.com/od/javasyntax/a/nameconventions.htm) Also, by the less then appealing object name, I am assuming you are working with the NewBoston tutorials, which are … | |
Howdy Folks; I have decided to begin working on a project, that I personally feel will cover alot of areas, and introduce me to new topics. This is not for a client, or a homework assignment. This is strictly to help me 'learn as I go' and review some old … | |
Re: @OP Here is a [sticky](http://www.daniweb.com/software-development/c/threads/50370/starting-c-) from daniweb, which has a ton of various outlets for learning C. I recently started learning C, after about 2-3 years of Java programming and have found it relatively simple. If you are looking for a one-way outlet to learn (one reference), then [this](http://cprog.tomsweb.net/cintro.html) may … | |
Re: @gyno highest and lowest value can be founded by doing: Arrays.sort(anArrayHere); System.out.println("Highest Value: " + anArrayHere[anArrayHere.length-1]); System.out.println("Lowest Value: " + anArrayHere[anArrayHere[0]]); The Arrays.sort method sorts in ascending order, therefore the largest value of an array will be at the top, and lowest value will be the smallest within your array. | |
Howdy; I am still on my journey into the world of assembly, and feel that I am becoming more comfortable with it, however; there are somethings I am still struggling with. Below I have posted my code, and have inline comments with it. These comments represent my understanding of the … | |
Howdy; I am currently working on a program to review what I have learned so far, in the PCASM book written by Dr. Paul Carter. I have accomplished 3/4ths of my overall goal, however; my program doesn't seem to like me especially the division part of it. The goal of … | |
Howdy; I have been studying on my lonesome, in hopes of becoming more in touch with assembly, and feel that I have been doing pretty well so far. However, I do have a few questions, including: - What is the major/minor differences between a signed, and unsigned number? When do … | |
Re: Here is a [link](http://www.youtube.com/watch?v=3XB3in9Xqy8) to the beginning of a near 10 part video series on Swing, and developing GUIs in general.The author of this video series, is very well versed in what he is doing, and generally follows the best coding conventions. You may find his style to be up … | |
Re: Im learning Assembly through the NASM assembler, and Dr. Paul Carter's book which can be found [here](http://www.drpaulcarter.com/pcasm/). I am personally a fan of it so far, it starts out slow, telling you all the boring stuff, and then in starts to go into how to write the code, and what … | |
Re: This is the output that I recieved after running your code. Team 1: Soldier Marin-6431 Team 2: BUILD SUCCESSFUL (total time: 0 seconds) and then on another run Team 1: Team 2: Soldier Marin-9910 BUILD SUCCESSFUL (total time: 0 seconds) I have no errors.... this is strange Autobalance.java /* * … | |
Re: This post looks oddly similar to [this one](http://www.daniweb.com/software-development/java/threads/440531/crayon-box-) hope that helps. | |
Re: @OP In regards to this assignment, are there any restrictions, or explicit ways that your supervisor wants you to create your chat program. Also is the chat program suppose to be realtime (like most instant messaging services) or something like an email system? In the event that it is a … | |
Howdy Friends; My name is PBJ and I have been writing code since I was 12, and I am now 18. I have experience with a number of languagues including: Perl, Python, C++, Batch/Bash, and Java. Out of the languages mentioned my strong-suit is without a doubt Java. However, over … | |
Howdy Friends; I have just started learning assembly, and am currently working with NASM, in Linux. I am not creating anything close to advanced, yet because I would like to know if I am on the right path with what I am learning. The code that is posted below is … |
The End.