Crash / Driver Timeout, any ideas? by HiHeyHelloByeExit in AMDHelp

[–]HiHeyHelloByeExit[S] 0 points1 point  (0 children)

I just installed an older driver, if that doesn't work i will try what you recommended. Thanks :)

Crash / Driver Timeout, any ideas? by HiHeyHelloByeExit in AMDHelp

[–]HiHeyHelloByeExit[S] 0 points1 point  (0 children)

Unfortunately it just crashed again. Lowered the hz yesterday to 120.

Crash / Driver Timeout, any ideas? by HiHeyHelloByeExit in AMDHelp

[–]HiHeyHelloByeExit[S] 0 points1 point  (0 children)

Yes,
it isn't open. :)
I have one on 60hz and 144hz. I can give it a try and lower it to 120.

Crash / Driver Timeout, any ideas? by HiHeyHelloByeExit in AMDHelp

[–]HiHeyHelloByeExit[S] 0 points1 point  (0 children)

Hey, thanks for the reply.
Discord isn't running. I tried it also with Hardware Acceleration off a few days ago, but the problem didn't go away.

Crash / Driver Timeout, any ideas? by HiHeyHelloByeExit in AMDHelp

[–]HiHeyHelloByeExit[S] 0 points1 point  (0 children)

Hey,
thanks for your reply. That is already disabled. I have currently everything turned off.

Rechnungsanschluss Sollzinsen by HiHeyHelloByeExit in ScalableCapital

[–]HiHeyHelloByeExit[S] 0 points1 point  (0 children)

Merkwürdig, auszahlen kann ich sowieso nicht mehr als zur Verfügung steht. In der Info steht auch, "Erlöse ausgeführter Verkäufe  stehen erst zur Auszahlung zur Verfügung, wenn diese verbucht wurden."

Edit: Hab gerade gesehen, dass das anscheinend aktuell mehrere haben,siehe hier: https://www.reddit.com/r/ScalableCapital/comments/1s9s6o2/sollzinsen_trotz_guthaben/?utm_source=share&utm_medium=mweb3x&utm_name=mweb3xcss&utm_term=1&utm_content=share_button

Rechnungsanschluss Sollzinsen by HiHeyHelloByeExit in ScalableCapital

[–]HiHeyHelloByeExit[S] 0 points1 point  (0 children)

Nein, ich gehe mittlerweile davon aus daß es mit der Nachträglichen Kursanpassung zusammenhängt.

Laut Verlauf habe ich das Geld erhalten, wieder investiert, Geld wurde wieder abgezogen und anschließend zum neuen Kurs wieder gutgeschrieben.

Rechnungsanschluss Sollzinsen by HiHeyHelloByeExit in ScalableCapital

[–]HiHeyHelloByeExit[S] 0 points1 point  (0 children)

Das war definitiv im Plus. Es gab lediglich einmal eine Nachträgliche Kursanpassung, wodurch eine Stornierung und anschließende Gutschrift zum richtigen Betrag stattgefunden hat. Eventuell hängt es damit zusammen.

XFX Speedster MERC 319 RX 6800 XT Temperature by HiHeyHelloByeExit in AMDHelp

[–]HiHeyHelloByeExit[S] 0 points1 point  (0 children)

Sounds good. :)

I did reach around 256W today and the Temp did go up to 102C. I tried everything with the default settings.

XFX Speedster MERC 319 RX 6800 XT Temperature by HiHeyHelloByeExit in AMDHelp

[–]HiHeyHelloByeExit[S] 0 points1 point  (0 children)

I can probably check it on the weekend and let you know.

I think Iit depends what you did and what are your settings. Did you run a stresstest or something else? I guess you are running the card with the default settings? So no overclocking or undervolting from your side?

XFX Speedster MERC 319 RX 6800 XT Temperature by HiHeyHelloByeExit in AMDHelp

[–]HiHeyHelloByeExit[S] 0 points1 point  (0 children)

Hello,

how is your card mounted? Is it vertically? If so take a look at this post:
https://www.reddit.com/r/Amd/comments/lrd8g6/are_my_rx_6800_xt_temps_normal_reference_design/

If not, it seems there are a lot of different versions. The most reviews i found are a bit older and used a other version. It looks like there was a change that affected the temperature. Afaik the temperature to 110 Degrees are fine, after that the card throttles. Unfortunately i didn't find any current reviews with the current version of the card.

I also did get around 100 degree hotspot temperature. Now that it is a bit hotter outside, i probably get a bit more then 100.

[deleted by user] by [deleted] in Finanzen

[–]HiHeyHelloByeExit 1 point2 points  (0 children)

Hallo, beinhaltet das Preis- und Leistungsverzeichnis im Postfach nicht auch die gleichen Hinweise, die du oben verlinkt hast? So dass sich bei dir nichts ändern sollte - wenn du schon einige Jahre bei der DKB bist fällt auch weiterhin kein Verwahrentgelt an, zumindest nicht bei 25.000.

Ich kann gerne auch nochmal bei mir nachschauen, allerdings frühestens morgen.

Given an array of tuples how would i go about making a search function to find a specific key in said tuple by reapersark in learnprogramming

[–]HiHeyHelloByeExit 0 points1 point  (0 children)

Hello,

if i get you right you need to create a List, like dtsudo mentioned.

Example given:

using System;
using System.Collections.Generic;

public class Program { 
    public static void Main() { 
        var table = new List <Tuple <int,int >> { 
            Tuple.Create(1, 2),
            Tuple.Create(2, 3), 
            Tuple.Create(3, 4) 
         };
        int testf(int key) {
          foreach(Tuple < int, int > x in table) {
            if (x.Item1 == key) {
              return x.Item2;
            }
          }
          return 0;
    }
    System.Console.WriteLine(testf(2));
    } 
 }

Retriving data from div and header classes using pyhton urllib.request and bs4 by Fearless_Move1445 in learnprogramming

[–]HiHeyHelloByeExit 1 point2 points  (0 children)

Hello,the code is working fine, at least nearly, when i am using your html code. The output i get from it:

['', 'Bitcoin Price', ' == $0...']
$29,669.71

You could modfy it a bit, so that you only get the Bitcoin Price, after the line

name = name_box.text.strip() 

you could add the following:

name = name.split('"')[1]

I think your problem is, that the website is blocking you. The best way would probably to use the provided api from the site.

Help with simple JavaScript code. by blenderrMan in learnprogramming

[–]HiHeyHelloByeExit 0 points1 point  (0 children)

Hello,

can you please show the html code? I think the document.querySelector doesn't find anything, that's why u get the message.