Jump to content

t4ils

Member
  • Posts

    160
  • Joined

  • Last visited

Reputation Activity

  1. Agree
    t4ils got a reaction from Fasauceome in Quest for the 7th gen intel mobo   
    eBay would be your best bet. Z270 and Z170 (if updated to the latest BIOS version, might wanna ask the seller about that) motherboards would work.
  2. Like
    t4ils got a reaction from Electronics Wizardy in Quest for the 7th gen intel mobo   
    eBay would be your best bet. Z270 and Z170 (if updated to the latest BIOS version, might wanna ask the seller about that) motherboards would work.
  3. Agree
    t4ils got a reaction from wall03 in Recommend upgarde for my PC   
    Everything.
  4. Funny
    t4ils got a reaction from Teddy07 in Recommend upgarde for my PC   
    Everything.
  5. Like
    t4ils got a reaction from AzzaNezz in Recommend upgarde for my PC   
    Everything.
  6. Agree
    t4ils got a reaction from PeachGr in Recommend upgarde for my PC   
    Everything.
  7. Agree
    t4ils got a reaction from vorticalbox in Javascript Help - University student   
    Stuff like this is where Javascript gets kinda weird.
     
    Basically, when you have
    return UserLists; it's actually returning to the function defined in 
    xhr.onload instead of
    GetUser JavaScript is also an asynchronous language, so you can't necessarily just print the output of a GET request like you would in other languages, such as Python (learn more here: https://www.freecodecamp.org/news/javascript-callback-functions-what-are-callbacks-in-js-and-how-to-use-them/). 
     
    There are two ways to solve this: callbacks and promises
    Callback:
    function GetUser(UserID, cb) { var xhr = new XMLHttpRequest(); xhr.open("GET", "https://reqres.in/api/users/2" , true); xhr.onload = function () { if (xhr.readyState === 4 && xhr.status >= 200 && xhr.status < 300) { alert(xhr.responseText); var UserLists = JSON.parse(xhr.responseText); cb(UserLists); } else { alert("Error " + xhr.status); } }; xhr.send(); } and then:
    GetUser(ID, (UserLists) => { console.log(UserLists); });  
    Promise:
    function GetUser(UserID) { return new Promise((resolve, reject) => { var xhr = new XMLHttpRequest(); xhr.open("GET", "https://reqres.in/api/users/2" , true); xhr.onload = function () { if (xhr.readyState === 4 && xhr.status >= 200 && xhr.status < 300) { alert(xhr.responseText); var UserLists = JSON.parse(xhr.responseText); resolve(UserLists); } else { alert("Error " + xhr.status); reject(xhr.status); } }; xhr.send(); }); } and then:
    GetUsers(ID).then((UserLists) => { console.log(UserLists); }); or (probably the most preferred way, but requires the function to be marked as async):
    async function main() { var UserData = await GetUser(ID); console.log(UserData); }  
  8. Like
    t4ils got a reaction from HENRIKSSM in Is my PC bottlenecking or is it something else? Please help!   
    Are you using the 6700k's integrated GPU?
  9. Agree
    t4ils got a reaction from LIGISTX in Is there a difference ? Between These 2 Memory   
    The G-Skill RAM has faster timings (16-19-19-39) than the T-Force RAM (18-22-22-42). RAM timings are pretty important for Ryzen CPUs, so the G-Skill one would be better for your case.
  10. Informative
    t4ils reacted to Jurrunio in Motherboard VRM Tier List v2 (currently AMD only)   
    Credit to: @LukeSavenije
     
    The following list is based on facts, ranked on power delivery and known problems. The list will include boards that support CPU overclocking available at retail from different brands.
     
    There are still differences in performance among boards of the same tier. As a result, those that barely made it into that tier will be in orange while those that are better than others in the same tier are in blue. Unless specified, boards sharing the same name and chipset in different form factors are ranked the same.
     
    For advanced users: https://docs.google.com/spreadsheets/d/1Smj5dh97n32wJqm5dkdDcQt8ID7vH52-lKzaaXUUQx8/edit?usp=sharing
     
    AMD
     
    All current draw figures are based on Prime95 small FFT with AVX unless otherwise specified, in other words the worst case scenario.
     
    Only often recommended sku of CPUs in the same generation and core/thread count configuration is named, others share the same rating.
     
    Zen scales down frequency and voltage according to EDC (current limit) and TDC (thermal limit) settings of the motherboard so in theory you won’t cook the VRM of any board at stock, you just lose frequency.
     
    For tier A and above, due to lack of feasible CPUs that allow testing of the boards at higher current ratings, there are some level on guessing in terms of how much more power the VRM can take.
     
    AM4 (Athlon, Ryzen 3, Ryzen 5, Ryzen 7, Ryzen 9)
     
    B550 and X570S Speculation: If you cant find the board above, then it should be here. If it's already up there, then ignore what it's placed here
     
    TR4 (Ryzen Threadripper 1xxx and 2xxx) X399
     
    sTRX4 (Ryzen Threadripper 3xxx) TRX40 (largely guessing since there's little data)
     
    Sources:
     
    Legacy list thread: Those looking to dive into Intel's outdated process node and recycled (for many times) architecture please refer to the old list
     
  11. Agree
    t4ils reacted to Aimi in UPGRADE   
    Doesn't look like you'd have issues. At worst you'd probably be running at 1333 MHz instead of 1600 MHz (which isn't much of a difference)
  12. Like
    t4ils got a reaction from IBM_THINKPAD_R51 in screen capturing lowers FPS a lot   
    It looks like you're recording at 300FPS instead of 60FPS. Try lowering that under Video Capture Settings.
     
    If that doesn't work, I'd doubt Fraps will work that well on your PC. You could try recording with OBS and use NVENC. OBS gives you quite a bit more options compared to Fraps.
  13. Agree
    t4ils reacted to Froody129 in Can anyone translate this?   
    I feel as if random things appearing on your desktop is cause for alarm 
  14. Agree
    t4ils got a reaction from Hewie in Freesync on an Nvidia Build   
    If it supports FreeSync, it'll work.
  15. Like
    t4ils got a reaction from PlayStation 2 in What Makes People Think Mac OSX is Better Than Windows 10   
    More optimized towards Apple's hardware, Mac-exclusive apps/features, ability to develop on every platform (Windows, macOS, Linux, Android, and iOS), or simply used to using macOS.
  16. Informative
    t4ils reacted to tuhdo in [Video] Stock AMD THREADRIPPER 2990wx(32c/64t) VS 2 Dual Xeon Platinum P8136 (56c/112t) x15 speed - Test Render   
    It's not really a scammed CPU. It is in fact a Xeon Platinum CPU final release before the retail version: https://www.kitguru.net/components/cpu/paul-taylor/alleged-skylake-ep-on-sale-at-ebay/
  17. Funny
    t4ils reacted to givingtnt in Ten different ways to stop, block, or disable Windows Update in Windows 10 (Updated Sept 2018)   
    New method : 
    Fill your C: drive with junk,
    windows can't download updates without space for them.
  18. Funny
    t4ils reacted to aezakmi in Intelllllll   
    thread: *exists*
    mod: -Thread Locked-
  19. Funny
    t4ils reacted to dcgreen2k in Intelllllll   
    This sure is a nice status update
  20. Agree
    t4ils got a reaction from DimasRMDO in Linux users! Why Linux?   
    1. Package management. Updating literally everything on my computer at once is pretty nice.
    2. (Specific for certain distros like Arch Linux) Installing only what I need.
    3. Lower resource usage from background tasks/processes.
    4. More stable FPS on Valve games (from my experience).
    5. More customization than Windows.
  21. Agree
    t4ils got a reaction from DimasRMDO in Is 120gb enough for windows 10 home   
    Yes. You could also install a few programs on it as well, but you should definitely have an HDD alongside it.
  22. Agree
    t4ils got a reaction from wONKEyeYEs in Is 120gb enough for windows 10 home   
    Yes. You could also install a few programs on it as well, but you should definitely have an HDD alongside it.
  23. Agree
    t4ils got a reaction from Ryujin2003 in I need help!   
    Is the cable plugged into the motherboard or the GPU?
  24. Agree
    t4ils reacted to dizmo in I got 200 usd for storage, how should I handle it?   
    1TB SSD.
  25. Agree
    t4ils got a reaction from ReekyMarko in Linux users! Why Linux?   
    1. Package management. Updating literally everything on my computer at once is pretty nice.
    2. (Specific for certain distros like Arch Linux) Installing only what I need.
    3. Lower resource usage from background tasks/processes.
    4. More stable FPS on Valve games (from my experience).
    5. More customization than Windows.
×