Recent content by ExtreamChaozZ

  1. ExtreamChaozZ

    Question 5Ghz Band Not Detected on PC

    @kanewolf The router uses DFS channels by default and there's no options to disable it unless you manually select a channel. By doing this i can see the 5Ghz band but cant connect to it. Giving me a message saying "Unable to find IP" or Saying "No Internet". I have tried multiple combinations...
  2. ExtreamChaozZ

    Question 5Ghz Band Not Detected on PC

    Hiya, I have recently just got a new Router, the Virgin Hub 6. Virgin sent me a new one as an upgrade from my old Hub 4 along with a data packaged of 500Mb/s download. Before the upgrade I could connect to the 5Ghz band no problem with my PC but not anymore, it only finds the 2.4Ghz band...
  3. ExtreamChaozZ

    [SOLVED] Microphone setup suggestions.

    I have found a decent enough mic for my needs. If anyone stumbles across this post with a similar question to mine then here are the details. I picked up the T20 Tonor XLR Condenser microphone kit. This included the boom arm, shock mount and a pop filter. It is all very entry level but serves...
  4. ExtreamChaozZ

    [SOLVED] Microphone setup suggestions.

    Hiya, I was hoping to get some help in regards to a microphone setup for general use such as gaming and discord. My old mod mic is on its last legs so I think its time for an upgrade. I use the Beyerdynamic DT990 Pro 250omh and I don't plan on changing them for a headset with a mic. I am also...
  5. ExtreamChaozZ

    [SOLVED] Atari 2600 Power Supply

    Hiya, I am looking at picking up a power supply for my dads old Atari 2600 so we can get it up and working. I have found out that i need a 100V - 240V ~ 50Hz 9W input and a DC 9V 500mA output. I have found similar plugs with the correct input but the output is rated for 1A not 500mA (0.5A)...
  6. ExtreamChaozZ

    [SOLVED] BIOS Boot Loop

    Hiya, Got quite the annoying issue and need some help solving it. My 1tb D Drive was getting full so i decided to buy a 4tb Drive and clone he 1tb drive to the 4tb drive. First i converted the 4tb drive to GPT so i can use more than 2tb of strorage and proceeded to clone the 1tb drive, after...
  7. ExtreamChaozZ

    [SOLVED] Python 3: String Formatting Issues.

    @Ralston18 Brilliant. The problem was the "binary_array" It was printing out invisible numbers. By adding [34:] at the end of that string i was able to remove them from the print. Heres the printed results for a before and after comparison: View: https://imgur.com/a/W25G1FZ Didn't even think...
  8. ExtreamChaozZ

    [SOLVED] Python 3: String Formatting Issues.

    @Ralston18 The entire section is suppossed to print as follows: Your Message in Binary: 0100100001100101011011000110110001101111 Your Message in Text: Hello By adding another "\n" doesn't help as all that does is push the print line down 1 line. All that needs happening is moving the "Hello"...
  9. ExtreamChaozZ

    [SOLVED] Question about build

    Corsair and Seasonic are both good brands in my books. Im a little biased towards Corsair as that is the psu i have, but i know people with other brands including Seasonic that have never had a problem. As long as its 80+ gold or more and not some dodgy looking gray box from an unknown brand...
  10. ExtreamChaozZ

    [SOLVED] Question about build

    A 750w should do the job just fine but the 2070 Super is rated for 650w so i might end up going with an 850w just so i have lots of extra power if i wanted to swap out the gpu or add other parts later. I would go with gold as a minimum on rating but if you have the extra cash then get another...
  11. ExtreamChaozZ

    Question Way behind the times, looking for upgrade help.

    I changed out the CPU to an AMD 5 2600X instead of the AMD 5 3600. It has the same amount of cores and clock speeds but is on an older architecture. This does mean that you will be limited on future compatibility with other devices but it does fit your budget. If you can afford the extra money...
  12. ExtreamChaozZ

    [SOLVED] Python 3: String Formatting Issues.

    @Ralston18 It shouldn't be "olleH". If you remove the "clear()" call and the the top elif function. Not sure how it reversed it for you. I just double checked the code and it prints out fine apart from the format issue i mentioned. I isolated the function and removed the "clear()" call. Does...
  13. ExtreamChaozZ

    Question Way behind the times, looking for upgrade help.

    I would defently stick with AMD for price to performance. AMD are going to be anouncing their new Zen 3 processors soon and probably put them up for the same price as the current line up, so i would wait till then at least before upgrading. But if you cant wait then heres some parts i would...
  14. ExtreamChaozZ

    [SOLVED] Two different RAM modules dual channeling?

    In all honesty it should be fine. As long as both ram sticks have the same CL timings you will be fine, having different sizes or speed shouldn't effect the performace that much. The system will just down clock one of your sticks to match the same speed as the other one if necessary. Having the...
  15. ExtreamChaozZ

    [SOLVED] Python 3: String Formatting Issues.

    Hiya, I have run into an issue where i can't format a string to be printed. The function is suppossed to convert Binary into Text which is does brilliantly but the printed out result is formatted all the way the right and not the left. I have tried resolving this by looking up how to format the...