• Member Avatar for rubberman
    rubberman

    Replied To a Post in Converting numbers to words in C++ using SWITCH Statements!!

    What Red Goose said. This bit of code: int ones_digit = num%10; int tens_digit = num/10; Needs to be AFTER you get "num" from cin. You may have other problems, …
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in Sorting Doubly Linked lists

    Ok. Then for all of these, using the list-to-array-sort-back-to-list methodology is the most straight forward in my experience. Using qsort() for an array is trivial - you just need a …
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in Discovering and using Windows 8.1 System Image Backup

    Myself, I use Linux to create a system bit-image of both Linux and Windows system discs. I copy the image to an external hard-drive using the dd command piped to …
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in Chimei Monitor Brand

    Chimei is a major Taiwanese electronics manufacturer. Their monitors have a decent reputation, and I believe they have a good (3 year) warranty. If you can get one at a …
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in What is the safest browser for Windows XP?

    The other option is Firefox (Mozilla). Myself, I primarily use Chrome, but I also use Firefox on some systems that Chrome doesn't support.
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in Error mounting

    Try manually mounting the partition at /dev/sda4 without all the options you are using, but with a read-only option. What Linux OS are you trying to use to recover your …
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in Pothole Detection App

    What James said. Also, if we give you the code, do we get your degree? :rolleyes:
  • Member Avatar for rubberman
    rubberman

    Gave Reputation to JamesCherrill in Pothole Detection App

    What is your major subject for your degree? Plagiarism? Seriously: If you need to "make an app" then just copying someone else's code is not going to qualify. If you …
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in UML Diagram Help - Train Reservation & Ticketing System

    That's a good start on the Use-Case diagram. It still isn't complete. For example, in item #3, "Passenger seeks information on fare, train timings, and availability of tickets.", you only …
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in Sorting Doubly Linked lists

    An approach I have used in the past quite effectively was to create an array with the data in the list, sort that, and then use the sorted array to …
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in Recommend me a relational diagram tool

    Well, get the program and the eval license. You have 30 days to try it out - and it has some very good tutorials, docs, and such. Since you can …
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in Assignment

    You want us to help you cheat on your assignment? Do we get your degree when you graduate also? :-( Post your code, and we may help you, but you …
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in How to create DOS?

    If you want to figure out how to write your on DOS (Disc Operating System), look at FreeDOS - an open source version of MS-DOS: http://www.freedos.org/
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in Need Driver for Gforce 6600

    Go here for official nVidia GeForce driver downloads: http://www.geforce.com/drivers
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in Variation on finding Stirling numbers of the first kind

    It looks like a fairly straight forward recursive algorithm. Work it through in words (pseudo code) what you need to solve it.
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in prime numbers

    Ah, prime numbers! One of my favorite subjects when I was studying public key encryption algorithms back in 1984-1985. I wrote some interesting prime factorization algorithms that were quite efficient …
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in help me to write this program in while loop or do while loop

    Do I hear an echo, echo, echo? We don't do your homework for you... :-(
  • Member Avatar for rubberman
    rubberman

    Gave Reputation to deceptikon in "*" Pattern

    Yes.
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in "*" Pattern

    What deceptikon is trying (in his inimcable way) that you need to first try to solve the problem, post the code here, and wait and see if we decide to …
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in linking file with mutual dependencies

    As shown by Labdabeta, make sure you "guard" your header files from multiple inclusions.
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in asus turns itself off

    Was this a socketed chip, or soldered into the board? If soldered, did you do it yourself, or have someone else do it? Soldered chips in systems like this need …
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in How to import SIM contacts on Nokia lumia 820 ?

    Good find caperjack! :-) Gets an upvote from me, and I work for Nokia Mobile Phones! :-)
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in Ethernet internet keeps dropping with Mavericks

    There were some related bugs in the original release of Mavericks. Have you installed the latest updates?
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in Copy/move all sub-directories from a folder to another folder using python

    Have you tried using the wildcard '*' as in: `dir_src = "C:\\Python25\\ATest1\\*"` ? I'm not a python expert, but I would think this should work. Worth a try in any …
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in Batch convert video files to avi

    Thanks Mike. I'll have to check into libav. I've been using ffmpeg for so long that old habits are hard to break! IE, if it ain't broke, don't fix it! …
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in Speration of interface from implementation within classes advantag

    In C++, interface classes are pure virtual classes. There is no such thing as an interface class per-se in C++, unlike Java and some other languages. The advantage is that …
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in Recommend me a relational diagram tool

    It may be the swiss-army knife of modeling tools, but I have been working happily with Sparx Enterprise Architect (found at www.sparxsystems.com) for years. They fully support relational and entity-relational …
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in Guys need help in making a CRUD code.

    Show your code and logic, and then we may be able to help you get through the knottier parts.
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in Java error in compiling (reached end of file while parcing)

    Note that the java compilers generally require that the last line is terminated with a new-line sequence. Try adding an empty line after the end of the code. Many C/C++ …
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in Learn linux

    As said, just install Linux (either on your HD or a virtual machine) and get started! You can ask for help here, or you can go to http://www.linuxforums.org/forum and post …
  • Member Avatar for rubberman
    rubberman

    Gave Reputation to rch1231 in minicom

    There is a great tool for this called GNS3 or Graphic Network Simulator 3 which will create Virtual Cisco routers and switches that actually uses the cisco or juniper ios. …
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in Batch convert video files to avi

    I use ffmpeg for this sort of work, exclusively. There are Windows builds available (it is free, open source software) here: http://ffmpeg.zeranoe.com/builds/ I have used Windows-specific tools in the past, …
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in could not access 'localdisk' on my hdd enclosure

    Burn and boot a live Linux CD/DVD image disc (a recent distribution that supports NTFS partitions). Then, assuming the disc is /dev/sdb (your normal system disc should be /dev/sda, but …
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in How To Wipe Hard Disk?

    Burn a live Linux DVD/CD. Boot it up. Login as root (administrator). Then, wipe the disc with the dd command. Assuming that this is the only HD on the system …
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in Adding drag&drop

    Sounds kind of like what we were saying. Glad you got the event handling code working! :-) And for whatever it's worth, this is serious programming chops! I'm giving you …
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in MPI Two different arrays

    A couple of issues. MPI is a parallel computation framework. Where do you distribute the work to other members of the computational cluster? What I see is what would run …
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in Topics for Thesis and Hybrid app

    Mapping physical neural networks to computer constructs is PhD level R&D - some of the smartest people on the planet have been working on this problem for years. As I …
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in Reprogram Router/Modem

    What do you mean by "receiver"? Do you mean to be able to simply use it as a WiFi access point? This is not hard to do. I have done …
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in Ubuntu 13 can't connect to projector

    Ok. That has worked for me in the past. Sometimes it takes a few minutes for it to be detected, but then my last Ubuntu distribution that I used for …
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in complier

    You don't say if this is a Windows or Linux/other system? For Windows, both triumphost and Slavi have good suggestions. For Linux systems, both C++ and Java compilers are available …
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in stl map with the keys from the SN of the sliding window protocol

    What is the map using for the key? The SN? If so, then it should be the last element in the collection, and you should be able to use the …
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in HELP GRAPH OF FUNCTION MISTAKE

    The images are too small and are unclear when expanded to a reasonable size. Please repost the images at a larger scale.
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in Brain networks

    When you figure them out, apply for that Nobel Prize in Medicine... This is an area of serious ongoing academic research, and there have been a number of recent articles …
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in Can you copy and paste a game file onto a external hard drive.

    Note that most commercial games are DRM-encumbered. They post a key file or a key in the registry and if you used their tools to install the game on your …
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in minicom

    What operating system is this for? In any case, you can get it here: http://freecode.com/projects/minicom
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in Ubuntu 13 can't connect to projector

    I have also found that if you go into the System->Preferences->Display page, you can usually get it to find the new display device (projector) and set that to be the …
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in database server advice

    If you do subscribe to an Amazon or similar cloud-based server solution, remember that they charge you for the data going out of the cloud, so if people are using …
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in Vectors of complex numbers

    A complex number is expressed as a number with 2 parts, the real part, and the imaginary part. Usually both are notated as either floats or doubles. This means that …
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in a c program to find the smallest of three integers without using any of com

    Not only do a, b, and c need to be declared, they also (in Rahul47's example) need to be initialized to non-zero values. So, in your case, that IS the …
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in Parallel program using openmp threading

    This is getting tedious. DO NOT ask us to do your homework for you!

The End.