Jump to content

R4STABAN

Member
  • Posts

    1,511
  • Joined

  • Last visited

Everything posted by R4STABAN

  1. @Dragenom Memory testing software. Run the tests and see if anything fails https://www.memtest86.com/download.htm
  2. Try very lightly loosening the fastenings holding the cpu cooler down.(A fifth of a full turn or so).
  3. Have you connected the PCI-E 8 pin power cable to the Quadro?
  4. Remove 1 stick of ram and boot to Memtest86 on a usb stick, test it, then repeat for the second stick
  5. If you've got a tiny case then you should consider that 2 loops will also require 2 pumps and 2 reservoirs. Or just 2 pumps at the very least.
  6. What case are you using and what are your fans set up like?
  7. Contact the coolant manufacturer to check.
  8. Don't buy the Trident Z RGB. The lighting software is terrible, conflicts with everything. You need to perform a special voodoo dance to get the led lighting to work. Mine are now permanently dead, probably corrupted SPD. They'll go for RMA if possible then I'll shove them on the bay.
  9. I won't be o/cing the Lightnings, as the weaker one has nothing in the tank and I suspect is not long for this world. I noticed while replacing the air coolers that one of the caps on the card has leaked some of it's precious innards. 1 month out of warranty they both are.. let sigh.
  10. Been out of the game for a while, can I just check: CPU: swapped my 2700k out, now using 3770T. GPUs: 680 Lightning x 2 (stock) My AX1200i just exploded (I bought the 1200i because the lower wattage models didn't exist yet), and if Corsair don't replace it fast enough I am boned for the start of my postgrad degree in a couple weeks time. I'm thinking 750w would be plenty, overkill at idle due to 3770T?
  11. I definitely need an amp - looking for an amp/dac combo atm.
  12. All issues resolved by taking the piece of shit asus product out of my PC and chucking it in the junk box.
  13. Issue 1: Audio popping and dropping in VLC player. -OR- no audio at all in VLC player - MP4 or MKV files Issue 2: Audio in Borderlands 2 / TPS cutscenes quickly becoming out-of-sync with video AND audio popping when characters talk (Neither present outside cutscenes) Issue 3: Audio popping and dropping on YT uploads of shadowplay recordings of BL TPS (See below) - This popping is not present in windows media player (no audio at all in VLC, quicktime player etc). Popping also wasn't present in-game. Drivers are up to date (and firmware) Questions: -I can't find anything on the net about this in any detail, anyone else experienced it? -What's a good external alternative to a bloody soundcard? Budget around £120-£150. Headphones = Senn HD650s. Thanks EDIT: Audio used to be fine in VLC player a few months back, before I had to reinstall windows. Not sure if newer driver or newer VLC broke it. Fail.
  14. Is OS/software distribution via AD common? We use SCCM for that instead.
  15. Great move facebook - now supply governments with a list of all these paedos, druggies and commies using TOR. I'd like them all on a list so that I can submit a freedom of information request and find out if any of them are living nearby.
  16. test a single card in the x8 slot with nothing in the x16 to verify your evga board isn't a dud
  17. Their support is the only thing they have going for them in my book. Their product portfolio does not impress me.
  18. Yes, you still get tearing at 120Hz without vsync
  19. The G502 feels lovely in the hand. It feels like a more tapered version of the old Logitech g5 or Razer Imperator - both mouses I loved.
  20. If you're bottoming out the keys you can use o-rings to eliminate the clack but the pointless clicking is there to stay.
  21. I want to use the keyboard for more than a week so I'd go Corsair over Razer. As for Logitech's smart phone dock: more pointless rubbish that will not be used, like the screen on my G19.
  22. G502 + G440 K70 RGB Brown (Still waiting for this..) HD650s with ModMic
  23. import java.lang.Math;import java.util.Scanner;public class AllenDengHW3C{ public static void main(String[] args) {////////////Are these your statements or are they given in the assignment? It would be better to store the product name and price in appropriate data structures for re-use later when you make the receipt. (Then use those to output these statements). System.out.println("There is the menu and the price of the items."); System.out.println("1: Hot Dog and Drink Combo. $3.99!"); System.out.println("2: Hamburger and Drink Combo. $4.99!"); System.out.println("3: Pizza and Drink Combo. $5.99!"); System.out.println("4 to exit"); String prices; //////////////////Unused variable. What's it for? Scanner keyboard; keyboard = new Scanner(System.in); System.out.println("Give me orders!~"); int choice = keyboard.nextInt(); ///while loop should start here if( choice == 1) ///Are you supposed to be printing their choice each time, or after the user has pressed 4? System.out.println("You ordered a Hot Dog and a Drink Combo. Your total is $3.99!"); ///Total does not take into account purchasing more than item //////There should be some logic here to calculate the total order price and record the items ordered (call a method) else if( choice == 2) System.out.println("You ordered a Hamburger and Drink Combo. Your total is $4.99!"); //////There should be some logic here to calculate the total order price and record the items ordered (call a method) else if( choice == 3) System.out.println("You ordered a Pizza and Drink Combo. Your total is $5.99!");//////There should be some logic here to calculate the total order price and record the items ordered (call a method) else System.out.println("Invalid choice. Error. Please choose 1, 2, or 3!"); }} Hard to say what to do without making it too easy, plus we don't know which bits of the code (if any) have been given to you. I'm assuming you are not supposed to be printing to System.out until the user presses 4 (unless they press something other than 1,2,3 or 4. That way you will have a meaningful 'Receipt'. Apologies for my messy comments, I cba.
×