• Member Avatar for rubberman
    rubberman

    Replied To a Post in database connectivity inc\c++

    > Is it possible with DOS compiler or need vc++ like > new one What OS are you using? If DOS/FreeDOS, you should still be able to get the ODBC …
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in finding consecutive integer of odd and even

    Your last exampe, 1 3 5 7 2 1 4 3 is incorrect. It should be 4 odd, 2 even, 1 odd, 1 even, 1 odd. And to answer niranga's …
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in installation of linux

    Either you purchase an installation or live CD/DVD disc set, or download an installation or live CD/DVD set of ISO images to burn to CDs or DVDs, boot that, and …
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in Log Out of OneDrive Account from Windows 8.1 App

    You shouldn't lose the data unless you drop/cancel the account. Just disconnecting from it should not do that.
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in Program of self education

    I learned software engineering by doing. My first real project was to write an accounting application for a customer (I was a sales representative at a computer store) in dBase …
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in what is meant by range of data type i.e. char

    An 8 bit value, such as a char, can be signed, or unsigned. So let's look at chars - you can have a signed or unsigned char. The top-most bit …
  • Member Avatar for rubberman
    rubberman

    Gave Reputation to GOMEZ_1 in How do Functions work

    Alright, thanks LaxLoafer and @ Rubberman I get the concept, actually I didn't also had the idea of const and non-const references. And also now I get it that an …
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in C++ webapps

    Use PHP for webapps. It is a derivative of C++, so learn C++ first, and apply the object-oriented principles you learn there to your PHP code.
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in binary search in descending order

    Both solutions are brain-dead... Use bsearch() and utilize a different compare() function for ascending vs descending orders. That way, you only need to tell the program how the list is …
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in database connectivity inc\c++

    This is the purpose of the ODBC libraries - they provide a database-neutral means of accessing most any database without changing your code. Before ODBC existed, I wrote an ODBC-like …
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in final assignment, please please please help!!!

    Also this: int uch = toupper(ch); if (uch >= 'A' && uch <= 'Z') { // This is a letter. }
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in using java codes in repository

    What do you mean by "a repository"? Something like Git, SVN, ClearCase, etc?
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in Randomize

    Here is a good tutorial on the subject of random number generators: http://www.phy.ornl.gov/csep/CSEP/RN/RN.html The math requirements aren't too onerous, and translation from the Fortran90 examples to C or C++ shouldn't …
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in Assembly code for countdown timer

    Also, we don't do your homework for you. If this is job, not school related, then Schol-R-Lea's response is 100% correct. FWIW, in Linux systems, there are timer functions that …
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in How to solve Coins problem in C

    Class assignment? Sorry, but the terms of service here do not allow us to do your homework for you. Make a good attempt to solve the problem, and if you …
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in hardware

    You are not providing enough information to help you. I assume you are just closing the display, probably putting it into sleep and later hibernate mode. That said, I think …
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in Windows (EVERYTHING)

    A 1.6 GHz Atom processor running a 32-bit OS is not going to get much better, performance-wise. It is probably already doing its best.
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in P4 Will Not Post

    Getting a new system will likely be less expensive than fixing this one.
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in windows product key problem

    In the future, if you want to run Debian on a Window system then download and install VirtualBox. You can then install Debian or other Linux distributions in a virtual …
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in "Null" Word in csv export

    Run it through a sed script to remove the "null" entries.
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in C++ Backspace or Delete

    Anyway, we need to see your code, especially where you take input for the password, and how the input stream is configured.
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in I need free software for my Daily sales / purchase in my General store

    Here is link that may be helpful: http://www.linuxlinks.com/article/20110129042546189/PointofSale.html
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in Linux compatibility list?

    There a built-in open source nVidia driver for Linux called Nouveau. nVidia also has proprietary Linux drivers for their gear which work very, very well. The proprietary drivers are much …
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in Win7: Strange fopen() "a+" behaviour

    What operating system/version are you using. According to the Linux man page for fopen, the usage of "a+" is this: a+ Open for reading and appending (writing at end of …
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in Matching letters to a word

    First, what language are you using? Next, why isn't this in the Software Development forum?
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in Related to glade software

    What Schol-R-LEA said. For a cross-platform GUI development tool set, use either Qt, or Wx - Qt is preferred. That said, they are C++, not C API's. AFAIK, there are …
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in using class object in different project

    Still an early C++ learner?
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in I am a novist to game development

    Get a degree in computer science. Learn multiple programming languages. Become competent in graphics development. BTW, Newtonian physics is also helpful for game development.
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in Computer Repairs

    Your post is not clear. Please be more specific. Are you trying to learn how to fix laptops and other computers?
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in Ubuntu won't read file

    Good luck with that! This is not code for newbies. And if you use the specified configuration, my guess is that your system will be pwnd... Have fun!
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in PHP/MYSQL remove row by id

    If the `if($id != "")`, try !== instead of != - this is one of the subtle issues that trip up a lot of PHP programmers. See the PHP online …
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in retrieving photos from hard drive

    Well, what you need to do depends upon whether you are running Linux (or other *nix), or Windows. If Windows, it will find and mount the file system automatically, as …
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in Scripting

    I assume this is a shell script. When you execute the argument as a command, it has to be found in the system's PATH environment. Try `./$1` instead. That tells …
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in COBOL

    If you are considering switching into more current web-based programming, then get up-to-speed on PHP and LAMP. PHP is really a web server based version of C++. If you are …
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in Jar not executing on Mac

    Try ` system("java -jar ./myJar.jar");` assuming that the file is in the same directory as you started your C++ application and it did not change directories before it executed the …
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in Mono-core CPU?

    These days, a 4 CPU system will have from 8 (more likely 16) cores, to as many as 32. More cores == slower clock speeds. You can overclock 4 core …
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in Android Phone Doesn't Charge

    Then try a new battery or take it in for repair. How old is it?
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in new Hitachi 1tb - high temperature !

    Well, if the Hitachi is otherwise working ok, I wouldn't worry too much about the current temperature. Just make sure the drive gets enough cool air flow over it - …
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in Android Phone Doesn't Charge

    Are you plugging into a wall charger, or is it plugged into a computer USB port? As JorgeM suggested, try an alternate charger. So, if you don't have another wall …
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in How to do Load Testing with Mobile Apps

    Load testing is very different from functional and regression testing. The issue is one of being able to access system performance data, such as CPU usage, network saturation and latencies, …
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in Why would you want to make class objects parameters of a function

    class Address // Assumes address is in USA { private: std::string street; std::string city; std::string state; std::string zipcode; public: const std::string& getStreet() const; const std::string& getCity() const; const std::string& getState() …
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in Internet not working without ultrasurf

    Why do you need ultrasurf - "enables its users to bypass Internet censorship and firewalls using an HTTP proxy server, and employs encryption protocols for privacy"?
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in Palm Phone Treo 600wx

    Sorry, but without looking at the unit I really can't say what you need to do. Those cases are usually connected together with some plastic bits, which when broken allow …
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in new Hitachi 1tb - high temperature !

    It depends upon the drive. Some manufacturers' drives run hotter than others. On my system, my 2TB WD green drives run about 10C cooler than my 320GB Seagate system drive. …
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in Dynamic Mem Allocation within function

    If you are doing C-style allocations, then you can use alloca() which produces data that WILL go away when the function it was called in terminates. This is because the …
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in eclipse vs vim

    Eclipse is a nice, integrated, IDE (Integrated Development Environment) that has plugins to support most current programming languages - the editor is built in. VIM is a text editor based …
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in PigLatin

    Translation - "Who speaks latin?". :-) My sister and I would speak pig latin around our parents when we were kids and didn't want them to understand us. This was …
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in java project

    Sorry, but we don't do your homework for you. Try Google or DuckDuckGo to search for such.
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in sugestion required

    You say you know the basics of Java and are learning Python. Personally, I would doubt that (knowing the basics != being competent). As for using the Google compute engine, …
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in Artificial Neural Networks

    Neural network programming isn't trivial. What other programming experience and training (theory) do you have already? Myself, I had to take a course from MIT to get reasonably up to …

The End.