• Member Avatar for rubberman
    rubberman

    Replied To a Post in ravi

    If the socket fits, it is probably compatible.
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in External HD various errors (I/O device error, read and unspecified)

    The disk read error at the bottom of you lising would indicate that the drive is starting to fail. You likely need to replace it asap, reinstall Windows on the …
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in how can i make a program by using like this(2*5/6+3-8*3/2)to get the sum of

    It is a matter of operator precidence. Multiplication and division are of equal precidence, as are addition and subtraction. Multiplication and division have higher precidence than addition or subtraction. Therefore, …
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in Help starting a loop again

    You need an outer loop before the `while (x == false)` loop and after the end of the `while (x == true)` loop. IE: while (true) { while (x == …
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in Create a password you can remember

    Using personal data is never secure - note that the use of a pet name + number broke the encryption of the laptop for a major Lulzsec hacker. I use …
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in To calculate how long it will take to pay off a loan.

    1. This is a simple compound interest problem. 2. Programming this in C or C++ will be esentially the same (with some syntactical differences). 3. We don't do your homework …
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in Makefile

    Your question is not clear. What are you trying to do, to set execute permissions on a file? On a list of files? What?
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in OpenGL program doesn't stop taking input and doesn't display Output

    After the prompt, how are you inputting the data for the or-ords? Like this? 10 10<enter> 20 20<enter> Try: void Input() { printf("Enter the co-ods\n"); scanf("%f %f %f %f",&x0,&y0,&x1,&y1); } …
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in c++

    What Schol-R-Lea says, plus having someone else do your homework for you is cheating and likely to make you fail the class or get thrown out of school.
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in Are these Specs good?

    I'd up the power supply to 1000w instead of 800 for this size of gear. I presume it is a full-size tower?
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in Is "full virtualization solution" better than everyday application solution

    KVM sits right on top of the hardware, so it is much more efficient than VirtualBox or VMware, et al. However, it is not really intended for personal type of …
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in Intel Core i7 64 bit board 4510U

    Even with an Intel GPU, you can still add an nVidia card if the mobo supports external video cards. If you are going to run Linux on a system with …
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in Network and security

    There are several approaches. One that bigger companies use is to lease connections from the branch offices that are part of the company global network. They will be different subnets, …
  • Member Avatar for rubberman
    rubberman

    Gave Reputation to Reverend Jim in Need something other than Real Player to play Real Player files

    I believe that [VLC Media Player](http://www.videolan.org/) will play Real Player Files.
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in Boot Password

    How to do that depends upon the make and model of the laptop. Many require shorting out the reset pins on the motherboard for the flash memory where the password …
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in Process delete method not deleting

    1. DeletePlayer() never does anything with the array returned by ProcessDelete(). 2. As Shark_1 said, since you are passing the array PlayerLastname by value to ProcessDelete(), you get a copy, …
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in inheritance

    The const getters return a non-mutable reference to the internel properties. The non-const getters (protected) provide a mutable reference to the properties, allowing them to be changed directly. Normally you …
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in ep-5nva sli user's manual

    That is not too helpful. What exactly is your problem?
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in Create 2 constructors

    I would recommend that you create a support class, call it Person, that encapsulates name, address, city, state, and zipcode. That will simplify the underlying code considerably. IE: class Person …
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in class vector initialization

    Just nitpicking, but this: #include <vector> #include "Eggs.h" #ifndef TRAY_H #define TRAY_H should be this: #ifndef TRAY_H #define TRAY_H #include <vector> #include "Eggs.h"
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in std::endl vs newline

    A newline in a string is just some more data to send, whereas std::endl will send a newline and then flush the output. You can also use std::flush to flush …
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in Troubleshoot Gateway desktop

    Send it to Dell for service?
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in hacking

    huh?
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in distro it's updates are small?

    Please explain what you mean by "update files are small".
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in Help with computer science assignment?

    This is also not a Monte Carlo sampling routine. You need to have a set of bottles, and then pick one at random until you find the winner. You will …
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in Linux/Fedora not booting to Windows 8.1

    Did you install Windows 8 after you installed Fedora? If so, then the Windows installer munged your grub boot sector. You might be able to recover it, but no guarantees. …
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in dell password

    Do you mean your account with Dell, or your account on the computer? It sounds like you forgot the password for the admin account on the computer. That may not …
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in Can't stay connected to the internet

    What the previous poster said. If all the systems are having problems and you replaced the switch, then it is either a router problem, or a modem problem. Since the …
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in no internet connection

    Boot into the system. Login as root. Run the commands "lspci" and "lsmod", posting the output here.
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in Printer wont print black (hp)

    Was the ink HP ink, or 3rd party?
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in BIOS password

    @Stefan_1 This is not necessarily true. Usually, the hashed password is stored in non-volatile flash memory. Kabir will probably have to remove the keyboard cover and short out a couple …
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in device software update windows 8

    Ignore it. You know the saying, "If it ain't broken, DON'T FIX IT!"... :-)
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in restoring jailbroken ipad to factory settings

    Contact the "gurus" at your local Apple Store. They probably have the proper magic wand to fix this.
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in ssh connection refused

    If you can, post the contents of /etc/ssh/sshd_config here.
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in Which One to Choose!

    What deceptikon said. Myself, I prefer genuine Intel motherboards. The engineering is superb, and they are incredibly reliable. My dual-cpu (8 core) workstation with the SVN5000 workstation/server board has been …
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in Server suggestion for python

    What distribution+version of Linux are you running for a server? The standard python for RedHat Enterprise Linux 6.5 systems and clones (such as CentOS) is version 2.6.6. I'm sure there …
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in Data doesn't retrieve!!!

    Try initializing the variable 'i' first before using it.
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in Cannot RDP after a system restore

    Have you turned off the Windows firewall after reinstalling the OS? What about credentials for enabling RDP?
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in LED for HDD not coming and the screen is blank

    Usually the display is an all or nothing proposition. The problem is possibly the hard drive, RAM, or CPU. If it was still displaying the progress bar, but was hung, …
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in Video over IP solution without multicast?

    Try this google search: streaming tv server FWIW, multi-cast is usually not viable outside of a LAN, and your routers need to be configured to allow multi-cast outside of a …
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in how to set up a network

    Have you looked on YouTube? Setting up a network can be simple, or complex, depending upon the gear, complexity of the network, security requirements, etc.
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in avg function using recursion

    What is the purpose of the 3rd parameter 'e'? Also, in your average() function, you don't return the results of the recursive call. IE, line 9 should be `return average(A, …
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in sprintf and pipes

    On the last line you are printing fromDB[1]. It should be fromDB[0] I would think.
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in Cores or frequencies?

    Even more important is the interconnect bus. That controls how fast and efficiently data moves between the CPU and RAM, secondary cache, etc.
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in Is there a RF Monitoring driver for Intel AC 7260?

    Doesn't wireshark or tcpdump provide the tools you need? Or do you need to see what is "in the air"?
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in Biggest bank in the US admits 83 million breach

    Apparently a bunch of other banks (last I saw was at least 9 total) have been hit as well. Some think this is a Russian attempt at retaliation for recent …
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in Hotel Wifi Network Issues

    Look at the Lynksys routers when this happens to see if they have exceeded their number of connections - they may not be relinquishing the connection in a timely manner. …
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in Crypto Algorithm

    256 bit AES is good for stuff only you are going to need to decode, otherwise you want to use at least a 1024 bit RSA algorithm such as PGP. …
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in Converting from LPARAM to std::String

    Show what you are doing. There are too many factors here to say without seeing your code.
  • Member Avatar for rubberman
    rubberman

    Replied To a Post in Need code in VC++

    Read the terms of use for this site. We DO NOT do your homework for you. That would be cheating... :-(

The End.