Jump to content

WoodyWoo

Member
  • Posts

    109
  • Joined

  • Last visited

Awards

This user doesn't have any awards

About WoodyWoo

  • Birthday Jul 19, 2001

Profile Information

  • Gender
    Male
  • Location
    Australia

System

  • CPU
    Ryzen 7 3700x
  • Motherboard
    ASUS ROG Strix X570-E
  • RAM
    16gb Corsair LPX 3200mhz CMK16GX4M2B3200C16
  • GPU
    Msi Ventus v2 2080
  • Case
    NZXT 410 Phantom
  • Storage
    3x 1tb Western digital blue and a Samsung 950 pro 512Gb
  • PSU
    Coolermaster V750
  • Display(s)
    Soniq tv
  • Cooling
    Wraith MAX RGB
  • Keyboard
    G915 Lightspeed
  • Mouse
    G502 Lightspeed

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

  1. 50/20Mbps Fixed Wireless NBN Yes the ISP is in bridge mode
  2. Yes 2 routers, Sorry, As for the Models the main one give to us by the provider is TP-link archer vr1600v, and the 2nd is a Phicomm KE 2P
  3. So I'm looking for any ideas on how to make my internet better because rn it's unusable and is pissing me off, I have a stock modem and a 2nd one 17 feet from the first one, with my pc about another 10 feet away from the 2nd modem. I'm using wifi 6 on my Mobo and I'm still only getting 900Kb/s. My home is made entirely out of steel so I have a feeling that the terrible speeds are coming from interference with the house. Any ideas?
  4. it is on just a black screen. i can make it take screenshots the only real data I want is from my game, i just dont know how to access the data transfer if i cant see it
  5. So I broke my s7 LCD and I now have another s7 but to transfer my data i need both phones to be working, Is there a way to get around this? please help I have some game data that I really would like to keep
  6. Yep i found out all my mates had the problem too, they couldn't contact me because discord wasnt working. Atleast its fixed now
  7. no its just every time i close it and let it run in the background, if i try to pull it up again it doesnt appear on my screen at all
  8. dont care, I love it, I dont care if it doesnt increase performance, Its the one thing ive always had consistent until the RTX cards and im not letting go.
  9. Im not selling, honestly, Im buying another 2080ti once the new cards come out. I payed for my 2080ti new and ive seen some EVGA 2080ti FTW3 Ultra OC down to $700, Im waiting for them to drop more then I have 2 of them in SLI
  10. So After i did a discord update everytime I closed it down It wouldnt load back up again. so I uninstalled it and now I get this error and this text file. I have zero clue what to do SquirrelSetup.log
  11. I got a Fractal Design Define C case with an acrylic side pannel for free. The cases side pannel is scratched to hell, I know that the Define C now come with TG side pannels, I just want to know if one will fit on the older case. It doesnt look like it will fit and I wanted to know if anyone has tries this. Also does anyone know the size of the mobo standoffs? When i was given the case it only had 6 of them so Im going to need more.
  12. #include <iostream> #include <cstdlib> #include <time.h> #include <math.h> #include <errno.h> using namespace std; const double MAXRANGE = pow(2.0, 16.0); // 65536 const double MINRANGE = -pow(2.0, 16.0); bool validDouble(const char* argument) { return atof(argument); } int main(int argc, char* argv[]) { char z; bool isARealDouble = true; if (argc == 3) { z = 0; } else if (argc == 4) { z = argv[3][0]; } else if (argc < 3) { cout << "P" << endl; return 0; } else if (argc > 4) { cout << "P" << endl; return 0; } if ((z == 'a') || (z == 's') || (z == 'm') || (z == 'd') || (z == 'p') || (z == 0)) { if (z == 0) { float h; float x = atof(argv[1]); float y = atof(argv[2]); if (x <= MINRANGE) { cout << "R" << endl; return 0; } else if (x >= MAXRANGE) { cout << "R" << endl; return 0; } if (y <= MINRANGE) { cout << "R" << endl; return 0; } else if (y >= MAXRANGE) { cout << "R" << endl; return 0; } for (int i = 1; i < argc; i++) { isARealDouble = true; for (int j = 0; j < strlen(argv[i]); j++) { cout << argv[i][j] << " "; if (isdigit(argv[i][j]) || argv[i][j] == '.') { isARealDouble = true; int w = 0 if (argv[i][j] == '.') { w =+ 1; if (w > 1) { cout << "X" << endl; return 0; } } } else { isARealDouble = false; cout << "X" << endl; return 0; } } } if (isARealDouble) { h = x + y; cout << h << endl; return 0; } } } return 0; } I added a counter but it isnt working it resets w back to zero, I dont know how to keep the value.
  13. so I was able to get my code to detect characters and not allow them, but now I need it to detect multiple .'s if that makes sense, such as allow 1.23 but not 1.2.3, Please I need help as this is due in 3 hours and even my professors are too busy with other shit to help a student. #include <iostream> #include <cstdlib> #include <time.h> #include <math.h> #include <errno.h> using namespace std; const double MAXRANGE = pow(2.0, 16.0); // 65536 const double MINRANGE = -pow(2.0, 16.0); bool validDouble(const char* argument) { return atof(argument); } int main(int argc, char* argv[]) { char z; bool isARealDouble = true; if (argc == 3) { z = 0; } else if (argc == 4) { z = argv[3][0]; } else if (argc < 3) { cout << "P" << endl; return 0; } else if (argc > 4) { cout << "P" << endl; return 0; } if ((z == 'a') || (z == 's') || (z == 'm') || (z == 'd') || (z == 'p') || (z == 0)) { if (z == 0) { float h; float x = atof(argv[1]); float y = atof(argv[2]); if (x <= MINRANGE) { cout << "R" << endl; return 0; } else if (x >= MAXRANGE) { cout << "R" << endl; return 0; } if (y <= MINRANGE) { cout << "R" << endl; return 0; } else if (y >= MAXRANGE) { cout << "R" << endl; return 0; } for (int i = 1; i < argc; i++) { isARealDouble = true; for (int j = 0; j < strlen(argv[i]); j++) { cout << argv[i][j] << " "; if (isdigit(argv[i][j]) || argv[i][j] == '.') { isARealDouble = true; } else { isARealDouble = false; cout << "X" << endl; return 0; } } } if (isARealDouble) { h = x + y; cout << h << endl; return 0; } } } return 0; } Ignore the if((z == 'a') || (z == 's') ... ect) stuff i left out some code that isnt important.
×