Jump to content

yuh25

Member
  • Posts

    407
  • Joined

  • Last visited

Everything posted by yuh25

  1. Not sure if it applies to other boards but for my skr mini e3 I had to rename it "FIRMWARE.BIN" before it would flash from the SD card.
  2. You should be able to with mini displayport and an adapter to displayport. I got one that did 144hz through displayport and DVI-D, both worked fine.
  3. The ones I've been looking at that are similar are the Metalfish S3 and K39 on aliexpress. Only thing stopping me is the PSU
  4. Not sure if its the same issue, but my 144hz monitor does the same thing and I just needed to disconnect the displayport cable for a few mins
  5. Tried changing the privacy settings for your mic? Search in the start menu microphone privacy settings and set "Allow apps to access your microphone" to on
  6. If that's the latest Windows update, check the privacy settings > microphone and make sure this is set to On. I sat in a discord call for way to long trying everything, just to find out there was a new setting blocking my mic.
  7. Chrome has it under developer tools > Customize and control DevTools (3 dots) > More tools > Network conditions. Other option is Netbalancer or Netlimiter
  8. Not sure if they've changed it but when I overclocked mine a while ago I had to set it in the display adapter properties to keep it overclocked.
  9. Try using WinDirStat or TreeSize as admin. Might just be the hibernation/page/swap/indexing file.
  10. Try looking at chromes task manager with Shift+Tab+Esc and see whats using it all, could just be an extension using most of it.
  11. Took me a while but it looks like it will only check the size of the last number for every number, so if you have 22, 22, 22, 22, 232 it will call threeDigitChk for all of them, which will output "Not Palindrome" for every one except the last. Maybe remove the for loop out of each of the functions and move the switch statement into the other for loop? for (int j = 0; j<SIZE; j++) { counter = 0; int num = array[j]; while (num>0) { num /= 10; ++counter; } switch (counter) { case 2: twoDigitChk(array[j], SIZE); break; case 3: threeDigitChk(array[j], SIZE); break; case 4: fourDigitChk(array[j], SIZE); break; case 5: fiveDigitChk(array[j], SIZE); } }
  12. This is what I ended up with, but its in Java because that's all have easy access to rn. Not really sure how you wanted them mixed either. String myString = ""; String a = "#$%$*&*(%$#&%$^&*()&(^^"; String b = "abcdefgh"; // probably need to swap depending on which is larger. int bCounter = 0; for( int i = 0; i < a.length(); i++){ double randNum = Math.random(); // something that just outputs random 0 - 1 if(randNum <= 0.6 && bCounter<b.length()){ myString += b.charAt(bCounter); bCounter++; } myString += a.charAt(i); } //myString = "a#b$%c$d*&e*(%f$g#h&%$^&*()&(^^"
  13. I don't python at all but something like this might work. I'm assuming the strings are the same length. String myString = ""; for( int i = 0; i < a.length; i++){ int randNum = rand(); // something that just outputs random 0 - 1 if(randNum <= 0.4){ myString += a[i]; } else{ myString += b[i]; } }
  14. Try setting the network connection to metered, it usually stops downloading updates for me. I have no idea how long that will prevent updates because I only do that for PC's I only use for a few hours.
  15. Maybe the pump on the AIO? Doesn't really sound like any coil whine I've heard.
  16. AFAIK those are just suggestions/icon and once you click them they install? First thing I do is remove them and they never come back. But I use Win10 Education and I've never had any of the issues everyone keeps posting about in every news thing about Windows 10 so I could just have no idea about the pro version stuff.
  17. Sounds good, I tried updating my laptop to FCU overnight and it went to sleep 30 minutes later even though it was plugged in and I had to start the whole thing again. I mostly use my desktop and only use my laptop for travelling so I'd prefer getting it up to date ASAP when I do use it.
  18. Try contacting Asus about it. Could also be something wrong with the cables but if both the ones you used are dual link DVI-D then the only things I can think of that would be the problem is the panel or a bad firmware. but again, I'm not an expert and I really just guessing.
  19. That photo looks exactly like what happens when I put my VG248QE higher that 144hz Check if its going over 144hz for some reason otherwise it might be a bad panel, I'm not an expert on monitors though.
  20. For osu to run 144hz you don't really need much, an iGPU might even be enough if it supports 144hz. With my 1070 its getting 3000fps in osu so a 1050 would work fine or a 1060 for anything more than just osu like CSGO or overwatch.
  21. http://www.pcgamer.com/pubg-exec-clarifies-objection-to-fortnite-battle-royale-its-not-about-the-idea-itself-its-about-epic-games/
  22. There has to be at least one mod that exists based off Battle Royale or Hunger Games movies but ARMA/DayZ Battle Royale Mod was apparently created by PU and he helped out with H1Z1 somehow, probably as creative director. Ridiculous that Chang Han Kim would think that Battle Royale is now their genre and no one else can use it because PU decided to go with them to develop PUBG.
  23. Just noticed the more than 5 thing but I tried it out few nights ago with a group of 8 or so people with only 3 people max were using a cam. It worked fine but occasionally I would notice random people that weren't using cam not talking, turns out they were talking the whole time and the something to do with discord was broken.
  24. Wouldn't know sorry, haven't done all this is for a few months now and I've never used jQuery
  25. Not the best with Front end stuff and I probably didn't read your question properly so it might not be 100% but: <div onclick='hideDiv' id="emailpopup"></div> hideDiv(){ var temp = document.getElementById('EmailQuickAccess'); temp.style.visibility = hidden; }
×