Jump to content

47439294839

Member
  • Posts

    50
  • Joined

  • Last visited

Awards

This user doesn't have any awards

About 47439294839

  • Birthday October 20

Contact Methods

  • PlayStation Network
    47439294839
  • Reddit
    47439294839

Profile Information

  • Gender
    Male
  • Location
    Maassluis, The Netherlands

System

  • CPU
    Intel Core i7-9700
  • Motherboard
    Asus Prime B365M-A
  • RAM
    Crucial Ballistix Sport DDR4 2666 mHz CL16 2x8 GB
  • GPU
    Intel UHD 630 Graphics
  • Case
    Aerocool Streak Midi-Tower
  • Storage
    Intel 660p 512 GB
  • PSU
    Xilence Performance C Series XN046 (XP700R6)
  • Cooling
    Xilence I402 Performance C Series
  • Keyboard
    Some RGB keyboard
  • Mouse
    Some Trust mouse
  • Operating System
    Windows 10 64-bit English (UK)
  • Laptop
    - Some Windows XP BTO laptop
    - Some Windows 8.1 Toshiba laptop

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

47439294839's Achievements

  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?
×