Jump to content

msevilgenius

Member
  • Posts

    70
  • Joined

  • Last visited

Awards

This user doesn't have any awards

Contact Methods

  • Steam
    http://steamcommunity.com/id/msevilgenius/

Profile Information

  • Gender
    Not Telling
  • Location
    UK

Recent Profile Visitors

969 profile views
  1. Currently a 770, 3 years is a good interval to upgrade at.
  2. print(mul(var1, var2) <- there is a ')' missing
  3. This is what your code is doing ( the semicolons after the if expressions mean that they do nothing) cout << "I'm thinking of a number between 1-100\n"; cout << "Guess what it is: "; cin >> usersGuess; cin.ignore(1000, 10); while(true) { if( usersGuess == 7) { break; } // see if the guess is right if( usersGuess > 7 ){ // do nothing } cout << "That's too high.\n"; cout << "Guess what it is: "; cin >> usersGuess; cin.ignore(1000, 10); if( usersGuess < 7){ // do nothing } cout << "That's too low.\n"; cout << "Guess what it is: "; cin.ignore(1000, 10); } You should use braces like this: cout << "I'm thinking of a number between 1-100\n"; while(true) { cout << "Guess what it is: "; cin >> usersGuess; if( usersGuess > 7 ){ cout << "That's too high.\n"; }else if( usersGuess < 7){ cout << "That's too low.\n"; }else{ // usersGuess == 7 break; } }
  4. CPU: i7-4770K @ 4.2GHz GPU: GTX770 RAM: 16GB (2x8GB) 1600MHz Score: 2.2 It's not time for a GPU upgrade yet, waiting for at least 1000/400 series.
  5. what happens if you change 'int beatNeighbour[][1000]' to 'int **beatNeighbour'
  6. check this: https://stackoverflow.com/questions/851122/large-2d-array-gives-segmentation-fault
  7. I really like the squareness and stealthiness of the Autore.
  8. If you want to actually build a keyboard you'll probably find some info on geekhack https://geekhack.org/index.php?topic=73496 https://geekhack.org/index.php?topic=40501.0#post_GGGG https://geekhack.org/index.php?topic=47093.0
  9. Try this: http://www.askvg.com/tip-restoring-windows-photo-viewer-as-default-in-windows-10/
  10. Windows converts all wallpapers to fairly small jpgs possibly resulting in a noticeable loss of quality. To work around this you can convert your wallpaper to a high quality jpg (if it's not already), rename it "TranscodedWallpaper.jpg" and put it in "C:\Users\%USERNAME%\AppData\Roaming\Microsoft\Windows\Themes" This doesn't work if you have multiple wallpapers in a slideshow.
  11. You can't boot from that disk because it is just service pack 3 not the whole OS, i.e. you use it to update an existing XP installation to SP3. If you want an XP install disk you'll probably have to find a second hand one on ebay or something...
  12. Custom data attributes are part of the html standard: http://www.w3.org/TR/html5/dom.html#embedding-custom-non-visible-data-with-the-data-*-attributes they just need to start with data-
×