Posts
 
Reputation
Joined
Last Seen
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
63% Quality Score
Upvotes Received
14
Posts with Upvotes
10
Upvoting Members
10
Downvotes Received
9
Posts with Downvotes
6
Downvoting Members
7
2 Commented Posts
~41.1K People Reached
Favorite Tags

53 Posted Topics

Member Avatar for vegaseat

"I don't practice what I preach because I'm not the kind of person I'm preaching to." - J. R. "Bob" Dobbs

Member Avatar for Reverend Jim
15
14K
Member Avatar for Member #949455

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

Member Avatar for LoanHensley
6
6K
Member Avatar for ~s.o.s~

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 …

Member Avatar for ~s.o.s~
46
6K
Member Avatar for junior.dau

Avast Free Edition, does the trick, or you could just reinstall windows every year to be sure. =D

Member Avatar for <Anurag>
0
146
Member Avatar for faysal.ishtiaq_1

...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.

Member Avatar for Unimportant
-1
382
Member Avatar for TokamakFusion

@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...

Member Avatar for bibiki
-2
470
Member Avatar for weblord

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?

Member Avatar for stultuske
0
204
Member Avatar for Member #1082953
Member Avatar for stultuske
-2
2K
Member Avatar for wmc1956

@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.

Member Avatar for inspired2
0
372
Member Avatar for murali2489

@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 …

Member Avatar for murali2489
0
209
Member Avatar for BATCHOii.KO

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 …

Member Avatar for tinstaafl
0
111
Member Avatar for jude.caird

@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 …

Member Avatar for james.lu.75491856
0
174
Member Avatar for Zdneth_1
Member Avatar for mc.sQr

@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 …

Member Avatar for JamesCherrill
0
281
Member Avatar for Wolfenstien

@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 …

Member Avatar for Wolfenstien
0
273
Member Avatar for alaba81

Maybe the [Sleep function](http://msdn.microsoft.com/en-us/library/windows/desktop/ms686298(v=vs.85).aspx) will be of help to you?

Member Avatar for Vincentas
0
134
Member Avatar for no_one16

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 …

Member Avatar for kvahanyan
0
157
Member Avatar for oneclickroot

Howdy friend, welcome to Daniweb, have a good time here, and please refer to the [rules](http://www.daniweb.com/community/rules)

Member Avatar for smith121
0
160
Member Avatar for Abhinisha
Member Avatar for Abhinisha
0
210
Member Avatar for chukeej

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.

Member Avatar for JorgeM
0
141
Member Avatar for abra_ka_dabra

@OP http://www.daniweb.com/software-development/java/threads/437009/java-program-to-download-youtube-videos

Member Avatar for pbj.codez
0
209
Member Avatar for atulnain007

@OP Does this help? http://www.cppforschool.com/project/banking-system-project.html

Member Avatar for rubberman
0
191
Member Avatar for NaikTharki

@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.

Member Avatar for JamesCherrill
0
277
Member Avatar for piczim

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)

Member Avatar for rubberman
0
194
Member Avatar for rnana

@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 …

Member Avatar for JamesCherrill
-2
271
Member Avatar for zaphoenix

something like: import subprocess as sp nameOfProgramToRun = "notepad.exe" nameOfFileToOpen = "test.txt" sp.Popen([nameOfProgramToRun, nameOfFileToOpen]) should do the trick.

Member Avatar for pbj.codez
0
243
Member Avatar for christine.dunne.963

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 …

Member Avatar for pbj.codez
0
191
Member Avatar for murali2489

@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 …

Member Avatar for murali2489
0
205
Member Avatar for joma.tioquin

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 …

Member Avatar for joma.tioquin
0
413
Member Avatar for shockwave4uonly
Re: java

@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.

Member Avatar for jwenting
-1
153
Member Avatar for maalaakhantaurux

[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.

Member Avatar for rubberman
0
317
Member Avatar for irfan_ncp

@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

Member Avatar for rubberman
-1
171
Member Avatar for Vsan

@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 …

Member Avatar for pbj.codez
-1
157
Member Avatar for khiemkim.xuan

@OP would something, like [this](http://www.mayukhbose.com/freebies/c-code.php#smtp) be in the ballpark to what you are talking about?

Member Avatar for pbj.codez
0
75
Member Avatar for SAM2012

@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.

Member Avatar for SAM2012
0
307
Member Avatar for tanmay.majumdar2

@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 …

Member Avatar for pbj.codez
0
172
Member Avatar for pbj.codez

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 …

Member Avatar for pbj.codez
0
262
Member Avatar for Aadhya169

@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 …

Member Avatar for whitech
-1
300
Member Avatar for gyno

@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.

Member Avatar for JamesCherrill
0
262
Member Avatar for pbj.codez

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 …

Member Avatar for Assembly Guy
0
342
Member Avatar for Ancient Dragon
Member Avatar for pbj.codez

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 …

Member Avatar for Assembly Guy
0
259
Member Avatar for pbj.codez

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 …

Member Avatar for ShiftLeft
0
139
Member Avatar for game06

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 …

Member Avatar for pbj.codez
0
258
Member Avatar for MasterHacker110

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 …

Member Avatar for pbj.codez
0
386
Member Avatar for Pobunjenik

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 /* * …

Member Avatar for Pobunjenik
0
479
Member Avatar for nicfred

This post looks oddly similar to [this one](http://www.daniweb.com/software-development/java/threads/440531/crayon-box-) hope that helps.

Member Avatar for pbj.codez
0
277
Member Avatar for nurib

@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 …

Member Avatar for Schol-R-LEA
0
335
Member Avatar for pbj.codez

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 …

Member Avatar for pbj.codez
0
102
Member Avatar for pbj.codez

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 …

Member Avatar for Assembly Guy
0
213

The End.