Jump to content

Lolcrokn

Member
  • Posts

    513
  • Joined

  • Last visited

Everything posted by Lolcrokn

  1. Im from Croatia so Europe, I bought this one for 74€ after shipping, willing to pay up to 100€ I just want it to work. The ones you posted seem to fit the criteria, thanks.
  2. Recently I bought Crucial P3 1TB SSD and tried to install it into both m.2 slots, both don't seem to recognize it. BIOS, disk management nothing... I found some posts on forum where some people have said these 2 might be incompatible which I find really strange. Example: I tried BIOS update, disconnecting other storage and nothing seems to work. My current plan is to either buy this adapter: https://www.amazon.ca/UGREEN-Adapter-Support-Include-Screwdriver/dp/B07YFW5HBN/ref=sr_1_4?crid=13W55F5GRRXYT&dib=eyJ2IjoiMSJ9.YXQsJGJe3wvV3t786Ns0RlrUaI9lMD9mHQA0jvpNJNyH-X3b_qkbRQ_iWLDQfcs3eO0TvhTi9Wk17iCtooVvneJ5-eimNurmzBgH020ZvRTE_nND62L2XJOZCBDkTLG6WEHK606Lz0rgCU25BTkOxoilmzqHfIAmlxAhl8g3mMtMZpTFdeJkkvdUmr2Lam_mJB5w6H8U2wTeMkt88fycFMoht_wnBHAdXdJ0zV-dt1ycq8P-XDAlZ-iUB4vp9imiBr-CINZIjvKEavVHvs256U7EKRBY4lDWQMKF6rlmoCM.VWqgH3M-qCF_1e1_DUYQBc6h9GmaxFe1VVYFCIcr1u0&dib_tag=se&keywords=ugreen+pcie&qid=1710367040&s=electronics&sprefix=ugreen+pci%2Celectronics%2C190&sr=1-4 or just return this SSD and buy a SATA drive because all of the compatible ones from their website are old and very hard to find (I know it doesn't make sense that only the ones listed work but idk anymore). My other question would be if I would even be able to install OS and boot if it is connected via this adapter. Note: SSD works fine on another PC) Thanks in advance.
  3. The support says I don't have any subscriptions on my account... Now I'm lost.
  4. If I remember correctly I don't think I have, but I'm not 100% sure. I will try and contact their support.
  5. I just checked the app no charges as far as I can see. I can't find nothing under order history or payments on my microsoft account.
  6. I just woke up to this email for Microsoft 365 dev that I actiavted a trial on like 2 months ago or something like that. I haven't used it since and now I got this email. How do I unsubscribe, I don't even know if this is charging me but I know if it is I can't afford it... I attached 2 photos that might help but I can't seem to find a way to unsub.
  7. Yes tried cmos reset still nothing, tried both ports available (HDMI and VGA) still nothing
  8. It just seems like my PC is completely ignoring the fact that there in fact is integrated graphics
  9. Tried it, uninstalled all other gpu drivers still nothing.
  10. So the processor I have is 3570k, it has integrated graphics, which I know for a fact because I ran on it when my 7870 died before I got my 1060. Right now I'm building a new pc and I'm only keeping the graphics card from the old one and planned on keeping this a secondary PC that would run on iGPU. The only issue is my PC no longer recognizes my iGPU. When I hook it up to the monitor it doesn't display anything, I can't find it in device manager, nothing... How come it just dissapeared and it doesn't function when a year and a half ago it did. The motherboard I'm using is Asrock Z77 pro3, I looked through BIOS couldn't find anything regarding integrated graphics.
  11. I just watched this video where he VRM tests different b450 boards, there is only a few in the test (like 5-6) but I would say Asrock board performed pretty well.
  12. I'm just trying to figure out which one is good, you suggested Gigabyte board because of better VRM temperature, which I heard has pretty bad VRM's... Is there any reason you believe Asrock vrm's are bad ?
  13. I'm pretty sure he is talking about all motherboards, check description ? I timestamped the exact moment where he talks about b450 Gigabyte board
  14. I thought Gigabyte's vrms are bad I watched GamersNexus video - I timestamped it for you that's why I thought I should maybe avoid them
  15. So I'm upgrading my PC, everything beside my GPU is getting replaced, in my cart i currently have these components: PCPartPicker Part List Type Item Price CPU AMD Ryzen 5 3600 3.6 GHz 6-Core Processor $172.39 @ Newegg Motherboard ASRock B450 Pro4 ATX AM4 Motherboard Memory Kingston HyperX Fury 16 GB (2 x 8 GB) DDR4-3200 Memory $99.96 @ Amazon Storage Transcend 240 GB 2.5" Solid State Drive $51.23 @ Amazon Storage Seagate Surveillance HDD 1 TB 3.5" 5400RPM Internal Hard Drive Video Card Gigabyte GeForce GTX 1060 6GB 6 GB Xtreme Gaming Video Card $401.38 @ Amazon Case Phanteks P300 ATX Mid Tower Case $62.38 @ Amazon Power Supply SeaSonic Core GC 650 W 80+ Gold Certified ATX Power Supply Prices include shipping, taxes, rebates, and discounts Total $787.34 Generated by PCPartPicker 2020-05-07 18:38 EDT-0400 I'm wondering if I'm going to run into some issues regarding compatibility, at the bottom of the page on pcpartpicker it says: "Warning!Some AMD B450 chipset motherboards may need a BIOS update prior to using Matisse CPUs. Upgrading the BIOS may require a different CPU that is supported by older BIOS revisions." Is that something to be concerned about or no ?
  16. First example: Second example: For some reason it isn't registering brackets.
  17. Yea I guess I'm wondering why those 2 lines don't do the same thing
  18. It didn't copy paste properly for some reason It was supposed to look like this: if (word == 'A' || 'E' || 'I' || 'O' || 'U') if (word == 'A' || word == 'E' || word == 'I' || word == 'O' || word == 'U')
  19. In this task the counter should give me the number of vowels in the word apple. #include <iostream> #include <string> using namespace std; void main() { char word[5]= { 'A','P','P','L','E'}; int i; int counter = 0; for (i = 0; i<5; i++) { if (word == 'A' || 'E' || 'I' || 'O' || 'U') { cout << word << endl; counter++; } } cout << "counter:" << counter << endl; getchar(); } When I run it this way it outputs like this: A P P L E counter:5 But when I run it like this: #include <iostream> #include <string> using namespace std; void main() { char word[5]= { 'A','P','P','L','E'}; int i; int counter = 0; for (i = 0; i<5; i++) { if (word == 'A' || word == 'E' || word == 'I' || word == 'O' || word == 'U') { cout << word << endl; counter++; } } cout << "counter:" << counter << endl; getchar(); } This is what it outputs: A E counter:2 Why is the first method wrong?
  20. I searched through this forum if anyone had the same issue and found one guy with the exact problem but noone responded to him... Seems like noone knows the answer. @SeaKiwi is the one that had the problem.
  21. I just installed a new update for windows 10 and ever since that for the last 3 hours chrome is just a black box. I can resize the window, close it as if the buttons are still there but it's just a black box. I reinstalled chrome still no fix while mozilla and edge still work fine. Thanks in advance.
  22. I didn't update this post but a few days later pc wouldnt turn on, it turned out the PSU was the issue
×