Jump to content

47439294839

Member
  • Posts

    50
  • Joined

  • Last visited

Everything posted by 47439294839

  1. I recently bought an LG Velvet with its dual screen accessory. But I wanted to know if you could display 2 pages at once (one on one screen and one on the other) so it's like a real book. Are there apps out there that will allow you to do that?
  2. Can I see that with a benchmark of my ssd (e.g. with lower performance it's connected to the chipset and with high performance it's connected to the CPU)? Or could I possibly see that by looking at the motherboard?
  3. How much does it matter if the PCIe lanes come from the chipset or the CPU?
  4. I currently have a Lenovo IdeaPad 5 15ARE05 with a Ryzen 5 4500U and I want to put a RTX 3070 (or maybe a RTX 3060 Ti if it's not available) in the M.2 slot (which has 4 PCIe lanes at gen 3 speed). Will this work and if so, how big of a performance penalty should I expect?
  5. So the network card only uses one PCIe lane?
  6. It's because I want to make use of the faster NVMe speeds (if possible).
  7. Because I want to make use of the speeds the NVMe SSD can deliver.
  8. I'm planning to buy a NB50TZ barebone laptop. It comes with a network card, but I also want Bluetooth. For the antenna cables I want to use extensions if necessary.
  9. I'm planning to buy a laptop. However, the M.2 slot for storage is SATA. Could I put my AX200 network card in the SATA M.2 slot (with an adapter, of course) and put my NVMe SSD in the M.2 slot for the network card? Is a SATA-600 M.2 port enough for an AX200 network card?
  10. But what do you think I should use instead of the ConstraintLayouts?
  11. When I checked my code it gave me the following message: AAPT: error: '1dp' is incompatible with attribute layout_constraintHorizontal_bias (attr) float. (and 20 of the same errors) <?xml version="1.0" encoding="utf-8"?> <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" tools:context=".MainActivity"> <TextView android:id="@+id/textView" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="@string/Value" tools:layout_editor_absoluteX="1dp" tools:layout_editor_absoluteY="1dp" tools:ignore="MissingConstraints" /> <Button android:id="@+id/ButtonN1" android:layout_height="50dp" android:layout_width="50dp" android:text="@string/_1" app:layout_constraintBottom_toBottomOf="parent" app:layout_constraintEnd_toEndOf="parent" app:layout_constraintHorizontal_bias="1dp" app:layout_constraintStart_toStartOf="parent" app:layout_constraintTop_toTopOf="parent" app:layout_constraintVertical_bias="101dp" /> <Button android:id="@+id/ButtonN2" android:layout_width="50dp" android:layout_height="50dp" android:text="@string/_2" app:layout_constraintBottom_toBottomOf="parent" app:layout_constraintEnd_toEndOf="parent" app:layout_constraintHorizontal_bias="51dp" app:layout_constraintVertical_bias="101dp" app:layout_constraintStart_toStartOf="parent" app:layout_constraintTop_toTopOf="parent" /> <Button android:id="@+id/ButtonN3" android:layout_width="50dp" android:layout_height="50dp" android:text="@string/_3" app:layout_constraintBottom_toBottomOf="parent" app:layout_constraintEnd_toEndOf="parent" app:layout_constraintHorizontal_bias="101dp" app:layout_constraintVertical_bias="101dp" app:layout_constraintStart_toStartOf="parent" app:layout_constraintTop_toTopOf="parent" /> <Button android:id="@+id/ButtonN4" android:layout_width="50dp" android:layout_height="50dp" android:text="@string/_4" app:layout_constraintBottom_toBottomOf="parent" app:layout_constraintEnd_toEndOf="parent" app:layout_constraintHorizontal_bias="1dp" app:layout_constraintVertical_bias="151dp" app:layout_constraintStart_toStartOf="parent" app:layout_constraintTop_toTopOf="parent" /> <Button android:id="@+id/ButtonN5" android:layout_width="50dp" android:layout_height="50dp" android:text="@string/_5" app:layout_constraintBottom_toBottomOf="parent" app:layout_constraintEnd_toEndOf="parent" app:layout_constraintHorizontal_bias="51dp" app:layout_constraintVertical_bias="151dp" app:layout_constraintStart_toStartOf="parent" app:layout_constraintTop_toTopOf="parent" /> <Button android:id="@+id/ButtonN6" android:layout_width="50dp" android:layout_height="50dp" android:text="@string/_6" app:layout_constraintBottom_toBottomOf="parent" app:layout_constraintEnd_toEndOf="parent" app:layout_constraintHorizontal_bias="101dp" app:layout_constraintVertical_bias="151dp" app:layout_constraintStart_toStartOf="parent" app:layout_constraintTop_toTopOf="parent" /> <Button android:id="@+id/ButtonN7" android:layout_width="50dp" android:layout_height="50dp" android:text="@string/_7" app:layout_constraintBottom_toBottomOf="parent" app:layout_constraintEnd_toEndOf="parent" app:layout_constraintHorizontal_bias="1dp" app:layout_constraintVertical_bias="201dp" app:layout_constraintStart_toStartOf="parent" app:layout_constraintTop_toTopOf="parent" /> <Button android:id="@+id/ButtonN8" android:layout_width="50dp" android:layout_height="50dp" android:text="@string/_8" app:layout_constraintBottom_toBottomOf="parent" app:layout_constraintEnd_toEndOf="parent" app:layout_constraintHorizontal_bias="51dp" app:layout_constraintVertical_bias="201dp" app:layout_constraintStart_toStartOf="parent" app:layout_constraintTop_toTopOf="parent" /> <Button android:id="@+id/ButtonN9" android:layout_width="50dp" android:layout_height="50dp" android:text="@string/_9" app:layout_constraintBottom_toBottomOf="parent" app:layout_constraintEnd_toEndOf="parent" app:layout_constraintHorizontal_bias="101dp" app:layout_constraintVertical_bias="201dp" app:layout_constraintStart_toStartOf="parent" app:layout_constraintTop_toTopOf="parent" /> <Button android:id="@+id/ButtonN0" android:layout_width="50dp" android:layout_height="50dp" android:text="@string/_0" app:layout_constraintBottom_toBottomOf="parent" app:layout_constraintEnd_toEndOf="parent" app:layout_constraintHorizontal_bias="151dp" app:layout_constraintVertical_bias="1dp" app:layout_constraintStart_toStartOf="parent" app:layout_constraintTop_toTopOf="parent" /> <Button android:id="@+id/ButtonENTER" android:layout_width="50dp" android:layout_height="50dp" android:text="@string/_ENTER" app:layout_constraintBottom_toBottomOf="parent" app:layout_constraintEnd_toEndOf="parent" app:layout_constraintStart_toStartOf="parent" app:layout_constraintTop_toTopOf="parent" app:layout_constraintHorizontal_bias="151dp" app:layout_constraintVertical_bias="51dp" /> </androidx.constraintlayout.widget.ConstraintLayout> So if anyone knows what's wrong with my code, please let me know. Thanks in advance.
  12. The PCIe connector of my graphics card is damaged. Could this be fixable?
  13. I just built a pc (without a graphics card) with an i7-9700(non-k) and 16 GB RAM. Should I get a RTX 2060 or a RX 5700? (price doesn't matter)
  14. When I want to enable a FPS counter on steam in the settings (yes, by clicking steam in the upper left corner and clicking settings) I can't see a save button to save the changes to the settings I just made. I already tried leaving the settings open when I played the game and closing them while playing the game. How do I save the settings?
  15. I have an i7-9700, ASUS Prime B365-A and 2x8 GB DDR4 2666. Can I overclock my RAM on this motherboard?
  16. I want it to run games like Borderlands 3 at medium settings at FHD 120hz or QHD 75hz
  17. I'm in a dilemma whether I should buy a graphics card now (rx 5600 XT/RTX 2060 if I decide buying new and GTX 1070 (Ti) if I decide buying used), or if I should wait for new graphics cards to come out (RX 5900 XT? or RTX 3000?) and buy one of those or buy an older one (RTX 2000) at a lower price.
  18. Idk, I think it’s a single fan one.
  19. Yeah... Just found a GTX 1080 Ti for €280 But what about the generational difference, does that matter?
  20. The GTX 1080 is €230 (Yes, I live in Europe) and the RTX 2070 is €290 but the GTX 1080 has a piece of one of the fans broken off (as seen in the picture).
  21. The GTX 1080 is a Zotac GTX 1080 Mini, but I don’t know the model of the RTX 2070 because it isn’t clear in the ad.
  22. The GTX 1080 is a Zotac GTX 1080 Mini, but I don’t know what model the RTX 2070 is because it isn’t clear in the ad.
×