You must like me if you came to look at my profile… buy me a coffee if you want

BTC: bc1q0usqs8damxwq5rj3f4k6djl8sqlnn4mg3guqcj

BTC-LN:

  • 4 Posts
  • 117 Comments
Joined 1 year ago
cake
Cake day: March 7th, 2024

help-circle



  • not something i recorded this time. may do it next year.

    i observed usually around 83 to 93 degrees celcius on the GPU. although i did see it drop to 53 degrees a few times whilst still mining. not sure what that was about as its not way that was a true figure.

    i did override the gpu fan once or twice manually and set it to full flat out and got it down into the 70s. i found the interface for that to be kinda complicated to deal with though so i didnt do it routinely

    wasnt watching the CPU
















  • Moving the CanvasJS.Chart class instantiation into the second loop appears to have worked. Kinda icky having two loops tho

    window.onload = async function () {
        const distinctDays = [...new Set(parsedData.map( o => o.x.toISOString().split('T')[0]))]
        const body = document.querySelector('body')
        const charts = []
    
        for(const distinctDay of distinctDays){
            const chartName = `chartContainer${distinctDay.replace(/-/g, '')}`
            const data = [{
                type: 'line',
                dataPoints: parsedData.filter( o => o.x.toISOString().includes(distinctDay))
            }]
    
            body.innerHTML += `<div id="${chartName}" style="height: 370px; width: 100%;">`
    
            charts.push([chartName, distinctDay, data]);
        }
    
    
        charts.forEach(([chartName, distinctDay, data]) => {
            new CanvasJS.Chart(chartName, {
                animationEnabled: true,
                zoomEnabled: true,
                title:{
                    text: `average ping times for ${distinctDay}`
                },
                data: data
            }).render()
        })
    }