Some users have recently had their accounts hijacked. It seems that the now defunct EVGA forums might have compromised your password there and seems many are using the same PW here. We would suggest you UPDATE YOUR PASSWORD and TURN ON 2FA for your account here to further secure it. None of the compromised accounts had 2FA turned on.
Once you have enabled 2FA, your account will be updated soon to show a badge, letting other members know that you use 2FA to protect your account. This should be beneficial for everyone that uses FSFT.
Sort of, in windows a "Socket" is a handle, where on linux/unix platforms it is an int. Additionally on windows to start using winsock you have to call WSAStartup and to shutdown WSACleanup().
There are socket classes out there that will do this for you but the sloppy/lazy way I fist did this...
Having the command line you executed would be nice, but I am going to go out on a limb and guess you did something like:
make lab9
or:
g++ lab9.C -o lab9
How does the linker know to get the infomation out of Triangle.C?
Hopefully that will get you to your next set of really...
There are many ways in which a process becomes zombified, and probably several in which a kill -9 will not tear them down. How and why I cant really say but I have had processes turn zombie from an SSH session, then when I disconnected the session not be able to kill it. maybe because the...
When would you choose it? I dont know, but two of the most common uses for forking is to detach a process from a terminal (like in creating a daemon) and second, if you application spawns a process of a different type. fork -> child becomes a different program.
The reason for this is because...
Its bad form to assume someone is using a debian/ubuntu system. apt is not installed by default on all Linux systems. When making recommendations like this you should just suggest the application that they should install.
That said, Visual Studio for Windows, and I personally prefer vim and...
I see people posting for the Eurocom/sager which is just a rebranded Clevo, one of the cheapest sites for these is http://www.rjtech.com
You can build a Clevo 901C for about 4180 with a 17" Glass LCD, SLI 8800 GTX, 4 Gigs of ram, Windows Vista 64 ultimate, Office pro, a/g/n wireless and...
LIES I think if people are beginners they should use gentoo/slackware something that forces them to learn.
Also, depending on the filesystem of your linux partition, you might be able to mount it in windows. Did you make the linux partition ext2/ext3? if so ext2ifs is a windows driver that...
These are based of personal experience.
Easy for new people:
-----------------------------
Ubuntu
Red Hat/Fedora
CentOS
I did enjoy Ubuntu when I used it, I use both red hat and Cent OS quite frequently
Harder distros:
--------------------
Slackware
Gentoo (the second one you...
Microsoft isnt going to make their boot loader recognize another OS...
The best way to dual boot is to install Vista/Windows first then install linux. The installation will usually configure the boot loader for both OS'es and if not its a lot easier to modif grub/lilo then modifying the windows...
If I remember correctly you have to define inline member functions at the class declaration.
so you cannot have getVal declared in example.h and defined in example.cpp.
I am sure someone can correct me if I am wrong.
example.h
#pragma once
class example
{
public:
example()...
I dont know a lot about C# but why do it this way, are you not able to access the member variables of BaseFee? would it not be easier to just copy the objects directly since you are in a copy constructor?
var = BaseFee.var;