• Member Avatar for rubberman
    rubberman

    Replied To a Post in Best sort for a doubly linked list

    When it comes to sorting and searching, you cannot beat Knuth! :-) He wrote the bible on the subject.
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in Reverse contents of array using one array

    The std::swap function does use a temporary value when doing the swap, but the user doesn't need to worry about that. This is when standard tools can be helpful, and …
  • Member Avatar for rubberman
    rubberman

    Gave Reputation to ravenous in Reverse contents of array using one array

    You can do it with a single array and a single value of the type in the array (an `int` in your case). Use the single value as a temporary …
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in [how to] verify bone LRS, Bind, and Inverse-Bind data?

    Glad to help! :-) Sometimes just asking the question leads us to the answer!
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in costruct an algorithim and a flowchart

    Really! Please don't ask us to help you cheat!
  • Member Avatar for rubberman
    rubberman

    Gave Reputation to Schol-R-LEA in costruct an algorithim and a flowchart

    No one here will do your homework for you. Please demonstrate that you have at least tried to solve the problem first prior to posting here. <rant> Seriously? This is …
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in Why does Windows XP refuse to die?

    Well, XP is a zombie now - we just can't kill it no matter what we try! I have a legal Win7 OEM install disc that I installed on a …
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in recursive function

    What Dave said, plus, recursion also occurs when functionA calls functionB ... and finally functionX calls functionA again, before any of them return to their caller. These function stacks can …
  • Member Avatar for rubberman
    rubberman

    Gave Reputation to Schol-R-LEA in To Implement Predictive Parsing in C

    **suraiyaparveen**: You won't get it, for two reasons. First, no such program exists - those are all things that need to be done manually, not programs to be written. Second, …
  • Member Avatar for rubberman
    rubberman

    Gave Reputation to Schol-R-LEA in Digital alarm Clock assembly for 8085 microprocessor

    *I've ended up pulling this boilerplate reply out twice in 24 hours, sheesh* First off, we don't do other people's homework for them. Second, we *don't* do other people's homework …
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in Best sort for a doubly linked list

    FWIW, I also did AVL and other variants of balanced binary trees. Fast for lookup. Not so fast when needing to rebalance the tree on insertion (depending upon the number …
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in Best sort for a doubly linked list

    When I designed the framework for FACTORYworks (a major MES for semiconductor, flat-panel display, and disc drive manufacturers), I designed and wrote an insertion sort for sorted collections. It was …
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in reading from urandom file

    For more technical information and tutorials on random number generators, go here: http://www.phy.ornl.gov/csep/CSEP/RN/RN.html Not what you need for your class, but good nontheless... :-)
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in Installing nvidia drivers

    First, the default nVidia driver is the Nouveau driver (open source - ok but not great for high-performance video). Next, to install the proprietary driver that you download from nVidia, …
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in install volatility on ubuntu?

    Ok. This is a python script. There is a Makefile, and running "make" will put the script and stuff in the build directory. Then if you run "sudo make install" …
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in install volatility on ubuntu?

    Is there a Makefile? I'll download and check it out to better help you.
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in egypt pyramide

    I won't repeat Schol-R-LEA's rant, but agree with it 100%. That said, make an effort. Show your work (code), along with where you are encountering problems. Then we may be …
  • Member Avatar for rubberman
    rubberman

    Gave Reputation to Schol-R-LEA in egypt pyramide

    First off, we don't do other people's homework for them. Second, we *don't* do other people's homework for them. And third, ***we don't do other people's homework for them***. Sensing …
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in install volatility on ubuntu?

    To install on Linux, you will need to build from source. Here is the link: http://downloads.volatilityfoundation.org/releases/2.4/volatility-2.4.tar.gz Download, untar with the command "tar -zxvf volatility-2.4.tar.gz". Go into the directory created. There …
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in pronunciation of words in php

    Are you trying to write a tool that provides audio output for the user?
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in suggestions what to learn to improve android programming skills

    If you aren't a competent programmer, especially with Java skills, then you aren't going to become a good Android developer. Android Dalvik applications ARE Java. Focus on object-oriented design and …
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in Problem with Knight's tour?

    Better, but not good enough as yet. First, in the "Choosing Index" block on line 49, use a switch statement instead of a bunch of conditional statements, as in `switch(choice1_index)`. …
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in [Help] Sprite Animation

    Each sprite should be an object, with a tick delay as part of its member variables. So, when you tell a sprite to "delayAndMove" (or something like that), it will …
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in Best sort for a doubly linked list

    Back in the "dark ages", when I needed to sort a linked list, I would put the nodes into an array, then use qsort to sort that, and then rebuild …
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in Muluplication

    So, what is your problem. Don't expect us to analyze 260+ lines of code without some indication of the errors you are getting, and where you think they may be.
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in How to validate strings

    The isdigit() function is a standard C/C++ function that will tell you (true or false) if a character is a digit. Every C/C++ compiler should support this. In reality, usually …
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in Need help with network user accounts on Mac server App on Yosemite

    Have you posted this question on the Apple user forums, or looked on the Apple site for a FAQ about this?
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in for graphics releated

    It depends upon what you want to do, how complex the desired system is, etc. The language is irrelevant, in my opinion. There are great C++ libraries for graphics such …
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in Linux vs. UNIX output file /Converting to a Text File

    There are simple tools to do this without having to resort to VB. Look at notepad++. It can easily convert Unix/Linux text files to Windows ones (converting the LF in …
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in Problem with Knight's tour?

    Asking people to debug 600+ lines of code isn't fair. Write out the algorithm you are using (pseudo code and logic you used), and where you think the problem is …
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in can someone help me with my pig latin converter?

    Without your code, there isn't much to say. Post it here.
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in HORRIBLE Malware / Virus Plus + Unknowlegable person caused MAJOR headache

    Did your computer come with a recovery partition? If so, you may be able to boot that and reinstall or repair the main system. If not, then you may be …
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in windows mobile on android

    The answer is that it depends. If it was writting using the WebApps api it may work. Installing is the question. Also, you can search the Google Play Store to …
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in How to convert images to PDF format?

    Another means is to create a Libre Office, or Open Office writer document and import the images, resizing them and positioning them to suit. Then, select the File->Export PDF option. …
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in MSI FM2-A55M-E33 power on problems

    Early life failures in electronics are not uncommon. If they don't fail in the first year, then they probably will live a long and productive life - much like humans!
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in Help with inheritance

    Your basic problem is that A is a base class of both B and C, and the instance of A in an instance of B, is NOT the same instance …
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in MSI FM2-A55M-E33 power on problems

    Assuming you have verified that the power supply is working (you have, haven't you?) then the mother boards is probably dead and you need to get it replaced. As mentioned, …
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in Finding total occurrences of any word in strings

    No. You work it out and we critique it. We don't do your homework for you... :-(
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in search word and search for all the occurrences of that word

    Sorry, but we don't do your homework for you. Post your work (code) and we will critique it. To get you started though, read the paragraph and parse each word, …
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in Need help with iterators in Lists

    Also, symbols that start with an underscore, such as _children, are reserved. Use something like m_children, indication a member variable, or s_children for a static variable.
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in inserting data in three different tables in mysql database using php

    1. What database are you using? 2. Are you building the database schema directly, or in PHP? 3. What API are you using to implement this in PHP? 4. Show …
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in Real-Time Notification Update in PHP

    If you want real help, rather than some opinions on how to approach the problem, then post your code here!
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in Binary Tree Code Help

    Show code please. This is basic computer science stuff.
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in C++

    I'd try it and debug it, but I don't have a Turbo-C++ compiler on my Linux system. I could modify it to build/run on current compilers when I have the …
  • Member Avatar for rubberman
    rubberman

    Gave Reputation to tinstaafl in Can anyone please tell me why one of my error messages does not display?

    The last error message won't display the same time as the second one, because, the second relies on radbusiness.checked being false and the third relies on it being true.
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in Getting the return value from a SOAPMessage

    You have to parse the message, and find the <ns:return>...</ns:return> value (where the ... is). IE, this is the return value for the call. If this SOAP call returns more …
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in how i can send post's id by clicking on its title's link into another page?

    Ok. You stated the problem. Show the code you are trying to use.
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in Using strings in templates

    How do you think it should change? Arrays are kind of like vectors, but they don't resize automatically, so you need to pre-allocate a size, and when the size needs …
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in Cisco Study Group - Columbus, Ohio

    Without experience, certifications don't mean a lot. Higher education sxample: we all know what BS means. MS is just More of the Same. And PhD? More of the Same, just …
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in Power Supply Blew Now Computer Turns On But Not For Long

    Thanks Mike for the link. I'll keep it in mind for my Windows clients. In many cases, video cards can suck up so much power that default power supplies cannot …

The End.