Jump to content

Cruiseshipfan

Member
  • Posts

    134
  • Joined

  • Last visited

Everything posted by Cruiseshipfan

  1. Try removing all the power cable and plugging them back in (without having them being hidden behind the motherboard tray). Also make sure to remove all cable extensions which could be causing a fault. I just had some major issue due to a faulty extension (although it wasn't a new build).
  2. Ok so at least one issue has been solved. I can now start the computer. Turns out an extension cable for the cpu power cable was faulty (it was no longer needed since the case has been replaced (although over a year ago now) so I could easily take it out. Hopefully thathe fixes the freezing as well. Testing it out now so fingers crossed.
  3. Ok now I cannot even get it to post. With either GPU and no matter how many times it is turned off and on. I have completely removed all drives and still nothing.
  4. I just gave this a shot (switched another 7970 in) and the same issue occurred. Last night I tested my card to at least locate the issues location and it started up. So I put the original one back in there and it too started up, this is how I discover the way to get it to start back up. Anyway when I did a big test wih my GPU it once again froze then when I pressed the restart button it again got stuck in the lihts and fans on but no display state. Even the power and restart button fail to operate. The only way to to cut power.
  5. Ok so I updated my girlfriends comouter to windows 10 and now it is freezing. There doesn't seem to be anything tied to the freezing as it can happen at any time. We have tried updating the graphics driver (AMD 7970) though it was crashing right at the end of the install and when attempting to install again it would say driver is already installed. Now the issue is worse as when we press the restart button it will not post, the fans and lights are on but the graphics card does not seem to start up (no fans and no indication on the screens). The only way to get it to boot is the turn the power off and wait for the capacitors to drain.
  6. I really want to check out that mouse. Looks so comfortable.
  7. As has been said several times, the google search bar allows you to get search for apps. Just add it to the home screen.
  8. You would get an input until the user inputs a correct input. //Print instructionwhile(/*Not y or n*/){ //Get char input} To get it to enter new value you would put the whole program in a loop that loops while the input is not 'y'. NOTE: Make sure when you are checking the input that you are doing so correctly. If you are inputting a string you will need to do a string compare, as the C comparison operators do not work on strings, since they are actually pointers and you will be comparing the addresses rather then the strings.
  9. Ok I know your issue. do{ cout << "\nWhat is the cost of the book? $"; cin >> Cost; }while(Cost<0); cout <<"Invalid entry must be greater than 0. "; You are looping while the value is correct. You should have it loop while it is incorrect and have the error statement in an if. So when ever the input value is correct you are causing it to go back to the top of the loop, but when you input the incorrect value it is leaving the loop. So reverse the conditions and add an if. As for it starting on the same line. You need to tell it to go to the next line in the error message. For example do{ //GET INFORMATION if (cost < 2) { cout << "Value is too small\n"; }} while(cost < 2)
  10. Ah thank you. Those links are very helpful. Hopefully everything goes to plan.
  11. I have a project where I need to send data from a raspberry pi to a PC so I can use unity to display a HUD on the oculus rift though unity. I have written the server code on the Pi using C and successfully sending the data to the PC. However I am not familiar with C# and don't know what library's exist to receive sockets. So I was wondering if someone could help me out a little. Below is the code I have for the client, I just need to figure out how I can write that in C#. #include <stdio.h>#include <string.h>#include <sys/types.h>#include <sys/socket.h>#include <netinet/in.h>#include <arpa/inet.h>#include <netdb.h>#define SERVERIP "10.222.165.255" //IP address of the server.#define PORT 53123 //Port used for connection.int main () { short sensors[8]; //data[0] contains the received position value. int dataSocket, //The socket to receive value. i; sa.sin_family = AF_INET; //Port value to use. sa.sin_port = htons(PORT); //IP address of the server. sa.sin_addr.s_addr = inet_addr(SERVERIP); memset(sa.sin_zero, '\0', sizeof(sa.sin_zero)); //Set up socket. dataSocket = socket(PF_INET, SOCK_STREAM, 0); if (dataSocket == -1) { printf("Could not create socket!\n"); } //Locate and connect to server. printf("Connecting to server. Please wait.\n"); while (connect(dataSocket, (struct sockaddr*)&sa, sizeof(sa)) == -1) { } printf("Successfully connected to server.\n"); while(1) { recv(dataSocket, sensors, sizeof(short)*8, 0); // DO STUFF WITH DATA. } return 0;}
  12. Looks like my H60 dyed. Replaced with stock cooler and running fine at the moment.
  13. Are you referring to resetting the CMOS? If so I have tried that but it is still happening.
  14. So today I was using my desktop for around 20 minutes when I suddenly got a blue screen and the computer went to restart. However after it turned off it did not turn back on. Whenever I pressed the power button it would spin for around 3-5 seconds then stop booting. After several attempts in finally boots, but only lasts a few minutes before the blue screen reappears and the whole process repeats. EDIT: It should also be noted that just before the blue screen occurs the whole computer slows right down so nothing loads. But before those final moments the computer runs smoothly. It would be nice to know if either my CPU or Motherboard is dying as the warranty ends very very soon.
  15. http://www.scientificamerican.com/article/what-australia-can-teach-the-world-about-surviving-drought/ Australia has until recently been in a drought which has affected the majority of our population for over a decade. The main two solutions we developed were pipelines and strong laws controling the use of water (which are only starting to be lifted now in some areas). We did have a bunch of plans to build desalination plants but by the time there were ready the were no longer needed. As the above article points out a $6 Billion desalination plant was built in Melbourne and has never been used. We had many more plants planned, and some even had ground work started, but they were canceled.
  16. Has anyone else had your computer crash then when it restarts the rear USBs stop working? It happened within hours of updating to 10041.
  17. Stupid post achieves stupid results. There is no issue with their mobile, just because you prefer something else doesn't mean others don't. Also its not even a Samsung issue.
  18. I am currently using CM 11 on my galaxy s3 and for some reason my phone will not receive any calls. I can make and receive txt, as well as being able to make calls. When I get called the network acts the same as if I had not reception. I have tried everything I can think of and I really do not want to wipe my phone again, as I do not have the time or the bandwidth to get it set up again.
  19. Sorry. std::ostream& operator << (std::ostream& out, const queue& queue){ node* current = queue.data->get_head(); while (current != NULL) { out << current->get_data() << " "; //Prints current position then leaves a gap. current = current->get_next(); } //Ending the row with a #. out << "#"; return out;}
  20. I am in need of some assistance. I am doing my first course on C++ and the course assumes that we did a previous course, which my uni degree does not include. So lectures kinda skip a lot of stuff. Anyway I am trying to overload the << operator for cout. This is to print a queue class which we needed to create. I think I have it all done but I am getting this error message from cygwin. g++ main.o node.o linkedlist.o queue.o -o ConnectFour queue.o:queue.cpp:(.text+0x151): undefined reference to `banks_assignment1::operator<<(std::ostream&, banks_assignment1::node&)' queue.o:queue.cpp:(.text+0x151): relocation truncated to fit: R_X86_64_PC32 against undefined symbol `banks_assignment1::operator<<(std::ostream&, banks_assignment1::node&)' collect2: error: ld returned 1 exit status makefile:11: recipe for target 'ConnectFour' failed make: *** [ConnectFour] Error 1
  21. The PS4 is not sold at a loss. Unlike other consoles which usually have. They learnt their lesson from the PS3 not making profit from hardware until the late years.
  22. C was the very first language I learnt which was through university. I learnt C for about 8-10 weeks then we moved to matlab for 3-4 weeks, that was the first course. Then next course (we worked directly with a microprocessor so no OS) we did 4 weeks of assembly then went back to C although we didn't actually get taught anything new except how to use it with hardware and reading a mp datasheet. Now I have to spend 13 weeks on C++. Starting on C didn't seem all that difficult to me although I haven't really done much else.
  23. Except knowing Abbott this wont be used to do that he will do it to attack piracy. But the way he wants to do it is by blocking or punishing all those who use services that are linked to piracy or even just file-sharing.
  24. Pretty much everything on there is new as it started happening not that long after reverted back to the official rom. Although I am not sure if it has been happening since I installed the ROM or happened after as I didn't play any media on it for a few weeks.
  25. So are there any solutions that have something to do with the S3.
×